:root {
  --hpe-radius: 14px;
  --hpe-shadow: 0 8px 24px rgba(0,0,0,.08);
  --hp-accent: #C80017;
  --hp-blue: #003366;
  --hp-blue-text: #ffffff;
  --hp-muted-text:#50534C;
  --hp-underline-h: 5px;   
  --hp-underline-w: 90px;  
  --hp-underline-w-active: 100px; 
  --hp-underline-gap: 12px; 
  --hpe-lexique-tab-w: 40px;
}

/* Styles de base */
.hpe-card {
  border-radius: var(--hpe-radius);
  box-shadow: var(--hpe-shadow);
}

.hpe-eyebrow {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .8rem;
}

/* Header */
.hp-menu-underline .elementor-nav-menu .elementor-item:hover{
    font-weight: 600 !important ;
}
.hp-menu-underline .elementor-nav-menu .elementor-item {
  position: relative;
  padding-bottom: calc(var(--hp-underline-gap) + var(--hp-underline-h));
  transition-property: color, background, border, transform;

}

.hp-menu-underline .elementor-nav-menu .elementor-item::after {
  content: "";
  position: absolute;
  /* left: 12px; */
  bottom: 0;
  height: var(--hp-underline-h);
  width: var(--hp-underline-w);
  background-color: var(--hp-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}

/* Fais apparaitre le trait rouge sous le titre du menu avec transition */
.hp-menu-underline .elementor-nav-menu .elementor-item:hover::after,
.hp-menu-underline .elementor-nav-menu .elementor-item:focus-visible::after {
  transform: scaleX(1);
}


/* Garde le titre du menu en bold si sous-menu ouvert */
.hp-menu-underline .elementor-nav-menu .current-menu-item > .elementor-item,
.hp-menu-underline .elementor-nav-menu .current-menu-ancestor > .elementor-item,
.hp-menu-underline .elementor-nav-menu .elementor-item[aria-current="page"] {
  font-weight: 600 !important;
}

.hp-menu-underline .elementor-nav-menu .current-menu-item > .elementor-item::after,
.hp-menu-underline .elementor-nav-menu .current-menu-ancestor > .elementor-item::after,
.hp-menu-underline .elementor-nav-menu .elementor-item[aria-current="page"]::after {
  transform: scaleX(1);
  opacity: 1 !important;
}


/* ===== 1) Le trait rouge reste visible si sous-menu hover ===== */
.hp-menu-underline .elementor-nav-menu .menu-item-has-children:hover > .elementor-item::after,
.hp-menu-underline .elementor-nav-menu .menu-item-has-children:focus-within > .elementor-item::after,
.hp-menu-underline .elementor-nav-menu .elementor-item[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.hp-menu-underline .elementor-nav-menu .menu-item-has-children:hover > .elementor-item,
.hp-menu-underline .elementor-nav-menu .menu-item-has-children:focus-within > .elementor-item,
.hp-menu-underline .elementor-nav-menu .elementor-item[aria-expanded="true"] {
  font-weight: 600 !important;
}

/* ===== 2) Les liens du dropdown deviennent bold au hover ===== */
.hp-menu-underline .elementor-nav-menu .elementor-sub-item:hover {
  background-color: var(--hp-blue) !important;
  color: var(--hp-blue-text) !important;
  font-weight: 600 !important;
}

/* (Optionnel) garde aussi le dropdown item bold s’il est la page active */
.hp-menu-underline .elementor-nav-menu .elementor-sub-item.elementor-item-active {
  background-color: var(--hp-blue) !important;
  color: var(--hp-blue-text) !important;
  font-weight: 600 !important;
}

.hp-menu-underline .elementor-nav-menu .elementor-sub-item { transition: none !important; }

@media (prefers-reduced-motion: reduce) {
  .hp-menu-underline .elementor-nav-menu .elementor-item::after {
    transition: none;
  }
}

@media (max-width: 1024px) {
  .hp-menu-underline .elementor-nav-menu--dropdown .elementor-item::after {
    display: none;
  }
}

/* Appliquer sur un container ou sur chaque Button via la classe: hp-btn-underline */
.hp-btn-underline .elementor-button {
  /* réserve la place pour le trait */
  padding-bottom: calc(var(--hp-underline-gap) + var(--hp-underline-h));
}

/* le trait sous le TEXTE du bouton */
.hp-btn-underline .elementor-button .elementor-button-text {
  position: relative;
}

.hp-btn-underline .elementor-button .elementor-button-text::after {
  content: "";
  position: absolute;
  left: var(--hp-btn-underline-left, 0); /* offset si icône */
  bottom: calc(-1 * (var(--hp-underline-gap)));
  height: var(--hp-underline-h);
  width: var(--hp-underline-w);
  background: var(--hp-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease-out;
}

/* apparition + bold au hover/focus */
.hp-btn-underline .elementor-button:hover .elementor-button-text,
.hp-btn-underline .elementor-button:focus-visible .elementor-button-text {
  font-weight: 600 !important;
}
.hp-btn-underline .elementor-button:hover .elementor-button-text::after,
.hp-btn-underline .elementor-button:focus-visible .elementor-button-text::after {
  transform: scaleX(1);
}

/* état "actif" (si tu veux forcer l’affichage comme pour la page courante) */
.hp-btn-underline .elementor-button.is-active .elementor-button-text,
.hp-btn-underline .elementor-button.is-active .elementor-button-text::after {
  font-weight: 600 !important;
  transform: scaleX(1);
}

/* Optionnel : pas d’underline sur mobile (comme ton menu) */
@media (max-width: 1024px) {
  .hp-btn-underline .elementor-button .elementor-button-text::after { display: none; }
}


/* Footer */

.copyright-item{
  font-family: "Montserrat", Sans-serif;
  font-size: 9px;
  font-weight: 400;
  line-height: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
  color: white;
  padding-left: 5px !important;
  padding-right: 5px !important;
  align-items: center;
}

/* Accueil */

/* Titre 2 lignes : poids différent */
.hp-lead-title{
  margin: 0;
  font-family: var(--e-global-typography-primary-font-family, inherit);
  font-size: 35px;
  line-height: 1.15;
  color: var(--hp-blue); 
}
.hp-lead-title strong{
  font-weight: 700; /* gras de la 1re ligne */
}
.hp-lead-title .hp-lead-sub{
  font-weight: 400; /* plus léger pour la 2e ligne */
  display: inline-block;
}

/* Ligne rouge + boule (apposée à la colonne du titre) */
.hp-leadline{
  position: relative;
  --leadline-color: var(--hp-accent, #C80017);
  --leadline-y: 30px;        /* position verticale depuis le top de la colonne */
  --leadline-length: 200px;  /* longueur de la ligne */
  --leadline-thickness: 5px; /* épaisseur de la ligne */
  --leadline-dot: 20px;      /* diamètre du point */
  --leadline-offset: -275px;  /* décalage horizontal vers la gauche (sort du container) */
  --leadline-bleed: max(0px, calc((100vw - 100%) / 2));
}

/* La ligne */
.hp-leadline::before{
  content:"";
  position: absolute;

  /* on remonte jusqu’au bord gauche du viewport */
  left: calc(-1 * var(--leadline-bleed));
  top: var(--leadline-y);
  /* on va jusqu’à l’offset + length (donc la ligne s’arrête AVANT le titre) */
  width: calc(var(--leadline-bleed) + var(--leadline-length) + var(--leadline-offset));

  height: var(--leadline-thickness);
  background: var(--leadline-color);
}

/* La boule au bout */
.hp-leadline::after{
  content:"";
  position: absolute;
  left: calc(
    (-1 * var(--leadline-bleed))
    + (var(--leadline-bleed) + var(--leadline-length) + var(--leadline-offset))
    - (var(--leadline-dot) / 2)
  );
  top: calc(var(--leadline-y) - (var(--leadline-dot) - var(--leadline-thickness)) / 2);
  width: var(--leadline-dot);
  height: var(--leadline-dot);
  background: var(--leadline-color);
  border-radius: 50%;
}

/* Option : masquer la déco sur mobile pour éviter les débords */
@media (max-width: 767px){
  .hp-leadline::before,
  .hp-leadline::after{ display:none; }
}

/* Page */

.hpe-title-underline-middle {
  position: relative;
  display: inline-block;
  color: var(--hp-blue);
  text-align: center;
  margin-bottom: 25px;
}

.hpe-title-underline-middle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: var(--hp-underline-w); 
  height: var(--hp-underline-h);
  background-color: var(--hp-accent); 
  transform: translateX(-50%);
}

/* Variante du titre avec trait rouge aligné à gauche */
.hp-title-underline-left {
  position: relative;
  display: inline-block;
  color: var(--hp-blue);
  text-align: left;
  margin-bottom: 25px !important;
}

.hp-title-underline-left::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: var(--hp-underline-w);
  height: var(--hp-underline-h);
  background-color: var(--hp-accent); /* rouge HIFU */
}

/* Section pour aller plus loin */

/* H2 centré avec 2 barres rouges */
.hp-section-title-sides {
  position: relative;
  color: var(--hp-blue);
  margin: 0 auto 28px;
  padding: 0 26px; /* espace entre les barres et le texte */
}
.hp-section-title-sides::before,
.hp-section-title-sides::after {
  content: "";
  position: absolute;
  top: 80%; 
  width: var(--hp-underline-w);
  height: var(--hp-underline-h);
  background: var(--hp-accent);
  transform: translateY(-50%);
}

.hp-section-title-sides::before { left: -100px;  }
.hp-section-title-sides::after  { right: -100px; }

/* respo : barres un peu plus courtes sur mobile */
@media (max-width: 767px) {
  .hp-section-title-sides::before,
  .hp-section-title-sides::after { width: 44px; }
  .hp-section-title-sides::before { left: -52px; }
  .hp-section-title-sides::after  { right: -52px; }
}

/* Grille auto 1–3 colonnes */
.hp-more-grid {
  grid-template-columns: repeat(3, minmax(0,1fr));
}
@media (max-width: 1024px) {
  .hp-more-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 767px) {
  .hp-more-grid { grid-template-columns: 1fr; }
}

/* Carte */

.hp-card{
  max-height: 420px;
  overflow: hidden;
}

.hp-card .hp-card-img {
  transition: all 0.3s ease;
}

/* Hover : disparition de l'image */
.hp-card:hover .hp-card-img {
  height: 0% !important;
  min-height: 0% !important;
  width: 0% !important;
  padding : 0;
  opacity: 0;
  margin-bottom: 0;
}
.hp-card:hover h3,
.hp-card:hover p {
  color:#ffffff !important;
}
.hp-card .hp-card-arrow{
  transition: all 0.3s ease;
}
.hp-card:hover .hp-card-arrow{
  transform: translateX(20px);
  opacity: 1;
}
.hp-card:hover .hp-card-arrow svg path{
  fill:#ffffff !important;
}
.hp-card:hover .hp-card-text::after{
  background: none;
}

.hp-card .hp-card-text::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 7em;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(255, 255, 255,0) 0%, rgb(255, 255, 255) 50%)
}

@media (max-width: 1024px) {
  .hp-more-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 767px) {
  .hp-more-grid { grid-template-columns: 1fr; }
}

/* Page Hifu en images */

.little-h2 h2{
  font-size:16px !important;
}

/* Page HIFU Centers */


/* Layout */

#fsearch_center .elementor-field-type-submit {
  display: none !important;
  margin: 0px !important;
}

.hpe-sidebar {
  overflow: hidden; /* propre */
  box-sizing: content-box;
}


/* Map */


/* List des centres sur la map a gauche de la carte */



#map-center{

  width: 100%;
  min-height: 562px;
}

#hpe-centers-count{
  font-size : 16px;
  color: white;
}

.hpe-sidebar{
  height: 562px;
}

#hpe_centers_list{
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(562px - 140px);
  scrollbar-width: thin;
  scrollbar-color: var(--hp-muted-text);
}
#hpe_centers_list ul.search-result {
  list-style: none;
  margin: 0;
  padding: 0;
}

#hpe_centers_list ul.search-result li{
  border-bottom: 1px solid #50534C17;
  font-size: 16px;
  padding-top: 10px;
  padding-left: 10px;
}

#hpe_centers_list ul.search-result li p{
  margin-bottom: 5px;
}
.adress_paragraph{
  color:var(--hp-muted-text);
}

.h3-like{
  font-weight: 700;
  color:var(--hp-blue);
  margin-bottom: 5px;
  font-size:16px;

}
.details{
  color:var(--hp-accent);
}
/* Scrollbar webkit (Chrome, Edge, etc.) */
#hpe_centers_list::-webkit-scrollbar {
  width: 8px;
}
#hpe_centers_list::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-radius: 10px;
}
#hpe_centers_list::-webkit-scrollbar-thumb {
  background-color: #C80017;
  border-radius: 10px;
}

@media (max-width: 768px) {
  #hpe_centers_list{max-height: 421px;}
}

.details .details-content {
  display: none;      /* caché par défaut */
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.4;
}

.details-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: var(--hp-accent);
  font-weight: 600;
  cursor: pointer;
  font-size:16px;
}

.details-toggle:hover{
  background-color: #ffffff;
  color: var(--hp-accent);
  text-decoration: underline;
}

.details.active .details-toggle {
  text-decoration: underline;
  background-color: #ffffff;
  color: var(--hp-accent);
}
.details-toggle,
.details-toggle:focus,
.details-toggle:active {
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
  color: var(--hp-accent);

}
/* Info Bulle */

/* Conteneur général dans l'InfoWindow */
.hifu-infobulle {
  position: relative;
  width: 301px;
  height: 151px;
  background-image: url("https://dev.hifu-prostate.fr/fr/wp-content/uploads/sites/2/2025/11/Hifu_Bulle-adresse-1_V1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  padding: 20px 30px;
  box-sizing: border-box;
}

/* Zone texte interne (si besoin de recentrer) */
.hifu-infobulle-inner {
  position: absolute;
  top: 18px;    /* à ajuster pour que le texte tombe bien dans la bulle */
  left: 24px;
  right: 24px;
}

/* Titre du centre */
.hifu-infobulle-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--hp-blue);
  margin-bottom: 5px;
}

/* Adresse */
.hifu-infobulle-address {
  margin: 0;
  font-size: 15px;
  color: var(--hp-muted-text);
}

/* Conteneur de la bulle Google : on enlève le style "carte blanche" */
.gm-style .gm-style-iw-c {
  padding: 0 !important;
  max-width: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Le wrapper interne */
.gm-style .gm-style-iw-d {
  overflow: visible !important;
}

/*La petite flèche blanche par défaut sous la bulle */
.gm-style .gm-style-iw-tc::after {
  display: none !important;
}
.gm-style-iw-chr{
  height: 0px !important;
}

/* ajuster la croix de fermeture */
.gm-style .gm-style-iw-chr .gm-ui-hover-effect {
  z-index: 4;
  width: 25px !important;
  height: 25px !important;
}
.gm-style .gm-style-iw-chr .gm-ui-hover-effect span{
  margin: 0 !important;
}
.hifu-infobulle-contact .infobulle-contact-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 8px 0 0 0;
  color: var(--hp-accent);
  font-weight: 600;
  cursor: pointer;
}

.hifu-infobulle-contact .infobulle-contact-btn:hover{
  text-decoration: underline;
  color: var(--hp-accent);

}
.hifu-infobulle-contact .infobulle-contact-btn:focus,
.hifu-infobulle-contact .infobulle-contact-btn:active {
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
  color: var(--hp-accent);
  text-decoration: underline;

}
/* List region Map Center */

.hpe-continents-shortcode{
  width: 50%;
}

.hpe-regions{
  list-style: none;
  padding:0;
}

.hpe-region{
  border-bottom: 1px solid #50534C17;
}

.hpe-region:first-child {
  border-top: 1px solid #50534C17;
}

.hpe-region-toggle{
  border: none;
  color: var(--hp-blue);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  border-radius: 0;
}

.hpe-region-toggle:hover{
  border: none;
  background: var(--hp-blue);
  color:white;
  font-weight: 700;
}

.hpe-region-toggle:active{
  background: var(--hp-blue);
  color:white;
  font-weight: 700;
}

.hpe-region-toggle:active .hpe-chevron{
  color:white;
  transform: rotate(-90deg);
}
.hpe-region-toggle:hover .hpe-chevron{
  color:white;
}

.hpe-region-toggle[aria-expanded="true"]{
  background: var(--hp-blue);
  color:white;
  font-weight: 700;
}
.hpe-region-toggle[aria-expanded="true"] .hpe-chevron{
  transform: rotate(-90deg);
  color:white;
}

.hpe-region-toggle[aria-expanded="false"] {
  background-color: #fff;
  color: #002855;
}

.hpe-region-toggle[aria-expanded="false"]:hover {
  background: var(--hp-blue);
  color:white;
}

.hpe-chevron{
  color: #50534C17;
}

.hpe-countries{
  list-style: none;
}

.hpe-country::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color:#50534C17;
}


.hpe-country-link{
  padding-left: 20px;
  color:var(--hp-muted-text);
}

.hpe-country-link:hover{
  color:var(--hp-blue);
  font-weight: 700;
  text-decoration: underline;
}

.hpe-country:hover::before {
  color:var(--hp-blue);
}

.hpe-us-states{
  padding: 12px 0 12px;
}

.hpe-us-list{
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr)); /* 3 colonnes desktop */
}

/* (optionnel) responsive : 2 colonnes en tablette, 1 en mobile */
@media (max-width: 1024px){
  .hpe-us-list{ grid-template-columns: repeat(2, minmax(160px,1fr)); }
}
@media (max-width: 640px){
  .hpe-us-list{ grid-template-columns: 1fr; }
  .hpe-continents-shortcode{ width: 100%; }

}

.hpe-us-link{
  display: inline-block;
  text-decoration: none;
  color: var(--hp-muted-text);
  line-height: 1.4;
  font-size: 15px;
  font-weight: 500;
}

.hpe-us-link:hover{
  color:var(--hp-blue);
  text-decoration: underline;
  font-weight: 700;
}

/* Page plan du site */

.hpe-sitemap,
.hpe-sitemap ul {margin: 0; padding: 0; }
.hpe-sitemap > li { margin: 10px 0; }

.hpe-sitemap li a {
  text-decoration: none;
  color: var(--hp-blue) !important;
  font-weight: 700;
}
.hpe-sitemap li a:hover { text-decoration: underline; }

/* indentation enfants */
.hpe-sitemap ul { margin-left: 18px; }
.hpe-sitemap ul li a { font-weight: 600; }

/* Bloc En savoir plus */

#button-know-more .elementor-button-content-wrapper{
  align-items: center;
}

#button-know-more svg{
  width:3em;
  transition: all 0.3s ease;

}
#button-know-more:hover svg{
  transform: translateX(20px);
  opacity: 1;
}

#button-know-more:hover svg path{
  fill:#ffffff !important;
}

/* Bloc Vos questions */

#button-question .elementor-button-content-wrapper{
  align-items: center;
}

#button-question svg{
  width:3em;
  transition: all 0.3s ease;

}
#button-question:hover svg{
  transform: translateX(20px);
  opacity: 1;
}

#button-question:hover svg path{
  fill:#ffffff !important;
}

#container-buttons-question > .elementor-element:first-of-type .elementor-button-link{
  border-top: 1px solid #50534C17;
  gap:0px !important;
  box-sizing: content-box;
} 

#button-question{
  border-bottom: 1px solid #50534C17;
  height:100% !important;
  box-sizing: content-box;
}

/* Fix débordement sur mobile et tablette */
@media (min-width: 768px) and (max-width: 1024px) {
  html, body {
    overflow-x: hidden;
  }
}

/* Glossary */

/* Panneau global */
.hpe-lexique-panel {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(calc(100% - var(--hpe-lexique-tab-w)));  
  width: 280px;
  z-index: 9999;

  display: flex;
  align-items: flex-start;
  /* Plus de background / radius / shadow ici */
  background: transparent;
  box-shadow: none;
  overflow: visible;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.hpe-lexique-panel.is-open {
  transform: translateY(-50%) translateX(0);
}

/* Bouton onglet vertical */
.hpe-lexique-tab {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 var(--hpe-lexique-tab-w);
  width: var(--hpe-lexique-tab-w) !important;
  align-self: flex-start;
}

.hpe-lexique-tab:hover,
.hpe-lexique-tab:focus,
.hpe-lexique-tab:active {
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
}

.hpe-lexique-icon {
  display: block;
  width: var(--hpe-lexique-tab-w);
  height: auto;
}

.hpe-lexique-icon--open { display: none; }
.hpe-lexique-panel.is-open .hpe-lexique-icon--open { display: block; }
.hpe-lexique-panel.is-open .hpe-lexique-icon--closed { display: none; }

/* Contenu interne */
.hpe-lexique-inner {
  padding: 24px 20px;
  background: #003767;
  color: #fff;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);

  flex: 1 1 auto;     /* largeur restante */
  /* hauteur auto, donc le bloc s’agrandit avec les définitions */
}

.hpe-lexique-item {
  margin-bottom: 14px;
}
.hpe-lexique-item strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
  font-size:14px
}
.hpe-lexique-item p {
  margin: 0;
  font-size:14px
}
/* Texte vertical dans le fond, tourné */
.hpe-lexique-tab::after {
  content: attr(data-label);
  position: absolute;
  padding-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: inherit;
  font-size: 16px;        /* à ajuster */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #ffffff;

  /* Rotation pour lire de bas en haut */
  transform: rotate(-90deg);
  transform-origin: center center;
}
/* ========== MOBILE : lexique en bas du contenu, avant le footer ========== */
@media (max-width: 767px) {

  /* Le panneau redevient un bloc normal dans le flux */
  .hpe-lexique-panel {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 0px auto 0;
    display: block;
  }

  /* On cache complètement le bouton sur mobile */
  .hpe-lexique-tab {
    transform: rotate(90deg);
    position: static;
    margin: auto auto -45px auto;
  }

  /* Le bloc bleu devient un simple encart plein largeur */
  .hpe-lexique-inner {
    margin-top: 0;
    border-radius: 14px;
    padding: 20px 18px;
  }

  /* 🔒 On neutralise l’effet "ouvert/fermé" sur les icônes */
  .hpe-lexique-icon--open,
  .hpe-lexique-panel.is-open .hpe-lexique-icon--open {
    display: none;
  }
  .hpe-lexique-icon--closed,
  .hpe-lexique-panel.is-open .hpe-lexique-icon--closed {
    display: block;
  }

  /* 🔒 Le bouton ne fait plus rien au clic (visuellement et fonctionnellement) */
  .hpe-lexique-tab {
    pointer-events: none;  /* optionnel : désactive complètement le clic */
  }

}