/* ========================================
   AURA CLARA - Social Proof Notifications
   ======================================== */

.social-proof-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 400px;
    z-index: 9999;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--lavender-100);
}

.social-proof-notification.social-proof-visible {
    transform: translateY(0);
    opacity: 1;
}

.social-proof-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.social-proof-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-proof-icon svg {
    color: white;
}

.social-proof-text {
    flex: 1;
}

.social-proof-message {
    font-size: 0.875rem;
    color: var(--gray-800);
    line-height: 1.4;
    margin-bottom: 4px;
}

.social-proof-message strong {
    font-weight: 600;
    color: var(--black);
}

.social-proof-time {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.social-proof-close {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--gray-400);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.social-proof-close:hover {
    color: var(--gray-600);
}

/* Mobile: hide social proof to avoid clutter */
@media (max-width: 767px) {
    .social-proof-notification {
        display: none;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    .social-proof-notification {
        bottom: 16px;
        left: 16px;
        max-width: 320px;
        padding: 12px 16px;
    }

    .social-proof-icon {
        width: 36px;
        height: 36px;
    }

    .social-proof-icon svg {
        width: 18px;
        height: 18px;
    }

    .social-proof-message {
        font-size: 0.8125rem;
    }
}
