/* =====================================================
SULO MEGA MENU
Requires: sulo-menu.js
Usage: enqueue in WordPress via wp_enqueue_style()
===================================================== */

/* =====================================================
RESET & TOKENS
===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

header ul,
header li {
  list-style: none;
  margin: 0;
  padding: 0;
}

header a {
  text-decoration: none !important;
  color: inherit;
}

/* verhindert horizontalen Scrollbalken durch den 100vw full-bleed
Hintergrund-Trick von nav > ul > li > ul.mega::before */

html {
  overflow-x: hidden;
}

:root {
  /* Sulo Group Brand-Farben – zentrale Quelle, alles andere referenziert diese */
  --sg-color-primary: #EB0000;
  /* #006c67 */
  --sg-color-secondary: #FF0000;
  --sg-color-accent: #F6F6F6;
  --sg-color-light: #F6F6F6;
  --sg-color-dark: #555555;
  --white: #fff;
  --text: #1a1a1a;
  --border: #e5e5e5;
  --mega-row-h: 40px;
  /* Icon für den Kategorie-Overview-Link (sub-ov) – austauschbar:
     einfach die Data-URI unten gegen ein anderes SVG ersetzen */
  --sub-ov-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E");
  /* L0-Nav Chevron auf/zu (ersetzt die externen arrowBottom/arrowTop.svg von amazonaws.com) */
  --chevron-down-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  --chevron-up-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 15l6-6 6 6'/%3E%3C/svg%3E");
  /* mob-back Zurück-Pfeil (ersetzt das externe arrowLeft.svg von amazonaws.com) */
  --chevron-left-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 6l-6 6 6 6'/%3E%3C/svg%3E");
  --nav-h: 56px;
  --mob-back-h: 48px;
}

/* =====================================================
PREMESSAGE BAR
===================================================== */

.premessage {
  display: none !important;
  background: var(--sg-color-primary);
  color: var(--white);
  font-size: 14px;
  text-align: center;
  position: relative;
}

.premessage__inner {
  padding: 9px 48px 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.premessage__text {
  margin: 0;
}

.premessage__link {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
  white-space: nowrap;
}

.premessage__link:hover {
  opacity: .85;
}

.premessage__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  opacity: .8;
}

.premessage__close:hover {
  opacity: 1;
}

.premessage.is-hidden {
  display: none;
}

/* =====================================================
PREHEADER BAR
===================================================== */

.preheader {
  /* display: none !important; */
  background: #006c67;
}

.preheader__inner {
  padding: 0 24px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.preheader__usps {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.preheader__usp {
  font-size: 13px;
  color: var(--white);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.preheader__meta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.preheader__meta-item {
  display: flex;
  align-items: center;
}

.preheader__meta-item + .preheader__meta-item::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.2);
  margin: 0 12px;
}

.preheader__meta-link {
  font-size: 13px;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .15s;
}

.preheader__meta-link:hover {
  color: var(--white);
}

/* =====================================================
SITE HEADER
===================================================== */

.site-header {
  background: var(--white);
  /* border-bottom: 1px solid var(--border);  */
  box-shadow: rgba(0, 0, 0, 0.1) 0 10px 30px -15px;
  position: relative;
  z-index: 500;
}

.site-header__inner {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
}

.site-header__logo {
  flex-shrink: 0;
  margin-right: 32px;
}

.site-header__logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-header__logo img {
  height: 60px;
  width: auto;
  display: block;
}

.site-header__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.site-header__logo-text small {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sg-color-dark);
  margin-top: 2px;
}

.site-header__nav {
  flex: 1;
  display: flex;
  align-items: stretch;
  height: 100%;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: 16px;
}

.site-header__btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background .15s;
  text-decoration: none;
  position: relative;
}

.site-header__btn:hover {
  background: var(--sg-color-accent);
}

.site-header__btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header__btn.language_switcher_button span {
  color: var(--sulo-green);
  margin-right: 10px;
}

.site-header__btn.language_switcher_button p.current_language {
  text-transform: uppercase;
}

.site-header__btn.language_switcher_button svg {
  margin-left: 10px;
}

.site-header__cart-badge,
.minimal-quote-header-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--sg-color-primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}



/* =====================================================
Under   < 1140px
===================================================== */
@media (max-width: 1139px) {
  .site-header__inner {
    padding: 0 16px;
  }
}



/* =====================================================
DESKTOP  ≥ 951px
===================================================== */

@media (min-width: 951px) {
  .mob-trigger,
  .mob-back,
  .nav-close,
  .nav-header {
    display: none !important;
  }

  nav::before {
    display: none;
  }

  .site-header .mob-trigger {
    display: none !important;
  }

  /* nav im weißen Header */

  .site-header__nav > nav {
    width: 100%;
    background: var(--white);
    position: static;
  }

  .site-header__nav > nav > ul {
    height: 100%;
  }

  nav > ul {
    display: flex;
    align-items: stretch;
    height: var(--nav-h);
  }

  nav > ul > li {
    position: static;
    display: flex;
    align-items: stretch;
  }

  /* L0 links – weiß auf hellem Header */

  .site-header__nav nav > ul > li > a {
    color: var(--text);
    background: var(--white);
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    transition: color .15s, border-color .15s;
  }

  .site-header__nav nav > ul > li > a[data-sub]::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask-image: var(--chevron-down-icon);
    mask-image: var(--chevron-down-icon);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
  }

  .site-header__nav nav > ul > li.open > a {
    color: var(--sg-color-primary);
    border-bottom-color: var(--sg-color-primary);
    background: var(--white);
  }

  .site-header__nav nav > ul > li.open > a[data-sub]::after {
    -webkit-mask-image: var(--chevron-up-icon);
    mask-image: var(--chevron-up-icon);
  }

  /* Mega dropdown */

  nav > ul > li > ul.mega {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 100%;
    max-width: 1440px;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    z-index: 400;
    overflow: visible;
    isolation: isolate;
    padding: 20px 0;
    box-sizing: border-box;
  }

  /* Full-bleed Hintergrund, unabhängig von der max-width 1280px von ul.mega */

  nav > ul > li > ul.mega::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    background: var(--white);
    z-index: -1;
  }

  nav > ul > li > ul.mega.open::before {
    box-shadow: rgba(0, 0, 0, 0.1) 0 10px 30px -15px;
  }

  nav > ul > li > ul.mega li {
    margin-bottom: 10px;
  }

  nav > ul > li.open > ul.mega {
    display: grid;
  }

  /* col-main */

  ul.mega > li.col-main {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 10px;
    position: static;
    border-right: 1px solid var(--sg-color-light);
  }

  /* CTA */

  li.col-main > a.cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 12px 10px;
    padding: 11px 14px;
    background: var(--sg-color-primary);
    color: var(--white);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
  }

  /* L1 items */

  li.col-main > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-height: var(--mega-row-h);
    padding: 0 36px 0 16px;
    font-size: 0.9em;
    color: var(--text);
    position: relative;
    cursor: pointer;
    transition: background .12s, color .12s, border-color .12s;
    border-radius: 50px;
  }

  li.col-main > ul > li > a .ico {
    width: 20px;
    flex-shrink: 0;
    opacity: .6;
    font-style: normal;
  }

  li.col-main > ul > li > a[data-sub]::after {
    position: absolute;
    right: 20px;
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
  }

  li.col-main > ul > li.open > a,
  li.col-main > ul > li:hover > a {
    background: var(--sg-color-accent);
    color: var(--sg-color-primary);
    border-left-color: var(--sg-color-primary);
  }

  /* Fokus-Effekt: sobald ein L1-Item offen ist, verblassen die übrigen leicht */

  li.col-main > ul:has(> li.open) > li:not(.open) > a {
    color: var(--sg-color-dark);
  }

  li.col-main > ul:has(> li.open) > li:not(.open):hover > a {
    color: var(--sg-color-primary);
  }

  /* L2 panel */

  li.col-main > ul > li > ul.sub {
    display: none;
    position: absolute;
    top: 20px;
    left: 25%;
    width: 25%;
    background: var(--white);
    z-index: 2;
    overflow: visible;
    padding: 20px 10px;
  }

  li.col-main > ul > li.open > ul.sub {
    display: block;
  }

  /* Kategorie-Overview-Link (erstes Element im Panel):
  wirkt wie eine Überschrift über den Items darunter,
  bleibt aber durch Hover-Farbe klar als Link erkennbar */

  ul.sub > li.ov > a,
  ul.sub > li.sub-ov-li > a.sub-ov,
  ul.sub2 > li.ov > a,
  ul.sub2 > li.sub-ov-li > a.sub-ov {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: var(--mega-row-h);
    padding: 0 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: color .12s;
  }

  /* Icon: signalisiert "führt zur Kategorieseite", abstrakt & austauschbar
  über --sub-ov-icon oben in :root */

  ul.sub > li.ov > a::after,
  ul.sub > li.sub-ov-li > a.sub-ov::after,
  ul.sub2 > li.ov > a::after,
  ul.sub2 > li.sub-ov-li > a.sub-ov::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask-image: var(--sub-ov-icon);
    mask-image: var(--sub-ov-icon);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: background-color .12s;
  }

  ul.sub > li.ov > a:hover,
  ul.sub > li.sub-ov-li > a.sub-ov:hover,
  ul.sub2 > li.ov > a:hover,
  ul.sub2 > li.sub-ov-li > a.sub-ov:hover {
    color: var(--sg-color-primary);
  }

  ul.sub > li > a {
    display: flex;
    align-items: center;
    min-height: var(--mega-row-h);
    padding: 0 36px 0 16px;
    font-size: 0.9em;
    color: var(--text);
    border-left: 3px solid transparent;
    position: relative;
    cursor: pointer;
    transition: background .12s, color .12s, border-color .12s;
    border-radius: 50px;
  }

  ul.sub > li > a[data-sub]::after {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 20px;
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
  }

  ul.sub > li.open > a,
  ul.sub > li:hover > a {
    background: var(--sg-color-accent);
    color: var(--sg-color-primary);
  }

  /* Fokus-Effekt: sobald ein L2-Item sein Sub2-Panel öffnet, verblassen die übrigen leicht */

  ul.sub:has(> li.open) > li:not(.open) > a {
    color: var(--sg-color-dark);
  }

  ul.sub:has(> li.open) > li:not(.open):hover > a {
    color: var(--sg-color-primary);
  }

  ul.sub:has(> li.open) > li.ov:not(.open) > a,
  ul.sub:has(> li.open) > li.sub-ov-li:not(.open) > a.sub-ov {
    color: var(--sg-color-dark);
  }

  ul.sub:has(> li.open) > li.ov:not(.open):hover > a,
  ul.sub:has(> li.open) > li.sub-ov-li:not(.open):hover > a.sub-ov {
    color: var(--sg-color-primary);
  }

  /* L3 panel */

  ul.sub > li > ul.sub2 {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    min-height: 100%;
    background: var(--white);
    z-index: 3;
    overflow-y: auto;
    padding: 20px 10px;
  }

  ul.sub > li.open > ul.sub2 {
    display: block;
  }

  ul.sub2 > li > a {
    display: flex;
    align-items: center;
    min-height: var(--mega-row-h);
    padding: 0 16px;
    font-size: 0.9em;
    color: var(--text);
    border-left: 3px solid transparent;
    transition: background .12s, color .12s, border-color .12s;
    border-radius: 50px;
  }

  ul.sub2 > li > a:hover,
  ul.sub2 > li:hover > a {
    background: var(--sg-color-accent);
    color: var(--sg-color-primary);
  }

  /* hints */

  .hint-lbl {
    display: block;
    padding: 12px 16px 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--sg-color-dark);
    font-weight: 700;
  }

  .hint-lnk {
    display: inline-block;
    margin: 4px 16px 10px;
    padding: 5px 12px;
    border: 1px solid var(--sg-color-primary);
    color: var(--sg-color-primary);
    border-radius: 3px;
    font-size: 12px;
    transition: background .15s, color .15s;
  }

  .hint-lnk:hover {
    background: var(--sg-color-primary);
    color: var(--white);
  }

  /* spacers + promo */

  ul.mega > li.sp2 {
    grid-column: 2;
    grid-row: 1;
    background: var(--white);
  }

  ul.mega > li.sp3 {
    grid-column: 3;
    grid-row: 1;
    background: var(--white);
  }

  ul.mega > li.col-promo {
    grid-column: 4;
    grid-row: 1;
    padding: 22px 24px;
    flex-direction: column;
    gap: 14px;
  }

  .promo-img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
    /* background: linear-gradient(135deg, #8B0000, #2a0a0a); */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .promo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .promo-ph {
    color: rgba(255,255,255,.3);
    font-size: 11px;
  }

  .promo-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
  }

  .promo-link {
    display: none !important;
    font-size: 13px;
    color: var(--sg-color-primary);
    text-decoration: underline;
  }

  .promo-link:hover {
    color: #6e0000;
  }

  /* Sub-Panel slide-in animation */

  @keyframes slidein {
    from {
      opacity: 0;
      transform: translateX(-12px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }

  }

  li.col-main > ul > li.open > ul.sub {
    animation: slidein .18s ease-out;
  }

  ul.sub > li.open > ul.sub2 {
    animation: slidein .18s ease-out;
  }

  main::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 108, 103, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 10;
  }

  main.menu-open::before {
    opacity: 1;
  }

  .wrapper {
    transition: filter 0.5s ease;
  }

  main.menu-open .wrapper {
    filter: blur(6px);
    overflow: hidden;
  }

  .language-overlay-fw {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /*center*/
    visibility: hidden;
    opacity: 0;
    position: fixed;
    padding: 200px 0 0 0;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgba(var(--sulo-darkgrey-rgba)) !important;
    background-image: url('https://downloads.sulo.com/Group/General/sulo-group-background-outline-2.svg');
    background-size: cover;
    color: var(--sulo-white);
    align-items: center;
    backdrop-filter: blur(5px);
    z-index: 9999;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .language-overlay-fw.active {
    visibility: visible;
    opacity: 1;
  }

  .language-overlay-fw h2,
  .language-overlay-fw p,
  .language-overlay-fw a {
    color: var(--sulo-white);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 3px solid transparent;
    padding: 6px;
  }

  .language-overlay-fw h2 {
    text-align: center;
  }

  .language-overlay-fw a {
    padding: 10px 20px;
    border-radius: 26px;
  }

  .language-overlay-fw a:hover,
  .language-overlay-fw li.active a {
    color: var(--sulo-black);
    background-color: var(--sulo-beige);
  }

  .language-overlay-fw .menu-close {
    margin-top: 100px;
    right: inherit;
  }

  .language-overlay-fw .group-languages {
    margin-bottom: 200px;
  }

  .language-overlay-fw .group-languages,
  .language-overlay-fw .countries-languages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Three columns with equal width */
    grid-gap: 100px;
    /* Gap between grid cells */
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .language-overlay-fw .group-languages,
  .language-overlay-fw .countries-languages {
    list-style: none !important;
  }

  .language-overlay-fw .group-languages li,
  .language-overlay-fw .countries-languages li {
    list-style: none !important;
  }

  .country ul li a {
    color: var(--sulo-white);
    text-decoration: none;
    padding-left: 10px;
  }

  .language-switcher-globe {
    text-decoration: none !important;
    font-weight: bold;
    /* border-right: 1px solid var(--sulo-smokegrey); */
    margin: 0 6px 0 0;
    font-style: normal;
  }

  .language-switcher-globe .lang-code {
    line-height: 2;
  }

  .language-switcher-globe:hover,
  .language-switcher-globe:hover span {
    color: var(--sulo-red);
    cursor: pointer;
  }

}

/* =====================================================
MOBILE  ≤ 950px
===================================================== */

@media (max-width: 950px) {
  body {
    overflow-x: hidden;
  }

  .preheader__usps {
    display: none;
  }

  .preheader__inner {
    justify-content: flex-end;
    padding: 0 16px;
  }

  .site-header__inner {
    height: 56px;
    padding: 0 16px;
  }

  /* .site-header__actions {
    display: none !important;
    margin-left: auto;
  } */

  .site-header .mob-trigger {
    display: flex !important;
    margin-left: 8px;
  }

  .site-header__logo img {
    height: 40px;
  }

  .site-header__logo-text {
    font-size: 18px;
  }

  /* mob-trigger: nur Icon */

  .mob-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: var(--text);
    border: none;
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 22px;
    cursor: pointer;
    font-family: inherit;
    flex-shrink: 0;
  }

  .mob-trigger::after {
    content: "☰";
  }

  /* drawer */

  #nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 900;
    overflow: hidden;
    transition: left .3s ease;
    display: flex;
    flex-direction: column;
  }

  #nav.open {
    left: 0;
  }

  #nav::before {
    display: none;
  }

  /* drawer header: Logo + Close */

  .nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    padding: 0 16px;
    flex-shrink: 0;
    /* background: var(--sg-color-light); */
  }

  .nav-header .custom-logo {
    height: calc(var(--nav-h) - 20px);
    width: auto;
  }

  .nav-header__logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-decoration: none;
  }

  .nav-header__logo small {
    display: block;
    font-size: 8px;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-top: 2px;
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: none;
    border: none;
    color: #000;
    font-size: 22px;
    cursor: pointer;
  }

  .nav-close:hover {
    opacity: .8;
  }

  /* panel stage */

  #nav > ul {
    flex: 1;
    position: relative;
    overflow: hidden;
  }

  /* root items */

  #nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    height: 52px;
    padding: 0 16px;
    font-size: 1em;
    color: var(--text);
    border-bottom: 0px solid var(--border);
    background: var(--white);
    cursor: pointer;
    position: relative;
  }

  #nav > ul > li > a[data-sub]::after {
    flex-shrink: 0;
    position: absolute;
    right: 20px;
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
  }

  /* slide panels */

  #nav > ul > li > ul.mega,
  ul.mega > li.col-main > ul > li > ul.sub,
  ul.sub > li > ul.sub2 {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    overflow-y: auto;
    overflow-x: hidden;
    transition: left .3s ease;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
  }

  #nav > ul > li > ul.mega {
    z-index: 10;
  }

  ul.mega > li.col-main > ul > li > ul.sub {
    z-index: 20;
  }

  ul.sub > li > ul.sub2 {
    z-index: 30;
  }

  #nav > ul > li > ul.mega.open,
  ul.mega > li.col-main > ul > li > ul.sub.open,
  ul.sub > li > ul.sub2.open {
    left: 0;
  }

  /* mob-back */

  .mob-back {
    display: flex;
    align-items: center;
    gap: 10px;
    height: var(--mob-back-h);
    flex-shrink: 0;
    padding: 0 16px;
    background: var(--sg-color-accent);
    color: var(--text);
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 50px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
    width: calc(100% - 20px);
    text-align: left;
    margin: 10px;
  }

  .mob-back::before {
    content: "";
    width: 14px;
    height: 12px;
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask-image: var(--chevron-left-icon);
    mask-image: var(--chevron-left-icon);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    display: inline-block;
  }

  ul.mega > li.sp2,
  ul.mega > li.sp3 {
    display: none;
  }

  ul.mega > li.col-main {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    border-right: none;
    position: static;
    flex-shrink: 0;
  }

  li.col-main > a.cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 16px;
    padding: 13px 16px;
    background: var(--sg-color-primary);
    color: var(--white);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
  }

  li.col-main > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    height: 52px;
    padding: 0 16px;
    font-size: 1em;
    color: var(--text);
    border-bottom: 0px solid var(--border);
    background: var(--white);
    cursor: pointer;
    border-left: none;
    position: relative;
  }

  li.col-main > ul > li > a .ico {
    width: 20px;
    flex-shrink: 0;
    opacity: 1;
    font-style: normal;
  }

  #nav a svg {
    width: 20px !important;
    height: 20px !important;
    display: block;
  }

  li.col-main > ul > li > a[data-sub]::after {
    position: absolute;
    right: 20px;
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
  }

  ul.sub > li > a,
  ul.sub2 > li > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    height: 52px;
    padding: 0 16px;
    font-size: 1em;
    color: var(--text);
    border-bottom: 0px solid var(--border);
    background: var(--white);
    cursor: pointer;
    border-left: none;
    position: relative;
  }

  ul.sub > li > a[data-sub]::after {
    position: absolute;
    right: 20px;
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
  }

  ul.sub > li.ov > a,
  ul.sub2 > li.ov > a,
  ul.sub > li.sub-ov-li > a.sub-ov,
  ul.sub2 > li.sub-ov-li > a.sub-ov {
    height: auto;
    padding: 14px 16px;
    font-weight: 700;
    justify-content: flex-start;
  }

  ul.mega > li.col-promo {
    display: none !important;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-top: 0px solid var(--border);
    flex-shrink: 0;
  }

  .promo-img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, #8B0000, #2a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .promo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .promo-ph {
    color: rgba(255,255,255,.3);
    font-size: 11px;
  }

  .promo-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
  }

  .promo-link {
    font-size: 13px;
    color: var(--sg-color-primary);
    text-decoration: underline;
  }

  .hint-lbl {
    display: block;
    padding: 12px 16px 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--sg-color-dark);
    font-weight: 700;
  }

  .hint-lnk {
    display: block;
    margin: 4px 16px 12px;
    padding: 5px 12px;
    border: 1px solid var(--sg-color-primary);
    color: var(--sg-color-primary);
    border-radius: 3px;
    font-size: 12px;
  }

  .language-overlay-fw {
    padding: 40px 0px 0px;
    text-align: center;
    display: none;
  }

  .language-overlay-fw .group-languages,
  .language-overlay-fw .countries-languages {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px;
  }

  .language-overlay-fw .menu-close {
    margin-top: 40px;
  }

}
