

body .wp-block-getwid-section__content {
    padding: 0 !important;
    margin-top: 0 !important;
}

main {
    min-height: 100dvh;
}

a {
    text-decoration: none;
}
.compteur {
    padding:0;
    font-size:24px;
    color:white;
}
/* --- Style des boutons "Acheter" dans les tableaux de prix (Desktop) --- */

/* Ciblage des boutons dans les colonnes de prix */
.wp-block-button__link {
    background: linear-gradient(135deg, #ff9a00 0%, #ff5a00 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important; /* Look arrondi plus moderne */
    padding: 12px 30px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    text-decoration: none !important;
    display: inline-block;
}

.wp-block-button__link:hover {
    transform: scale(1.05); /* Effet de léger grossissement au survol */
    box-shadow: 0 10px 20px rgba(255, 90, 0, 0.3);
    color: #ffffff !important;
}
.acf-google-map.map-loading {
    background: #f0f0f0 url('../../../core/images/loader.gif') center no-repeat;
    min-height: 300px;
}

.wp-block-getwid-section h2 {
    font-weight: bold;
    font-size: 3em; /* Ajustez la taille selon vos besoins */
    background: linear-gradient(0deg, #C70000, #FF8C00, #DCE400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   HEADER STYLE FEELD CORRIGÉ (HAUTEUR AJUSTÉE & ALIGNEMENT PARFAIT)
   ========================================================================== */
header {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background-color: #f8f9fa !important; 
    padding: 5px 32px !important;
    min-height: 65px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important; 
    
    /* SYNTAXE CORRIGÉE : Le !important unique à la fin après la virgule */
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03), 
                0 1px 3px rgba(0, 0, 0, 0.02) !important;
                
    box-sizing: border-box !important;
    z-index: 9999 !important;
}

/* Force le centrage vertical du conteneur de navigation WordPress */
.header-nav-container {
    display: flex !important;
    align-items: center !important; /* Aligne la capsule au centre exact du header */
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
}

/* LA CAPSULE MENU (Ajustée et compacte) */
.nav-menu {
    display: flex !important;
    align-items: center !important; /* Centre les liens horizontalement à l'intérieur */
    gap: 2px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 4px 6px !important; /* Plus compact pour ne pas créer d'épaisseur inutile */
    background: #ffffff !important; /* Fond blanc pur */
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 9999px !important;
}

/* Suppression des icônes parasites */
.nav-menu li a svg, .nav-menu li a .icon, .nav-menu li a i {
    display: none !important; 
}

.nav-menu li {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Les boutons de liens à l'intérieur de la capsule */
.nav-menu li a {
    color: #4b5563 !important;
    font-size: 15px !important; /* Taille légèrement réduite pour un effet "App" plus net */
    font-weight: 600 !important;
    text-transform: capitalize !important;
    padding: 6px 14px !important; /* Marges internes des liens équilibrées */
    line-height: 1 !important; /* Empêche le texte de pousser la hauteur de la capsule */
    border-radius: 9999px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}

/* Hover à l'intérieur de la pilule */
.nav-menu li a:hover {
    color: #111827 !important;
    background-color: #f3f4f6 !important;
}

/* Sécurité : Alignement des blocs centraux (Membres / Partenaires) */
.counter-wrapper {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}
.language-selector {
    display: flex;
    gap: 10px; /* Espace entre les icônes de langue */
    list-style: none; /* Enlever les puces */
    padding: 0; /* Enlever le padding par défaut */
}

.language-selector li {
    display: flex;
    align-items: center;
}

.language-selector img {
    height: 30px; /* Taille de l'image */
    width: auto; /* Garde la proportion */
}

/* Logo du site */
.site-logo {
    margin-left: 20px;
}

.site-logo img {
    height: 60px; /* Taille du logo */
    width: auto;
}

/* Menu principal - style horizontal */
.nav-menu, .footer-menu  {
    display: flex;
    gap: 20px;
    margin-right: 50px;
}

/* Éléments du menu principal */

.nav-menu li a {
    text-decoration: none;
    color: #e2e2e6;
    font-size: 16px;
    padding: 10px;
    transition: color 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
}

/* Icône à gauche du texte */
.nav-menu li a .icon {
    margin-right: 8px;
    font-size: 18px;
    color: #e2e2e6;
}

/* Effet de survol pour les liens principaux */
.nav-menu li:hover > a {
   color: #ffffff; /* Blanc pur au survol */
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 5px;
}

/* Sous-menus - style vertical avec transparence */
.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(247, 247, 247); /* Transparence à 0.9 */
    width: 200px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* Ombre plus foncée et plus large */
    border-radius: 5px;
    z-index: 20; /* Assure que le sous-menu passe au-dessus du slider */
}

/* Affiche les sous-menus au survol */
.nav-menu li:hover .sub-menu {
    display: block;
}

/* Style des liens des sous-menus */
.nav-menu .sub-menu li {
    width: 100%;
}

.nav-menu .sub-menu li a {
    padding: 10px 15px;
    color: #333333;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.nav-menu .sub-menu li a:hover,.nav-menu .sub-menu li:hover a {
    background-color: #c70000 !important;
    color: #ffffff !important;
    width: 100%;
}

/* Désactive le clic sur le lien à l'intérieur d'un LI ayant la classe no-link */
li.no-link > a {
    pointer-events: none !important;
    cursor: default !important;
}
.main-menu-item:before {
    color:white;
}

/* Optionnel : Si tu veux quand même que l'élément parent ouvre le sous-menu au survol en JS/CSS */
.no-link {
    pointer-events: auto; /* On s'assure que le <li> parent capte toujours le survol */
}
/* ==========================================================================
   BARRE DE NOTIFICATION - SÉCURISÉE JS & FOND NOIR
   ========================================================================== */
.gm-notifier-bar {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    height: 40px !important;
    background: #000000 !important; /* Noir total */
    overflow: hidden !important;
    opacity:0.5;
    position: relative !important;
    z-index: 99999 !important;
    box-sizing: border-box !important;
}

.gm-notifier-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 16px !important;
    background: #000000 !important; /* Supprimé le fond orange, passe en noir */
    color: #ff4f1a !important; /* L'icône elle-même reste colorée pour le style */
    z-index: 10 !important;
    height: 100% !important;
    flex-shrink: 0 !important;
    font-size: 16px !important;
    box-shadow: 8px 0 12px #000000 !important; /* Masque proprement le texte qui passe en dessous */
}

.gm-notifier-ticker {
    flex: 1 !important;
    overflow: hidden !important;
    position: relative !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.gm-notifier-track {
    display: flex !important;
    white-space: nowrap !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    height: 100% !important;
    align-items: center !important;
    will-change: transform !important;
}

.gm-notifier-text {
    color: #ffffff !important; /* Visibilité maximale */
    font-size: 13.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    padding-right: 50px !important; /* Espace de sécurité */
}
/* Wrapper du compteur avec un décalage à gauche de 80px */
.counter-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: 80px; /* Décale le compteur de 80px à gauche */
}

.wp-block-separator.has-background:not(.is-style-dots)  {
    margin:0 !important;
    height:3px;
}

/* Style de chaque compteur */
.counter {
    display: flex;
    align-items: center;
    background-color: #c70000; /* Couleur de fond pour mettre en valeur */
    color: #ffffff;
    padding: 5px 10px; /* Augmente légèrement la taille des boutons */
    border-radius: 5px;
    font-weight: bold;
}

/* Icône du compteur */
.counter-icon {
    font-size: 20px;
    margin-right: 8px;
}

/* Label et valeur du compteur */
.counter-label {
    margin-right: 5px;
    font-size: 14px;
}

.counter-value {
    font-size: 16px;
}

/* Style du compteur des membres */
.counter.counter-members,.membres {
    background-color: #000000; /* Couleur de fond rouge pour les membres */
}

/* Style du compteur des partenaires */
.counter.counter-partners,.partenaires {
    background-color: #6b5c5c; /* Couleur de fond gris pour les partenaires */
}

.wp-block-getwid-section__wrapper  {
    padding: 0;
}

/* Style bloc comment ca marche */

.block_noisette {
    padding:50px;
}
.block_noisette img {
    padding-left:40px;
}
.block_noisette .stk-button {
    margin-left:25px;
    margin-top:25px;
}

/* Footer global */
.site-footer {
    background-color: #000; /* Fond noir */
    color: white; /* Texte blanc */
    padding: 20px; /* Padding général */
    width: 100%; /* Assure que la largeur est à 100% */
    box-sizing: border-box; /* Inclut le padding dans la largeur totale */
}

/* Conteneur du footer */
.footer-container {
    width: 95%; /* Largeur à 100% */
    padding: 20px; /* Padding autour du contenu */
    display: flex;
    flex-wrap: wrap; /* Permet aux éléments de s'adapter sur plusieurs lignes */
    justify-content: space-between;
    align-items: center;
}

/* Style des éléments de menu du footer */
.footer-menu-wrapper {
    display: flex;
    justify-content: flex-start; /* Aligne les libellés à gauche */
    align-items: center; /* Centre verticalement les libellés */
    flex-wrap: wrap; /* Permet aux libellés de s'adapter sur plusieurs lignes si nécessaire */
}

.footer-menu li {
    display: flex;
    align-items: center; /* Centré verticalement */
    margin: 0 10px; /* Espacement horizontal entre les éléments */
}

.footer-menu li a {
    color: white; /* Texte blanc */
    font-size: 16px; /* Taille de police */
    text-decoration: none;
    padding: 10px 15px; /* Padding autour des liens */
    transition: color 0.3s ease, background-color 0.3s ease;
    display: inline-block; /* Affiche sur une seule ligne */
}

/* Effet au survol des liens */
.footer-menu li a:hover {
    color: #dce400; /* Jaune clair au survol */
    background-color: rgba(233, 30, 99, 0.1); /* Fond léger au survol */
    border-radius: 5px;
}

/* Pour le copyright */
.footer-copyright {
    text-align: right;
    font-size: 0.8em;
    color:white;
}

/* Pour les icônes Dashicons dans le footer */
.footer-menu li a .dashicons {
    color: white; /* Icônes blanches */
    font-size: 20px; /* Taille des icônes */
    margin-right: 10px;
    transition: color 0.3s ease;
}

/* Effet au survol des icônes */
.footer-menu li a:hover .dashicons {
    color: #dce400; /* Jaune clair au survol */
}
/* Style pour chaque bloc contenant une image */
.website-block {
    margin-top:30px;
    background-color: #ffffff; /* Fond blanc */
    border-radius: 20px; /* Coins arrondis */
    padding: 20px; /* Padding autour de l'image */
    display: inline-block; /* Affiche les blocs en ligne */
    margin-left:20px;
}

/* Ajustement des images */
.website-block img {
    height: 100px; /* Hauteur de l'image */
    width: auto; /* Largeur proportionnelle */
    display: block; /* Pour éviter l'espace sous l'image */
    margin: 0 auto; /* Centre l'image */
}

/* Block */
.n2_clear {
    border-bottom:3px solid #CCCCCC;
}
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
    width: 100%;
    margin: 0;
}
.wp-block-separator {
    border: none;
    width: 100%;
    border-bottom: 10px solid #CCCCCC;

}



/* S'assure que le conteneur s'adapte bien à l'image */
.acf-formulaire-container {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Prend toute la hauteur de l'écran pour un effet immersif */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    box-sizing: border-box;
}

.acf-formulaire p {
 margin-block-start: 0.5em;
 margin-block-end: 0.5em;
}

.acf-formulaire select {
    padding:5px;
}


/* Appliquer un style uniquement aux labels pour les champs input */
.acf-formulaire-container label {
    display: inline-block;
    min-width: 200px; /* Largeur minimale pour aligner les labels */
    text-align: left; /* Aligner le texte des labels à gauche */
    margin-right: 10px; /* Ajouter un peu d'espace entre le label et l'input */
}

/* Assurez-vous que les champs input sont alignés à droite du label */
.acf-formulaire-container input[type="text"],
.acf-formulaire-container input[type="email"],
.acf-formulaire-container input[type="password"],
.acf-formulaire-container input[type="number"],
.acf-formulaire-container input[type="date"],
.acf-formulaire-container input[type="url"] {
    display: inline-block;
    width: calc(100% - 100px); /* Ajustez en fonction de l'espacement total */
    max-width: 265px; /* Limite la largeur si nécessaire */
}

.acf-formulaire-bloc {
    display: flex;
    flex-direction: column;
}

/* Masque la croix uniquement sur la toute première ligne de chaque répéteur */
.acf-repeater-wrapper .acf-repeater-item:first-child .acf-repeater-delete {
    display: none !important;
}

.acf-formulaire-icone img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.acf-formulaire-dashicons {
    font-size: 24px;
    margin-bottom: 10px;
}

.acf-formulaire-champ {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top:5px;
}

.acf-formulaire-champ label {
    font-weight: bold;
}

.acf-formulaire-champ input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.acf-formulaire-actions button {
    background-color: #0073aa;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    margin-top:20px;
    cursor: pointer;
    font-size: 14px;
}

.acf-formulaire-actions button:hover {
    background-color: #005177;
}

.header-icon-circle svg path {
    fill: inherit !important;
}

/* --- 1. Le conteneur parent (Boîte globale qui contient l'onglet + le formulaire) --- */
.acf-containter-second {
    position: relative;       /* Indispensable pour caler l'aplat noir tout en haut par rapport à lui */
    width: 65%;
    /* On ajoute un gros padding en haut pour laisser de la place à l'aplat noir et au titre */
    padding-top: 200px;       
}

/* --- Le bandeau noir (La zone qui s'anime) --- */
.acf-formulaire-titre-wrapper {
    position: absolute;
    width: 100% !important;
    height: 175px;
    background: #1e1e1e !important;
    padding: 40px 35px !important;
    box-sizing: border-box !important;
    z-index: 10 !important;
    text-align: left !important;
    margin-bottom: 0 !important;
    left: auto !important;
        
        /* État initial masqué (Effet Parachute) */
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.mentions-legales {
    top:0;
    height: 115px !important;
}

/* --- Classe pour déclencher l'animation --- */
.acf-formulaire-titre-wrapper.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* --- 3. STYLE DU TEXTE ET DE L'ICÔNE SUR FOND NOIR --- */

/* 2. Style unifié pour le "Cercle Médaille" (Image ou Dashicon) */
.acf-formulaire-titre-wrapper .acf-formulaire-titre-icone,
.acf-formulaire-titre-wrapper .dashicons {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    
    width: 45px !important;
    height: 45px !important;
    
    /* Le cercle */
    border: 2px solid #ffffff !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    
    /* Centrage contenu */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* Couleur */
    color: #ffffff !important;
    font-size: 20px !important; /* Pour le dashicon */
}

/* Ajustement spécifique pour l'image dans le cercle */
.acf-formulaire-titre-wrapper .acf-formulaire-titre-icone {
    object-fit: contain;
    padding: 8px; /* Pour que l'image ne touche pas les bords du cercle */
}

/* 3. Ajustement du titre pour ne pas passer sous la médaille */
.acf-formulaire-titre-wrapper .acf-formulaire-titre {
    margin: 0 !important;
    padding-right: 60px !important; /* Espace pour la médaille */
    color: #ffffff !important;
    font-size: 24px;
}

/* --- 5. Le Formulaire Blanc --- */
.acf-formulaire {
    position: relative;
    z-index: 2;              /* S'assure de rester bien au-dessus */
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);    
}

.acf-formulaire-container .compte {
    background-color:rgb(0, 0, 0);
    color:white;
    width:50%;
}

/* Options Checkbox */
.acf-checkbox-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.acf-checkbox-label {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Champ Date Picker */
input[type="date"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* Boutons radio et checkbox */
.acf-radio-options,
.acf-checkbox-options {
    display: flex;
    flex-wrap: wrap; /* Permet un retour à la ligne si nécessaire */
    gap: 10px; /* Espacement horizontal et vertical entre les options */
    font-size:13px;
}

.acf-radio-label,
.acf-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
}

/* Bouton de soumission */
.acf-submit-button {
    background-color: #c70000;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
    width: 100%; /* Largeur pleine */
}

.acf-submit-button:hover {
    background-color: #a00000;
}


/* Galerie */
input[type="file"] {
    margin-top: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* Conteneur principal */
.acf-repeater {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
}

/* Champs des répétiteurs alignés sur une seule ligne */
.acf-repeater-item {
    display: flex;
    align-items: center;
    gap: 20px; /* Espacement entre chaque champ */
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.acf-repeater-item:last-child {
    border-bottom: none;
}

/* Libellés espacés correctement */
.acf-repeater-item label {
    font-weight: bold;
    margin-right: 10px; /* Espacement entre le label et le champ */
    white-space: nowrap; /* Évite le retour à la ligne */
    font-size: 13px;
}

.acf-repeater-item label.timepicker, .acf-repeater-item label.jours,.acf-repeater-item label.activite {
    min-width: 10px;
}
.activites .acf-repeater-item .acf-repeater-champ {
    display: contents;
}
.activites .acf-repeater-item .acf-repeater-champ div {
    margin-top: 20px;
}

.activites .acf-checkbox-options label {
    min-width:220px;
}

.lieux .acf-repeater-item .acf-repeater-champ {
    width: 100%;
}


/* Espacement des champs */
.acf-repeater-item input,
.acf-repeater-item select {
    flex: 1; /* Prend toute la place disponible */
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Bouton pour ajouter une entrée */
.acf-repeater-add {
    margin-top: 10px;
    padding: 10px 15px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
}

.acf-repeater-add:hover {
    background: #005177;
}


.acf-repeater-delete {
    font-size: 16px;
    color: #d9534f; /* Rouge pour la croix */
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    float: left;
    margin-right: 10px; /* Espacement à droite si nécessaire */
}

.acf-repeater-delete:hover {
    color: #c12e2a; /* Couleur plus sombre au survol */
}

.acf-repeater-delete:focus {
    outline: none; /* Supprime le contour du focus */
}


/* Actions des boutons */
.acf-repeater-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* Espacement vertical */
.acf-repeater {
    margin-top: 20px;
}

/* Instructions sous les champs */
.acf-instructions {
    font-size: 12px !important;
    color: #777; /* Gris pour les instructions */
    margin-left: 10px;
}

.top {
    vertical-align: top;
}

/* Répétiteur */
.acf-repeater-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

/* Champs du répétiteur alignés sur une ligne */
.acf-repeater-item {
    display: flex;
    flex-wrap: wrap; /* Permet un retour à la ligne si nécessaire */
    gap: 10px; /* Réduit l'espacement entre les champs */
}

/* Champ 'jours' avec un select (réduit en largeur) */
.acf-repeater-item select[name*="jours"] {
    width: 120px; /* Réduit la largeur du champ 'jours' à 120px */
    padding: 4px 6px; /* Réduit la taille du padding */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px; /* Taille de police réduite */
    margin-bottom: 5px; /* Espacement inférieur */
}

/* Champs date et time_picker ajustés */
.acf-repeater-item input[type="date"],
.acf-repeater-item select {
    padding: 4px 6px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px; /* Taille de police réduite */
    margin-bottom: 5px; /* Espacement inférieur */
}

/* Champs heure et minute alignés sur la même ligne, plus petits */
.acf-repeater-item select[name*="hour"], 
.acf-repeater-item select[name*="minute"] {
    padding: 4px 6px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px; /* Taille de police réduite */
    margin-bottom: 0; /* Supprime l'espacement vertical */
}

/* Espacement pour les champs heure et minute */
.acf-repeater-item .acf-repeater-champ {
    display: inline-block;
    width: 30%; /* Ajuste la largeur des champs heure et minute */
}


/* Customisation des boutons */
.acf-submit-button {
    background-color: #c70000;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
    width: 100%; /* Largeur pleine */
}

.acf-submit-button:hover {
    background-color: #a00000;
}
/* Champ range (slider) */
.acf-repeater-item input[type="range"] {
    width: 100%; /* Utilise toute la largeur disponible */
    padding: 0;
    margin: 10px 0; /* Ajoute un peu d'espace autour */
    background: #ddd; /* Fond gris clair */
    border-radius: 5px;
    height: 10px; /* Hauteur du curseur */
}

/* Pour les navigateurs Webkit (Chrome, Safari, etc.) */
.acf-repeater-item input[type="range"]::-webkit-slider-runnable-track {
    background: #ddd;
    border-radius: 5px;
    height: 10px;
}

.acf-repeater-item input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #0073aa;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

/* Style de la sortie (valeur affichée sous le slider) */
.acf-repeater-item output {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}

/* La classe cacher masque l'élément */
.cacher {
    display: none;
    height:0;
    padding:0;
    margin:0;
}
/* --- Conteneur global --- */
.acf-avancement {
    margin-top: 50px;
}

/* --- Les ronds (étapes) --- */
.acf-etapes-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -21px;
}

.acf-etape {
    width: 40px !important;    /* Taille réduite pour moins de lourdeur */
    height: 40px !important;
    line-height: 40px !important;
    border-radius: 50%;
    border: 2px solid #cbd5e0; /* Gris par défaut */
    color: #000000;
    background: #ffffff;
    text-align: center;
    z-index: 10000;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Étape active : Vert */
.acf-etape.active {
    border-color: #2d5a27 !important;
    background: #2d5a27 !important;
    color: #ffffff !important;
}

/* --- La barre de progression --- */
.acf-etapes-trait-wrapper {
    position: relative;
    height: 3px;               /* Trait beaucoup plus fin */
    background: #e2e8f0;       /* Gris très clair */
    border-radius: 2px;
    overflow: hidden;
}

.acf-etapes-trait-active {
    height: 100%;
    background: #2d5a27 !important; /* Ton Vert */
    transition: width 0.5s ease;
}

/* Suppression de la séparation inutile si elle encombre */
.acf-etape-separation {
    display: none; 
}

.acf-descriptif {
    font-size: 14px;
    color: white; /* Couleur standard des commentaires ACF */
}
.acf-instructions {
    font-size: 13px;
    color: #999;
}

.acf-instructions.success {
    color: #28a745;
    font-weight: bold;
    position: relative;
}

.acf-instructions.success .success-bubble {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    width: 16px;
    height: 16px;
    text-align: center;
    border-radius: 50%;
    margin-left: 10px;
}
.acf-submit-button {
    background-color: #0073aa;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.acf-submit-button:hover:not(.disabled) {
    background-color: #005177;
}

.acf-submit-button.disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.6;
}

.error-message {
    color:red;
    font-weight: bold;
    font-style: normal;
}

.photo-previews {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;

}
.description {
    font-size: 12px;
    margin-top:10px;
    margin-bottom:10px;
    margin-left:150px;
}

.photo-previews img.thumbnail {
    margin: 5px;
    border: 2px solid #ddd;
    border-radius: 4px;
}

.preview-wrapper {
    position: relative;
    display: inline-block;
}

.delete-preview-button {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: white;
    color: red;
    border-radius: 50%;
    border: none;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.delete-preview-button:hover {
    background-color: #f0f0f0; /* Changer la couleur de fond au survol */
}

.delete-preview-button:focus {
    outline: none; /* Supprimer l'effet de surbrillance au focus */
}

/***** connexion *****/

/* Conteneur global fixe à droite */
#user-info-container, #login-container  {
    position: fixed;
    top: 190px;
    right: 0;
    width: 280px;
    background: darkred;
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 4px 10px rgba(0, 0, 0, 0.3);
    color: white;
    z-index: 10000;
    transition: transform 0.4s ease-in-out;
}

/* Place ceci APRES tes règles existantes */
#user-info-container.partenaires,
#login-container.partenaires {
    background: rgba(107, 92, 92, 0.85);
}

#user-info-container.partenaires #user-info-toggle {
    background: rgba(107, 92, 92, 0.85); /* #6b5c5c avec transparence */
}

#user-info-container.membres,
#login-container.membres {
    background: rgba(0, 0, 0, 0.85);
}

#user-info-container.membres #user-info-toggle {
    background:rgba(0, 0, 0, 0.85);
}


/* Icône lock */
#user-info-toggle .dashicons {
    font-size: 20px;
    color: white;
}

/* Wrapper avec transition pour repli */
#user-info-wrapper {
    overflow: hidden;
    transition: transform 0.4s ease-in-out;
}

/* On force le repli par défaut en CSS si la classe est présente */
#user-info-container.collapsed {
    transform: translateX(280px) !important;
}


/* Contenu interne */
#user-info,#login-container {
    padding: 20px;
}


/* Bouton de bascule (rond noir avec l'icône) */
#user-info-toggle {
    position: absolute;
    left: -30px; /* positionné à gauche du conteneur */
    top: 50%; /* centré verticalement */
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
     background: darkred;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 11000;
}

/* Forcer l'utilisation de la police dashicons pour l'icône */
#user-info-toggle .dashicons {
    position: relative;
    margin-right: 32px;
    margin-bottom:18px;
    font-size: 40px;
    color: white;
    font-family: dashicons !important;
}

#user-info ul,#event-container ul {
    list-style-type: none;
    padding:5px;
    margin:0px;
}

#user-info ul li:before {
    font-size: 25px;
}

#user-info ul li a {
    text-decoration: none;
    color: white;
    font-size:14px;
    margin-left:25px;
    font-weight: 700;
    line-height: 35px;
    cursor: pointer;
}

#user-info ul li a:hover  {
    color: #ff9800;
}

/* Champs du formulaire */
#login-form input {
    width: 93%;
    padding: 12px; /* Plus de padding */
    margin: 8px 0; /* Plus d’espace entre les champs */
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

#login-form input[type="checkbox"] {
    width:20%;

}
/* Bouton Connexion */
#login-form button,
#logout-button,
#event-container button {
    width: 100%;
    background: #ff9800;
    border: none;
    padding: 12px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

#login-form button:hover,
#logout-button:hover,
#event-container button:hover 
{
    background: #e68900;
}

/* Lien "Mot de passe oublié" */
#forgot-password,#inscription {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: #ffcc80;
    font-size: 0.9em;
    text-decoration: none;
}

#forgot-password:hover,#inscription:hover {
    text-decoration: underline;
}
/* Trait de séparation */
.separator {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 15px 0;
}

/* Bouton de création de compte */
#create-account-button-membre {
    display: block;
    text-align: center;
    background: #000000;
    color: white;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    margin-bottom:10px;
    transition: background 0.3s ease;
}
#create-account-button-partenaire {
    display: block;
    text-align: center;
    background: #6b5c5c;
    color: white;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s ease;
}

#create-account-button-membre:hover,#create-account-button-partenaire:hover {
    border:1px solid white;
}
/***** EVENTS ************/

/* ✅ Conteneur des événements */
#event-container {
    position: fixed;
    top: 250px;
    left: 0;
    width: 250px;
    background: #ffffff;
    border-radius: 0px 10px 10px 0px;
    box-shadow: -2px 4px 10px rgba(0, 0, 0, 0.3);
    color: white;
    z-index: 100000;
    transition: transform 0.4s ease-in-out;
    padding: 5px;
    border: 2px solid gray; /* Gris par défaut */
}



/* ✅ Appliquer la bordure dynamique selon la sélection */
#event-container[data-color] {
    border-color: var(--event-color);
}

/* ✅ Menu des événements */
#event-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: 85px;
    position: relative;
    z-index: 10001;
}

#event-menu li {
    display: flex;
    position:relative;
    align-items: center;
    pointer-events: auto;
    padding: 5px;
    cursor: pointer;
    transition: background 0.3s;
    color: black;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 700;
    z-index: 10;
}

#event-menu li img {
    position:relative;
    width: 30px;    
    height: 30px;
    margin-right: 10px;
}

#event-menu li a {
    text-decoration: none;
    color: inherit; /* Applique la couleur du texte dynamique */
}


/* ✅ Appliquer la couleur de l’intérêt sélectionné */
#event-menu li.active {
    color: var(--event-color);
    transition: color 0.3s ease, background-color 0.3s ease;
}
#event-menu li a:hover {
    opacity: 0.8;
}

/* ✅ Toggle pour le menu des événements */
#event-toggle {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 11000;
}

#event-toggle .dashicons {
    position: relative;
    margin-right: 22px;
    margin-bottom:18px;
    font-size: 40px;
    color: white;
    font-family: dashicons !important;
}
/* Quand le conteneur est replié */
#event-container.collapsed {
    transform: translateX(-265px); /* Recule de 245px (largeur - 5px visibles) */
}

/* Forcer la transition fluide */
#event-container {
    transition: transform 0.4s ease-in-out;
}

/* ✅ Appliquer la couleur de la bordure dynamiquement */
:root {
    --event-color: gray; /* Par défaut */
}
/* Style des cartes événements */
.event-card {
    width: 250px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #333;
    margin-bottom: 15px;
}

.event-card h3 {
    margin: 0 0 10px;
}

.event-card .event-actions {
    margin-top: 10px;
    text-align: center;
}

.event-card button {
    background: #ff9800;
    width:93%;
    border: none;
    padding: 10px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.event-card button:hover {
    background: #e68900;
}
.event-card .msg_locked {
    color:red;
    font-weight: 700;
}

.btn-url-voyage {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: left;
}
.btn-url-voyage:hover {
    background: #f0f0f0;
    border-color: #bbb;
    transform: translateX(3px);
}

/* 1. Cas par défaut : Image seule (pas cliquable) */
.participant-info > img.participant-icon {
    opacity: 0.3;
    cursor: default;
}

/* 2. Cas spécifique : Image dans un lien (cliquable / à valider) */
.participant-info a[data-action="moderation_user"] img.participant-icon {
    opacity: 1; /* On remet l'opacité pleine */
    animation: pulse-validation 1.5s infinite ease-in-out;
    border-radius: 50%; /* Optionnel : pour un effet plus propre sur l'icône */
    box-shadow: 0 0 0 rgba(255, 165, 0, 0.4); /* Optionnel : lueur orange */
}

/* 3. Définition de l'animation de clignotement */
@keyframes pulse-validation {
    0% {
        transform: scale(0.95);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.3); /* L'image devient plus lumineuse */
    }
    100% {
        transform: scale(0.95);
        filter: brightness(1);
    }
}

.wp-block-getwid-section__content {
    position: relative;
    z-index: auto; /* ou 0 si nécessaire */
}
/* ✅ Correction du champ de recherche Google Maps */
.acf-google-map .map-search-box {
    display: block !important;
    width: 500px !important;
    max-width: 600px !important;
    height: 30px !important;
    padding: 5px !important;
    border: 2px solid #007bff !important;
    border-radius: 5px !important;
    outline: none !important;
    margin: 10px auto !important; /* Centrer le champ */
    transition: all 0.3s ease-in-out !important;
}
.map-image-slider {
    margin-top: 15px;
    width: 100%;
    max-width: 600px;
}

.map-image-slider img {
    width: 100%;
    border-radius: 5px;
    display: block;
}

/* Le conteneur doit être en position relative */
.custom-event-slider {
    position: relative;
    overflow: hidden;
}

/* On réinitialise les flèches Swiper */
.swiper-button-prev, 
.swiper-button-next {
    position: absolute !important; /* Force la sortie du flux */
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
}

/* La flèche gauche à gauche */
.swiper-button-prev {
    left: 10px !important;
    right: auto !important;
}

/* La flèche droite à droite */
.swiper-button-next {
    right: 10px !important;
    left: auto !important;
}

/* On cache l'icône par défaut si besoin et on stylise le chevron */
.swiper-button-prev:after, 
.swiper-button-next:after {
    font-size: 18px !important;
    color: #ff9800 !important;
}
  
.custom-event-slider .swiper-slide {
display: flex;
justify-content: center;
align-items: stretch;
}

.custom-event-slider .event-card {
width: 100%;
max-width: 400px;
padding: 10px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
color: #333;
position: relative;
}

  

.slider-item {
    position: relative;
}

/* Le masque qui vient lisser l'image et faire claquer ton texte */
.slider-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* On s'assure que le texte reste bien au-dessus du masque */
.slider-content {
    position: relative;
    z-index: 2;
}

  /* Chaque slide */

  
  /* Carte de l'événement */
  .event-card {
    position: relative;
  }

  .event-card .gauche {
    float:left;
    width:100%;
  }

  .event-card .droite{
    width:60%;
    text-align: right;
    float:right;
  }

  .event-card .bloc_event {
    width:100%;
    font-size:14px;
  }

 
  .event-infos p.event-description {
    font-size:12px;
    padding-bottom:15px;
  }

  /* Onglet membre/partenaire en haut */
  .event-onglet {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    padding: 3px 8px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
    font-size: 0.8em;
  }
  
  /* Tag interest en haut à droite */
  .event-tag-interest {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px;
    border-radius: 0 8px 0 8px;
    color: #fff;
    font-size: 0.8em;
  }
  
  /* Infos événement */
  .event-infos p {
    margin: 5px 0;
    font-size: 0.9em;
  }
  
  /* Carte Google Map dans la slide */
  .event-map {
    margin-top: 10px;
    position: relative;
  }
  .event-map .acf-google-map {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
  }
  .map-itineraire-bubble {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    padding: 5px 10px;
    border-radius: 20px;
  }
  .map-itineraire-bubble .btn-directions {
    color: #fff;
    background: none;
    border: none;
    font-size: 0.9em;
    cursor: pointer;
  }
  .map-itineraire-bubble button:hover {
    background: none !important;
    opacity:0.8;
  } 
  
  .participants-ul {

    list-style: none;
    padding: 0;
    margin: 0;

}

.participant-slot {
    text-align: left;
    padding: 4px;
    position: relative;
    line-height: 45px;
    font-size: 13px;
    font-weight: bold;
}

.participant-info {
    line-height:45px;
    font-size: 13px;
}

.participant-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right:15px;
    float:left;
}
.participant-icon {
    width: 32px;
    height: 32px;
    margin-left:15px;
    float:right;
}

.owner {
    font-size:14px;
}

.remove-slot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    font-size: 14px;
    background: red;
    cursor: pointer;
}

.event-participants h4 {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 0.5em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    padding: 5px;
    unicode-bidi: isolate;
    border-bottom: 1px solid black;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    left:0;
}

.modal-box {
    background-color: #fff;
    max-width: 100vw;
    max-height: 100vh;
    overflow-y: auto;
    top:0px;
    overflow-x: hidden;
    border-radius: 12px;
    box-sizing: border-box;
    width: 100%;
    position: relative;
}

/* Contenu modal (profil utilisateur) */
.profil-user-modal {
    padding: 20px;
    box-sizing: border-box;
}
.user-info-section {
    line-height: 24px;
}


.modal-box button {
    margin: 10px;
    padding: 8px 16px;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    transition: background 0.3s;
}
.modal-box button:hover {
    opacity: 0.8;
}

.event-participants .msg_information {
    font-size:12px;
    color:red;
    float:right;
}
.participant-info a {
    text-decoration: none;
}
.participant-info a:hover {
    color:#e68900;
}
.user-modal-content {
  width: 90vw;
  height: 80vh;
  overflow-y: auto;
  padding: 20px;
  background: #fff;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-bottom: 15px;
}

.user-sticker {
  position: absolute;
  top: -17px;
  right: 0px;
  background: #000000;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  text-transform: uppercase;
  z-index:10;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}
#close-modal {
  cursor: pointer;
  margin-top:50px !important;
}

.user-profile {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.profile-photo {
  width: 250px;
  height: 300px;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.profile-infos {
  flex: 1;
}

.user-details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.user-col {
  flex: 1 1 45%;
}

.user-tags {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.user-tags li,
.user-tag {
  background: #eee;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
}

.user-sports {
  list-style: none;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
}

.user-sports li,
.user-sports {
  background: #a1f291;
  padding: 6px 12px;
  line-height: 18px;
  border-radius: 20px;
  font-size: 12px;
}

.user-tabs {
  margin-top: 20px;
}

.user-tab-menu {
  display: flex;
  list-style: none;
  padding: 0;
  border-bottom: 2px solid #ddd;
  margin-bottom: 15px;
}

.user-tab-menu li {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}

.user-tab-menu li.active {
  border-bottom-color: #339af0;
  font-weight: bold;
}

.user-tab-content {
  display: none;
}

.user-tab-content.active {
  display: block;
}
.user-photo-slider-container {
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    box-sizing: border-box; /* ✅ empêche dépassement */
}

.user-photo-slider {
    width: 100%;
    height: 100%;
}

.user-photo-slider .swiper-wrapper {
    height: 100%;
}

.user-photo-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.user-photo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

/* Pagination */
.swiper-pagination-bullet {
    background-color: white;
    opacity: 0.6;
}
.swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1;
}




.nav-tabs {
    display: flex;
    gap: 1rem;
    margin-top: 20px;
}
.nav-tabs li {
    cursor: pointer;
    padding: 10px;
    background: #e5e5e5;
    border-radius: 6px;
}
.nav-tabs li.active {
    background: #0073aa;
    color: white;
}
.tab-panel {
    display: none;
    margin-top: 20px;
}
.tab-panel.active {
    display: block;
}

select option.select-placeholder {
    font-weight: bold;
    color: #999;
}
.criteres-wrapper {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.criteres-wrapper label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.criteres-wrapper input[type="range"] {
    width: 100%;
    margin-top: 8px;
}


.criteres-wrapper span {
    font-weight: bold;
    margin-left: 10px;
}


.tab-titles {
    border-bottom: 1px solid #ddd;
    padding: 10px 15px;
    font-weight: bold;
    color:white
}

.tab-title {
    font-size: 16px;
    margin-right: 20px;
}

.full {
    width: 100%;
    clear: both;
}

.bttn-filtre {
    float:right;
    position: relative;
    top:-6px;
    padding: 8px 12px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
}

.recherche-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}


.tab-content  {
    padding :20px;
}

.help {
    text-align:right;
}

.favoris-grid {
    padding:20px;
}

/* Bouton invitation */
.favoris-grid .bttn-filtre {
    background-color: #000000;
}

.favoris-grid .bttn-filtre:hover {
    background-color: #333;
}

/* Empêche le form de s'étirer comme un bloc plein */
#form-recherche-membres {
    display: inline-block;
    width: auto;
    margin: 0 auto;
}


/* Re-style du bouton */
.bttn-filtre {
    float: right;
    background-color: #007cba;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.bttn-filtre:hover {
    background-color: #005fa3;
}

/* Harmonisation inputs/selects */
.filtres input,
.filtres select {
    padding: 8px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 12px;
}

select option.select-placeholder {
    font-weight: bold;
    color: #999;
}


/* ✅ Formulaire des critères */
.criteres-form .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}
.criteres-form .col {
    flex: 1;
    min-width: 160px;
}
.criteres-form input[type="range"] {
    width: 100%;
}
.criteres-form label {
    display: block;
    font-weight: 500;
}



.label_range {
   float: right;
}

.card-buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-favori {
    background: linear-gradient(135deg, #ff9a00 0%, #ff5a00 100%) !important;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-favori.remove {
    background: red !important;
}

.btn-favori:hover {
    opacity: 0.8;
}

.btn-secondary {
    background-color: #eee;
    color: #333;
    border: 1px solid #ccc;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.2s ease;
}

.btn-secondary:hover {
    background-color: #ddd;
}

.interets-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.interet-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-sizing: border-box;
}

.interet-box img {
    max-height: 30px;
    max-width: 30px;
    object-fit: contain;
    cursor: pointer;
}
#invited-event-list .custom-event-slider {
    width: 100%;
    overflow: hidden;
}

#invited-event-list .swiper-slide {
    width: 300px; /* même taille que tes autres cartes */
    flex-shrink: 0;
}
/* Slider */
.photo-slider img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

/* Badge type */
.badge-type {
    background: #6b5c5c;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 14px;
    margin-left: 10px;
}

/* Nom + desc */
.profil-nom {
    font-size: 20px;
    margin: 0;
    color: #ff9800;
}
.profil-desc {
    font-size: 14px;
    color: #444;
}

/* Tags intérêts */
.tags .tag {
    display: inline-block;
    background: #eee;
    color: #000;
    padding: 4px 8px;
    margin: 3px;
    border-radius: 6px;
    font-size: 12px;
}

/* Lieux associés comme bloc_event */
.lieux-associes {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 5px;
    margin-top: 20px;
}
.bloc_event {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}
.lieux-tags {
  list-style: none;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
}

.lieux-tags li,
.lieux-tags {
  background: #f5f5f5;
  padding: 6px 12px;
  line-height: 18px;
  border-radius: 20px;
  font-size: 12px;
}

  .partners-tag-interest {
    float:right;
    width:fit-content;
    padding: 5px 10px;
    border-radius: 0 8px 0 8px;
    color: #fff;
    background-color: #55aa39;
    font-size: 0.8em;
  }

  /* === Bloc global de la FAQ === */
.faq-wrapper {
  width: 99%; /* quasi plein écran */
  max-width: 1920px;
  margin: 100px auto 220px auto; /* plus d'espace en bas */
  padding: 40px 30px 100px; /* réduit la marge latérale, augmente celle du bas */
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

/* === Conteneur des colonnes === */
.faq-container {
  display: grid;
  padding-top:10px;
  padding-bottom:10p;
  grid-template-columns: repeat(5, minmax(250px, 1fr)) !important;
  gap: 20px 30px; /* moins d’espace horizontal, plus d’espace vertical */
  justify-content: center;
  align-content: start;
  box-sizing: border-box;
}


/* === Cartes de catégorie === */
.faq-category {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  height: 90%;
  transition: all 0.25s ease;
}
.faq-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* === Titre === */
.faq-category-title {
  text-align: center;
  color: #ff6600;
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 2px solid #ff660033;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

/* === Questions === */
.faq-item {
  border-bottom: 1px solid #f2f2f2;
  padding: 8px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #222;
  text-align: left;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: #ff6600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: #444;
  font-size: 0.9rem;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  opacity: 1;
  padding-top: 0.4rem;
}


/* === Responsive === */
@media (max-width: 1600px) {
  .faq-container { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1200px) {
  .faq-container { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .faq-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .faq-container { grid-template-columns: repeat(1, 1fr); }
}

/* Bloc générique pour formulaires et sections */
.kroma-block {
    width: 95%;
    margin: 40px auto;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}


/* Header */
.kroma-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #f4a261;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.kroma-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.kroma-header .dashicons {
    font-size: 22px;
    color: #f4a261;
}

/* Texte principal */
.kroma-content p {
    color: #444;
    margin-bottom: 15px;
}

/* Lien de parrainage */
.kroma-ref {
    background: #fef3e2;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.kroma-link {
    display: inline-block;
    background: #f4a261;
    color: #fff;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.kroma-link:hover {
    background: #e76f51;
}

/* Boutons de partage */
.kroma-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 20px;
}

.kroma-share-btn {
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s, background 0.2s;
}

.kroma-share-btn:hover {
    transform: translateY(-2px);
    background: #f4a261;
}

/* Zone de validation */
.kroma-proof-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.kroma-proof-line select,
.kroma-proof-line input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    flex: 1;
    min-width: 150px;
}

.kroma-btn-orange {
    background: #f4a261;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.kroma-btn-orange:hover {
    background: #e76f51;
}

.event-premium {
    border-radius: 12px;
    border: 3px solid #ffd700;

    /* Halo doré puissant au centre, qui se fond dans du blanc */
    box-shadow:
        0 0 12px rgba(255, 215, 0, 0.7),   /* cœur doré fort */
        0 0 28px rgba(255, 240, 180, 0.45),/* diffusion dorée claire */
        0 0 48px rgba(255, 255, 255, 0.6) !important; /* fondu blanc soft */
}

.event-premium .event-onglet,.event-premium .card-buttons a.btn-secondary {
    background-color: #ffd700!important;
}

/* Bouton Abonnement premium */
.btn-abonnement {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #ffd700, #f0c100);
    color: #fff;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.35);
    transition: 0.2s;
}

.btn-abonnement:hover {
    background: linear-gradient(135deg, #f0c100, #d9ad00);
}

.wp-block-table table {
    width:80%;
    margin-left:10px;
    border-radius: 15px;
}

.infos-user-box {
    background: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    font-size: 15px;
    max-width: 500px;
    margin-left:10px;
}

.infos-user-ligne {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.infos-user-ligne strong {
    color: #444;
}
.infos-user-box ul {
    list-style: none;  
    padding-left: 0;
    margin: 10px 0 15px 0;
}

.infos-user-box ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
    font-size: 15px;
    color: green;
    line-height: 1.35;
}

/* Pastille premium */
.infos-user-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: -2px;

    width: 22px;
    height: 22px;
    border-radius: 50%;

    background: #4caf50;           /* vert premium */
    color: #fff;
    font-weight: bold;
    font-size: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.account-subscription {
    margin: 5px 0 0px;
    padding: 3px;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    font-size: 11px;
}

.account-subscription .subscription-line,
.account-subscription .credits-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:5px;
}

.account-subscription .label {
    color: #cfcfcf;
    font-weight: 500;
}

/* Abonnement */
.account-subscription .value.gratuit {
    color: #aaa;
}

.account-subscription .value.premium {
    color: #f5c542;
}

/* Crédits */
.account-subscription .value.credits {
    background: #ff9800;
    color: #000;
    padding: 2px 9px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
}

/* Alerte */
.credits-warning {
    color: #fff;
    padding: 5px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}
.account-subscription a {
    text-decoration: none;
    color:white;
}

.account-subscription .abonnement-link {
    font-weight: 700;
}

.account-subscription .value:hover {
    opacity: 0.85;
}

.page-404-simple {
    width: 100%;
    text-align: center;
}

.img-404 {
    width: 100%;
    height: auto;
    display: block;
    text-align: center;
}
.conditions-validation {
    margin-top: 20px;
    background-color: #f5f1f1;
    display: block;
    padding:20px;
    border-radius: 20px;
}

.conditions-title {
    font-weight: 600;
    padding-bottom: 10px;
}

.conditions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.conditions-list li {
    margin-bottom: 10px;
}

.conditions-list label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 18px;
}

.conditions-list input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.conditions-list a {
    color: #7a2cff;
    font-weight: 600;
    text-decoration: none;
}

.conditions-list a:hover {
      color: grey;
}

.acf-success-message {
    padding: 15px;
    background: #e6fff1;
    border: 1px solid #2ecc71;
    color: #2ecc71;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
}

.pack-noisette-box {
    max-width: 300px;
    margin: 10px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.pack-header, .pack-abonnement {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px !important;
    margin-bottom: 15px !important;
}

.pack-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ff8c00; /* Ton orange */
}

.bonus-row {
    background-color: #f0fff4; /* Un vert très léger pour le bonus */
    padding: 8px !important;
    border-radius: 4px;
}

.bonus-valeur {
    color: #27ae60;
    font-weight: bold;
}

/* Alignement responsive pour mobile */
@media (max-width: 600px) {
    .pack-noisette-box {
        display: block;
        margin: 15px auto;
        max-width: 100%;
    }
}

.abonnement-card {
    max-width: 320px;
    margin: 10px;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #d1d1d1;
    background: #fdfdfd;
}

.abo-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2019F8; /* Une couleur différente (violet) pour l'abonnement */
    position: absolute;
    right:40px;
}
.pack-header .abo-price {
    color:#F76356;
}



.abo-price small {
    font-size: 0.8rem;
    color: #777;
    font-weight: normal;
}

.bonus-label-abo {
    font-size: 0.9rem;
    line-height: 1.3;
    display: block;
    color: #444;
    font-style: italic;
}

/* On peut changer la couleur du bouton pour l'abonnement si tu veux */
.abonnement-card .btn-abonnement {
    background-color: #6200ea; 
    display: block;
    text-align: center;
}

.abonnement-card .btn-abonnement:hover {
    background-color: #4500b5;
}

.total-row {
   
    margin: 10px 0 !important;
    font-size: 18px;
}

.total-valeur {
    font-weight: 800;
    color: #333;
}

/* Titre plus visible */
.glameeto-pack-title {
    font-size: 1.6rem !important;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

/* Container des bonus */
.glameeto-bonus-wrapper {
    margin: 10px 0;
    padding: 5px 0;
}

.glameeto-bonus-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.glameeto-bonus-list li {
    position: relative;
    padding-left: 28px !important;
    margin-bottom: 8px !important;
    color: #27ae60 !important;
    font-weight: bold;
    font-size: 0.95rem;
    line-height: 1.2;
}

/* Le rond vert */
.glameeto-bonus-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #27ae60;
    border-radius: 50%;
}

/* Le "V" blanc (checkmark) */
.glameeto-bonus-list li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 5px;
    width: 7px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

/* Optionnel : Légère ombre sur la box pour la mettre en avant */
.pack-noisette-box, .abonnement-card {
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.pack-noisette-box:hover, .abonnement-card:hover {
    transform: translateY(-3px);
}

/* Container global pour bien aligner les cartes sur une ligne */
.pricing-container {
    display: flex;
    flex-wrap: wrap; /* Permet de passer à la ligne sur mobile */
    gap: 20px;
    justify-content: center;
    align-items: stretch; /* Force toutes les cartes à avoir la même hauteur */
}

/* Style des cartes */
.pack-noisette-box, .abonnement-card.flex-card {
    display: inline-flex !important; /* Pour rester côte à côte */
    flex-direction: column;
    width: 300px; /* Taille fixe pour garder l'alignement */
    min-height: 280px; /* On augmente un peu pour être large */
    margin: 10px;
    vertical-align: top;
}

/* On regroupe le contenu du haut */
.card-top-content {
    flex-grow: 1; /* Prend tout l'espace disponible */
}

/* On force le bouton tout en bas */
.abonnement-stop-wrapper {
    margin-top: auto !important; 
    padding-top: 15px;
}

/* Titre bien gros comme demandé */
.glameeto-pack-title {
    font-size: 1.6rem !important;
    font-weight: 800;
    display: block;
}

/* On cible via le body et la classe du champ pour écraser les styles du thème */
body .acf-field .acf-instructions.error {
    color: #ff0000 !important;
    font-weight: bold !important;
    opacity: 1 !important;
    display: block !important;
    margin-top: 8px !important;
}

body .acf-field .acf-instructions.success {
    color: #27ae60 !important;
    font-weight: bold !important;
}
/* Container principal : Centré et responsive */
.ga-gestion-container {
    max-width: 600px; /* On réduit la largeur pour que ce soit plus élégant au centre */
    margin: 60px auto; /* 60px en haut, auto à gauche/droite pour centrer */
    padding: 0 20px;
}

/* Titre de l'article (au-dessus du bloc blanc) */
.ga-page-title {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* LE BLOC BLANC GESTION */
.ga-card-gestion {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Titres de section (Désactiver, Supprimer) */
.ga-section-title {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

/* LISTE AVEC TES PUCES RONDES */
.ga-liste-points {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ga-liste-points li {
    position: relative;
    padding-left: 35px; /* Espace pour la puce ronde */
    margin-bottom: 15px;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.4;
    min-height: 22px;
    display: flex;
    align-items: center;
}

/* Tes puces circulaires (le code que tu m'as donné) */
.ga-liste-points li::before {
    content: "✔";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%); /* Centrage vertical de la puce */
    width: 22px;
    height: 22px;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 4px;
    border-radius: 50%;
    background: rgb(76, 175, 80); /* Vert pour désactiver */
}

/* Variante Rouge pour la section Suppression */
.ga-liste-suppression li::before {
    content: "✖";
    background: rgb(244, 67, 54);
}

/* Boutons */
.ga-btn {
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 10px;
}
.ga-warning-text {
    font-weight: bold;
    color:red;
}
.ga-message-success {
     font-weight: bold !important;
     color:green !important;
}

.ga-btn-pause { background: #ff9800; color: #fff; }
.ga-btn-delete { background: #f44336; color: #fff; }


/* Espacement entre le formulaire et la liste des avis */
.glsr-form-wrap {
    margin-bottom: 40px !important; /* Crée une séparation franche */
    padding-bottom: 20px;
    border-bottom: 1px solid #eee; /* Optionnel : une fine ligne de séparation */
}

/* Espacement entre chaque avis dans la liste */
.glsr-review {
    margin-bottom: 25px !important;
    padding: 15px;
    background: #f9f9f9; /* Optionnel : un léger fond pour bien distinguer les avis */
    border-radius: 8px;
}

/* Ajustement du titre de la section avis si nécessaire */
.glsr-reviews-header {
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.arrondi {
      border-radius: 8px;
}

#pwa-svg-btn {
    display: none !important;
}

/* Fond de la modale */
.legal-modal {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}
/* Fenêtre */
.legal-modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 600px;
    height: 80vh;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.legal-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.legal-modal-close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}
/* Zone de lecture défilante cruciale */
.legal-modal-scroll-area {
    padding: 20px;
    overflow-y: scroll;
    flex-grow: 1;
    -webkit-overflow-scrolling: touch; /* Scroll fluide iOS */
    line-height: 1.6;
    color: #333;
}
.legal-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    text-align: center;
}
/* Bouton de validation */
#legal-modal-validate-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}
#legal-modal-validate-btn:disabled {
    background-color: #e0e0e0;
    color: #888;
    cursor: not-allowed;
}
#legal-modal-validate-btn:not(:disabled) {
    background-color: #28a745; /* Vert validation */
    color: #fff;
}
.glameeto-chat-direct {
    display: block !important;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 360px;
    height: 480px;
    background: #111111; /* Aligné sur ton thème sombre */
    border: 1px solid #222;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    overflow: hidden;
}

.glameeto-chat-direct .chat-header {
    background: #1a1a1a;
    padding: 12px 15px;
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #222;
    font-size: 14px;
}

.glameeto-chat-direct .chat-body {
    height: calc(100% - 43px);
    overflow-y: auto;
}

/* Conteneur global des toasts */
#glameeto-toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100010; /* Au-dessus de absolument tout */
    width: 92%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none; /* Laisse passer les clics en dessous si invisible */
}

/* Style d'un toast individuel */
.glameeto-toast {
    pointer-events: auto;
    background: black; /* Ton orange GlaMeeto */
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    
    /* Animation d'entrée/sortie */
    opacity: 0;
    transform: translateY(-30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

/* Classe active déclenchée par le JS */
.glameeto-toast.toast-show {
    opacity: 1;
    transform: translateY(0);
}

/* Uniquement pour le Desktop */
@media (min-width: 1024px) {

    /* On cible les wrappers de section et les conteneurs de contenu principaux */
    .wp-block-getwid-section,
    .wp-block-getwid-section__wrapper,
    .entry-content > * {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }


    /* On force le contenu intérieur à ne pas dépasser une certaine largeur */
    .wp-block-getwid-section__inner-wrapper,
    .wp-block-getwid-section__content,
    .ga-card-gestion,
    .entry-content > div,
    .entry-content > section {
        max-width: 1280px !important; /* Largeur confortable pour la lecture */
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        /* Optionnel : ajoute un padding de sécurité si tu veux éviter que ça colle aux bords */
        padding-left: 40px;
        padding-right: 40px;
        box-sizing: border-box;
    }
 
}
#glameeto-chat-container {
    position: fixed;
    bottom: 0;
    right: 30px;
    width: 340px;
    height: 420px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    z-index: 99999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px 10px 0 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}
#glameeto-chat-container.minimized {
    height: 48px;
}
.chat-header {
    background: #1a202c; /* Couleur sombre pro style Wise Chat, ajustable */
    color: #ffffff;
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 9px 9px 0 0;
    user-select: none;
}
.chat-title {
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}
.chat-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}
#glameeto-chat-container.minimized .chat-icon {
    transform: rotate(180deg); /* Alterne la flèche ▲ / ▼ */
}
.chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #f7fafc;
}
#glameeto-chat-container.minimized .chat-body {
    display: none;
}
#chat-messages-list {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}
.chat-footer {
    padding: 10px;
    border-top: 1px solid #edf2f7;
    display: flex;
    background: #ffffff;
    gap: 8px;
}
#chat-input {
    flex: 1;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.9rem;
    outline: none;
}
#chat-input:focus {
    border-color: #a0aec0;
}
.chat-footer button {
    background: #3182ce;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
}
.chat-footer button:hover {
    background: #2b6cb0;
}

/* Style des bulles de messages */
.msg {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}
.msg img {
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.msg-content {
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 0 12px 12px 12px;
    border: 1px solid #e2e8f0;
    font-size: 0.88rem;
    color: #2d3748;
    max-width: 80%;
    word-break: break-word;
}
.msg-meta {
    font-weight: 700;
    color: #4a5568;
    font-size: 0.82rem;
    margin-bottom: 2px;
}

.menu-mobile-close {
    display: none !important; /* Masquée par défaut quand le menu est fermé */
}
/* ==========================================================================
   STRUCTURE ET CARTES DES ÉVÉNEMENTS (GLAMEETO)
   ========================================================================== */

/* Structure de la carte principale */
.event-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    margin: 15px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Style spécifique pour les cartes Premium (Abonnement créateur = 3) */
/* On cible spécifiquement la carte premium au sein du slider pour écraser la règle de base */
.custom-event-slider .event-card.event-premium {
    border: 2px solid #ffaa00 !important;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.7), 0 0 28px rgba(255, 240, 180, 0.45), 0 0 48px rgba(255, 255, 255, 0.6) !important;
}

/* Onglet type (Membre / Partenaire) en haut à gauche */
.event-onglet {
    position: absolute;
    top: 0;
    left: 0;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom-right-radius: 12px;
    color: #fff;
}
.event-onglet.membres { background-color: #000000; }
.event-onglet.partenaires { background-color: #6b5c5c; }

/* Tag d'intérêt en haut à droite */
.event-tag-interest {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 10px 0 8px 0;
    line-height: 1.3;
}

.event-description {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Alignement parfait des blocs d'informations (Date, Heure, Distance, Prix...) */
.bloc_event {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 8px 0;
    border-bottom: 1px dashed #edf2f7;
    font-size: 0.9rem;
    color: #4a5568;
}

.bloc_event:last-of-type {
    border-bottom: none;
}

.bloc_event .gauche {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bloc_event .droite {
    text-align: right;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Section Google Map de la carte */
.event-map {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.map-itineraire-bubble {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}

.btn-directions {
    background: #ffffff;
    color: #2d3748;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s;
}

.btn-directions:hover {
    background: #f7fafc;
}

/* ==========================================================================
   STRUCTURE, APLAT ET LISIBILITÉ DES CARTES ÉVÉNEMENTS
   ========================================================================== */

/* 1. Le conteneur de la carte (reçoit la couleur dynamique en fond) */
.event-card {
    position: relative;
    border-radius: 16px;
    padding: 20px;
    margin: 15px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Note : la couleur de fond dynamique s'applique ici en inline style */
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* 2. L'APLAT (Overlay de protection)
   Génère un dégradé léger par-dessus la couleur de fond pour donner de la profondeur 
   et garantir le contraste du texte blanc.
*/
.event-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* 3. On pousse tout le contenu au-dessus de l'aplat */
.event-onglet,
.event-tag-interest,
.event-infos,
.event-map {
    position: relative;
    z-index: 2; /* Passe au-dessus de l'aplat (z-index: 1) */
}


/* 5. Ajustement des lignes d'informations (Date, Heure, Prix, Distance...) */
.bloc_event {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3) !important; /* Pointillés blancs translucides */
    font-size: 0.9rem;
}

.bloc_event:last-of-type {
    border-bottom: none !important;
}

.bloc_event .gauche,
.bloc_event .droite {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bloc_event .droite {
    text-align: right;
    font-weight: 500;
}

.bloc_event .gauche {
    font-weight: 600;
}

/* 6. Onglets et badges du haut */
.event-onglet {
    position: absolute;
    top: 0;
    left: 0;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom-right-radius: 12px;
    color: #fff;
}
.event-onglet.membres { background-color: #000000; }
.event-onglet.partenaires { background-color: #6b5c5c; }

.event-tag-interest {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: rgba(255, 255, 255, 0.2); /* Fond translucide neutre */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* 7. Section Carte Google Map interne */
.event-map {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.map-itineraire-bubble {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}

.btn-directions {
    background: #ffffff;
    color: #2d3748;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s;
}

.btn-directions:hover {
    background: #f7fafc;
}

/* ==========================================================================
   SECTION CONTENEUR ET BANDEAU NOIR (APLAT)
   ========================================================================== */

/* La section principale qui change de couleur via le JS */
/* On retire la couleur du wrapper car c'est lui qui bouge au scroll ! */
.custom-event-slider .swiper-wrapper {
    margin-top: 55px;
}

/* On force le fond coloré sur le parent qui est fixe */
.slider-container {
    position: relative;
    width: 100%;
    min-height: 100dvh; /* Assure que le slider prend toute la hauteur de l'écran */
    overflow: hidden; /* Empêche le fond de dépasser ou l'écran de scroller horizontalement */
    transition: background-color 0.4s ease;
    background-color: #4C4C4C; /* Couleur par défaut */
    padding-bottom: 30px; /* Laisse respirer le bas du slider */
}

#event-form-container {
   background-color: #4C4C4C; /* Couleur par défaut */ 
}

/* L'aplat noir complet en haut de la section */
.slider-titre-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55px;
    background-color: #000000 !important;
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 10;
    box-sizing: border-box;
    /* Animation de descente propre */
    animation: parachuteDrop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Le titre à l'intérieur du bandeau noir */
.slider-titre {
    color: #ffffff !important;
    margin: 0 !important;
    font-size: 1.25rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes parachuteDrop {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   RETOUR AUX ANCIENNES CARTES (FOND BLANC & TEXTE NOIR)
   ========================================================================== */

/* Structure de la carte : FIXÉE EN BLANC */
.custom-event-slider .event-card {
    background-color: #ffffff !important;
    border-radius: 14px !important;
    padding: 22px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    position: relative;
}

/* Description et textes secondaires repassent en sombre pour le contraste */
.custom-event-slider .event-card .event-description {
    color: #4a5568 !important;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Les lignes d'informations pratiques (Date, Prix, Distance...) */
.custom-event-slider .event-card .bloc_event {
    border-bottom: 1px dashed #e2e8f0 !important;
    color: #2d3748 !important;
}

.custom-event-slider .event-card .bloc_event:last-of-type {
    border-bottom: none !important;
}

.custom-event-slider .event-card .gauche,
.custom-event-slider .event-card .droite {
    color: #2d3748 !important;
}

/* ⚠️ IMPORTANT : On ne force PAS la couleur de .event-title ici 
   pour laisser le code PHP appliquer sa couleur d'événement nativement.
*/
.custom-event-slider .event-card .event-title {
    font-weight: 700;
    margin: 10px 0 8px 0;
    line-height: 1.3;
}

/* Le badge d'intérêt (Tag en haut à droite) - Garde son fond dynamique PHP */
.custom-event-slider .event-card .event-tag-interest {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px;
    border-radius: 0 8px 0 8px;
    color: #fff;
    font-size: 0.8em;
}

/* L'onglet Membre/Partenaire (En haut à gauche) */
.custom-event-slider .event-card .event-onglet {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom-right-radius: 10px;
    color: #ffffff !important;
    z-index: 3;
}
.custom-event-slider .event-card .event-onglet.membres { background-color: #000000 !important; }
.custom-event-slider .event-card .event-onglet.partenaires { background-color: #718096 !important; }

/* 1. On transforme le lien en conteneur aligné */
.event-label a {
    display: flex !important;
    align-items: center !important; /* Aligne tout verticalement au milieu */
    justify-content: flex-start !important; /* Tout part de la gauche */
    font-size:14px !important;
    gap: 8px !important; /* Espace propre entre les éléments */
    text-decoration: none !important;
    padding: 5px 10px !important;
}

/* 2. Style du wrapper de l'icône (On agrandit un peu) */
.event-label a .event-icon-wrapper {
    display: flex !important;
    width: 36px !important; /* Taille fixe pour garder l'icône propre */
    flex-shrink: 0 !important; /* Empêche l'icône de s'écraser */
    margin: 0 !important;
}

/* 3. Le SVG à l'intérieur */
.event-label a .event-icon-wrapper .event-icon-svg {
    width: 100% !important;
    height: auto !important;
    fill: currentColor !important;
}

/* 4. Ton nouveau texte */
.event-label-text {
    flex-grow: 1; /* Prend l'espace disponible */
    font-weight: 600;
    font-size: 14px;
}

/* 5. Le compteur (poussé à droite) */
.event-count {
    position: absolute;
    background: var(--event-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-left: auto !important;
    padding: 6px 10px !important;
    border-radius: 20px;
    right: 18px;
    top: 14px;
}

/* 2. Style du wrapper de l'icône (On agrandit un peu) */
.interet-box .event-icon-wrapper {
    display: flex !important;
    width: 36px !important; /* Taille fixe pour garder l'icône propre */
    flex-shrink: 0 !important; /* Empêche l'icône de s'écraser */
    margin: 0 !important;
}

/* 3. Le SVG à l'intérieur */
.interet-box .event-icon-wrapper .event-icon-svg {
    width: 100% !important;
    height: auto !important;
    fill: currentColor !important;
}

/* Le bandeau contenant le titre */
.event-header-banner {
    background-color: #000000 !important;
    padding: 15px 20px;       /* Espace interne pour que le texte soit bien placé */   
    width: 100%;
}

/* Le titre h3 à l'intérieur du bandeau */
.event-header-banner h3 {
    color: #ffffff !important;
    margin: 0 !important;
    font-size: 1.25rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
#event-form-container .acf-containter-second {
    padding-top :20px !important;
}
/* 1. On donne au lien un comportement adapté au conteneur flex */
.acf-etapes-navigation a {
    display: inline-flex;
    text-decoration: none !important;
}

/* 2. On force le span interne à réactiver ses dimensions de 40px */
.acf-etapes-navigation a .acf-etape {
    display: inline-block !important;
}
/* ==========================================================================
   GLAMEETO : CORRECTION LAYOUT PRICING (PACKS & ABOS) + INFOS USER
   ========================================================================== */

/* 1. Correction du décalage à droite et structure principale en Flex */
.custom-pricing-layout {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 20px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden; /* Détruit le scroll horizontal indésirable */
    position: relative;
}

/* 2. Affichage forcé du bloc Utilisateur ([infos_utilisateur]) */
.custom-pricing-layout .infos-user-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 320px; /* Colonne de gauche fixée */
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 10; /* Le sort de derrière les backgrounds */
}

.infos-user-box .infos-user-ligne {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
    color: #334155;
}

.infos-user-box .infos-user-ligne:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.infos-user-box strong {
    color: #0f172a;
}

/* 3. Bloc central qui contient le Switch et les cartes (Slider) */
.pricing-content-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 100%;
    position: relative;
    z-index: 10;
}

/* 4. Effet "Switch" UI pour les boutons Abonnements / Packs */
.pricing-middle-controls {
    display: flex;
    justify-content: right;
    margin-right: 40px;
}

.pricing-vertical-toggles {
    display: inline-flex;
    background-color: #f1f5f9;
    border-radius: 50px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
}

.pricing-toggle-btn {
    background: transparent;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    outline: none;
}

/* Apparence du bouton actif (Effet Switch coloré) */
.pricing-toggle-btn.active {
    background: linear-gradient(135deg, #ff9a00 0%, #ff5a00 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 90, 0, 0.35);
    transform: scale(1.02); /* Léger pop au clic */
}

/* 5. Apparence des cartes dans le slider */
.pricing-slider-container {
    width: 100%;
}

.pricing-card-slide {
    display: flex;
    height: auto; /* Aligne la hauteur de toutes les cartes */
}

.news__item {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.news__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Optionnel : Mise en valeur du plan actuel */
.current-active-plan {
    border: 2px solid #4CAF50 !important;
    position: relative;
}

.current-active-plan::before {
    content: 'Actuel';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    font-size: 12px;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Titres et Prix */
.news__main-title {
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    color: #1e293b;
    line-height: 1.4;
}
/* =========================================================================
   1. STRUCTURE & LAYOUT (Fix 100dvh + Flexbox)
   ========================================================================= */
.glameeto-pricing-section {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: 80px 0;
    box-sizing: border-box;
    overflow: hidden; /* Empêche le débordement */
}

/* Force le conteneur du slider à s'étirer */
.swiper-wrapper {
    display: flex;
    align-items: stretch; /* C'est ce qui égalise la hauteur des cartes */
}

.news-slider__item {
    display: flex; /* Permet aux cartes de prendre la hauteur du parent */
    height: auto;
}

/* Structure interne de la carte : 
   Flex column permet d'utiliser margin-top: auto sur le bouton 
*/
.news__item {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 20px; /* Ajoute un padding interne si besoin */
}

/* =========================================================================
   2. ÉLÉMENTS DES CARTES (Titres, Prix, Boutons)
   ========================================================================= */

.pricing-card-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0;
}

.pricing-price-badge {
    font-size: 36px;
    font-weight: 900;
    color: #c70000;
    text-align: center;
    margin-bottom: 10px;
}

/* Boutons d'achat : "margin-top: auto" pousse le bouton en bas */
.pricing-action-box {
    margin-top: auto; 
    padding-top: 20px;
}

.btn-pricing-trigger-link {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #ff9a00 0%, #ff5a00 100%);
    color: #ffffff !important;
    padding: 14px 0;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-pricing-trigger-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 90, 0, 0.4);
}

.btn-pricing-disabled {
    display: block;
    width: 100%;
    text-align: center;
    background: #f1f5f9;
    color: #94a3b8;
    padding: 14px 0;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
}

/* =========================================================================
   3. COMPOSANTS SPÉCIFIQUES (Formulaire, Switch)
   ========================================================================= */

.pricing-dynamic-description {
    color: white;
    padding-top:30px;
}


/* Switch Premium */
.switch-premium {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch-premium input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-premium .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.08);
    transition: 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.switch-premium .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 2px;
    background-color: #ffffff;
    transition: 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.switch-premium input:checked + .slider {
    background-color: rgba(255, 152, 0, 0.85);
    border-color: transparent;
}

.switch-premium input:checked + .slider:before {
    transform: translateX(20px);
}

/* Utilitaires */
.pricing-card-hidden {
    display: none !important;
}

/* --- 1. Structure du Slider & Cards --- */
.glameeto-agenda-section .swiper-wrapper {
    display: flex !important;
    align-items: stretch !important; /* Force l'alignement vertical égal */
}

.glameeto-agenda-section .news-slider__item {
    display: flex !important;
    height: auto !important;
}

.glameeto-agenda-section .news__item {
    display: flex;
    flex-direction: column; /* Indispensable pour aligner le bouton en bas */
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

/* --- 2. Opacité des blocs inactifs (Plus visible) --- */
/* On remonte à 0.6 d'opacité pour que le contenu reste lisible */
.glameeto-agenda-section .news-slider__item:not(.active) .news__item {
    background-color: rgba(255, 255, 255, 0.8) !important; 
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: background-color 0.3s ease;
}

/* --- 3. Alignement du bouton --- */
.glameeto-agenda-section .pricing-action-box {
    margin-top: auto; /* Pousse le bouton au bas de la carte */
    padding-top: 20px;
}


/* 3. OPACITÉ : Bloc inactif plus lisible (0.9 au lieu de 0.2) */
.glameeto-pricing-section .pricing-card-slide.pricing-card-hidden {
    display: none !important; /* Force la disparition du filtré */
}

/* 4. FLÈCHES : On autorise le débordement pour les voir */
.glameeto-pricing-section .news-slider__ctr {
    overflow: visible !important;
}

.glameeto-pricing-section .news-slider__arrow {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 50 !important;
}

/* 5. ALIGNEMENT DES BOUTONS TABS */
.pricing-vertical-toggles {
    justify-content: flex-start !important;
    margin-bottom: 20px !important;
}

/* 1. Surcharge du conteneur parent pour le positionnement */
.glameeto-pricing-section {
    position: relative !important;
}

/* 2. Shortcode Utilisateur : Fixé en haut à droite */
.glameeto-user-shortcode-container {
    position: absolute !important;
    top: 370px !important;
    left: 25px !important;
    z-index: 100 !important;
    width: 375px;
    padding: 20px;
    font-size: 14px;
    background: #ffffff;
    border-radius: 15px;
    border: 8px solid #1E1E1E;
    pointer-events: auto !important;
}

/* 3. Masquage propre des slides inactifs */
.pricing-card-hidden {
    display: none !important;
}

/* 4. Flèches : On s'assure qu'elles ne soient pas coupées */
.glameeto-pricing-section .news-slider__ctr {
    overflow: visible !important;
    min-height: 50px;
}
/* ==========================================================================
   FIX DÉFINITIF DES FLÈCHES (TOUTES RÉSOLUTIONS : DESKTOP & MOBILE)
   ========================================================================== */

/* 1. STYLE VISUEL UNIFIÉ (Actif par défaut) */
.glameeto-pricing-section .news-slider__arrow {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    background: #111111 !important;       /* Fond noir anthracite constant */
    border: 2px solid #ffffff !important;   /* Liseré blanc pour bien détacher le bouton */
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.2s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    cursor: pointer !important;
}

/* 2. FORCE LE SVG À RESTER BLANC PUR */
.glameeto-pricing-section .news-slider__arrow svg,
.glameeto-pricing-section .news-slider__arrow svg.icon,
.glameeto-pricing-section .news-slider__arrow .icon-font svg,
.glameeto-pricing-section .news-slider__arrow use {
    display: block !important;
    visibility: visible !important;
    width: 16px !important;
    height: 16px !important;
    fill: #ffffff !important;               /* Force le remplissage en blanc */
    stroke: #ffffff !important;             /* Force le contour en blanc */
    color: #ffffff !important;
}

/* 3. EFFET HOVER (Optionnel : Devient orange au survol pour le style) */
.glameeto-pricing-section .news-slider__arrow:hover:not(:disabled):not(.swiper-button-disabled) {
    background: #ff6b00 !important;         /* Orange Glameeto */
    border-color: #ffffff !important;
}

/* 4. RÉSOLUTION DU BUG DE L'ÉTAT DÉSACTIVÉ (Ex: Flèche gauche sur le slide 1) */
/* Au lieu de changer les couleurs de fond/svg, on applique une opacité globale à 35% */
.glameeto-pricing-section .news-slider__arrow:disabled,
.glameeto-pricing-section .news-slider__arrow.swiper-button-disabled {
    background: #111111 !important;         /* Garde son fond noir */
    opacity: 0.35 !important;                /* Devient semi-transparent pour montrer qu'il est bloqué */
    cursor: not-allowed !important;
    pointer-events: none !important;        /* Désactive le clic */
}

.glameeto-pricing-section .news-slider__arrow.swiper-button-disabled svg {
    fill: #ffffff !important;               /* Reste blanc, ne bouge pas */
    stroke: #ffffff !important;
}

/* ==========================================================================
   LOADER GÉNÉRIQUE GLAMEETO (CENTRE PLEIN ÉCRAN)
   ========================================================================== */

/* Conteneur universel qui prend tout l'écran pour centrer le disque */
.glameeto-loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100dvh; /* Utilise toute la hauteur dynamique de l'écran */
    box-sizing: border-box;
}

/* Le disque rotatif générique */
.glameeto-spinner {
    width: 80px;
    height: 80px;
    /* Chemin d'accès direct géré à 100% côté CSS */
    background-image: url('assets/glameeto/img/icons/icon-192x192.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    animation: glameetoDiskSpin 1.4s linear infinite;
    filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.25)); /* Halo orange premium */
}

/* Animation de rotation continue */
@keyframes glameetoDiskSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.container-glameeto {
    height: 120dvh;
}

.glameeto-empty-card {
    background: #ffffff;
    border-radius: 25px; /* Arrondi plus prononcé pour un look moderne */
    padding: 0;
    margin: 30px auto; /* Plus d'espace autour */
    max-width: 450px;  /* Un peu plus large pour asseoir la carte */
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); /* Ombre plus profonde */
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* On augmente la hauteur pour qu'elle soit aussi imposante que tes profils */
.glameeto-empty-card img {
    width: 100%; 
    height: 350px; /* Hauteur augmentée pour le côté premium */
    object-fit: cover;
    display: block;
}

/* L'aplat noir prend bien sa place en bas */
.glameeto-empty-card p {
    background: #000000;
    color: #ffffff;
    width: 100%;
    margin: 0;
    padding: 30px 20px; /* Plus de padding pour le confort de lecture */
    font-size: 18px;    /* Texte plus lisible */
    font-weight: 600;
    letter-spacing: 0.5px;
    box-sizing: border-box;
    text-transform: uppercase; /* Optionnel : pour un look plus pro */
}
/* ==========================================================================
   APLAT BANNER & TOGGLES PREMIUM (Membres & Partenaires)
   ========================================================================== */

.filter-toggles-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 24px 30px !important;
    background: rgba(24, 24, 27, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-sizing: border-box !important;
    color:white;
    gap: 20px;
    
    /* Effet Parachute automatique au chargement */
    opacity: 0;
    transform: translateY(-25px);
    animation: aplatParachute 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

@keyframes aplatParachute {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bloc Textes (Gauche) */
.aplat-text-side {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    text-align: left !important;
}

.aplat-shortcode-title {
    margin: 0 !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
}

.aplat-shortcode-desc {
    margin: 0 !important;
    font-size: 13px !important;
    color: #a1a1aa !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}

/* Capsule de Toggles (Toujours poussée à Droite) */
.filter-toggles {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 4px !important;
    border-radius: 9999px !important;
    margin-left: auto !important; /* Force le calage à droite */
    flex-shrink: 0 !important;
}

/* Boutons Internes à la Capsule */
.filter-toggle-btn {
    background: transparent !important;
    border: none !important;
    color: #a1a1aa !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    border-radius: 9999px !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
    line-height: 1 !important;
}

/* Effet Hover soft */
.filter-toggle-btn:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* État Actif Premium (Inspiré des boutons d'action du site) */
.filter-toggle-btn.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff9a00 0%, #ff5a00 100%) !important;
    box-shadow: 0 4px 12px rgba(255, 90, 0, 0.3) !important;
    transform: scale(1.03) !important;
}

/* Nettoyage des anciens styles de titres devenus obsolètes */
.tab-titles {
    display: none !important; /* Supprime l'ancienne ligne de titre répétée */
}

/* ==========================================================================
   PROPOSITIONS DE COULEURS DE FOND (Shortcode bg_color)
   - Noir Obsidienne : #111114
   - Gris Carbone : #18181b
   - Bleu Nuit Très Sombre : #0f111a
   ========================================================================== */

/* Boîtier externe fixe (reprend tes propriétés de structure) */
.glameeto-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    border-top: none;
    
    /* Ton fond et effet flou premium */
    background: rgba(0, 0, 0, 0.2) !important; 
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    
    /* Transition de hauteur fluide lors du switch */
    transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important; 
}

/* Le rail invisible qui contient les deux blocs côte à côte */
.glameeto-slider-track {
    display: flex !important;
    width: 200% !important;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform;
}

#resultats-membres .infos {
    color:white;
}

/* Structure de tes deux conteneurs (Plus de display: none, géré par le rail) */
.criteres-container,
.filtres-container {
    width: 50% !important;
    display: block !important; 
    box-sizing: border-box !important;
    border-top: none;
    
    /* Tes personnalisations : couleur et padding ajusté */
    color: white !important;
    padding-left: 100px;
    padding-right: 100px;
    
    /* Animation d'estompement pendant le glissement */
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* --- ÉTATS ACTIFS DE LA GLISSIÈRE --- */

/* Position 1 : "Mes critères" visible */
.glameeto-slider-track.show-criteres {
    transform: translateX(0) !important;
}
.glameeto-slider-track.show-criteres .criteres-container {
    opacity: 1;
    transform: scale(1);
}

/* Position 2 : "Filtres" visible */
.glameeto-slider-track.show-filtres {
    transform: translateX(-50%) !important;
}
.glameeto-slider-track.show-filtres .filtres-container {
    opacity: 1;
    transform: scale(1);
}

/* Amélioration de l'aplat de description pour le HTML (Ta version White) */
.aplat-shortcode-desc {
    margin: 0 !important;
    font-size: 14px !important; 
    color: white !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

/* Petites icônes ou éléments HTML dans la description */
.aplat-shortcode-desc i, 
.aplat-shortcode-desc strong {
    color: #e4e4e7 !important;
}

/* Micro-animation sur le bouton toggle actif */
.filter-toggle-btn {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.filter-toggle-btn.active {
    transform: scale(1.04) translateY(-1px) !important;
}
/* ==========================================================================
   STYLISATION DES RANGES EN ORANGE PREMIUM
   ========================================================================== */

/* 1. Méthode globale et rapide (Barre active + Bouton rond) */
.container-glameeto input[type="range"] {
    accent-color: yellow !important;
}

/* 2. Personnalisation avancée du bouton rond (Thumb) pour un rendu haut de gamme */

/* Pour les navigateurs basés sur WebKit (Chrome, Safari, Edge, Opera) */
.container-glameeto input[type="range"]::-webkit-slider-thumb {
    background: linear-gradient(135deg, #ff9a00 0%, #ff5a00 100%) !important;
    border: 2px solid #ffffff !important; /* Un léger liseré blanc pour le détacher du fond */
    box-shadow: 0 2px 6px rgba(255, 90, 0, 0.4) !important; /* Halo orange subtil */
    cursor: grab;
    transition: transform 0.1s ease;
}

.container-glameeto input[type="range"]::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.15); /* Le rond grossit légèrement quand on le manipule */
}

/* Pour Firefox */
.container-glameeto input[type="range"]::-moz-range-thumb {
    background: linear-gradient(135deg, #ff9a00 0%, #ff5a00 100%) !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 2px 6px rgba(255, 90, 0, 0.4) !important;
    cursor: grab;
    transition: transform 0.1s ease;
}

.container-glameeto input[type="range"]::-moz-range-thumb:active {
    cursor: grabbing;
    transform: scale(1.15);
}

/* ==========================================================================
   OVERLAY DE VERROUILLAGE "TEASING" PREMIUM
   ========================================================================== */

/* 1. L'arrière-plan reste transparent pour ne pas faire un "mur" blanc ou gris */
.filters-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.1) !important; /* Voile ultra-léger juste pour détacher le badge */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 20 !important;
    border-radius: 16px !important;
}

/* 2. Les champs DERRIÈRE : On vire le flou et on garde une forte visibilité pour donner envie ! */
.filtres-container.filters-locked .form-tabs,
.filtres-container.filters-locked form,
.filtres-container[class*="Array"] .form-tabs {
    opacity: 0.65 !important; /* Assez visible pour lire DISTINCTEMENT les textes et placeholders */
    filter: none !important; /* Suppression totale du flou pour garder les libellés bien nets */
    pointer-events: none !important; /* Interdit le clic */
    user-select: none !important;
}

/* On force la visibilité des textes et placeholders des selects/inputs pour le teasing */
.filtres-container.filters-locked input::placeholder,
.filtres-container.filters-locked select,
.filtres-container.filters-locked option {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* 3. Le Badge Central : Plus du tout transparent, il s'impose au-dessus avec autorité */
.filters-locked-content {
    background: #18181b !important; /* Fond solide (Gris carbone premium de l'app) non transparent */
    border: 1px solid rgba(255, 255, 255, 0.15) !important; /* Liseré plus prononcé */
    padding: 28px 40px !important;
    border-radius: 16px !important;
    /* Ombre portée très lourde et diffuse pour surélever le badge par-dessus les champs nets */
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.9) !important; 
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
    z-index: 25 !important;
}

/* L'icône Cadenas */
.filters-locked-content .icon-lock {
    font-size: 28px !important;
    display: block !important;
    filter: drop-shadow(0 2px 8px rgba(255, 90, 0, 0.3)) !important; /* Petite lueur orange discrète */
}

/* Ton bouton d'action Orange Premium */
.filters-locked-content .btn-abonnement {
    background: linear-gradient(135deg, #ff9a00 0%, #ff5a00 100%) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 12px 28px !important;
    border-radius: 9999px !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 90, 0, 0.4) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.filters-locked-content .btn-abonnement:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 6px 20px rgba(255, 90, 0, 0.55) !important;
}

/* ==========================================================================
   STRUCTURE UNIFIÉE & VRAI FORMAT ISO (HAUTEUR + LARGEUR COHÉRENTES)
   ========================================================================== */

/* 1. On impose une taille STRICTEMENT identique pour chaque carte */
.glameeto-swiper-coverflow .swiper-slide,
.glameeto-swiper-coverflow-partenaires .swiper-slide {
    width: 310px !important;
    height: 430px !important;   /* <--- ICI : On force la hauteur fixe pour aligner le bas */
    max-width: 85vw;
    overflow: hidden !important;
    border-radius: 20px;
    position: relative;
    background-color: #1e1e1e;  /* Fond de secours pendant le chargement */
}

/* 2. On force le bloc image à occuper 100% de cette hauteur fixe */
.glameeto-swiper-coverflow .picture,
.glameeto-swiper-coverflow-partenaires .picture {
    width: 100%;
    height: 100%;
}

.glameeto-swiper-coverflow .picture img,
.glameeto-swiper-coverflow-partenaires .picture img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;       /* Remplit la hauteur sans déformer */
    object-position: center top !important; /* Garde le focus sur le haut du corps/visage */
}

/* 3. Ajustement de l'aplat de texte */
.glameeto-swiper-coverflow .detail-aplat-blur,
.glameeto-swiper-coverflow-partenaires .detail-aplat-blur {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.45);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    z-index: 2;
}

.glameeto-swiper-coverflow .detail-aplat-blur h3,
.glameeto-swiper-coverflow-partenaires .detail-aplat-blur h3 {
    color: #ffffff !important;
    margin: 0 0 5px 0 !important;
}

/* ==========================================================================
   FIX : RECHERCHE MEMBRES & PARTENAIRES (TITRES, LARGEUR & CADRAGE)
   ========================================================================== */

/* 1. Passage de tous les titres H3 et textes associés en blanc */
.container-glameeto h3,
.user-section h3,
.glameeto-swiper-coverflow h3,
.glameeto-swiper-coverflow-partenaires h3,
.card-membre h3 {
    color: #ffffff;
}

.modal-overlay h3 {
    color: #000000 !important;
    
}

/* Sécurité : Assurer que le conteneur de l'image ne laisse rien déborder si arrondi */
.glameeto-swiper-coverflow .swiper-slide,
.glameeto-swiper-coverflow-partenaires .swiper-slide {
    overflow: hidden !important;
    border-radius: 16px; /* S'assure que les angles restent propres et premium */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

#resultats-partenaires .infos {
   color: #ffffff !important;
   font-size: 15px !important;
}

.glameeto-swiper-coverflow-partenaires  {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 70px;
    overflow: hidden;
}

#criteres-partenaires-bloc {
    margin-top: 30px;
}

.glameeto-swiper-coverflow-partenaires .picture {
    position: relative; /* Indispensable pour caler l'onglet en absolu */
    overflow: hidden;   /* Force l'onglet à respecter les arrondis de la photo */
}
.partner-badge-tab {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Noir élégant légèrement transparent */
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    padding: 6px 4px;
    letter-spacing: 0.8px;
    z-index: 3;
    box-sizing: border-box;
    /* Épouse parfaitement les arrondis du haut de ta carte */
    border-top-left-radius: inherit; 
    border-top-right-radius: inherit;
}

/* ==========================================================================
   COMPLIANZ : ALIGNEMENT TOTAL À GAUCHE (BOUTON + FENÊTRE REPLIABLE)
   ========================================================================== */

/* --- 1. LA FENÊTRE DE CONSENTEMENT (POPUP) --- */
.cmplz-cookiebanner {
    right: auto !important;           /* Annule le calage à droite natif du plugin */
    left: 20px !important;            /* Aligne la fenêtre sur le bord gauche */
}

/* --- 2. LE BOUTON "GÉRER LE CONSENTEMENT" (TOGGLE) --- */
#cmplz-manage-consent,
#cmplz-manage-consent .cmplz-manage-consent {
    right: auto !important;           /* Annule le calage à droite du bouton */
    left: 20px !important;            /* Aligne le bouton sur le bord gauche */
}

#cmplz-manage-consent .cmplz-manage-consent {
    padding: 8px 16px !important;     /* Réduction du padding interne */
    height: auto !important;          /* Supprime la hauteur fixe lourde de 50px */
    min-height: unset !important;
    font-size: 13px !important;       /* Typo plus discrète et lisible */
    line-height: 1.2 !important;
}

#event-list {
    background-color: #eddcdc;
    min-height: 100dvh !important;
}

/****** on desactive pour le moment le partage des reseaux sociaux ****/
.fusion-reseaux-parrainage {
    display:none;
}