.header .contents {
  display: contents;
}
.header-section {
  --header-column-gap: 24px;
  --header-column-gap-mobile: 8px;
  --header-background: var(--color-background);
  --header-color-text: var(--color-text);
}
.header-section.transparent {
  position: absolute;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(var(--color-mask), 60%) 0%,
    rgba(var(--color-mask), 0%) 100%
  );

  --header-transparent-color-text: var(--header-color-text);
}
.header-section.transparent::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  display: block;
  width: 100%;
  height: 0;
  content: "";
  background-color: rgb(var(--header-background));
  transition: height 0.1s ease-in;
}
.header-section.transparent:hover {
  --header-transparent-color-text: var(--header-color-text);
}
.header-section.transparent:hover::after {
  height: 100%;
}
.theme-sticky-header--sticky .header-section.transparent {
  position: relative;

  --header-transparent-color-text: var(--header-color-text);
}
.header-section {
  --header-nav-dropdown-menu-z-index: 2;
  --header-nav-dropdown-panel-z-index: 4;

  position: relative;
}
.header-section .full-screen-width {
  max-width: 100%;
}
.header-section.divider {
  border-block-end: 1px solid rgba(var(--header-color-text), 12%);
}
.header__container {
  position: relative;
  z-index: 1;
  background-color: rgba(var(--header-background), 1);
}
.transparent .header__container {
  background-color: rgba(var(--header-background), 0);
}
.theme-sticky-header--sticky .transparent .header__container {
  background-color: rgba(var(--header-background), 1);
}
.header__container-top {
  position: relative;
  box-sizing: content-box;
}
.header__container-top-wrap {
  position: relative;
  display: grid;
  grid-template: "action-bar-left nav logo action-bar-right";
  grid-template-rows: auto;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto minmax(0, 1fr);
  column-gap: var(--header-column-gap);
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.header__container-top-wrap[layout$="_left_menu"]
  .header__container-top-wrap
  theme-nav-bar
  .header-nav {
  margin-inline-start: calc(var(--header-column-gap) * -1);
}
@media (min-width: 960px) {
  .header__container-top-wrap[layout^="center_logo_"]
    .header__container-top-wrap
    .header__logo-text {
    text-align: center;
  }
}
@media (min-width: 960px) {
  .header__container[layout="center_logo_left_menu"]
    .header__container-top-wrap
    .header-nav {
    margin-inline-start: calc(var(--header-column-gap) * -1);
  }
}
.header__container[layout="left_logo_wrap_menu"] .header__container-top-wrap {
  grid-template: "logo nav action-bar-right";
  grid-template-columns: auto 1fr;
}
@media (min-width: 960px) {
  .header__container[layout="left_logo_wrap_menu"]
    .header__container-top-wrap
    .header__logo {
    justify-content: center;
  }

  .header__container[layout="left_logo_wrap_menu"]
    .header__container-top-wrap
    .header-action-bar.right {
    width: 100%;
  }

  .header__container[layout="left_logo_wrap_menu"]
    .header__container-top-wrap
    .header-action-bar.right
    .header-action-bar__search-bar {
    margin-inline-end: auto;
  }
}
.header__container[layout^="left_logo_left_menu"] .header__container-top-wrap {
  grid-template-areas: "logo nav action-bar-right";
  grid-template-columns: minmax(0, auto) minmax(0, auto) 1fr;
}
.header__container[layout^="left_logo_center_menu"]
  .header__container-top-wrap {
  grid-template-areas: "logo nav action-bar-right";
  grid-template-columns: 1fr minmax(0, auto) 1fr;
}
.header__container[layout="center_logo_wrap_menu"] .header__container-top-wrap {
  display: flex;
}
.header__container[layout="center_logo_wrap_menu_2"]
  .header__container-top-wrap {
  grid-template: "action-bar-left logo action-bar-right";
  grid-template-columns: minmax(min-content, 1fr) minmax(0, auto) minmax(
      min-content,
      1fr
    );
}
.header__container[layout="center_logo_wrap_menu_2"]
  .header__container-top-wrap
  .header-action-bar.left {
  width: 100%;
}
.header__container[layout="center_logo_left_menu"][type="drawer"]
  .header__container-top-wrap {
  grid-template-areas: "action-bar-left logo action-bar-right";
  grid-template-columns: 1fr minmax(0, auto) 1fr;
}
.header__container[layout="left_logo_center_menu"][type="drawer"]
  .header__container-top-wrap {
  grid-template-areas: "action-bar-left logo nav action-bar-right";
  grid-template-columns: minmax(0, auto) 1fr minmax(0, auto) 1fr;
}
.header__container-bottom {
  position: relative;
  z-index: var(--header-nav-dropdown-menu-z-index);
  display: none;
}
.header__container-bottom.divider {
  border-block-start: 1px solid rgba(var(--header-color-text), 12%);
}
.header__container[type="drawer"] .header__container-bottom {
  display: none;
}
.header__logo {
  position: relative;
  z-index: calc(var(--header-nav-dropdown-menu-z-index) + 1);
  display: flex;
  grid-area: logo;
  align-items: center;
  justify-content: center;
  order: 20;
  transform: none;
}
.header__logo-wrapper {
  position: relative;
  display: flex;
}
.header__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Jost, sans-serif;
  font-size: 30px;
  white-space: nowrap;
  width: 120px;
}
.header__logo-link:not(.button),
.header__logo-link:not(.button):hover {
  color: rgb(var(--header-color-text));
}
.header__logo-text {
  text-align: center;
  word-break: break-all;
  white-space: normal;
}
.header__logo-image {
  width: var(--desktop-size);
  height: auto;
}
@media (max-width: 959px) {
  .header__logo-image {
    width: var(--mobile-size);
    max-height: 100%;
  }
}
.header__logo-link.transparent {
  position: absolute;
  inset: 0;
  max-height: 100%;
  visibility: hidden;
}
.header__logo-link.transparent .header__logo-image {
  height: 100%;
  object-fit: contain;
}
.header [layout^="left_logo_"]__logo-link {
  justify-content: flex-start;
}
.transparent:not(:hover) .header__logo-link {
  color: rgb(var(--header-transparent-color-text, var(--header-color-text)));
  visibility: hidden;
}
.transparent:not(:hover) .header__logo-link.transparent {
  visibility: visible;
}
.theme-sticky-header--sticky .transparent .header__logo-link {
  color: inherit;
  visibility: visible;
}
.theme-sticky-header--sticky .transparent .header__logo-link.transparent {
  visibility: hidden;
}
.header__container[layout="center_logo_wrap_menu"] .header__action-bar,
.header__container[layout="center_logo_wrap_menu_2"] .header__action-bar {
  flex: 1;
}
[layout$="_wrap_menu"] .header__container-top ~ .header__container-bottom,
[layout$="_wrap_menu_2"] .header__container-top ~ .header__container-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}


[layout$="_wrap_menu"] .header__container-top .header__container-bottom,
[layout$="_wrap_menu_2"] .header__container-top  .header__container-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  grid-area: nav;
}

[type="drawer"] .header__container-top ~ .header__container-bottom {
  display: none;
}
@media (max-width: 959px) {
  .header {
  }
  .header__container[mobile-layout] .header__container-top-wrap {
    column-gap: var(--header-column-gap-mobile);
  }

  .header__container[mobile-layout] .header__container-top-wrap .header-nav {
    display: none;
  }
  .header__container[mobile-layout="left_logo"] .header__container-top-wrap {
    grid-template: "action-bar-left logo action-bar-right";
    grid-template-columns: auto auto minmax(min-content, 1fr);
  }

  .header__container[mobile-layout="left_logo"]
    .header__container-top-wrap
    .header__logo {
    justify-content: flex-start;
  }

  .header__container[mobile-layout="left_logo"]
    .header__container-top-wrap
    .header-action-bar {
    margin-inline-start: 0;
  }

  .header__container[mobile-layout="left_logo"]
    .header__container-top-wrap
    .header-action-bar.left {
    flex: 0;
    margin-inline-end: 0;
  }

  .header__container[mobile-layout="left_logo"]
    .header__container-top-wrap
    .header-action-bar.right
    .header-action-bar__search {
    display: inline-flex;
  }
  .header__container[mobile-layout="center_logo"] .header__container-top-wrap {
    grid-template: "action-bar-left logo action-bar-right";
    grid-template-columns: minmax(min-content, 1fr) auto minmax(
        min-content,
        1fr
      );
  }

  .header__container[mobile-layout="center_logo"]
    .header__container-top-wrap
    .header-action-bar.left {
    width: 100%;
  }
}
@media (min-width: 960px) {
  .header__container[layout="left_logo_left_menu"] .header__container-top-wrap {
    grid-template-areas: "logo nav action-bar-right";
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .header__container[layout="left_logo_left_menu"] .header__logo {
    justify-content: flex-start;
  }

  .header__container[layout="left_logo_left_menu"] .header-nav__menu {
    flex-wrap: nowrap;
  }

  .header__container[layout="left_logo_left_menu"] .header-nav__menu-item {
    margin-inline: 12px;
  }

  .header__container[layout="left_logo_left_menu"] .header-nav__menu-item > a {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (min-width: 960px) and (max-width: 1199px) {
  .header__container[layout="left_logo_left_menu"] .header-nav__menu-item {
    margin-inline: 7px;
  }

  .header__container[layout="left_logo_left_menu"] .header-nav__menu-item > a {
    font-size: 14px;
    line-height: 18px;
  }
}
theme-nav-bar {
  display: contents;
}
@media (max-width: 959px) {
  .header-nav {
    display: none !important;
  }
}
[layout="left_logo_left_menu"] .header-nav {
  order: 10;
  margin: 0 auto 0 0;
}
.header-nav__menu {
  display: flex;
  flex-wrap: wrap;
}
.header-nav__menu-item {
  --nav-menu-item-padding-block: 12px;

  box-sizing: content-box;
  max-width: 100%;
  min-height: 26px;
  margin-inline: 16px;
}
.header-nav__menu-item > a {
  position: relative;
  z-index: calc(var(--header-nav-dropdown-menu-z-index) + 1);
  width: 100%;
  height: 100%;
  /* font-size: var(--body3-font-size);
  font-weight: 400; */
 
  font-family: Inter-SemiBold, Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.header-nav__menu-item > a:not(.button),
.header-nav__menu-item > a:not(.button):hover {
  color: rgb(var(--header-color-text));
}
.transparent:not(:hover) .header-nav__menu-item > a {
  color: rgb(var(--header-transparent-color-text, var(--header-color-text)));
}
.theme-sticky-header--sticky .transparent .header-nav__menu-item > a {
  color: rgb(var(--header-color-text));
}
.header-nav__menu-item > a > span {
  padding: var(--nav-menu-item-padding-block) 0;
}
/* [layout$="_wrap_menu"] .header__container-top .header-nav,
[layout$="_wrap_menu_2"] .header__container-top .header-nav {
  display: none;
} */
.header-nav__underline {
  --underline-size: 2px;

  position: relative;
  display: inline-flex;
  flex-direction: column;
  white-space: nowrap;
}
.header-nav__underline::after {
  display: block;
  width: 0;
  height: var(--underline-size);
  pointer-events: none;
  content: "";
  background-color: rgb(var(--header-color-text));
  transition: width 200ms ease-in;
}
.header-nav-dropdown-menu .header-nav__underline::after,
.header-nav-dropdown-panel .header-nav__underline::after {
  inset-block-end: 0;
}
.header-nav__underline:hover::after,
.header-nav__underline-control:hover > .header-nav__underline::after,
.header-nav__underline-scope:hover
  > .header-nav__underline-control
  > .header-nav__underline::after {
  width: 100%;
}
.header-nav__ellipsis {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  white-space: normal;
  -webkit-box-orient: vertical;
  font-family: Inter-Medium, Inter;
}
theme-header-nav-dropdown {
  contain: layout;
}
.header-nav-dropdown-menu-scope {
  position: absolute;
  z-index: var(--header-nav-dropdown-panel-z-index);
  display: none;
}
.header-nav__menu-item:hover .header-nav-dropdown-menu-scope {
  display: block;
  animation: animation-slide-in 300ms ease forwards;
}
.header-nav-dropdown-menu-scope.right {
  inset-inline: auto 0;
}
.header-nav-dropdown-menu {
  position: relative;
  z-index: var(--header-nav-dropdown-menu-z-index);
  box-sizing: content-box;
  display: inline-flex;
  width: 100%;
}
.header-nav-dropdown-menu__menu {
  padding-block: 10px;
  background-color: rgb(var(--header-background));
  box-shadow: 0 5px 20px 0 rgba(var(--header-color-text), 12%);
}
.header-nav-dropdown-menu__hero {
  display: inline-flex;
  flex: 1;
  width: max-content;
  min-width: 168px;
  max-width: 360px;
  padding: 4px 20px;
  font-size: var(--body3-font-size);
  line-height: 1.625;
  transition: color 200ms ease-in;
}
.header-nav-dropdown-menu__hero:not(.button),
.header-nav-dropdown-menu__hero:not(.button):hover {
  color: rgb(var(--header-color-text));
}
.header-nav-dropdown-panel {
  position: absolute;
  inset-inline-start: 0;
  z-index: var(--header-nav-dropdown-panel-z-index);
  display: none;
  width: 100%;
}
.header-nav__menu-item:hover .header-nav-dropdown-panel {
  display: block;
  animation: animation-slide-in 300ms ease forwards;
}
.header-nav-dropdown-panel__menu {
  position: absolute;
  z-index: var(--header-nav-dropdown-menu-z-index);
  display: flex;
  width: 100%;
  background-color: rgb(var(--header-background));
  box-shadow: 0 10px 20px -10px rgba(var(--header-color-text), 10%);
}
.header-nav-dropdown-panel__menu > ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  width: 100%;
  padding: 40px;
}
.header-nav-dropdown-panel__menu > ul > li {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 460px;
  padding-inline-end: 15px;
}
.header-nav-dropdown-panel__menu > ul > li > .header-nav__underline-scope {
  display: inline-flex;
  flex-direction: column;
  max-width: 100%;
}
.header-nav-dropdown-panel__hero {
  flex: 1;
  margin-block-end: 15px;
  /* font-size: var(--body2-font-size);
  font-weight: 500;
  line-height: 1.6111; */
  font-family: Inter-SemiBold, Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.header-nav-dropdown-panel__hero:not(.button),
.header-nav-dropdown-panel__hero:not(.button):hover {
  color: rgb(var(--header-color-text));
}
.header-nav-dropdown-panel__link {
  display: inline-flex;
  flex: 1;
  max-width: 100%;
  padding: 4px 15px 4px 0;
  font-size: var(--body3-font-size);
  line-height: 1.625;
  transition: color 200ms ease-in;
}
.header-nav-dropdown-panel__link:not(.button),
.header-nav-dropdown-panel__link:not(.button):hover {
  color: rgb(var(--header-color-text));
}
.header-nav-dropdown-panel__hero > .header-nav__underline,
.header-nav-dropdown-panel__link > .header-nav__underline {
  max-width: 100%;
}
.header-nav-dropdown-panel__submenu {
  display: flex;
  flex-direction: column;
}
.header-nav-dropdown-panel__submenu > ul > li {
  display: flex;
  flex: 1;
  max-width: 100%;
}
.header-nav-dropdown-panel__menu > ul.has-image-items {
  min-width: 0;
}
.header-nav__menu-item:hover > a.header-nav__underline::after {
  width: 100%;
}
.header-nav mark.lighthighted {
  display: block;
  color: rgb(var(--nav-bar-highlighted-color, var(--header-color-text)));
  background: linear-gradient(
    90deg,
    rgba(
        var(
          --nav-bar-highlighted-background-color,
          var(--header-color-text)
        ),
        20%
      )
      0%,
    rgba(
        var(
          --nav-bar-highlighted-background-color,
          var(--header-color-text)
        ),
        0%
      )
      100%
  );
}
.header-nav-with-images-dropdown-panel,
.header-super-nav-dropdown-panel {
  display: none;
  align-items: center;
  justify-content: center;
  height: auto;
  background-color: rgb(var(--header-background));
}
.header-nav__menu-item:hover .header-nav-with-images-dropdown-panel,
.header-nav__menu-item:hover .header-super-nav-dropdown-panel {
  display: flex;
}
.header-nav-with-images-dropdown-panel__item,
.header-super-nav-dropdown-panel__item {
  position: relative;
  display: flex;
  width: 25%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.header-nav-with-images-dropdown-panel__item::after,
.header-super-nav-dropdown-panel__item::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(
    var(--color-mask),
    calc(var(--nav-super-gallery-background-opcity) / 100)
  );
}
.header-nav-with-images-dropdown-panel__item > img,
.header-super-nav-dropdown-panel__item > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 0 20px;
}
.header-nav-with-images-dropdown-panel__item > *,
.header-super-nav-dropdown-panel__item > * {
  transition: transform 200ms ease-in;
}
.header-nav-with-images-dropdown-panel__item:hover > *,
.header-super-nav-dropdown-panel__item:hover > * {
  transform-origin: center;
}
.header-nav-with-images-dropdown-panel__item-inner,
.header-super-nav-dropdown-panel__item-inner {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding-inline: 20px;
  color: rgb(var(--nav-super-gallery-text-color, var(--header-color-text)));
  pointer-events: none;
}
.header-nav-with-images-dropdown-panel__item:not(
    :has(.header-nav-with-images-dropdown-panel__item-inner)
  )::after,
.header-super-nav-dropdown-panel__item:not(
    :has(.header-super-nav-dropdown-panel__item-inner)
  )::after {
  display: none;
}
.nav-item-with-images {
  display: contents;
}
.header-nav-with-images-dropdown-panel__item {
  flex: 1;
  flex-direction: column;
  width: auto;
  min-width: 25%;
  max-width: 100%;
  aspect-ratio: auto;
  padding: 0 20px;
}
.header-nav-with-images-dropdown-panel__item::after {
  display: none;
}
.header-nav-with-images-dropdown-panel__image {
  position: relative;
  flex: none;
  width: 100%;
  aspect-ratio: var(--header-nav-image-aspect-ratio, unset);
  overflow: hidden;
}
.header-nav-with-images-dropdown-panel__image::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-color: rgba(
    var(--color-mask),
    calc(var(--nav-super-gallery-background-opcity) / 100)
  );
}
.header-nav-with-images-dropdown-panel__image > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.header-nav-with-images-dropdown-panel__image--adapt > img {
  height: auto;
}
.header-nav-with-images-dropdown-panel__item:hover > *:not(img) {
  transform: none;
}
.header-nav-with-images-dropdown-panel__item.before {
  order: -1;
}
.header-nav-with-images-dropdown-panel__item.after {
  order: 2;
}
.header-nav-with-images-dropdown-panel__item-inner {
  position: static;
  z-index: auto;
  align-items: flex-start;
  justify-content: flex-start;
  height: auto;
  pointer-events: auto;
  padding: 12px 0 20px;
}
.header-nav-with-images-dropdown-panel__title {
  margin: 0 0 8px;
}
.header-nav-with-images-dropdown-panel__link {
  display: block;
}
.header-nav-with-images-dropdown-panel__link[href] {
  cursor: pointer;
}
.header-nav-with-images-dropdown-panel__link[href]::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
}
.header-nav-with-images-dropdown-panel__link[href]:focus-visible {
  outline: none;
}
.header-nav-with-images-dropdown-panel__link[href]:focus-visible::before {
  outline: 2px solid currentcolor;
  outline-offset: -4px;
}
.header-nav-with-images-dropdown-panel__link:not(.button),
.header-nav-with-images-dropdown-panel__link:not(.button):hover {
  color: inherit;
  text-decoration: underline;
}
.header-nav__menu-item--adapt .header-super-nav-dropdown-panel__item > img {
  position: absolute;
  height: unset;
  object-fit: unset;
}

/* Text mega menu */
.header-nav__menu-item.is-mega-open > .header-product-mega {
  display: block;
  animation: header-product-mega-reveal 240ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.header-nav__menu-item.is-mega-open > .header-nav__underline::after {
  width: 100%;
}

@keyframes header-product-mega-reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

.header-product-mega {
  inset-block-start: 100%;
  color: rgb(var(--header-color-text));
  background: rgb(var(--header-background));
  border-block-start: 1px solid rgba(var(--header-color-text), 12%);
}

.header-product-mega__surface {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 281px);
  gap: 34px;
  width: 100%;
  max-width: calc(var(--page-padding) * 2 + var(--page-width));
  max-height: calc(100vh - 104px);
  padding: 42px;
  margin-inline: auto;
  overflow-y: auto;
}

.header-product-mega__surface--without-feature {
  grid-template-columns: 1fr;
}

.header-product-mega__surface--two-features {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
}

.header-product-mega__features {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.header-product-mega__features--single {
  grid-template-columns: minmax(0, 281px);
  justify-content: end;
}

.header-product-mega__features--double {
  grid-template-columns: minmax(0, 1fr);
}

.header-product-mega__groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  min-width: 0;
}

.header-product-mega__group {
  min-width: 0;
}

.header-product-mega__group-title {
  margin: 0 0 22px;
  overflow: hidden;
  font-family: var(--sort-body-font);
  font-size: 16px;
  font-style: var(--sort-body-font-style);
  font-weight: 400;
  line-height: 1.35;
  color: rgb(var(--header-color-text));
  text-overflow: ellipsis;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.header-product-mega__group-title-link {
  color: inherit;
  text-decoration: none;
}

.header-product-mega__group-title-link:hover {
  color: rgb(var(--header-color-text));
}

.header-product-mega__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-product-mega__link,
.header-product-mega__link:not(.button),
.header-product-mega__link:hover {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  margin-inline: -10px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(var(--header-color-text), 72%);
  text-decoration: none;
  background: transparent;
  border-radius: 7px;
  transition: background-color 180ms ease;
}

.header-product-mega__link:hover,
.header-product-mega__link:focus-visible {
  background: rgba(var(--header-color-text), 9%);
}

.header-product-mega__link > span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-product-mega__link-arrow {
  flex-shrink: 0;
  margin-inline-start: auto;
  font-size: 18px;
  font-weight: 400;
  opacity: 0;
  transition: opacity 180ms ease;
}

.header-product-mega__link:hover .header-product-mega__link-arrow,
.header-product-mega__link:focus-visible .header-product-mega__link-arrow {
  opacity: 1;
}

.header-product-mega__link:focus-visible,
.header-product-mega__view-all:focus-visible,
.header-product-mega__feature-title-link:focus-visible,
.header-collection-products__card:focus-visible,
.header-collection-products__view-all:focus-visible {
  outline: 2px solid currentcolor;
  outline-offset: 3px;
}

.header-product-mega__tag {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  height: 18px;
  padding: 0 7px;
  font-size: 8px;
  font-weight: 800;
  line-height: 18px;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.08em;
  border-radius: 999px;
}

.header-product-mega__tag--hot {
  color: var(--header-product-mega-hot-badge-text, rgb(var(--header-color-text)));
  background: var(--header-product-mega-hot-badge-background, rgba(var(--header-color-text), 10%));
}

.header-product-mega__tag--new {
  color: var(--header-product-mega-new-badge-text, rgb(var(--header-color-text)));
  background: var(--header-product-mega-new-badge-background, rgba(var(--header-color-text), 10%));
}

.header-product-mega__tag--featured {
  color: var(--header-product-mega-featured-badge-text, rgb(var(--header-color-text)));
  background: var(--header-product-mega-featured-badge-background, rgba(var(--header-color-text), 10%));
}

.header-product-mega__view-all,
.header-product-mega__view-all:not(.button),
.header-product-mega__view-all:hover {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-block-start: 18px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(var(--header-color-text), 62%);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-product-mega__feature {
  position: relative;
  display: flex;
  aspect-ratio: 4 / 3;
  min-width: 0;
  overflow: hidden;
  color: rgb(var(--header-color-text));
  background: rgb(var(--header-background));
}

.header-product-mega__feature-media,
.header-product-mega__feature-shade {
  position: absolute;
  inset: 0;
}

.header-product-mega__feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-product-mega__feature-shade {
  background:
    radial-gradient(circle at 70% 20%, rgba(var(--header-color-text), 8%), rgba(var(--header-color-text), 0%) 24%),
    linear-gradient(180deg, rgba(var(--header-background), 12%) 0%, rgba(var(--header-background), 28%) 40%, rgba(var(--header-background), 94%) 100%);
}

.header-product-mega__feature-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 26px;
}

.header-product-mega__feature-title {
  margin: 0 0 10px;
  font-family: var(--sort-body-font);
  font-size: 16px;
  font-style: var(--sort-body-font-style);
  font-weight: 400;
  line-height: 1.2;
  color: rgb(var(--header-color-text));
  letter-spacing: var(--sort-body-letter-spacing);
}

.header-product-mega__feature-title-link,
.header-product-mega__feature-title-link:hover {
  color: inherit;
  text-decoration: none;
}

.header-product-mega__feature-title-link::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
}

.header-product-mega__feature-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 0;
  font-family: var(--sort-body-font);
  font-size: 12px;
  font-style: var(--sort-body-font-style);
  font-weight: 600;
  line-height: 1.2;
  color: rgb(var(--header-color-text));
  text-decoration: none;
  text-transform: none;
  letter-spacing: var(--sort-body-letter-spacing);
  background: transparent;
}

.header-product-mega__feature-cta > span:first-child {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Top-level collection product dropdown */
.header-collection-products__surface {
  width: 100%;
  max-width: calc(var(--page-padding) * 2 + var(--page-width));
  max-height: calc(100vh - 104px);
  padding: 30px 42px 38px;
  margin-inline: auto;
  overflow-y: auto;
}

.header-collection-products__header {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
  margin-block-end: 18px;
}

.header-collection-products__view-all,
.header-collection-products__view-all:not(.button),
.header-collection-products__view-all:hover {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: rgba(var(--header-color-text), 62%);
  text-decoration: none;
  transition: color 180ms ease;
}

.header-collection-products__view-all:hover {
  color: rgb(var(--header-color-text));
}

.header-collection-products__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
}

.header-collection-products__card,
.header-collection-products__card:not(.button),
.header-collection-products__card:hover {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
  color: rgb(var(--header-color-text));
  text-decoration: none;
  background: transparent;
}

.header-collection-products__card:focus-visible,
.header-collection-products__view-all:focus-visible {
  outline: 2px solid currentcolor;
  outline-offset: 3px;
}

.header-collection-products__media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.header-collection-products__image,
.header-collection-products__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-collection-products__title {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (min-width: 960px) and (max-width: 1199px) {
  .header-product-mega__surface {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }

  .header-product-mega__groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .header-product-mega__features--single {
    justify-content: start;
  }

  .header-collection-products__surface {
    padding: 28px 20px 32px;
  }

  .header-collection-products__title {
    font-size: 13px;
  }
}
.header-search-bar {
  --header-search-bar-slide-anime-duration: 200ms;

  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: -1;
  display: flex;
  flex-direction: column;
  column-gap: var(--header-column-gap);
  align-items: center;
  justify-content: start;
  order: 30;
  width: 100%;
  height: 100%;
  margin-inline-start: auto;
  pointer-events: none;
  opacity: 0;
  transition:
    z-index 1ms ease var(--header-search-bar-slide-anime-duration),
    opacity var(--header-search-bar-slide-anime-duration) ease-in,
    transform var(--header-search-bar-slide-anime-duration) ease-in;
}
.header-search-bar.divider::after {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  z-index: 4;
  height: 1px;
  content: "";
  background-color: rgba(var(--color-entry-line), 1);
}
@media (max-width: 959px) {
  .header-search-bar {
    margin-inline-start: 0;
  }
}
.header-search-bar.open {
  z-index: calc(var(--header-nav-dropdown-menu-z-index) + 1);
  pointer-events: all;
  opacity: 1;
  transition:
    opacity var(--header-search-bar-slide-anime-duration) ease-in,
    transform var(--header-search-bar-slide-anime-duration) ease-in;
}
.header-search-bar--lockscreen {
  overflow: hidden !important;
}
.header-search-bar__backdrop {
  position: fixed;
  inset-inline-start: 0;
  display: block !important;
  width: 100%;
  height: 100vh;
  background: rgba(var(--color-mask), 40%);
}
.header-search-bar__icon {
  box-sizing: content-box;
  display: inline-flex;
  flex-shrink: 0;
  justify-self: end;
  width: 28px;
  height: 28px;
}
@media (max-width: 959px) {
  .header-search-bar__icon {
    width: 26px;
    height: 26px;
  }
}
.header-search-bar__form {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding: 22px 48px;
  background-color: rgba(var(--color-background), 1);
}
@media (max-width: 959px) {
  .header-search-bar__form {
    padding: 10px 20px;
  }
}
.header-search-bar__form .button {
  box-sizing: content-box;
  width: 26px;
  height: 26px;
}
@media (min-width: 960px) {
  .header-search-bar__form .button {
    width: 28px;
    height: 28px;
  }
}
.header-search-bar__form .field__input {
  flex: 1;
  width: 100%;
  padding: 0;
}
.header-search-bar__form .field__input::placeholder {
  opacity: 1;
}
[layout$="_wrap_menu"]
  .header__container-top
  .header-search-bar
  [layout$="_wrap_menu_2"]
  .header__container-top
  .header-search-bar {
  order: 10;
  margin-inline-start: 0;
}
.header-search-bar__results {
  position: relative;
  z-index: 1;
  display: none;
  flex-direction: column;
  width: 100%;
  padding: 10px 48px;
  background-color: rgba(var(--color-background), 1);
}
@media (max-width: 959px) {
  .header-search-bar__results {
    padding: 0 20px;
  }
}
.header-search-bar__results.shown {
  display: flex;
}
.header-search-bar__results-loading {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.header-search-bar__results-spinner {
  width: 20px;
  height: 20px;
  color: rgba(var(--color-text), 1);
  animation: animation-circling linear 1.5s infinite;
}
.header-search-bar__results-list {
  display: block;
}
.header-search-bar__results.loading {
  align-items: center;
  justify-content: center;
}
.header-search-bar__results.loading .header-search-bar__results-loading {
  display: flex;
}
.header-search-bar__results.loading .header-search-bar__results-list {
  display: none;
}
@keyframes animation-predictive-search-fade-in {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.predictive-search-section {
  opacity: 0;
  transform: translateY(15px);
  animation: animation-predictive-search-fade-in 500ms ease forwards;
}
.predictive-search__header {
  --header-height: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block-end: 12px;
  margin-block-end: 24px;
  border-block-end: 1px solid rgba(var(--header-color-text), 12%);
}
.predictive-search__title {
  display: flex;
  align-items: center;
  height: var(--header-height);
  overflow: hidden;
  font-size: var(--body4-font-size);
  color: rgba(var(--color-text), 1);
}
.predictive-search__count {
  display: flex;
  align-items: center;
  height: var(--header-height);
  overflow: hidden;
}
.predictive-search__results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
}
@media (width >= 980px) and (width <= 1200px) {
  .predictive-search__results {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (width >= 600px) and (width <= 980px) {
  .predictive-search__results {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (width <= 600px) {
  .predictive-search__results {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.predictive-search__result-item {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.predictive-search__product {
  display: flex;
  gap: 10px;
}
@media (max-width: 959px) {
  .predictive-search__product {
    flex-direction: row;
    gap: 16px;
  }
}
.predictive-search__product-title {
  display: -webkit-box;
  overflow: hidden;
  font-size: var(--body3-font-size);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(var(--color-text), 1);
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  white-space: normal;
  -webkit-box-orient: vertical;
}
@media (max-width: 959px) {
  .predictive-search__product-title {
    font-size: var(--body5-font-size);
    line-height: 1.3125;
  }
}
.predictive-search__product-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.predictive-search__product-image-wrap {
  position: relative;
  display: flex;
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  overflow: hidden;
}
.predictive-search__product-image {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 959px) {
  .predictive-search__product-image {
    width: 80px;
    height: 80px;
  }
}
.predictive-search__product-price {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: var(--body3-font-size);
  font-weight: 500;
  line-height: 1.5909;
  color: rgba(var(--color-sale), 1);
  word-break: break-all;
  white-space: normal;
}
@media (max-width: 959px) {
  .predictive-search__product-price {
    font-size: var(--body2-font-size);
    line-height: 1.6;
  }
}
.predictive-search__product-save-price {
  font-size: var(--body5-font-size);
  font-weight: 500;
  line-height: 1.6;
  text-decoration: line-through;
  word-break: break-all;
  white-space: normal;
  opacity: 0.5;
}
.predictive-search__footer {
  display: flex;
  align-items: center;
  padding: 20px 0;
  margin-block-start: 4px;
}
.predictive-search__more {
  gap: 8px;
  text-decoration: none !important;
  white-space: break-spaces !important;
}
@media (max-width: 959px) {
  .header-search-bar.open {
    height: auto;
  }

  .header-search-bar.open .header-search-bar__form {
    min-height: auto;
  }

  .header-search-bar [data-role="search-bar-result"] {
    --search-result-height: max(0px, calc(100dvh - var(--search-offset, 0px)));

    height: auto !important;
    min-height: 0 !important;
    max-height: var(--search-result-height) !important;
    padding-block-end: env(safe-area-inset-bottom, 0);
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .header-search-bar .predictive-search__header {
    position: sticky;
    inset-block-start: 0;
    z-index: 1;
    background: rgba(var(--color-background), 1);
  }

  .header-search-bar .predictive-search__footer {
    background: rgba(var(--color-background), 1);
  }

  .header-search-bar .predictive-search__results {
    padding: 0;
    margin: 0;
  }
}
theme-sticky-header {
  --theme-sticky-header-top: 0;

  position: relative;
  inset-block-start: 0;
  z-index: calc(var(--z-index-fixed) - 1);
  display: block;
}
.theme-sticky-header--sticky {
  display: contents;
}
.theme-sticky-header--sticky theme-sticky-header {
  position: sticky;
  inset-block-start: var(--theme-sticky-header-top);
  animation: animation-header-sticky 0.26s ease-out forwards;
}
.theme-sticky-header--sticky-collapse theme-sticky-header {
  animation-name: animation-header-sticky-collapse;
}
@keyframes animation-header-sticky {
  0% {
    transform: translateY(calc(-100% + var(--theme-sticky-header-top) * -1));
  }

  100% {
    transform: translateY(0);
  }
}
@keyframes animation-header-sticky-collapse {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-100% + var(--theme-sticky-header-top) * -1));
  }
}
theme-dropdown-menu {
  position: relative;
  display: inline-flex;
}
theme-dropdown-menu .dropdown-menu__label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
theme-dropdown-menu .dropdown-menu__label-text {
  display: inline-flex;
  color: rgb(var(--header-color-text));
  white-space: nowrap;
  font-size: 16px;
  font-family: Inter-Medium, Inter;
}
.header-nav-drawer theme-dropdown-menu .dropdown-menu__label-text {
  white-space: normal;
}
.transparent:not(:hover) theme-dropdown-menu .dropdown-menu__label-text {
  color: rgb(var(--header-transparent-color-text, var(--header-color-text)));
}
.theme-sticky-header--sticky
  .transparent
  theme-dropdown-menu
  .dropdown-menu__label-text {
  color: rgb(var(--header-color-text));
}
theme-dropdown-menu .dropdown-menu__label-arrow {
  display: inline-flex;
  width: 10px;
  height: 10px;
  transition: transform 0.16s ease-in-out;
}
theme-dropdown-menu .dropdown-menu__list {
  position: absolute;
  inset-block-start: calc(100% + 4px);
  inset-inline-end: 0;
  z-index: var(--z-index-dropdown);
  display: none;
  width: max-content;
  max-height: 530px;
  padding-block: 10px;
  margin-block-end: env(safe-area-inset-bottom, 0);
  overflow-y: auto;
  color: rgb(var(--header-color-text));
  background: rgb(var(--header-background));
  box-shadow: 0 5px 20px 0 rgba(var(--header-color-text), 12%);
  animation: animation-dropdown 0.16s ease-in;
}
theme-dropdown-menu .dropdown-menu__list::-webkit-scrollbar-thumb {
  background: rgb(var(--header-color-text));
  border-radius: 2px;
}
theme-dropdown-menu.top .dropdown-menu__list {
  inset-block: auto calc(100% + 4px);
}
theme-dropdown-menu.left .dropdown-menu__list {
  inset-inline: 0 auto;
}
theme-dropdown-menu .dropdown-menu__list-item {
  display: flex;
  padding: 4px 15px;
  line-height: 160%;
  word-break: keep-all;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
}
theme-dropdown-menu .dropdown-menu__list-item a:not(.button),
theme-dropdown-menu .dropdown-menu__list-item a:not(.button):hover {
  color: rgb(var(--header-color-text));
}
theme-dropdown-menu .dropdown-menu__divider {
  height: 1px;
  margin: 4px 15px;
  background: rgb(var(--color-entry-line));
}
theme-dropdown-menu .dropdown-menu__trigger {
  position: fixed;
  inset-block-start: -1000px;
  inset-inline-start: -1000px;
  pointer-events: none;
  visibility: hidden;
  user-select: none;
  opacity: 0;
}
theme-dropdown-menu.hover:hover .dropdown-menu__list {
  display: block;
}
theme-dropdown-menu
  .dropdown-menu__trigger:checked
  ~ .dropdown-menu__label-arrow {
  transform: rotate(-180deg);
}
theme-dropdown-menu
  .dropdown-menu__label:has(.dropdown-menu__trigger:checked)
  ~ .dropdown-menu__list {
  display: block;
}
theme-locale-picker {
  display: contents;
}
theme-locale-picker > form {
  display: contents;
}
theme-locale-picker .theme-locale-picker__inner {
  display: inline-flex;
  flex-shrink: 1;
  gap: 28px;
  align-items: center;
  min-width: 0;
}
theme-locale-picker theme-dropdown-menu {
  min-width: 0;
}
.header-action-bar {
  position: relative;
  display: flex;
  flex: 0;
  flex-wrap: nowrap;
  column-gap: var(--header-column-gap);
  align-items: center;
  order: 40;
  padding-block: 0;
  padding-block: 12px;
  margin-inline-start: auto;
}
@media (max-width: 959px) {
  .header-action-bar {
    display: flex;
    column-gap: var(--header-column-gap-mobile);
  }
}
.header-action-bar > * {
  position: relative;
  z-index: calc(var(--header-nav-dropdown-menu-z-index) + 1);
}
@media (max-width: 959px) {
  .header-action-bar {
    flex: 1;
    padding: 0;
  }
}
.header__container[layout="center_logo_wrap_menu"] .header-action-bar {
  flex: 1;
}
.header-action-bar .button--icon {
  display: inline-flex;
  justify-self: end;
  width: 28px;
  height: 28px;
}
.header-action-bar .button--hidden {
  display: none;
}
@media (max-width: 959px) {
  .header-action-bar .button--hidden-mobile {
    display: none;
  }
}
@media (min-width: 960px) {
  .header-action-bar .button--hidden-desktop {
    display: none;
  }
}
.header-action-bar__search-bar-container {
  display: inline-flex;
  flex-shrink: 9;
}
@media (min-width: 960px) {
  theme-action-bar-search.header-action-bar__search-bar-container {
    cursor: pointer;
  }
}
.header-action-bar__search-bar {
  display: inline-flex;
  flex-shrink: 1;
  gap: 10px;
  width: 100%;
  min-width: 48px;
  max-width: 300px;
  height: 48px;
  padding: 10px;
  overflow: hidden;
  color: rgb(var(--header-color-text));
  /* background-color: rgb(var(--header-background));
  border: 1px solid rgb(var(--color-entry-line)); */
  border-radius: 6px;
  transform:
    color 200ms ease-in-out,
    background-color 200ms ease-in-out;
}
.header-action-bar__search-bar-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: inherit;
}
.header-action-bar__search-bar-input {
  width: 100%;
  overflow: hidden;
  font-size: var(--body3-font-size);
  color: inherit;
  appearance: none;
  background-color: rgba(var(--header-color-text), 0%);
  border: none;
  outline: none;
  box-shadow: none;
}
.header-action-bar__search-bar-input::-webkit-search-cancel-button {
  display: none;
}
.header-action-bar__search-bar-input::placeholder {
  color: inherit;
}
.header-action-bar__search.button--icon {
  margin-inline-end: 0;
}
.header-action-bar__results {
  position: absolute;
  inset-block-start: 100%;
  z-index: var(--z-index-dropdown);
  display: none;
  flex-direction: column;
  width: 100%;
  max-height: 80vh;
  padding: 20px;
  overflow: hidden auto;
  background-color: rgba(var(--color-background), 1);
  border: 1px solid rgba(var(--header-color-text), 10%);
  box-shadow: 0 10px 20px 0 rgba(var(--header-color-text), 10%);
}
.header-action-bar__results.shown {
  display: flex;
}
.header-action-bar__results-loading {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.header-action-bar__results-spinner {
  width: 20px;
  height: 20px;
  color: rgba(var(--color-text), 1);
  animation: animation-circling linear 1.5s infinite;
}
.header-action-bar__results-list {
  display: block;
}
.header-action-bar__results.loading {
  align-items: center;
  justify-content: center;
}
.header-action-bar__results.loading .header-action-bar__results-loading {
  display: flex;
}
.header-action-bar__results.loading .header-action-bar__results-list {
  display: none;
}
.header-action-bar__results .predictive-search__results {
  grid-template-columns: repeat(1, 1fr);
}
.header-action-bar__results .predictive-search__product {
  flex-direction: row;
}
.header-action-bar__results .predictive-search__product-image-wrap {
  display: block;
  grid-area: image;
  width: 62px;
  height: 62px;
  overflow: visible;
  object-fit: cover;
  object-position: center;
}
.header-action-bar__results .predictive-search__product-title {
  display: block;
  overflow: visible;
}
.header-action-bar__results .predictive-search__more > svg {
  display: none !important;
}
.header-action-bar.left {
  display: none;
  grid-area: action-bar-left;
  order: 0;
}
.header-action-bar.left .header-action-bar__search,
.header-action-bar.left .header-action-bar__search-bar {
  display: none;
}
.header-action-bar.right {
  grid-area: action-bar-right;
  align-items: center;
  justify-content: end;
  max-width: 100%;
}
[type="drawer"] .header-action-bar.left,
[layout^="center_logo_"] .header-action-bar.left {
  display: flex;
}
[layout="center_logo_wrap_menu"]
  .header-action-bar.left
  .header-action-bar__search,
[layout="center_logo_wrap_menu"]
  .header-action-bar.left
  .header-action-bar__search-bar {
  display: inline-flex;
}
[layout="center_logo_wrap_menu"]
  .header-action-bar.right
  .header-action-bar__search,
[layout="center_logo_wrap_menu"]
  .header-action-bar.right
  .header-action-bar__search-bar {
  display: none;
}
[layout="center_logo_wrap_menu_2"]
  .header-action-bar.left
  .header-action-bar__search,
[layout="center_logo_wrap_menu_2"]
  .header-action-bar.left
  .header-action-bar__search-bar {
  display: none;
}
[layout="center_logo_wrap_menu_2"]
  .header-action-bar.right
  .header-action-bar__search,
[layout="center_logo_wrap_menu_2"]
  .header-action-bar.right
  .header-action-bar__search-bar {
  display: inline-flex;
}
.header-action-bar [layout="left_logo_left_menu"] .header__logo {
  order: 0;
}
@media (max-width: 959px) {
  .header-action-bar {
  }
  .header-action-bar.right .header-action-bar__menu {
    display: none;
  }

  .header-action-bar.left {
    display: flex;
  }

  .header-action-bar__search-bar {
    display: none;
  }

  .header-action-bar__search.button--icon {
    display: inline-flex;
  }

  [layout^="left_logo_"] .header-action-bar.left {
    flex: 0;
  }
  [mobile-layout="left_logo"]
    .header-action-bar.left
    .header-action-bar__search {
    display: none !important;
  }
}
@media (max-width: 959px) {
  .header-action-bar theme-locale-picker {
    display: none;
  }
}
.transparent:not(:hover) .header-action-bar {
  color: rgb(var(--header-transparent-color-text, var(--color-text)));
}
.transparent:not(:hover) .header-action-bar__search-bar {
  color: rgb(var(--header-transparent-color-text));
  background-color: transparent;
}
.transparent:not(:hover) .header-action-bar__search-bar-icon {
  color: rgb(var(--header-transparent-color-text));
}
.theme-sticky-header--sticky
  .transparent:not(:hover)
  .header-action-bar__search-bar {
  color: rgb(var(--header-color-text));
  background-color: rgb(var(--header-background));
}
.theme-sticky-header--sticky
  .transparent:not(:hover)
  .header-action-bar__search-bar-icon {
  color: inherit;
}
.mobile-slider-navbar {
  position: relative;
  z-index: 1;
  display: none;
  overflow: auto hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  background: rgb(var(--header-background));
  animation: animation-fade-in 0.16s ease-in;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 959px) {
  .mobile-slider-navbar {
    display: block;
  }
}
.mobile-slider-navbar::-webkit-scrollbar {
  display: none;
}
.mobile-slider-navbar__list {
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.mobile-slider-navbar__item {
  flex-shrink: 0;
  scroll-snap-align: center;
}
.mobile-slider-navbar__link {
  display: block;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
}
.mobile-slider-navbar__link:not(.button),
.mobile-slider-navbar__link:not(.button):hover {
  color: rgb(var(--header-color-text));
}
.mobile-slider-navbar__link--active {
  position: relative;
  color: rgb(var(--header-color-text));
}
.mobile-slider-navbar__link--active::after {
  position: absolute;
  inset-block-end: 8px;
  inset-inline: 16px;
  height: 2px;
  content: "";
  background-color: rgb(var(--header-color-text));
}
.header-section.transparent:not(:hover) .mobile-slider-navbar {
  background: transparent;
}
.header-section.transparent:not(:hover)
  .mobile-slider-navbar__link:not(.button),
.header-section.transparent:not(:hover)
  .mobile-slider-navbar__link:not(.button):hover {
  color: rgb(var(--header-transparent-color-text));
}
.header-nav-drawer {
  --header-nav-drawer-slide-anime-duration: 200ms;
  --header-background: var(--color-background);
  --header-color-text: var(--color-text);
  --nav-drawer-font-size-mobile: calc(
    var(--sort-body3-size) * var(--body3-font-size-mobile-ratio) + 2px
  );
  --nav-drawer-font-size-mobile-base: calc(
    var(--sort-body3-size) * var(--body3-font-size-mobile-ratio)
  );

  position: fixed;
  z-index: -1;
  display: none;
  pointer-events: none;
  transition: z-index 1ms ease var(--header-nav-drawer-slide-anime-duration);
}
.header-nav-drawer--lockscreen {
  overflow: hidden !important;
}
.header-nav-drawer.open {
  z-index: var(--z-index-fixed);
  pointer-events: all;
  transition: z-index 1ms ease;
}
.header-nav-drawer,
.header-nav-drawer__backdrop,
.header-nav-drawer__content {
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
}
.header-nav-drawer__backdrop {
  position: fixed;
  z-index: -1;
  display: block !important;
  width: 100%;
  height: 100vh;
  background: rgba(var(--color-mask), 40%);
  opacity: 0;
  transition:
    opacity var(--header-nav-drawer-slide-anime-duration) ease-in-out,
    z-index 1ms ease var(--header-nav-drawer-slide-anime-duration);
}
.header-nav-drawer.open .header-nav-drawer__backdrop {
  opacity: 1;
}
.header-nav-drawer__content {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 400px;
  height: 100dvh;
  padding: 15px 0 10px;
  background: rgb(var(--header-background));
  transition:
    width var(--header-nav-drawer-slide-anime-duration) ease,
    transform var(--header-nav-drawer-slide-anime-duration) ease-out;
  transform: translateX(-100%);
}
@media (max-width: 959px) {
  .header-nav-drawer__content {
    width: 340px;
  }
}
.header-nav-drawer.open .header-nav-drawer__content {
  transition:
    width var(--header-nav-drawer-slide-anime-duration) ease,
    transform var(--header-nav-drawer-slide-anime-duration) ease-in;
  transform: translateX(0);
}
.header-nav-drawer__header {
  padding-inline: 30px;
}
@media (max-width: 959px) {
  .header-nav-drawer__header {
    padding-inline: 20px;
  }
}
.header-nav-drawer__header-container {
  box-sizing: content-box;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  padding-block-end: 15px;
  color: rgb(var(--header-color-text));
  border-block-end: 1px solid rgba(var(--header-color-text), 12%);
}
.header-nav-drawer__login {
  display: inline-flex;
  flex: 1;
  gap: 8px;
  align-items: center;
}
.header-nav-drawer__login:not(.button),
.header-nav-drawer__login:not(.button):hover {
  color: rgb(var(--header-color-text));
}
@media (max-width: 959px) {
  .header-nav-drawer__login .body3 {
    font-size: var(--nav-drawer-font-size-mobile);
    font-weight: 400;
  }
}
.header-nav-drawer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
.header-nav-drawer__ellipsis {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  white-space: normal;
  -webkit-box-orient: vertical;
}
.header-nav-drawer__menu {
  --nav-drawer-padding-inline: 20px;
  --nav-drawer-padding-block: 12px;

  overflow-y: auto;
}
.header-nav-drawer__menu-control {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: var(--nav-drawer-padding-block) var(--nav-drawer-padding-inline);
}
@media (max-width: 959px) {
  .header-nav-drawer__menu-control {
    font-size: var(--nav-drawer-font-size-mobile);
    font-weight: 400;
  }

  .header-nav-drawer__menu-link.body3 {
    font-size: inherit;
    font-weight: 400;
  }

  .header-nav-drawer__submenu .header-nav-drawer__menu-control {
    border-block-end: 1px solid rgba(var(--header-color-text), 12%);
  }

  .header-nav-drawer__submenu
    .header-nav-drawer__submenu
    .header-nav-drawer__menu-control {
    font-size: var(--nav-drawer-font-size-mobile-base);
  }
}
.header-nav-drawer__menu-control:not(.button),
.header-nav-drawer__menu-control:not(.button):hover {
  color: rgb(var(--header-color-text));
}
.header-nav-drawer__menu-control > a:not(.button),
.header-nav-drawer__menu-control > a:not(.button):hover {
  color: inherit;
}
.header-nav-drawer__menu-control .header-nav-drawer__menu-icon {
  width: 10px;
  height: 10px;
  transform: scale(1);
}

.header-nav-drawer__animated-plus {
  --animated-plus-size: 10px;

  position: relative;
  display: block;
  width: var(--animated-plus-size);
  height: var(--animated-plus-size);
}

.header-nav-drawer__animated-plus::before,
.header-nav-drawer__animated-plus::after {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  content: "";
  background: currentcolor;
  transition:
    transform 250ms ease-in-out,
    opacity 250ms ease-in-out;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.header-nav-drawer__animated-plus::before {
  width: var(--animated-plus-size);
  height: 1.5px;
  opacity: 1;
}

.header-nav-drawer__animated-plus::after {
  width: 1.5px;
  height: var(--animated-plus-size);
}
summary.header-nav-drawer__menu-control {
  align-items: stretch;
  padding: 0;
  padding-inline-start: var(--nav-drawer-padding-inline);
}
summary.header-nav-drawer__menu-control .header-nav-drawer__menu-link {
  display: flex;
  flex: 1;
  gap: 10px;
  padding: var(--nav-drawer-padding-block) var(--nav-drawer-padding-inline);
  padding-inline-start: 0;
}
summary.header-nav-drawer__menu-control .header-nav-drawer__menu-icon {
  box-sizing: content-box;
  height: auto;
  padding: var(--nav-drawer-padding-block) var(--nav-drawer-padding-inline);
}
details[open] > summary .header-nav-drawer__animated-plus::before {
  opacity: 0;
}

details[open] > summary .header-nav-drawer__animated-plus::before,
details[open] > summary .header-nav-drawer__animated-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.header-nav-drawer__submenu {
  --nav-drawer-submenu-padding-inline: 15px;

  overflow: hidden;
  background: rgba(var(--header-color-text), 5%);
}
details + .header-nav-drawer__submenu {
  transition: var(--nav-drawer-submenu-transition-max-height),
    var(--nav-drawer-submenu-transition-color);
}
.header-nav-drawer__submenu .header-nav-drawer__submenu {
  background-color: rgba(var(--header-color-text), 0%);
}
ul.header-nav-drawer__submenu {
  background: rgb(var(--header-background));
}
ul.header-nav-drawer__submenu ul.header-nav-drawer__submenu {
  background: rgba(var(--header-color-text), 5%);
}
@media (max-width: 959px) {
  ul.header-nav-drawer__submenu
    ul.header-nav-drawer__submenu
    .header-nav-drawer__menu-control {
    border-radius: 7px;
    transition: background-color 180ms ease;
  }

  ul.header-nav-drawer__submenu
    ul.header-nav-drawer__submenu
    .header-nav-drawer__menu-control:hover,
  ul.header-nav-drawer__submenu
    ul.header-nav-drawer__submenu
    .header-nav-drawer__menu-control:focus-visible {
    background: rgba(var(--header-color-text), 9%);
  }
}
details:not([open]) + .header-nav-drawer__submenu {
  --nav-drawer-submenu-transition-max-height: max-height 360ms ease;
  --nav-drawer-submenu-transition-color: color 200ms ease;

  max-height: 0;
  color: rgba(var(--header-color-text), 0%);
}
details[open] + .header-nav-drawer__submenu {
  --nav-drawer-submenu-transition-max-height: max-height 360ms ease-in;
  --nav-drawer-submenu-transition-color: color 200ms ease-in-out 200ms;

  max-height: 100vh;
  color: rgb(var(--header-color-text));
}
details[open]
  + .header-nav-drawer__submenu
  details:not([open])
  + .header-nav-drawer__submenu {
  color: rgba(var(--header-color-text), 0%);
}
details:not([open])
  + .header-nav-drawer__submenu
  details[open]
  + .header-nav-drawer__submenu {
  color: rgba(var(--header-color-text), 0%);
  transition-delay: 0ms, 0ms;
}
details[open]
  + .header-nav-drawer__submenu
  details[open]
  + .header-nav-drawer__submenu {
  color: rgb(var(--header-color-text));
}
.header-nav-drawer__submenu .header-nav-drawer__menu-control {
  padding-inline-start: calc(
    var(--nav-drawer-padding-inline) +
      (
        var(--nav-drawer-submenu-padding-inline) *
          var(--nav-drawer-submenu-level, 1)
      )
  );
  font-weight: 400;
  color: inherit;
  text-transform: none;
  letter-spacing: normal;
}
details + .header-nav-drawer__submenu .header-nav-drawer__menu-control {
  transition: transform 400ms ease-in;
}
details:not([open])
  + .header-nav-drawer__submenu
  .header-nav-drawer__menu-control {
  transform: translate(4px, 4px) !important;
}
details[open]
  + .header-nav-drawer__submenu
  > li
  > .header-nav-drawer__menu-control,
details[open]
  + .header-nav-drawer__submenu
  > li
  > details
  .header-nav-drawer__menu-control {
  transform: translate(0, 0);
}
.header-nav-drawer__footer {
  flex-shrink: 0;
  padding-block-start: 15px;
  margin-block-start: auto;
  border-block-start: 1px solid rgba(var(--header-color-text), 12%);
}
@media (max-width: 959px) {
  .header-nav-drawer__footer {
    padding-block-end: env(safe-area-inset-bottom, 0);
  }
}
.header-nav-drawer__footer .theme-locale-picker__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
.header-nav-drawer__footer theme-locale-picker {
  display: contents;
}
.header-nav-drawer__footer theme-locale-picker theme-dropdown-menu {
  display: flex;
  gap: 10px;
  padding: 12px 20px;
}
.header-nav-drawer mark.lighthighted {
  display: block;
  padding-inline-end: 32px;
  color: rgb(var(--nav-bar-highlighted-color, var(--header-color-text)));
  background: linear-gradient(
    90deg,
    rgba(
        var(
          --nav-bar-highlighted-background-color,
          var(--header-color-text)
        ),
        20%
      )
      0%,
    rgba(
        var(
          --nav-bar-highlighted-background-color,
          var(--header-color-text)
        ),
        0%
      )
      100%
  );
}
.nav-drawer-super-gallery__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
}
.nav-drawer-super-gallery__row {
  display: flex;
}
.nav-drawer-super-gallery__row:empty {
  display: none;
}
details:not([open]) + .nav-drawer-super-gallery__menu {
  display: block;
}
details[open] + .nav-drawer-super-gallery__menu {
  display: flex;
}
details + .nav-drawer-super-gallery__menu .nav-drawer-super-gallery__row {
  opacity: 0;
  transition: var(--nav-drawer-submenu-transition-opacity);
}
details:not([open])
  + .nav-drawer-super-gallery__menu
  .nav-drawer-super-gallery__row {
  --nav-drawer-submenu-transition-opacity: opacity 160ms ease-in;
}
details[open] + .nav-drawer-super-gallery__menu .nav-drawer-super-gallery__row {
  --nav-drawer-submenu-transition-opacity: opacity 160ms ease-in 160ms;

  opacity: 1;
}
.nav-drawer-super-gallery__item {
  position: relative;
  display: flex;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.nav-drawer-super-gallery__item::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(
    var(--color-mask),
    calc(var(--nav-super-gallery-background-opcity) / 100)
  );
}
.nav-drawer-super-gallery__item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.nav-drawer-super-gallery__item > * {
  transition: transform 200ms ease-in;
}
.nav-drawer-super-gallery__item:hover > * {
  transform: scale(1.1);
  transform-origin: center;
}
.nav-drawer-super-gallery--adapt .nav-drawer-super-gallery__item {
  aspect-ratio: unset;
}
.nav-drawer-super-gallery--adapt .nav-drawer-super-gallery__item > img {
  height: fit-content;
  object-fit: unset;
  object-position: 0 0;
}

@media (max-width: 959px) {
  .header-nav-drawer__content {
    width: 100vw;
  }
}

.header-product-mega-mobile {
  --header-product-mega-mobile-level-indent: 15px;

  color: rgb(var(--header-color-text));
  background: rgb(var(--header-background));
}

details[open] + .header-product-mega-mobile {
  max-height: 2400px;
}

.header-collection-products-mobile {
  color: rgb(var(--header-color-text));
  background: rgb(var(--header-background));
}

details[open] + .header-collection-products-mobile {
  max-height: 1600px;
}

.header-collection-products-mobile__surface {
  padding: 16px 0 20px 18px;
}

.header-collection-products-mobile__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-block-start: 12px;
}

.header-collection-products-mobile__view-all,
.header-collection-products-mobile__view-all:not(.button),
.header-collection-products-mobile__view-all:hover {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--header-color-text), 62%);
  text-decoration: none;
}

.header-collection-products-mobile__grid {
  display: grid;
  grid-auto-columns: calc((100% - 36px) / 2);
  grid-auto-flow: column;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: inline proximity;
  -webkit-overflow-scrolling: touch;
}

.header-collection-products-mobile__grid::-webkit-scrollbar {
  display: none;
}

.header-collection-products-mobile__card,
.header-collection-products-mobile__card:not(.button),
.header-collection-products-mobile__card:hover {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  color: rgb(var(--header-color-text));
  text-decoration: none;
  background: transparent;
  scroll-snap-align: start;
}

.header-collection-products-mobile__card:focus-visible,
.header-collection-products-mobile__view-all:focus-visible {
  outline: 2px solid currentcolor;
  outline-offset: 2px;
}

.header-collection-products-mobile__media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 10px;
  overflow: hidden;
}

.header-collection-products-mobile__image,
.header-collection-products-mobile__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-collection-products-mobile__title {
  display: -webkit-box;
  padding: 9px 9px 11px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.header-product-mega-mobile__direct,
.header-product-mega-mobile__direct:not(.button),
.header-product-mega-mobile__direct:hover {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--nav-drawer-padding-block);
  padding-inline: var(--nav-drawer-padding-inline);
  padding-inline-start: calc(
    var(--nav-drawer-padding-inline) +
      var(--header-product-mega-mobile-level-indent)
  );
  font-size: var(--nav-drawer-font-size-mobile);
  font-weight: 400;
  line-height: var(--sort-body3-line-height);
  color: rgb(var(--header-color-text));
  text-decoration: none;
  text-transform: none;
  background: rgb(var(--header-background));
  border-block-end: 1px solid rgba(var(--header-color-text), 12%);
}

.header-product-mega-mobile__direct > span:last-child {
  font-size: 20px;
  font-weight: 400;
  color: rgba(var(--header-color-text), 55%);
}

.header-product-mega-mobile__details {
  background: rgb(var(--header-background));
  border: 0;
}

.header-product-mega-mobile__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--nav-drawer-padding-block);
  padding-inline: var(--nav-drawer-padding-inline);
  padding-inline-start: calc(
    var(--nav-drawer-padding-inline) +
      var(--header-product-mega-mobile-level-indent)
  );
  font-size: var(--nav-drawer-font-size-mobile);
  font-weight: 400;
  line-height: var(--sort-body3-line-height);
  color: rgb(var(--header-color-text));
  cursor: pointer;
  list-style: none;
  text-transform: none;
  background: rgb(var(--header-background));
  border-block-end: 1px solid rgba(var(--header-color-text), 12%);
}

.header-product-mega-mobile__summary::-webkit-details-marker {
  display: none;
}

.header-product-mega-mobile__toggle {
  display: grid;
  width: 10px;
  height: 10px;
  place-items: center;
  color: rgba(var(--header-color-text), 55%);
}

.header-product-mega-mobile__list {
  background: rgba(var(--header-color-text), 5%);
}

.header-product-mega-mobile__list-inner {
  padding: 4px var(--nav-drawer-padding-inline) 14px;
}

.header-product-mega-mobile__item,
.header-product-mega-mobile__item:not(.button),
.header-product-mega-mobile__item:hover {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: var(--nav-drawer-padding-block) 10px;
  margin-inline-end: 0;
  font-size: var(--nav-drawer-font-size-mobile);
  font-weight: 400;
  line-height: var(--sort-body3-line-height);
  color: rgb(var(--header-color-text));
  text-decoration: none;
  text-transform: none;
  background: transparent;
  border-block-end: 1px solid rgba(var(--header-color-text), 12%);
  border-radius: 7px;
  transition: background-color 180ms ease;
}

.header-product-mega-mobile__item--level-2 {
  margin-inline-start: calc(
    var(--nav-drawer-padding-inline) +
      var(--header-product-mega-mobile-level-indent) - 10px
  );
  margin-inline-end: var(--nav-drawer-padding-inline);
}

.header-product-mega-mobile__item--level-3 {
  margin-inline-start: calc(
    (var(--header-product-mega-mobile-level-indent) * 2) - 10px
  );
  font-size: var(--nav-drawer-font-size-mobile-base);
  color: rgba(var(--header-color-text), 72%);
}

.header-product-mega-mobile__item--level-3:not(.button),
.header-product-mega-mobile__item--level-3:hover {
  color: rgba(var(--header-color-text), 72%);
}

.header-product-mega-mobile__item:hover,
.header-product-mega-mobile__item:focus-visible {
  background: rgba(var(--header-color-text), 9%);
}

.header-product-mega-mobile__item > span:first-child {
  min-width: 0;
}

.header-product-mega-mobile__item .header-product-mega__link-arrow {
  margin-inline-start: auto;
  line-height: 1;
  color: rgba(var(--header-color-text), 55%);
  opacity: 1;
}

.header-product-mega-mobile__view-all,
.header-product-mega-mobile__view-all:not(.button),
.header-product-mega-mobile__view-all:hover {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 40px;
  font-size: var(--nav-drawer-font-size-mobile);
  margin-inline-start: calc(
    var(--header-product-mega-mobile-level-indent) * 2
  );
  font-weight: 400;
  line-height: var(--sort-body3-line-height);
  color: rgba(var(--header-color-text), 62%);
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
}

.header-product-mega__features--mobile {
  margin: 18px;
}

.header-product-mega__feature--mobile {
  margin: 0;
}

.header-product-mega__feature--mobile .header-product-mega__feature-content {
  padding: 22px;
}

.header-product-mega__feature--mobile .header-product-mega__feature-title {
  margin-block-end: 8px;
  font-size: 14px;
}

.header-product-mega__feature--mobile .header-product-mega__feature-cta {
  margin-block-start: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .header-nav__menu-item.is-mega-open > .header-product-mega,
  .header-collection-products__card,
  .header-collection-products-mobile__card,
  .header-collection-products__image,
  .header-product-mega__link,
  .header-product-mega__link-arrow {
    animation: none;
    transition: none;
  }
}
.cart-bubble,
.cart-bubble > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cart-bubble__count {
  position: absolute;
  inset-block-end: 1px;
  inset-inline-start: 13px;
  z-index: 1;
  min-width: 20px;
  max-width: 60px;
  padding-inline: 6px;
  overflow: hidden;
  font-style: normal;
  line-height: 20px;
  color: rgb(var(--header-background));
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: rgb(var(--header-color-text));
  border-radius: 20px;
}
.cart-bubble__count:empty {
  display: none;
}
