/* XERON Header + Footer Fixed Demo
   Fix target:
   - no top-scroll flash when .is-scrolled is added/removed
   - stable header height / padding / border / background
   - no backdrop-filter during scroll
   - fixed hover bridge for secondary menus
*/

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: #f5f7ff;
  background:
    radial-gradient(circle at 12% 8%, rgba(40,217,255,.18), transparent 32%),
    radial-gradient(circle at 88% 36%, rgba(255,62,209,.16), transparent 36%),
    radial-gradient(circle at 46% 72%, rgba(135,92,255,.10), transparent 34%),
    linear-gradient(180deg, #03040a 0%, #070916 46%, #040613 100%);
  /* Important: fixed background + sticky header is a common source of flash/jank */
  background-attachment: scroll;
 font-family: Inter, system-ui, "Segoe UI", Arial, sans-serif;
}

:root {
  --site-bg-gradient:
    radial-gradient(circle at 12% 8%, rgba(40, 217, 255, .18), transparent 32%),
    radial-gradient(circle at 88% 36%, rgba(255, 62, 209, .16), transparent 36%),
    radial-gradient(circle at 46% 72%, rgba(135, 92, 255, .10), transparent 34%),
    linear-gradient(180deg, #03040a 0%, #070916 46%, #040613 100%);
}

body.xeron-lock-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.xeron-site-header,
.xeron-site-footer,
.xeron-mobile-drawer,
.xeron-search-overlay {
  --xeron-text: #f5f7ff;
  --xeron-muted: #9ca6c0;
  --xeron-blue: #28d9ff;
  --xeron-pink: #ff3ed1;
  --xeron-gold: #d8b76a;
  --xeron-line: rgba(255,255,255,.14);
  --xeron-line-strong: rgba(255,255,255,.24);
  --xeron-card: rgba(255,255,255,.065);
  --xeron-shadow: 0 30px 90px rgba(0,0,0,.42);
  font-family: Inter, system-ui, "Segoe UI", Arial, sans-serif;
}

/* Header: stable at top and scrolled */
.xeron-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transform: translateZ(0);
  transition: none;
}

.xeron-site-header.is-scrolled {
  /*padding: 14px 0;*/
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.xeron-site-header__inner {
  width: min(1440px, calc(100% - 44px));
  height: 62px;
  margin: 0 auto;
  padding: 0 12px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: 999px;
border: 1px solid rgba(255, 255, 255, .14);
    background: radial-gradient(circle at 0% 50%, rgba(40, 217, 255, .12), transparent 28%), radial-gradient(circle at 100% 50%, rgba(255, 62, 209, .12), transparent 30%), rgba(5, 7, 18, .72);
    box-shadow: 0 24px 90px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255, 255, 255, .075);
  transform: translateZ(0);
  transition: none;
  /* no backdrop-filter here; it is the biggest source of flicker on scroll */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.xeron-site-header.is-scrolled .xeron-site-header__inner {
  height: 62px;
  /*border: 1px solid rgba(255,255,255,.14);*/
  /*background: rgba(4,6,19,.74);*/
  box-shadow: 0 18px 60px rgba(0,0,0,.34);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.xeron-site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--xeron-text);
  white-space: nowrap;
}

.xeron-site-logo__mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.20);
  background:
    linear-gradient(135deg, rgba(40,217,255,.95), transparent 50%),
    linear-gradient(315deg, rgba(255,62,209,.92), transparent 52%),
    rgba(255,255,255,.08);
  color: #fff;
  font-size: 10px;
  font-weight: 950;
}

.xeron-site-logo__text {
  font-size: 18px;
  letter-spacing: .20em;
  font-weight: 950;
}

.xeron-site-logo__img {
  height: 24px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
}

.xeron-site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 100%;
}

.xeron-site-nav__item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.xeron-site-nav__item > a {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 850;
  transition: color .18s ease;
}

.xeron-site-nav__item:hover > a {
  color: #fff;
}

/* Correct hover bridge class: prevents submenu disappearing */
.xeron-site-nav__item--has-menu::after {
  content: "";
  position: absolute;
  left: -34px;
  right: -34px;
  top: 100%;
  height: 28px;
  z-index: 2;
  pointer-events: auto;
}

.xeron-site-nav .is-active a{
  color: #fff;
}

.xeron-site-dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 16px);
  width: min(760px, calc(100vw - 44px));
  padding: 16px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 16% 0%, rgba(40,217,255,.13), transparent 34%),
    radial-gradient(circle at 90% 100%, rgba(255,62,209,.12), transparent 36%),
    rgba(8,10,24,.94);
  box-shadow: 0 30px 100px rgba(0,0,0,.42);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 5;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.xeron-site-nav__item:hover .xeron-site-dropdown,
.xeron-site-dropdown:hover {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, 0);
}

.xeron-site-dropdown--compact {
  width: 360px;
}

.xeron-site-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.xeron-site-dropdown__card,
.xeron-site-dropdown__list a {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.055);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.xeron-site-dropdown__card {
  min-height: 134px;
  padding: 18px;
}

.xeron-site-dropdown__card:hover,
.xeron-site-dropdown__list a:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.09);
}

.xeron-site-dropdown__card span,
.xeron-site-dropdown__list span {
  display: block;
  color: var(--xeron-blue);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  font-weight: 950;
}

.xeron-site-dropdown__card strong,
.xeron-site-dropdown__list strong {
  display: block;
  margin-top: 10px;
  color: var(--xeron-text);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -.04em;
}

.xeron-site-dropdown__card em,
.xeron-site-dropdown__list em {
  display: block;
  margin-top: 9px;
  color: var(--xeron-muted);
  font-size: 12px;
  line-height: 1.45;
  font-style: normal;
}

.xeron-site-dropdown__list {
  display: grid;
  gap: 8px;
}

.xeron-site-dropdown__list a {
  min-height: 72px;
  padding: 15px;
}

.xeron-site-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.xeron-site-icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.xeron-site-icon-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.11);
}

.xeron-site-icon-btn svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.xeron-site-buy {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 999px;
  background: #fff;
  color: #05060d;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  transition: transform .18s ease;
}

.xeron-site-buy:hover {
  transform: translateY(-2px);
}

/* Language */
.xeron-site-lang {
  position: relative;
}

.xeron-site-lang__btn {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.xeron-site-lang__btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.xeron-site-lang__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 150px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(8,10,24,.94);
  box-shadow: 0 24px 70px rgba(0,0,0,.36);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.xeron-site-lang.is-open .xeron-site-lang__menu,
.xeron-site-lang:hover .xeron-site-lang__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.xeron-site-lang__menu a {
  display: block;
  padding: 10px 11px;
  border-radius: 12px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
}

.xeron-site-lang__menu a:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.xeron-site-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  padding: 11px;
}

.xeron-site-menu-btn span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 99px;
  background: #fff;
}

/* Search overlay */
.xeron-search-overlay,
.xeron-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}

.xeron-search-overlay.is-open,
.xeron-mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.xeron-search-overlay__backdrop,
.xeron-mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,3,8,.78);
}

.xeron-search-overlay__box {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 32px));
  margin: 110px auto 0;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 16% 0%, rgba(40,217,255,.16), transparent 34%),
    radial-gradient(circle at 90% 100%, rgba(255,62,209,.13), transparent 36%),
    rgba(8,10,24,.94);
  box-shadow: 0 36px 120px rgba(0,0,0,.48);
}

.xeron-search-overlay__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.xeron-search-overlay__kicker {
  color: var(--xeron-blue);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 950;
  font-size: 12px;
}

.xeron-search-overlay h2 {
  margin: 10px 0 0;
  color: #f5f7ff;
  font-size: clamp(36px, 5vw, 64px);
  line-height: .88;
  letter-spacing: -.065em;
}

.xeron-search-form {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
}

.xeron-search-form input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.13);
  outline: none;
  background: rgba(0,0,0,.24);
  color: #fff;
  font-size: 15px;
}

.xeron-search-form input:focus {
  border-color: rgba(40,217,255,.42);
}

.xeron-search-form button {
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: #05060d;
  font-weight: 950;
}

.xeron-search-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.xeron-search-tags a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 850;
}

/* Mobile drawer */
.xeron-mobile-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 100%);
  padding: 20px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 12% 0%, rgba(40,217,255,.16), transparent 34%),
    radial-gradient(circle at 88% 100%, rgba(255,62,209,.14), transparent 36%),
    #070916;
  border-left: 1px solid rgba(255,255,255,.12);
  transform: translateX(100%);
  transition: transform .22s ease;
}

.xeron-mobile-drawer.is-open .xeron-mobile-drawer__panel {
  transform: translateX(0);
}

.xeron-mobile-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.xeron-mobile-nav {
  display: grid;
  gap: 8px;
}

.xeron-mobile-nav > a,
.xeron-mobile-nav summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.055);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.xeron-mobile-nav summary::-webkit-details-marker {
  display: none;
}

.xeron-mobile-nav details div {
  display: grid;
  gap: 6px;
  padding: 8px 0 6px 18px;
}

.xeron-mobile-nav details div a {
  min-height: 38px;
  display: flex;
  align-items: center;
  color: var(--xeron-muted);
  font-size: 14px;
  font-weight: 800;
}

.xeron-mobile-drawer__bottom {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.xeron-mobile-search {
  height: 48px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-weight: 900;
}

.xeron-mobile-lang {
  display: flex;
  gap: 8px;
}

.xeron-mobile-lang a {
  flex: 1;
  min-height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 900;
}

.xeron-site-buy--mobile {
  width: 100%;
}

/* Footer */
.xeron-site-footer {
  position: relative;
  z-index: 1;
  padding: 4px 0 36px;
  color: var(--xeron-text);
  background: transparent;
}

.xeron-site-footer__container {
  width: min(1440px, calc(100% - 44px));
  margin: 0 auto;
}

.xeron-site-footer__top {
  display: grid;
  grid-template-columns: .95fr 1.55fr;
  gap: 48px;
  padding: 36px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 16% 0%, rgba(40,217,255,.14), transparent 34%),
    radial-gradient(circle at 90% 100%, rgba(255,62,209,.12), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.090), rgba(255,255,255,.030));
  box-shadow: 0 30px 90px rgba(0,0,0,.36);
}

.xeron-site-footer__brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--xeron-muted);
  font-size: 14px;
  line-height: 1.7;
}

.xeron-site-footer__social {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}

.xeron-site-footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 950;
}

.xeron-site-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.xeron-site-footer__col h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.xeron-site-footer__col a {
  display: block;
  margin-top: 10px;
  color: var(--xeron-muted);
  font-size: 14px;
  line-height: 1.4;
  transition: color .18s ease, transform .18s ease;
}

.xeron-site-footer__col a:hover {
  color: #fff;
  transform: translateX(3px);
}

.xeron-site-footer__newsletter {
  margin-top: 16px;
  min-height: 94px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: center;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
}

.xeron-site-footer__newsletter strong {
  display: block;
  color: #fff;
  font-size: 22px;
  letter-spacing: -.035em;
}

.xeron-site-footer__newsletter span {
  display: block;
  margin-top: 6px;
  color: var(--xeron-muted);
  font-size: 13px;
}

.xeron-site-footer__newsletter form {
  display: grid;
  grid-template-columns: 1fr 116px;
  gap: 8px;
}

.xeron-site-footer__newsletter input {
  height: 46px;
  padding: 0 15px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: #fff;
  outline: none;
}

.xeron-site-footer__newsletter button {
  border: 0;
  border-radius: 16px;
  background: #fff;
  color: #05060d;
  font-weight: 950;
}

.xeron-site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 26px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
}

.xeron-site-footer__bottom div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Demo content */
.xeron-demo-main {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 44px));
  margin: 70px auto 0;
}

.xeron-demo-hero {
  min-height: 620px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 72% 48%, rgba(40,217,255,.18), transparent 34%),
    radial-gradient(circle at 18% 96%, rgba(255,62,209,.14), transparent 40%),
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
  padding: 44px;
}

.xeron-demo-hero span {
  display: block;
  color: var(--xeron-blue);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 950;
  font-size: 12px;
}

.xeron-demo-hero h1 {
  margin: 12px 0 0;
  max-width: 800px;
  font-size: clamp(52px, 7vw, 92px);
  line-height: .86;
  letter-spacing: -.075em;
}

.xeron-demo-hero p {
  max-width: 680px;
  color: var(--xeron-muted);
  line-height: 1.7;
}

.xeron-demo-hero code {
  color: #fff;
}

.xeron-demo-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.xeron-demo-grid article,
.xeron-demo-spacer {
  min-height: 260px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
}

.xeron-demo-grid h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -.05em;
}

.xeron-demo-grid p,
.xeron-demo-spacer p {
  color: var(--xeron-muted);
}

.xeron-demo-spacer {
  margin-top: 18px;
  min-height: 900px;
  display: grid;
  place-items: center;
}

/* Responsive */
@media (max-width: 1080px) {
  .xeron-site-nav {
    display: none;
  }

  .xeron-site-buy,
  .xeron-site-lang {
    display: none;
  }

  .xeron-site-menu-btn {
    display: block;
  }

  .xeron-site-footer__top,
  .xeron-site-footer__newsletter {
    grid-template-columns: 1fr;
  }

  .xeron-site-footer__cols,
  .xeron-demo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .xeron-site-header__inner,
  .xeron-site-footer__container,
  .xeron-demo-main {
    width: min(100% - 28px, 1440px);
  }

  .xeron-site-header__inner,
  .xeron-site-header.is-scrolled .xeron-site-header__inner {
    height: 60px;
    padding-left: 16px;
  }

  .xeron-site-logo__text {
    font-size: 16px;
  }

  .xeron-site-actions .xeron-site-icon-btn {
    display: none;
  }

  .xeron-search-overlay__box {
    margin-top: 78px;
    padding: 22px;
    border-radius: 24px;
  }

  .xeron-search-form {
    grid-template-columns: 1fr;
  }

  .xeron-search-form button {
    height: 48px;
  }

  .xeron-site-footer {
    padding-top: 54px;
  }

  .xeron-site-footer__top {
    padding: 26px;
    border-radius: 28px;
  }

  .xeron-site-footer__cols,
  .xeron-demo-grid {
    grid-template-columns: 1fr;
  }

  .xeron-site-footer__newsletter form {
    grid-template-columns: 1fr;
  }

  .xeron-site-footer__newsletter button {
    height: 46px;
  }
}

/* =========================================================
   Language dropdown hover/click fix
   Fix: moving mouse from EN button to dropdown menu no longer loses hover.
   ========================================================= */

.xeron-site-lang {
  position: relative;
  z-index: 30;
}

/* Transparent bridge between language button and language menu */
.xeron-site-lang::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 16px;
  z-index: 31;
  pointer-events: auto;
}

/* Keep menu above the bridge */
.xeron-site-lang__menu {
  top: calc(100% + 8px) !important;
  z-index: 40 !important;
}

/* Menu stays visible on hover, keyboard focus, or click-open class */
.xeron-site-lang:hover .xeron-site-lang__menu,
.xeron-site-lang:focus-within .xeron-site-lang__menu,
.xeron-site-lang.is-open .xeron-site-lang__menu,
.xeron-site-lang__menu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
