/* Modale de confirmation - Version 2.0.8 */
.forfait-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.forfait-modal-content {
    background: white;
    margin: 10% auto;
    padding: 40px 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.forfait-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #999;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.forfait-modal-close:hover {
    color: #333;
}

.forfait-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    font-weight: bold;
}

.forfait-modal-content h3 {
    margin: 0 0 15px 0;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
}

.forfait-modal-message {
    color: #666;
    font-size: 16px;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.forfait-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.forfait-btn-continue,
.forfait-btn-cart {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 180px;
}

.forfait-btn-continue {
    background: linear-gradient(135deg, #D4AF37 0%, #1a1a1a 100%) !important;
    color: white !important;
    border: none !important;
}

.forfait-btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.forfait-btn-cart {
    background: linear-gradient(135deg, #D4AF37 0%, #1a1a1a 100%) !important;
    color: white !important;
    border: none !important;
}

.forfait-btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
    .forfait-modal-content {
        margin: 20% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .forfait-modal-buttons {
        flex-direction: column;
    }
    
    .forfait-btn-continue,
    .forfait-btn-cart {
        width: 100%;
        min-width: auto;
    }
}