/* Social Proof Styles */
.social-proof-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.social-proof-notification {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--gold-accent);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 300px;
    transform: translateY(200%);
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-proof-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-image i {
    font-size: 2.5rem;
    color: var(--gold-accent);
}

.notification-content {
    flex: 1;
}

.notification-text {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--text-color);
    line-height: 1.4;
}

.notification-time {
    font-size: 0.8rem;
    color: var(--gold-accent);
    opacity: 0.8;
} 