.elementor-22 .elementor-element.elementor-element-f8c89a8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-1b26f07 *//* ============================= */
/* SÉLECTEUR LANGUE - GLOBE */
/* ============================= */

.mc-lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

/* Zone invisible entre le globe et la liste pour éviter que le menu se ferme */
.mc-lang-switcher::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 14px;
  background: transparent;
}

/* Bouton globe */
.mc-lang-button {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(52, 56, 61, 0.16);
  background: #ffffff;
  color: #34383d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  overflow: visible;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}

/* Cercle orange animé autour du globe */
.mc-lang-button::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 2px solid transparent;
  border-top-color: #f15a24;
  border-right-color: #f15a24;
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.25s ease;
  pointer-events: none;
}

/* Animation au survol */
.mc-lang-switcher:hover .mc-lang-button::before,
.mc-lang-switcher.is-open .mc-lang-button::before {
  opacity: 1;
  animation: mcLangRotate 1.1s linear infinite;
}

@keyframes mcLangRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.mc-lang-button svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 2;
}

.mc-lang-switcher:hover .mc-lang-button,
.mc-lang-switcher.is-open .mc-lang-button {
  color: #f15a24;
  border-color: rgba(241, 90, 36, 0.48);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(241, 90, 36, 0.16);
  transform: translateY(-1px);
}

/* Liste des langues */
.mc-lang-dropdown {
  position: absolute;
  top: calc(100% + 6px); /* avant trop bas, ici rapproché */
  right: 0;
  min-width: 118px;
  padding: 7px;
  background: #ffffff;
  border: 1px solid rgba(52, 56, 61, 0.10);
  border-radius: 15px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.13);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

/* Ouverture au survol + au clic */
.mc-lang-switcher:hover .mc-lang-dropdown,
.mc-lang-switcher.is-open .mc-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Liens langues */
.mc-lang-dropdown a {
  color: #34383d !important;
  background: #ffffff !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 13px;
  border-radius: 11px;
  line-height: 1;
  display: block;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

/* Survol : orange MaCentrale, pas violet */
.mc-lang-dropdown a:hover,
.mc-lang-dropdown a:focus,
.mc-lang-dropdown a:active {
  background: rgba(241, 90, 36, 0.10) !important;
  color: #f15a24 !important;
  box-shadow: inset 0 0 0 1px rgba(241, 90, 36, 0.18);
  outline: none !important;
}

/* Sécurité contre les couleurs violettes du thème */
.mc-lang-switcher a,
.mc-lang-switcher a:visited {
  color: #34383d !important;
}

.mc-lang-switcher a:hover,
.mc-lang-switcher a:focus,
.mc-lang-switcher a:active {
  color: #f15a24 !important;
  background-color: rgba(241, 90, 36, 0.10) !important;
}/* End custom CSS */