/* Popup Offre de Lancement */
.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 2px solid #10b981;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: popupSlide 0.5s ease-out;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #f87171;
}

.popup-emoji {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.popup-title {
    color: #10b981;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.popup-subtitle {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
}

.popup-offer {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.popup-discount {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.popup-description {
    font-size: 16px;
    opacity: 0.9;
}

.popup-cta {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.popup-note {
    color: #94a3b8;
    font-size: 12px;
    font-style: italic;
}

@keyframes popupSlide {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 768px) {
    .popup-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .popup-title {
        font-size: 24px;
    }
    
    .popup-subtitle {
        font-size: 16px;
    }
    
    .popup-discount {
        font-size: 28px;
    }
}