/* === 1. CARTES D'ABONNEMENT (SUR LA PAGE) === */
.subscription-card {
    background-color: #E68A6E !important;
    border-radius: 40px !important;
    color: white !important;
    overflow: hidden;
    border: none !important;
    margin-bottom: 30px;
}

.subscription-header {
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(0, 0, 0, 0.05);
}

.subscription-body {
    padding: 40px 60px !important;
}

.subscription-info h2 { font-size: 2.5rem; margin-bottom: 10px; }
.subscription-info p { font-size: 1.4rem; margin-bottom: 5px; opacity: 0.9; }
.subscription-price { font-size: 1.8rem; font-weight: bold; margin-top: 20px; line-height: 1.2; }
.subscription-price span { font-size: 1.2rem; font-weight: normal; }

/* === 2. STYLE COMMUN AUX MODALES (PAIEMENT & FÉLICITATIONS) === */
.custom-payment-content,
.custom-felicitation-content {
    background-color: #FDF5F0 !important; /* Fond crème */
    border-radius: 40px !important;
    border: 1px solid #333 !important;
    overflow: hidden;
}

.custom-payment-header,
.custom-felicitation-header {
    background-color: #E68A6E !important; /* En-tête saumon */
    border-bottom: none !important;
    padding: 20px !important;
}

/* === 3. FORMULAIRE DE PAIEMENT (INPUTS) === */
.payment-input {
    background-color: #F2C4B5 !important;
    border: 1px solid #333 !important;
    border-radius: 15px !important;
    padding: 12px !important;
    color: #333 !important;
}

/* === 4. BOUTONS (UNIFIÉS) === */
.btn-subscription-action,
.btn-payment-primary,
.btn-payment-secondary,
.btn-continuer {
    background-color: #E68A6E !important;
    color: white !important;
    border: 1px solid #333 !important;
    border-radius: 15px !important;
    font-weight: bold !important;
    transition: background 0.3s ease, transform 0.2s;
}

/* Ajustements spécifiques de taille pour les boutons */
.btn-subscription-action { padding: 15px 40px !important; min-width: 250px; font-size: 1.5rem !important; line-height: 1.1; }
.btn-payment-primary, .btn-payment-secondary { padding: 10px 30px !important; }
.btn-continuer { padding: 12px 60px !important; font-size: 1.6rem !important; }

/* Effets au survol */
.btn-subscription-action:hover,
.btn-payment-primary:hover,
.btn-payment-secondary:hover,
.btn-continuer:hover {
    background-color: #D4795D !important;
    transform: scale(1.02);
}