/* CM Social Proof Popup */

#cm-reader-note {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #141414;
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid #BA510F;
    border-radius: 4px;
    padding: 12px 16px 12px 14px;
    max-width: 320px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: all;
}

#cm-reader-note.cm-rn-visible {
    opacity: 1;
    transform: translateY(0);
}

.cm-rn-avatar {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #BA510F;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.cm-rn-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
    flex: 1;
}

.cm-rn-text strong {
    color: #fff;
    font-weight: 600;
}

.cm-rn-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0 0 8px;
    transition: color 0.2s;
    align-self: flex-start;
}

.cm-rn-close:hover {
    color: #fff;
}

@media (max-width: 480px) {
    #cm-reader-note {
        left: 12px;
        right: 12px;
        max-width: none;
        bottom: 12px;
    }
}
