.mega-menu-outer-shopify-wrapper {
  background-color: transparent;
}

body:has(.mega-menu.is-overlay) .header-sticky-container {
  margin-bottom: calc(var(--header-height-base, 60px) * -1);
}

.mega-menu .logo--light {
  display: none;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}

.mega-menu {
  --header-solid-bg: var(--bg-colour);
}

.mega-menu.scheme-dark {
  --header-solid-bg: #0d0d0d;
}

.mega-menu.scheme-dark:not(.is-overlay) .top-level-links .link-group .top-level-link,
.mega-menu.scheme-dark:not(.is-overlay) .top-level-links .link-group .top-level-link a,
.mega-menu.scheme-dark:not(.is-overlay) .country-flag__currency,
.mega-menu.scheme-dark.is-solid .top-level-links .link-group .top-level-link,
.mega-menu.scheme-dark.is-solid .top-level-links .link-group .top-level-link a,
.mega-menu.scheme-dark.is-solid .country-flag__currency {
  color: #fff;
}
.mega-menu.scheme-dark:not(.is-overlay) .top-level-links .divider::after,
.mega-menu.scheme-dark.is-solid .top-level-links .divider::after {
  background: #fff;
}
.mega-menu.scheme-dark:not(.is-overlay) .mega-menu-controls img:not(.icon-flag),
.mega-menu.scheme-dark:not(.is-overlay) .mobile-controls img:not(.icon-flag),
.mega-menu.scheme-dark:not(.is-overlay) .mobile-control img,
.mega-menu.scheme-dark.is-solid .mega-menu-controls img:not(.icon-flag),
.mega-menu.scheme-dark.is-solid .mobile-controls img:not(.icon-flag),
.mega-menu.scheme-dark.is-solid .mobile-control img {
  filter: brightness(0) invert(1);
}
.mega-menu.scheme-dark:not(.is-overlay) .store-logo-container.has-light-logo .logo--dark,
.mega-menu.scheme-dark.is-solid .store-logo-container.has-light-logo .logo--dark {
  display: none;
}
.mega-menu.scheme-dark:not(.is-overlay) .store-logo-container.has-light-logo .logo--light,
.mega-menu.scheme-dark.is-solid .store-logo-container.has-light-logo .logo--light {
  display: block;
}
.mega-menu.scheme-dark:not(.is-overlay) .store-logo-container:not(.has-light-logo) .logo--dark,
.mega-menu.scheme-dark.is-solid .store-logo-container:not(.has-light-logo) .logo--dark {
  filter: brightness(0) invert(1);
}
.mega-menu.scheme-dark:not(.is-overlay) .logo--mark,
.mega-menu.scheme-dark.is-solid .logo--mark {
  filter: brightness(0) invert(1);
}

.mega-menu.overlay-scheme-dark.is-overlay:not(.is-solid) .top-level-links .link-group .top-level-link,
.mega-menu.overlay-scheme-dark.is-overlay:not(.is-solid) .top-level-links .link-group .top-level-link a,
.mega-menu.overlay-scheme-dark.is-overlay:not(.is-solid) .country-flag__currency {
  color: #fff;
}
.mega-menu.overlay-scheme-dark.is-overlay:not(.is-solid) .top-level-links .divider::after {
  background: #fff;
}
.mega-menu.overlay-scheme-dark.is-overlay:not(.is-solid) .mega-menu-controls img:not(.icon-flag),
.mega-menu.overlay-scheme-dark.is-overlay:not(.is-solid) .mobile-controls img:not(.icon-flag),
.mega-menu.overlay-scheme-dark.is-overlay:not(.is-solid) .mobile-control img {
  filter: brightness(0) invert(1);
}
.mega-menu.overlay-scheme-dark.is-overlay:not(.is-solid) .store-logo-container.has-light-logo .logo--dark {
  display: none;
}
.mega-menu.overlay-scheme-dark.is-overlay:not(.is-solid) .store-logo-container.has-light-logo .logo--light {
  display: block;
}
.mega-menu.overlay-scheme-dark.is-overlay:not(.is-solid) .store-logo-container:not(.has-light-logo) .logo--dark {
  filter: brightness(0) invert(1);
}
.mega-menu.overlay-scheme-dark.is-overlay:not(.is-solid) .logo--mark {
  filter: brightness(0) invert(1);
}

.mega-menu.is-overlay .overlay-container {
  background: transparent;
  position: relative;
  isolation: isolate;
}
.mega-menu.is-overlay .overlay-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--header-solid-bg);
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}
.mega-menu.is-overlay:not(.is-solid) .overlay-container::before {
  opacity: 0;
}

.header-sticky-container {
  width: 100%;
  position: sticky;
  inset: 0 auto;
  z-index: 100;
  transition: top 0.5s;
  pointer-events: none;
}
.header-sticky-container > * {
  pointer-events: auto;
}

.mega-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  z-index: 9999;
  position: relative;
  max-height: 1000px;
  background-color: transparent;
  transition: all 0.15s ease-in-out;
}
.mega-menu .overlay-container {
  background: var(--header-solid-bg);
  width: 100%;
}
.mega-menu .mega-menu-wrapper {
  max-width: 100%;
  width: 100%;
  min-height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: min-height 0.25s ease-in-out;
}
@media only screen and (max-width: 767.98px) {
  .mega-menu .mega-menu-wrapper {
    min-height: 50px;
    padding: 0 16px;
  }
}
.mega-menu .store-logo-container {
  flex: 1;
}
.mega-menu .store-logo-container .store-logo {
  --logo-w: 109px;
  --logo-mark-w: 36px;
  position: relative;
  width: var(--logo-w);
  height: 36px;
  display: flex;
  align-items: center;
  transition: width 0.5s ease-in-out;
}
.mega-menu .store-logo-container .store-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
.mega-menu .store-logo-container .store-logo .store-logo__full,
.mega-menu .store-logo-container .store-logo .store-logo__mark {
  position: absolute;
  inset: 0;
}
.mega-menu .store-logo-container .store-logo .store-logo__full {
  width: var(--logo-w);
}
.mega-menu .store-logo-container .store-logo .store-logo__mark {
  width: var(--logo-mark-w);
  opacity: 0;
}
.mega-menu .store-logo-container .store-logo .store-logo__mark img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
@media only screen and (max-width: 991.98px) {
  .mega-menu .store-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (max-width: 767.98px) {
  .mega-menu .store-logo-container .store-logo {
    --logo-w: 96px;
    --logo-mark-w: 36px;
    height: 32px;
  }
}

.mega-menu .mega-menu-wrapper .country-flag {
  display: flex;
  gap: 5px;
  align-items: center;
}
.mega-menu .mega-menu-wrapper .country-flag span {
  font-family: "T-Star", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  line-height: 1;
}
.mega-menu .mega-menu-wrapper .mobile-control svg,
.mega-menu .mega-menu-wrapper .mega-menu-control svg,
.mega-menu .mega-menu-wrapper .mega-menu-control button svg {
  color: var(--text-primary-color);
}
.mega-menu .mega-menu-wrapper .top-level-links,
.mega-menu .mega-menu-wrapper .mega-menu-controls {
  flex: 1;
}
.mega-menu .mega-menu-wrapper .mega-menu-controls {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 0 32px;
}
.mega-menu .mega-menu-wrapper .mega-menu-controls button,
.mega-menu .mega-menu-wrapper .mega-menu-controls a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mega-menu .mega-menu-wrapper .mega-menu-controls .cart-count {
  position: absolute;
  top: -10px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent-1-color);
  color: var(--text-alternate-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 14px;
}
.mega-menu .mega-menu-wrapper .mega-menu-controls .cart-count.empty-cart {
  display: none;
}
@media only screen and (max-width: 1200px) {
  .mega-menu .mega-menu-wrapper .mega-menu-controls {
    gap: 0 10px;
  }
}
@media only screen and (max-width: 991.98px) {
  .mega-menu .mega-menu-wrapper .mega-menu-controls {
    display: none;
  }
}
.mega-menu .mega-menu-wrapper .mega-menu-controls .country-flag {
  display: flex;
  gap: 5px;
}
.mega-menu .mega-menu-wrapper .mobile-controls {
  flex: 1;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 10px;
}
@media only screen and (min-width: 992px) {
  .mega-menu .mega-menu-wrapper .mobile-controls {
    display: none;
  }
}
.mega-menu .mega-menu-wrapper .mobile-controls.left {
  justify-content: flex-start;
  align-self: stretch;
}
.mega-menu .mega-menu-wrapper .mobile-controls.left #open-mobile-menu {
  flex: 1;
  align-self: stretch;
  justify-content: flex-start;
}
.mega-menu .mega-menu-wrapper .mobile-controls.right {
  justify-content: flex-end;
  gap: 24px;
}
@media only screen and (max-width: 767.98px) {
  .mega-menu .mega-menu-wrapper .mobile-controls {
    padding-top: 0;
  }
}
.mega-menu .mega-menu-wrapper .mobile-controls .header-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  padding: 0;
  cursor: pointer;
}
.mega-menu .mega-menu-wrapper .mobile-controls .header-search img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.mega-menu .mega-menu-wrapper .mobile-controls .cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--accent-1-color);
  color: var(--text-alternate-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.mega-menu .mega-menu-wrapper .mobile-controls .cart-count.empty-cart {
  display: none;
}
.mega-menu .mega-menu-wrapper .mobile-controls .openSideCart {
  width: 16px;
  padding: 0;
  line-height: 1;
}
.mega-menu .mega-menu-wrapper .mobile-controls .openSideCart img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mega-menu .mega-menu-wrapper .mobile-control {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  outline: none;
}
.mega-menu .mega-menu-wrapper .mobile-control .openMenu {
  display: flex;
  width: 15px;
}
.mega-menu .mega-menu-wrapper .mobile-control .closeMenu {
  display: none;
  width: 12px;
}
.mega-menu .mega-menu-wrapper .mobile-control button {
  padding: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mega-menu .mega-menu-wrapper .mobile-control button img {
  color: var(--text-primary-color);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mega-menu .mega-menu-wrapper .mobile-control.active .openMenu {
  display: none;
}
.mega-menu .mega-menu-wrapper .mobile-control.active .closeMenu {
  display: flex;
}

.top-level-links-wrapper {
  flex: 1;
}
.top-level-links-wrapper .top-level-links {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 48px;
  height: 100%;
}
@media only screen and (min-width: 1440px) {
  .top-level-links-wrapper .top-level-links {
    gap: 80px;
  }
}
@media only screen and (max-width: 991.98px) {
  .top-level-links-wrapper .top-level-links {
    display: none;
  }
}
.top-level-links-wrapper .top-level-links .link-group {
  height: 100%;
  display: flex;
  align-items: center;
}
.top-level-links-wrapper .top-level-links .link-group .top-level-link:first-of-type a {
  padding-left: 0;
}
.top-level-links-wrapper .top-level-links .link-group .top-level-link:last-of-type {
  padding-right: 0;
}
.top-level-links-wrapper .top-level-links .link-group .top-level-link,
.top-level-links-wrapper .top-level-links .link-group .top-level-link a {
  height: 60px;
  transition: height 0.25s ease-in-out;
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: bold;
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  color: var(--text-primary-color);
  font-family: "T-Star", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
}
.top-level-links-wrapper .top-level-links .link-group .top-level-link {
  cursor: default;
}
.top-level-links-wrapper .top-level-links .link-group .top-level-link a {
  color: inherit;
  position: relative;
}
.top-level-links-wrapper .top-level-links .link-group .top-level-link a img {
  z-index: 1;
  width: 22px;
}
.top-level-links-wrapper .top-level-links .link-group .top-level-link a span {
  z-index: 1;
}
.top-level-links-wrapper .top-level-links .link-group .top-level-link:hover, .top-level-links-wrapper .top-level-links .link-group .top-level-link:focus,
.top-level-links-wrapper .top-level-links .link-group .top-level-link a:hover,
.top-level-links-wrapper .top-level-links .link-group .top-level-link a:focus {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 25px;
  text-decoration-thickness: 1px;
  text-decoration-color: #007575;
}
.top-level-links-wrapper .top-level-links .link-group.is-active .top-level-link,
.top-level-links-wrapper .top-level-links .link-group.is-active .top-level-link a {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 25px;
  text-decoration-thickness: 1px;
  text-decoration-color: #007575;
}
.top-level-links-wrapper .top-level-links .link-group.is-active .top-level-link ~ .mega-menu-dropdown_outer-wrapper,
.top-level-links-wrapper .top-level-links .link-group.is-active .top-level-link a ~ .mega-menu-dropdown_outer-wrapper {
  pointer-events: auto;
}
.top-level-links-wrapper .top-level-links .link-group.is-active .top-level-link ~ .mega-menu-dropdown_outer-wrapper .mega-menu-dropdown,
.top-level-links-wrapper .top-level-links .link-group.is-active .top-level-link a ~ .mega-menu-dropdown_outer-wrapper .mega-menu-dropdown {
  opacity: 1;
  transform: translateY(0);
}
.top-level-links-wrapper .top-level-links .divider {
  position: relative;
}
.top-level-links-wrapper .top-level-links .divider::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 0;
  width: 1px;
  height: 16px;
  background: var(--text-primary-color);
}
.top-level-links-wrapper .top-level-links .link-group .mega-menu-dropdown_outer-wrapper {
  width: 100%;
  z-index: -1;
  position: absolute;
  top: 100%;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}
.top-level-links-wrapper .top-level-links .link-group .mega-menu-dropdown_outer-wrapper .mega-menu-dropdown {
  width: 100%;
  padding: 0;
  opacity: 0;
  background: white;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 991.98px) {
  .top-level-links-wrapper {
    display: none;
  }
}

.mobile-menu-outer-wrapper {
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  top: var(--mobile-menu-offset, 0);
  left: 0;
  height: 100vh;
  max-height: calc(100vh - var(--mobile-menu-offset));
}
.mobile-menu-outer-wrapper.active {
  display: flex;
}
@media only screen and (min-width: 992px) {
  .mobile-menu-outer-wrapper {
    display: none;
  }
}
.mobile-menu-outer-wrapper::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
  background: #707070;
  opacity: 0.73;
  z-index: -1;
  isolation: isolate;
}
.mobile-menu-outer-wrapper.active {
  pointer-events: all;
  visibility: visible;
  width: 100%;
}
.mobile-menu-outer-wrapper.active .mobile-menu {
  left: 0;
}
.mobile-menu-outer-wrapper .mobile-menu {
  --mobile-pad: 16px;
  background: white;
  height: 100%;
  max-width: 366px;
  width: clamp(100% - 1.5rem, 100% - 1.5rem, 366px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  left: -100%;
  transition: left 0.25s ease-in-out;
  overflow: hidden;
}
.mobile-menu-outer-wrapper .mobile-menu * {
  box-sizing: border-box;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top {
  width: 100%;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation {
  width: 100%;
  padding: 8px var(--mobile-pad) 40px;
  display: flex;
  gap: 25px;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group {
  width: 100%;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-top-level-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--text-primary-color);
  border-bottom: solid 1px var(--seperator-color);
  padding: 24px 0;
  cursor: pointer;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-top-level-link * {
  pointer-events: none;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-top-level-link .title {
  position: relative;
  font-size: 16px;
  font-family: "T-Star", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-top-level-link .chevron {
  margin-left: auto;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-top-level-link .chevron img {
  width: 7px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-top-level-link.is-active {
  color: var(--primary-color);
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper {
  position: fixed;
  top: var(--header-offset, 0);
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  max-height: none;
  z-index: 10001;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  pointer-events: none;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper.is-active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown {
  width: 100%;
  height: 100%;
  padding: 0;
  background: white;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  min-height: 100%;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .mobile-menu-bar {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 56px;
  padding: 0 var(--mobile-pad);
  background-color: #fff;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-family: "T-Star", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .mobile-menu-bar .bar-back {
  display: inline-flex;
  align-items: center;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .mobile-menu-bar .bar-back img {
  width: 13px;
  height: auto;
  margin: 0;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .mobile-menu-bar .bar-title {
  font-family: "T-Star", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex: 1;
  text-align: center;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .mobile-menu-bar .bar-close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  width: 16px;
  height: 16px;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .mobile-menu-bar .bar-close img {
  width: 100%;
  height: 100%;
  margin: 0;
  transform: none;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .sublinks-column-1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1 1 auto;
  padding: 8px var(--mobile-pad) var(--mobile-pad);
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .sublinks-columns {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .sublinks-columns .mobile-sublinks-column-2 {
  position: absolute;
  top: 0;
  z-index: 5;
  left: 0;
  background: white;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .mobile-sublink {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 65px;
  color: var(--text-primary-color);
  text-decoration: none;
  font-family: "T-Star", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 24px 0;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .mobile-sublink * {
  pointer-events: none;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .mobile-sublink .title {
  position: relative;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .mobile-sublink .title * {
  font-size: 16px;
  font-family: "T-Star", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .mobile-sublink .chevron {
  margin-left: auto;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .mobile-sublink .chevron img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .mobile-sublink:hover {
  text-decoration: underline;
  color: var(--bg-1-color);
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .mobile-sublink.is-active {
  color: var(--bg-1-color);
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .mobile-sublinks-column-2 {
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.mobile-menu-outer-wrapper .mobile-menu .mobile-menu-top .mobile-menu-navigation .mobile-top-level-links .mobile-link-group .mobile-menu-dropdown_outer-wrapper .mobile-menu-dropdown .sublinks-container .mobile-sublinks-column-2.is-active {
  transform: translateX(0);
}

.location__selector {
  height: auto;
  max-height: 390px;
  max-width: 390px;
  overflow-y: auto;
  width: auto;
  border: none;
  overflow-y: hidden;
}
.location__selector::backdrop {
  background: #1d2122;
  opacity: 0.5;
}
@media only screen and (max-width: 767.98px) {
  .location__selector {
    max-width: 320px;
  }
}
.location__selector__title {
  border-bottom: 1px solid #e3e3e3;
  font-size: 18px;
  line-height: 32px;
  margin: 0;
  padding: 5px 0 18px 0;
  text-align: center;
  font-weight: 400;
}
.location__selector .icon-close {
  height: 20px;
  position: absolute;
  width: 20px;
  cursor: pointer;
  z-index: 5;
  right: 1.466rem;
  top: 1.466rem;
}
.location__selector .icon-close:before, .location__selector .icon-close:after {
  background: #1d2122;
  content: "";
  height: 1px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 100%;
}
.location__selector .icon-close:before {
  transform: rotate(-45deg);
}
.location__selector .icon-close:after {
  transform: rotate(45deg);
}

.location-section {
  padding: 40px 15px;
  width: 230px;
  margin: auto;
}
@media only screen and (max-width: 767.98px) {
  .location-section {
    padding: 40px 10px 0px;
  }
}
.location-section .location-item__text {
  margin-left: 42px;
  width: 200px;
}
.location-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.location-section ul li {
  margin: 0;
  padding: 0;
  text-indent: 0;
  list-style-type: 0;
  padding-bottom: 25px;
}
.location-section ul li .flex-items-center {
  display: flex;
  align-items: center;
}
.location-section ul li a {
  color: #1d2122;
  font-size: 18px;
  line-height: 1.3;
  justify-content: flex-start !important;
}
.location-section ul li a:focus {
  outline: none;
}
.location-section .icon-flag {
  height: 24px;
  margin-right: 8px;
  width: 24px;
  margin-right: 18px;
}
.location-section .fw-medium {
  font-weight: 500;
  font-size: 18px;
}

.top-level-links .link-group:hover > .mega-menu-dropdown_outer-wrapper {
  pointer-events: auto;
}
.top-level-links .link-group:hover > .mega-menu-dropdown_outer-wrapper .mega-menu-dropdown {
  opacity: 1;
  transform: translateY(0);
}

.mega-menu-dropdown {
  max-width: none;
}

.mega-menu-dropdown__body {
  padding: 32px 16px 40px;
}

.mega-menu-columns {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 48px;
  width: 100%;
}
@media only screen and (max-width: 1300px) {
  .mega-menu-columns {
    gap: 24px;
  }
}
.mega-menu-columns__cols {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  gap: 48px;
}
@media only screen and (max-width: 1300px) {
  .mega-menu-columns__cols {
    gap: 24px;
  }
}

.mega-menu-column {
  min-width: 240px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1200px) {
  .mega-menu-column {
    min-width: 190px;
  }
}
.mega-menu-column__heading {
  font-size: 14px;
  font-weight: 700;
  font-family: "T-Star", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: var(--text-primary-color);
  margin: 0 0 24px;
}
.mega-menu-column__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 15px;
  font-family: "T-Star", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary-color);
  text-decoration: none;
  text-wrap: nowrap;
}
.mega-menu-column__all img {
  width: 6px;
  height: auto;
}
.mega-menu-column__all:hover {
  color: var(--text-primary-color);
  text-decoration: underline;
}

.mega-menu-group + .mega-menu-group {
  margin-top: 32px;
}
.mega-menu-group:last-of-type {
  margin-bottom: 24px;
}
.mega-menu-group__heading {
  display: none;
}
.mega-menu-group__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mega-menu-link, .mega-menu-link .menu-link-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
  color: var(--text-primary-color);
  text-decoration: none;
}
.mega-menu-link:hover .menu-link-text, .mega-menu-link .menu-link-text:hover .menu-link-text {
  text-decoration: underline;
}

.menu-badge {
  display: inline-flex;
  align-items: center;
  height: 15px;
  padding: 3px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  background: #ebebeb;
  color: #1d2122;
  font-family: "T-Star", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mega-menu-media {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mega-menu-media__links {
  width: 100%;
  margin-bottom: 16px;
}
.mega-menu-media__links + .mega-menu-media__ctas {
  margin-top: auto;
}
.mega-menu-media__links + .mega-menu-media__ctas .mega-menu-media-block {
  width: 220px;
}
.mega-menu-media__ctas {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
}

.mega-menu-media-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 333px;
  max-width: 32vw;
  text-decoration: none;
  color: var(--text-primary-color);
}
.mega-menu-media-block__img {
  width: 100%;
  aspect-ratio: 1.25;
  overflow: hidden;
  background: #f0f0f0;
}
.mega-menu-media-block__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.mega-menu-media-block:hover .mega-menu-media-block__caption {
  text-decoration: underline;
  color: var(--text-primary-color);
}
.mega-menu-media-block__caption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1;
  font-weight: 300;
  text-wrap: nowrap;
  font-family: "T-Star", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 12px;
}
.mega-menu-media-block__caption .caption-chevron {
  width: 6px;
  height: auto;
}
@media only screen and (max-width: 1100px) {
  .mega-menu-media-block {
    width: 240px;
  }
}

.mega-menu-usp-bar {
  width: 100%;
  background: #f0f0f0;
}
.mega-menu-usp-bar__inner {
  display: flex;
  padding: 8px 40px;
}
.mega-menu-usp-bar__track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.mega-menu-usp-bar__track--dup {
  display: none;
}

.usp-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary-color);
  text-decoration: none;
  white-space: nowrap;
}
.usp-bar-item__icon {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}
.usp-bar-item__text, .usp-bar-item__text-after {
  font-size: 14px;
  line-height: 1.5;
}
.usp-bar-item__stars {
  display: inline-flex;
  gap: 3px;
}
.usp-bar-item__stars img {
  width: 10px;
  height: 10px;
}

.mobile-menu-outer-wrapper .mobile-menu {
  max-width: 100%;
  width: 100%;
}

.mobile-menu .mobile-group {
  padding: 40px var(--mobile-pad) 0;
}
.mobile-menu .mobile-group__heading {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  font-family: "T-Star", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary-color);
  margin: 0 0 14px;
}
.mobile-menu .mobile-group__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu .mobile-group .sub--link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary-color);
  text-decoration: none;
}
.mobile-menu .mobile-group .sub--link .menu-link-thumb {
  flex: 0 0 auto;
  width: 30px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu .mobile-group .sub--link .menu-link-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-menu .mobile-group .sub--link .menu-link-text {
  flex: 1;
}

.mobile-menu .mobile-column__all {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px var(--mobile-pad) 40px;
  font-size: 15px;
  font-family: "T-Star", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary-color);
  text-decoration: none;
  border-bottom: 1px solid #e5e5e5;
}
.mobile-menu .mobile-column__all img {
  width: 6px;
  height: auto;
}

.mobile-menu .sublinks-column-1 .mobile-group {
  padding-left: 0;
  padding-right: 0;
}

.mobile-menu .sublinks-column-1 .mobile-column__all {
  margin-left: calc(var(--mobile-pad) * -1);
  margin-right: calc(var(--mobile-pad) * -1);
  padding-left: var(--mobile-pad);
  padding-right: var(--mobile-pad);
}

.mega-menu-wrapper:has(#open-mobile-menu.active) .mobile-controls .header-search {
  display: none;
}

.mobile-menu .mobile-menu-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  height: 48px;
  padding: 0 var(--mobile-pad);
  border: none;
  background: #f0f0f0;
  box-sizing: border-box;
  cursor: pointer;
  text-align: left;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.mobile-menu .mobile-menu-search__placeholder {
  color: #666666;
}
.mobile-menu .mobile-menu-search__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.mobile-menu .mobile-menu-media {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px 0 8px;
  margin-top: auto;
}
.mobile-menu .mobile-menu-media > .mega-menu-media-block {
  width: 100%;
  max-width: none;
}

.mobile-menu .mobile-menu-actions {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  padding: 16px var(--mobile-pad);
  margin-top: auto;
}
.mobile-menu .mobile-menu-actions .mobile-menu-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  border: 1px solid #dcdcdc;
  font-family: "T-Star", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary-color);
  text-decoration: none;
}
.mobile-menu .mobile-menu-actions .mobile-menu-action span {
  font-family: "T-Star", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 16px;
}
.mobile-menu .mobile-menu-actions .mobile-menu-action img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.mobile-menu .mega-menu-usp-bar {
  flex: 0 0 auto;
  overflow: hidden;
}
.mobile-menu .mega-menu-usp-bar__inner {
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  width: -moz-max-content;
  width: max-content;
  flex-wrap: nowrap;
  animation: usp-marquee 25s linear infinite;
}
.mobile-menu .mega-menu-usp-bar__track {
  width: auto;
  flex: 0 0 auto;
  justify-content: flex-start;
  gap: 56px;
  padding: 0 28px;
}
.mobile-menu .mega-menu-usp-bar__track--dup {
  display: flex;
}

@keyframes usp-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu .mega-menu-usp-bar__inner {
    animation: none;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
}
.mobile-menu .mobile-menu-top {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.mobile-menu .mobile-menu-dropdown_outer-wrapper {
  overflow: hidden auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu .mobile-menu-dropdown_outer-wrapper:has(.mobile-sublinks-column-2.is-active) {
  overflow: hidden;
}

.mega-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  transition: opacity 0.2s ease-in-out, visibility 0s linear 0.2s;
}

@media only screen and (min-width: 992px) {
  body:has(.top-level-links .link-group.is-active > .mega-menu-dropdown_outer-wrapper) .mega-menu-backdrop,
  body:has(.top-level-links .link-group:hover > .mega-menu-dropdown_outer-wrapper) .mega-menu-backdrop {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease-in-out;
  }
}
.mobile-menu:has(.mobile-menu-dropdown_outer-wrapper.is-active) .mobile-menu-actions,
.mobile-menu:has(.mobile-menu-dropdown_outer-wrapper.is-active) .mega-menu-usp-bar {
  display: none;
}

.mobile-menu-outer-wrapper:has(.mobile-menu-dropdown_outer-wrapper.is-active) {
  z-index: 10000;
}
.mobile-menu-outer-wrapper:has(.mobile-menu-dropdown_outer-wrapper.is-active)::before {
  opacity: 0;
}

.mega-menu:has(.link-group.is-active > .mega-menu-dropdown_outer-wrapper) .overlay-container,
.mega-menu:has(.link-group:hover > .mega-menu-dropdown_outer-wrapper) .overlay-container {
  background: #fff;
}
.mega-menu:has(.link-group.is-active > .mega-menu-dropdown_outer-wrapper) .overlay-container::before,
.mega-menu:has(.link-group:hover > .mega-menu-dropdown_outer-wrapper) .overlay-container::before {
  opacity: 0;
}
.mega-menu:has(.link-group.is-active > .mega-menu-dropdown_outer-wrapper) .top-level-links .link-group .top-level-link,
.mega-menu:has(.link-group.is-active > .mega-menu-dropdown_outer-wrapper) .top-level-links .link-group .top-level-link a,
.mega-menu:has(.link-group.is-active > .mega-menu-dropdown_outer-wrapper) .country-flag__currency,
.mega-menu:has(.link-group:hover > .mega-menu-dropdown_outer-wrapper) .top-level-links .link-group .top-level-link,
.mega-menu:has(.link-group:hover > .mega-menu-dropdown_outer-wrapper) .top-level-links .link-group .top-level-link a,
.mega-menu:has(.link-group:hover > .mega-menu-dropdown_outer-wrapper) .country-flag__currency {
  color: var(--text-primary-color);
}
.mega-menu:has(.link-group.is-active > .mega-menu-dropdown_outer-wrapper) .top-level-links .divider::after,
.mega-menu:has(.link-group:hover > .mega-menu-dropdown_outer-wrapper) .top-level-links .divider::after {
  background: var(--text-primary-color);
}
.mega-menu:has(.link-group.is-active > .mega-menu-dropdown_outer-wrapper) .mega-menu-controls img:not(.icon-flag),
.mega-menu:has(.link-group.is-active > .mega-menu-dropdown_outer-wrapper) .mobile-controls img:not(.icon-flag),
.mega-menu:has(.link-group.is-active > .mega-menu-dropdown_outer-wrapper) .mobile-control img,
.mega-menu:has(.link-group:hover > .mega-menu-dropdown_outer-wrapper) .mega-menu-controls img:not(.icon-flag),
.mega-menu:has(.link-group:hover > .mega-menu-dropdown_outer-wrapper) .mobile-controls img:not(.icon-flag),
.mega-menu:has(.link-group:hover > .mega-menu-dropdown_outer-wrapper) .mobile-control img {
  filter: none;
}
.mega-menu:has(.link-group.is-active > .mega-menu-dropdown_outer-wrapper) .store-logo-container.has-light-logo .logo--dark,
.mega-menu:has(.link-group:hover > .mega-menu-dropdown_outer-wrapper) .store-logo-container.has-light-logo .logo--dark {
  display: block;
  filter: none;
}
.mega-menu:has(.link-group.is-active > .mega-menu-dropdown_outer-wrapper) .store-logo-container.has-light-logo .logo--light,
.mega-menu:has(.link-group:hover > .mega-menu-dropdown_outer-wrapper) .store-logo-container.has-light-logo .logo--light {
  display: none;
}
.mega-menu:has(.link-group.is-active > .mega-menu-dropdown_outer-wrapper) .store-logo-container:not(.has-light-logo) .logo--dark,
.mega-menu:has(.link-group:hover > .mega-menu-dropdown_outer-wrapper) .store-logo-container:not(.has-light-logo) .logo--dark {
  filter: none;
}
.mega-menu:has(.link-group.is-active > .mega-menu-dropdown_outer-wrapper) .logo--mark,
.mega-menu:has(.link-group:hover > .mega-menu-dropdown_outer-wrapper) .logo--mark {
  filter: none;
}

.menu-spacer {
  display: block;
  height: 0;
}

.mega-menu-outer-shopify-wrapper.is-condensed {
  --condensed-height: 45px;
}
.mega-menu-outer-shopify-wrapper.is-condensed .mega-menu-wrapper {
  min-height: var(--condensed-height);
}
.mega-menu-outer-shopify-wrapper.is-condensed .top-level-links .link-group .top-level-link,
.mega-menu-outer-shopify-wrapper.is-condensed .top-level-links .link-group .top-level-link a {
  height: var(--condensed-height);
}
.mega-menu-outer-shopify-wrapper.is-condensed .top-level-links .link-group .top-level-link:hover,
.mega-menu-outer-shopify-wrapper.is-condensed .top-level-links .link-group .top-level-link:focus,
.mega-menu-outer-shopify-wrapper.is-condensed .top-level-links .link-group .top-level-link a:hover,
.mega-menu-outer-shopify-wrapper.is-condensed .top-level-links .link-group .top-level-link a:focus,
.mega-menu-outer-shopify-wrapper.is-condensed .top-level-links .link-group.is-active .top-level-link,
.mega-menu-outer-shopify-wrapper.is-condensed .top-level-links .link-group.is-active .top-level-link a {
  text-underline-offset: 15px;
}
.mega-menu-outer-shopify-wrapper.is-condensed .top-level-links .link-group .mega-menu-dropdown_outer-wrapper {
  border-top: 1px solid #F0F0F0;
}
.mega-menu-outer-shopify-wrapper.is-condensed .store-logo {
  width: var(--logo-mark-w);
}
.mega-menu-outer-shopify-wrapper.is-condensed .store-logo .store-logo__full {
  opacity: 0;
  pointer-events: none;
}
.mega-menu-outer-shopify-wrapper.is-condensed .store-logo .store-logo__mark {
  opacity: 1;
}

html:has(.mobile-menu-outer-wrapper.active),
body:has(.mobile-menu-outer-wrapper.active) {
  overflow: hidden;
  overscroll-behavior: none;
}

body:has(.mobile-menu-outer-wrapper.active) .header-sticky-container {
  position: fixed;
}
