.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* force toutes les cartes à avoir la même hauteur */
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    background: white;
    text-align: center;
    transition: all 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-5px);
}
.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.pricing-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ddd; /* Ligne de séparation */
}

.pricing-footer {
    margin-top: auto;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.feature-list li {
    margin: 0.5rem 0;
}
.btn-order {
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
}


.form-switch-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    border-radius: 2rem;
    border: 2px solid white;
    background-color: #212529;
    color: white;
}

.form-check-input {
    width: 3rem;
    height: 1.5rem;
    background-color: #6c757d;
    border-color: #6c757d;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #921ee9 !important;
    border-color: #0d6efd;
}


.btn-bronze {
    background-color: #cd7f32; /* Couleur bronze */
    color: #fff; /* Texte blanc pour le contraste */
    border: 2px solid #8c7853; /* Bordure couleur bronze */
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-gratuit {
    background: linear-gradient(45deg, #32cd32, #7cfc00); /* Dégradé vert vif */
    color: #fff; /* Texte blanc */
    border: 2px solid #228b22; /* Bordure verte */
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Ombre sur le texte */
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ombre portée */
}

.btn-gratuit:hover {
    background: linear-gradient(45deg, #7cfc00, #32cd32); /* Inversion du dégradé au survol */
    color: #000; /* Texte noir */
    border-color: #006400; /* Bordure plus foncée */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Ombre plus marquée */
    transform: scale(1.05); /* Légère mise en avant */
}

.btn-silver {
    background-color: #c0c0c0; /* Couleur argentée */
    color: #000; /* Texte noir pour le contraste */
    border: 2px solid #a9a9a9; /* Bordure argentée */
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-silver:hover {
    background-color: #b0b0b0; /* Couleur légèrement plus foncée au survol */
    color: #000;
    border-color: #8c8c8c; /* Bordure plus foncée au survol */
}

.btn-gold {
    background-color: #ffd700; /* Couleur or */
    color: #000; /* Texte noir pour le contraste */
    border: 2px solid #daa520; /* Bordure dorée */
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #ffc700; /* Couleur légèrement plus foncée au survol */
    color: #000;
    border-color: #b8860b; /* Bordure plus foncée au survol */
}

.btn-platinium {
    background-color: #e5e4e2; /* Couleur platine */
    color: #000; /* Texte noir pour le contraste */
    border: 2px solid #c0c0c0; /* Bordure argentée */
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-platinium:hover {
    background-color: #dcdcdc; /* Couleur légèrement plus foncée au survol */
    color: #000;
    border-color: #a9a9a9; /* Bordure plus foncée au survol */
}

.badge-circle {
    width: auto;
    min-width: 85px;
    height: auto;
    padding: 0 6px;
    border-radius: 999px;
    background-color: #333;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    border: 2px solid white;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px; /* espace entre icône et texte */
    text-shadow:
            1px 1px 0 black,
            -1px 1px 0 black,
            1px -1px 0 black,
            -1px -1px 0 black;
    z-index: 11;
}


/* TOP = VIP */
.badge-top {
    background-color: #504d4d;
    color: #e2b24d;
    font-size: 18px;
}

/* HOT = Flame */
.badge-hot {
    background-color: #e03a00;
    color: white;
    font-size: 18px;
}

/* Xclusive = Star */
.badge-xclusive {
    background-color: #8a2be2;
    color: gold;
    font-size: 18px;
}