/* Social Proof Notification Styles */
.social-proof-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    pointer-events: none;
}

.social-proof-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 280px;
    max-width: 340px;
    pointer-events: auto;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    font-family: 'Poppins', sans-serif;
}

.social-proof-card.active {
    transform: translateY(0);
    opacity: 1;
}

.sp-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1579e6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    text-transform: uppercase;
}

.sp-content {
    flex: 1;
}

.sp-text {
    font-size: 13px;
    color: #1a202c;
    line-height: 1.4;
    margin: 0;
}

.sp-text strong {
    color: #1579e6;
    font-weight: 700;
}

.sp-time {
    font-size: 11px;
    color: #718096;
    margin-top: 2px;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .social-proof-container {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .social-proof-card {
        min-width: 0;
        max-width: none;
        width: 100%;
    }
}