@font-face {
  font-family: "Header Roboto";
  src: url("../../../components/site-header/assets/fonts/roboto-400-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Header Roboto";
  src: url("../../../components/site-header/assets/fonts/roboto-400-cyrillic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Header Roboto";
  src: url("../../../components/site-header/assets/fonts/roboto-700-latin.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Header Roboto";
  src: url("../../../components/site-header/assets/fonts/roboto-700-cyrillic.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Header Inter";
  src: url("../../../components/site-header/assets/fonts/inter-400-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Header Inter";
  src: url("../../../components/site-header/assets/fonts/inter-400-cyrillic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
.site-header {
  --header-content-max: 1368px;
  --header-height: 131px;
  --header-utility-height: 28px;
  --header-main-height: 103px;
  --header-admin-offset: 0px;
  --header-accent: #ed1c24;
  --header-action: #df2225;
  --header-search-bg: #111114;
  --header-border: #28292b;
  --header-muted: rgba(248, 248, 248, 0.5);
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  box-sizing: border-box;
  color: #fff;
  background: #000;
  border-bottom: 1px solid var(--header-accent);
  font-family: "Header Roboto", Arial, sans-serif;
}

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

.site-header a {
  color: inherit;
  text-decoration: none;
}

.site-header button,
.site-header input {
  font: inherit;
}

.site-header button {
  color: inherit;
}

.site-header__container {
  width: min(100% - 32px, var(--header-content-max));
  height: 100%;
  margin-inline: auto;
}

.site-header__utility {
  height: var(--header-utility-height);
  background: #000;
  border-bottom: 1px solid var(--header-border);
}

.site-header__utility-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.site-header__language {
  position: relative;
  flex: 0 0 auto;
}

.site-header__language-button,
.site-header__phone {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: "Header Inter", Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
}

.site-header__language-button {
  anchor-name: --site-header-language-trigger;
  gap: 6px;
  cursor: pointer;
  text-transform: uppercase;
}

.site-header__language-list {
  position: fixed;
  position-anchor: --site-header-language-trigger;
  inset: auto;
  top: calc(anchor(bottom) + 4px);
  left: anchor(left);
  min-width: 140px;
  max-width: min(240px, 100vw - 32px);
  max-height: calc(100dvh - var(--header-admin-offset) - var(--header-utility-height) - 20px - env(safe-area-inset-bottom));
  margin: 0;
  padding: 6px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: #fff;
  background: #000;
  border: 1px solid var(--header-border);
  border-radius: 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  list-style: none;
  position-try-fallbacks: flip-block, flip-inline;
}

@supports not (anchor-name: --site-header-language-trigger) {
  .site-header__language-list {
    top: calc(var(--header-admin-offset) + var(--header-utility-height) + 4px);
    left: max(16px, (100vw - var(--header-content-max)) / 2);
  }
  @media (min-width: 1200px) {
    .site-header__language-list {
      right: max(16px, (100vw - var(--header-content-max)) / 2);
      left: auto;
    }
  }
}
.site-header__language-list li {
  margin: 0;
}

.site-header__language-list a {
  display: block;
  padding: 8px 10px;
  font-size: 13px;
  line-height: 1.2;
}

.site-header__language-list a:hover,
.site-header__language-list a[aria-current=page] {
  color: var(--header-accent);
  background: var(--header-search-bg);
}

.site-header__phone {
  gap: 7px;
  white-space: nowrap;
}

.site-header__main {
  height: var(--header-main-height);
  background: #000;
}

.site-header__main-inner {
  display: grid;
  grid-template-columns: minmax(152px, 190px) minmax(0, 1fr) minmax(160px, 224px) max-content 32px 32px;
  grid-template-areas: "logo navigation search callback account cart";
  align-items: center;
  column-gap: clamp(12px, 1.25vw, 24px);
}

.site-header__logo {
  grid-area: logo;
  display: block;
  width: 100%;
  max-width: 190px;
}

.site-header__logo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.site-header__navigation {
  grid-area: navigation;
  min-width: 0;
}

.site-header #mega-menu-wrap-navbar {
  width: 100%;
  background: transparent;
}

.site-header #mega-menu-wrap-navbar #mega-menu-navbar {
  margin: 0;
  padding: 0;
  background: transparent;
  list-style: none;
}

.site-header #mega-menu-wrap-navbar #mega-menu-navbar > li.mega-menu-item > a.mega-menu-link {
  color: #fff;
  font-family: "Header Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.site-header #mega-menu-wrap-navbar .mega-menu-description {
  display: none !important;
}

.site-header__submenu-transition {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: grid-template-rows 220ms cubic-bezier(0.4, 0, 0.2, 1), padding 220ms cubic-bezier(0.4, 0, 0.2, 1), opacity 160ms ease, visibility 0s linear 220ms;
}

.site-header #mega-menu-navbar li.mega-toggle-on > .site-header__submenu-transition {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.site-header__submenu-transition > ul.mega-sub-menu {
  position: static !important;
  display: block !important;
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-header__search-toggle {
  display: none;
}

.site-header__search-panel {
  position: relative;
  grid-area: search;
  display: block;
  width: 100%;
  min-width: 0;
}

.site-header__search-form {
  position: relative;
  width: 100%;
  margin: 0;
}

.site-header__search-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  width: 100%;
  max-width: 224px;
  height: 32px;
  background: var(--header-search-bg);
  border: 1px solid var(--header-border);
}

.site-header__search-input {
  min-width: 0;
  width: 100%;
  height: 30px;
  margin: 0;
  padding: 0 10px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
  font-size: 13px;
  line-height: 30px;
  appearance: none;
}

.site-header__search-input::-webkit-search-cancel-button {
  appearance: none;
}

.site-header__search-input::placeholder {
  color: var(--header-muted);
  opacity: 1;
}

.site-header__search-submit,
.site-header__search-toggle {
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.site-header__search-submit {
  display: flex;
  height: 30px;
}

.site-header__search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 5;
  display: none;
  width: min(360px, 100vw - 32px);
  max-height: min(420px, 100vh - var(--header-height) - 32px);
  margin: 0;
  padding: 6px;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: #fff;
  background: #000;
  border: 1px solid var(--header-border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.site-header__search-results:not(:empty),
.site-header__search-results[data-state=loading],
.site-header__search-results[data-state=empty],
.site-header__search-results[data-state=error] {
  display: block;
}

.site-header__search-result {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 6px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-header__search-result:hover,
.site-header__search-result[aria-selected=true] {
  color: #fff;
  background: var(--header-search-bg);
}

.site-header__search-result-thumbnail,
.site-header__search-result-image {
  display: block;
  width: 48px;
  min-width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
}

.site-header__search-result-content,
.site-header__search-result-copy {
  min-width: 0;
}

.site-header__search-result-name {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header__search-result-price {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.site-header__search-message,
.site-header__search-loading,
.site-header__search-empty,
.site-header__search-error {
  margin: 0;
  padding: 14px 10px;
  color: var(--header-muted);
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.site-header__search-error,
.site-header__search-results[data-state=error] .site-header__search-message {
  color: #ff8b8f;
}

.site-header__search-all {
  display: none;
  margin-top: 8px;
  padding: 9px 12px;
  color: #fff;
  background: var(--header-action);
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}

.site-header__search-all.is-visible,
.site-header__search-panel.has-results .site-header__search-all {
  display: block;
}

.site-header__callback {
  grid-area: callback;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  margin: 0;
  padding: 0 18px;
  color: #fff;
  background: var(--header-action);
  border: 1px solid var(--header-action);
  border-radius: 0;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header__callback:hover {
  color: #fff;
  background: var(--header-accent);
  border-color: var(--header-accent);
}

.site-header__account,
.site-header__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.site-header__account {
  grid-area: account;
}

.site-header__cart {
  grid-area: cart;
}

.site-header__cart .btn-cart__content {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-header__cart .btn-cart__counter {
  position: absolute;
  top: -3px;
  right: -3px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  color: #fff;
  background: var(--header-action);
  border: 1px solid #000;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.site-header__icon {
  display: block;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.site-header__icon--chevron {
  width: 16px;
  height: 8px;
  -webkit-mask-image: url("../../../components/site-header/assets/chevron.svg");
  mask-image: url("../../../components/site-header/assets/chevron.svg");
}

.site-header__icon--phone {
  width: 14px;
  height: 14px;
  -webkit-mask-image: url("../../../components/site-header/assets/phone.svg");
  mask-image: url("../../../components/site-header/assets/phone.svg");
}

.site-header__icon--search {
  width: 16px;
  height: 15px;
  -webkit-mask-image: url("../../../components/site-header/assets/search.svg");
  mask-image: url("../../../components/site-header/assets/search.svg");
}

.site-header__icon--account {
  width: 20px;
  height: 20px;
  -webkit-mask-image: url("../../../components/site-header/assets/account.svg");
  mask-image: url("../../../components/site-header/assets/account.svg");
}

.site-header__icon--cart {
  width: 20px;
  height: 20px;
  -webkit-mask-image: url("../../../components/site-header/assets/cart.svg");
  mask-image: url("../../../components/site-header/assets/cart.svg");
}

.site-header a:focus-visible,
.site-header button:focus-visible,
.site-header input:focus-visible,
.site-header [tabindex]:focus-visible,
.site-header [role=option]:focus-visible {
  outline: 2px solid var(--header-accent);
  outline-offset: 2px;
}

.site-header__search-input:focus-visible {
  outline-offset: -2px;
}

.site-header__spacer {
  display: block;
  height: 131px;
}

.admin-bar .site-header {
  --header-admin-offset: 32px;
  top: 32px;
}

@media (min-width: 1200px) {
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 4px clamp(10px, 1.1vw, 20px);
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar > li.mega-menu-item {
    float: none;
    flex: 0 1 auto;
    margin: 0;
    padding: 0;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar > li.mega-menu-item > a.mega-menu-link {
    display: flex;
    align-items: center;
    height: auto;
    padding: 8px 0;
    line-height: 1.2;
    white-space: nowrap;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar > .mega-hide-on-desktop:not(.mega-has-icon) {
    display: list-item !important;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar > .mega-hide-on-mobile,
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar > .mega-has-icon {
    display: none !important;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar li.mega-menu-item-has-children {
    position: relative;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar li.mega-menu-item-has-children > .site-header__submenu-transition {
    position: absolute;
    z-index: 20;
    min-width: 250px;
    max-width: min(320px, 100vw - 32px);
    color: #fff;
    background: #000 !important;
    border: 0 solid var(--header-border);
    box-shadow: none;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar > li.mega-menu-item-has-children > .site-header__submenu-transition {
    top: 100%;
    left: 0;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar .mega-sub-menu li.mega-menu-item-has-children > .site-header__submenu-transition {
    top: -7px;
    left: 100%;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar li.mega-menu-item-has-children.mega-toggle-on > .site-header__submenu-transition {
    padding: 6px;
    border-width: 1px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar .site-header__submenu-transition > .mega-sub-menu > li.mega-menu-item {
    float: none;
    width: 100%;
    margin: 0;
    background: transparent;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar .site-header__submenu-transition > .mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    display: flex;
    align-items: center;
    min-height: 0;
    padding: 8px 10px !important;
    color: #fff;
    background: transparent !important;
    border: 0;
    font-family: "Header Roboto", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: none;
    white-space: normal;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar .site-header__submenu-transition > .mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover,
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar .site-header__submenu-transition > .mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus-visible,
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar .site-header__submenu-transition > .mega-sub-menu > li.mega-current-menu-item > a.mega-menu-link {
    color: var(--header-accent);
    background: var(--header-search-bg) !important;
  }
  .site-header #mega-menu-wrap-navbar .mega-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 1199.98px) {
  body.mega-menu-navbar-mobile-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
  .site-header {
    --header-height: 80px;
    --header-utility-height: 29px;
    --header-main-height: 51px;
  }
  .site-header__utility-inner {
    justify-content: space-between;
    gap: 16px;
  }
  .site-header__main-inner {
    grid-template-columns: auto minmax(0, 1fr) repeat(4, auto);
    grid-template-areas: none;
    column-gap: clamp(6px, 2.4vw, 14px);
  }
  .site-header__logo,
  .site-header__navigation,
  .site-header__search-toggle,
  .site-header__account,
  .site-header__cart {
    grid-area: auto;
    grid-row: 1;
  }
  .site-header__logo {
    grid-column: 1;
    width: auto;
    max-width: clamp(76px, 24vw, 96px);
  }
  .site-header__navigation {
    position: static;
    grid-column: 4;
    width: 40px;
    height: 32px;
    overflow: visible;
  }
  .site-header__search-toggle {
    grid-column: 3;
    display: flex;
  }
  .site-header__search-panel {
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 6;
    display: none;
    width: 100vw;
    padding: 16px;
    background: #000;
    border-top: 1px solid var(--header-border);
    border-bottom: 1px solid var(--header-accent);
  }
  .site-header.is-search-open .site-header__search-panel,
  .site-header__search-panel.is-search-open {
    display: block;
  }
  .site-header__search-control {
    max-width: none;
  }
  .site-header__search-results {
    position: static;
    width: 100%;
    max-height: min(420px, 100vh - 80px - 80px - env(safe-area-inset-bottom));
    margin-top: 8px;
  }
  .site-header__callback {
    display: none;
  }
  .site-header__account {
    grid-column: 5;
  }
  .site-header__cart {
    grid-column: 6;
  }
  .site-header #mega-menu-wrap-navbar {
    position: static;
    width: 40px;
    height: 32px;
  }
  .site-header #mega-menu-wrap-navbar .mega-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 32px;
    min-height: 32px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    line-height: 1;
  }
  .site-header #mega-menu-wrap-navbar .mega-menu-toggle.mega-menu-open::after {
    position: fixed;
    top: calc(var(--header-admin-offset) + 80px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    display: block !important;
    width: auto !important;
    height: auto !important;
    background: rgba(0, 0, 0, 0.68);
    opacity: 1;
    content: "" !important;
    cursor: pointer;
  }
  .site-header #mega-menu-wrap-navbar .mega-toggle-blocks-left,
  .site-header #mega-menu-wrap-navbar .mega-toggle-blocks-center,
  .site-header #mega-menu-wrap-navbar .mega-toggle-blocks-right {
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    height: 32px;
  }
  .site-header #mega-menu-wrap-navbar .mega-toggle-blocks-left:empty,
  .site-header #mega-menu-wrap-navbar .mega-toggle-blocks-center:empty,
  .site-header #mega-menu-wrap-navbar .mega-toggle-blocks-right:empty {
    display: none;
  }
  .site-header #mega-menu-wrap-navbar .mega-toggle-block {
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 32px;
    margin: 0;
  }
  .site-header #mega-menu-wrap-navbar .mega-toggle-label {
    display: none;
  }
  .site-header #mega-menu-wrap-navbar .mega-menu-toggle-block::before {
    content: none !important;
  }
  .site-header #mega-menu-wrap-navbar .mega-menu-toggle-block::after,
  .site-header #mega-menu-wrap-navbar .mega-toggle-animated-box {
    display: block;
    width: 40px;
    height: 18px;
    margin: 0;
    color: #fff;
    background-color: currentColor;
    content: "" !important;
    font-size: 0;
    -webkit-mask-image: url("../../../components/site-header/assets/menu.svg");
    mask-image: url("../../../components/site-header/assets/menu.svg");
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
  }
  .site-header #mega-menu-wrap-navbar .mega-toggle-animated-inner {
    display: none;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar {
    position: fixed;
    top: calc(var(--header-admin-offset) + 80px);
    left: 0 !important;
    z-index: 1002;
    display: block !important;
    width: min(360px, 90vw) !important;
    max-width: 90vw !important;
    height: calc(100dvh - var(--header-admin-offset) - 80px) !important;
    min-height: 0 !important;
    max-height: calc(100dvh - var(--header-admin-offset) - 80px) !important;
    margin: 0;
    padding: 12px 16px calc(24px + env(safe-area-inset-bottom)) !important;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #000 !important;
    border: 0;
    border-right: 1px solid var(--header-border);
    box-shadow: 16px 0 36px rgba(0, 0, 0, 0.45);
    opacity: 1;
    visibility: hidden;
    transform: translateX(-100%) !important;
    pointer-events: none;
    transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 220ms;
  }
  .site-header #mega-menu-wrap-navbar .mega-menu-toggle.mega-menu-open + #mega-menu-navbar {
    display: block !important;
    visibility: visible;
    transform: translateX(0) !important;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar > li.mega-menu-item {
    float: none;
    width: 100%;
    margin: 0;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar > li.mega-menu-item > a.mega-menu-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 40px;
    padding: 9px 10px;
    color: #fff;
    background: transparent !important;
    border: 0;
    border-bottom: 1px solid var(--header-border);
    line-height: 1.2;
    white-space: normal;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar > li.mega-menu-item > a.mega-menu-link:hover,
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar > li.mega-menu-item > a.mega-menu-link:focus-visible,
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar > li.mega-current-menu-item > a.mega-menu-link {
    color: var(--header-accent);
    background: var(--header-search-bg) !important;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar .mega-indicator::after {
    transition: transform 180ms ease;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar li.mega-toggle-on > a.mega-menu-link > .mega-indicator::after {
    transform: rotate(180deg);
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar > .mega-hide-on-mobile {
    display: none !important;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar li.mega-menu-item-has-children > .site-header__submenu-transition {
    position: static;
    width: 100%;
    background: #000 !important;
    border: 0 solid var(--header-border);
    box-shadow: none;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar li.mega-menu-item-has-children.mega-toggle-on > .site-header__submenu-transition {
    margin-block: 4px 6px;
    padding: 6px;
    border-width: 1px;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar .mega-sub-menu a.mega-menu-link {
    height: auto !important;
    min-height: 36px;
    padding: 8px 10px !important;
    color: #fff;
    background: transparent !important;
    border: 0;
    font-family: "Header Roboto", Arial, sans-serif;
    font-size: 13px !important;
    font-weight: 400;
    line-height: 1.2 !important;
    text-transform: none;
    white-space: normal;
  }
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar .mega-sub-menu a.mega-menu-link:hover,
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar .mega-sub-menu a.mega-menu-link:focus-visible,
  .site-header #mega-menu-wrap-navbar #mega-menu-navbar .mega-sub-menu .mega-current-menu-item > a.mega-menu-link {
    color: var(--header-accent);
    background: var(--header-search-bg) !important;
  }
  .site-header__spacer {
    height: 80px;
  }
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    --header-admin-offset: 46px;
    top: 46px;
  }
}
@media (max-width: 390px) {
  .site-header__main-inner {
    column-gap: clamp(6px, 2.4vw, 10px);
  }
}
@media (max-width: 360px) {
  .site-header__main-inner {
    column-gap: clamp(4px, 1.5vw, 6px);
  }
  .site-header__utility-inner {
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-header *,
  .site-header *::before,
  .site-header *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}