/* StudioVeena social-proof card (lower-left, timed) */

.sv-social-proof {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9998; /* below modals/lightboxes */
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    padding: 12px 16px;
    background: var(--bb-content-background-color, #ffffff);
    color: var(--bb-body-text-color, #1e2432);
    border: 1px solid var(--bb-content-border-color, #e7e9ec);
    border-radius: var(--bb-block-radius, 12px);
    box-shadow: 0 8px 28px rgba(18, 24, 40, 0.18);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.35;

    /* hidden by default; animated in/out via .is-visible */
    opacity: 0;
    transform: translateX(-24px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: opacity, transform;
}

.sv-social-proof.is-visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.sv-social-proof:hover {
    box-shadow: 0 10px 32px rgba(18, 24, 40, 0.26);
}

/* Generic avatar (person silhouette) — no real member photos */
.sv-social-proof__avatar {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bb-primary-color, #ec5f42);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5Zm0 2c-4 0-8 2-8 5v1h16v-1c0-3-4-5-8-5Z'/%3E%3C/svg%3E");
    background-size: 62%;
    background-position: center;
    background-repeat: no-repeat;
}

.sv-social-proof__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sv-social-proof__text {
    font-weight: 500;
}

.sv-social-proof__text strong {
    font-weight: 700;
}

.sv-social-proof__meta {
    margin-top: 2px;
    font-size: 11px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.6;
}

@media (max-width: 600px) {
    .sv-social-proof {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sv-social-proof {
        transition: opacity 0.4s ease;
        transform: none;
    }
    .sv-social-proof.is-visible {
        transform: none;
    }
}
