/* ==========================================================================
   WIDGET PREUVE SOCIALE & CONVERSION EN DIRECT — TAXI VTC PARIS
   Design : Dark Glassmorphism & Gold Accent (Luxury Fleet)
   ========================================================================== */

.social-proof-toast {
    position: fixed;
    bottom: 96px;
    left: 24px;
    z-index: 9998;
    max-width: 360px;
    background: rgba(15, 17, 21, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), 0 0 16px rgba(212, 175, 55, 0.15);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: #f1f5f9;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.social-proof-toast.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.social-proof-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.08));
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.social-proof-content {
    flex: 1;
    min-width: 0;
}

.social-proof-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3px;
}

.social-proof-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #D4AF37;
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-proof-tag .live-dot {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10B981;
    display: inline-block;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.social-proof-time {
    font-size: 0.7rem;
    color: #94a3b8;
}

.social-proof-text {
    font-size: 0.82rem;
    line-height: 1.35;
    color: #e2e8f0;
    margin: 0 0 4px 0;
}

.social-proof-stars {
    color: #F59E0B;
    font-size: 0.75rem;
    display: inline-block;
    margin-right: 4px;
}

.social-proof-close {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    margin-left: 6px;
    line-height: 1;
    transition: color 0.2s;
}

.social-proof-close:hover {
    color: #e2e8f0;
}

.social-proof-progress {
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.social-proof-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #F59E0B);
    width: 100%;
    transform-origin: left;
    transition: width 7s linear;
}

/* Version Mobile Réduite */
@media (max-width: 640px) {
    .social-proof-toast {
        left: 12px;
        right: 12px;
        max-width: calc(100% - 24px);
        bottom: 84px;
        padding: 10px 12px;
    }
    .social-proof-text {
        font-size: 0.78rem;
    }
}
