/* Social Proof Notifications */
.social-proof-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 350px;
    z-index: 9999;
    transform: translateX(-400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #4a7c59;
}

.social-proof-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.social-proof-notification.hide {
    transform: translateX(-400px);
    opacity: 0;
}

.social-proof-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a7c59 0%, #3d6b2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.social-proof-content {
    flex: 1;
    min-width: 0;
}

.social-proof-name {
    font-weight: 700;
    color: #333;
    margin: 0 0 4px 0;
    font-size: 0.95rem;
}

.social-proof-action {
    color: #666;
    margin: 0 0 4px 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.social-proof-time {
    color: #999;
    font-size: 0.8rem;
    margin: 0;
}

.social-proof-close {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.social-proof-close:hover {
    background: #f5f5f5;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-proof-notification {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }
}

/* Animation */
@keyframes slideInLeft {
    from {
        transform: translateX(-400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-400px);
        opacity: 0;
    }
}
