/** Shopify CDN: Minification failed

Line 888:0 Unexpected "}"

**/
/* Extra Small (max-width: 449px) */
@media only screen and (max-width: 449px) {}

/* Extra Small (min-width: 450px) */
@media only screen and (min-width: 450px) {}

/* Mobile (max-width: 639px) */
@media only screen and (max-width: 639px) {}

/* Mobile (min-width: 640px) */
@media only screen and (min-width: 640px) {}

/* Small (max-width: 767px) */
@media only screen and (max-width: 767px) {}

/* Small (min-width: 768px) */
@media only screen and (min-width: 768px) {}

/* Medium (min-width: 1024px) */
@media only screen and (min-width: 1024px) {}

/* Medium (max-width: 1023px) */
@media only screen and (max-width: 1023px) {}

/* Large (min-width: 1280px) */
@media only screen and (min-width: 1280px) {}

/* Large (max-width: 1279px) */
@media only screen and (max-width: 1279px) {}

/* XXL (min-width: 1440px) */
@media only screen and (min-width: 1440px) {}

/* XXL (max-width: 1439px) */
@media only screen and (max-width: 1439px) {}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: 70vw;
  max-height: 70vh;
  transform: translate(-50%, -50%);
  background-color: var(--color-body-bg);
  color: var(--color-text-primary);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all var(0.3s) ease-in-out;
}

@media only screen and (max-width: 767px) {
  .popup {
    max-width: 100%;
    max-height: 100%;
  }
}

.popup[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  z-index: 12;
}

.popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  color: inherit;
  line-height: 1;
  text-transform: uppercase;
}

.drawer {
  max-width: 440px;
  height: calc(100% - var(--header-height) - var(--announcement-bar-height, 0px));
  max-height: 100%;
  left: 0;
  right: unset;
  top: calc(var(--header-height) + var(--announcement-bar-height, 0px));
  transform: translate(0, 0);

  &.drawer--full-height {
    top: 0;
    height: 100%;
  }

  &.drawer--right {
    left: unset;
    right: 0;
    transform: translate(100%, 0);

    &[aria-hidden="false"] {
      transform: translate(0, 0);
    }
  }

  &.drawer--left {
    right: unset;
    left: 0;
    transform: translate(-100%, 0);

    &[aria-hidden="false"] {
      transform: translate(0, 0);
    }
  }
}

@media only screen and (max-width: 1023px) {
  .drawer {
    max-width: 100%;
  }
}

.header-section {
  --font-size-body-1: 20px;
  --font-size-body-1--mobile: 24px;
  --font-size-heading-1--mobile: 28px;
  --color-border: #000000;
  --color-accent-primary: #b2873d;
  --page-width: 1280px;
  --color-body-bg: #FFFFFF;
  --color-text-primary: #000000;
  --color-text-secondary: #6c6c6c;
  --font-family-pro: "DINNextRoundedLTPro";
  --font-family-condensed: "DINNextLTProCondensed";

  z-index: 10;
  position: relative;
}

@media only screen and (max-width: 1023px) {
  .header-section {
    z-index: 12;
  }
}

.header-section.shopify-section-header-sticky {
  position: sticky;
  top: 0;
}

.header-section:not(.shopify-section-header-sticky):not(.menu-opened):not(.search-opened) .header--transparent {
  color: var(--transparent-text-color);
  background: 0 0;
  width: 100%;
  border-bottom: 1px solid transparent;
}

.header-section:not(.shopify-section-header-sticky):not(.menu-opened):not(.search-opened) .header--transparent .header__logo-img--transparent {
  display: block;
}

.header-section:not(.shopify-section-header-sticky):not(.menu-opened):not(.search-opened) .header--transparent .header__logo-img {
  display: none;
}

.header--transparent {
  margin-bottom: calc(var(--header-height) * -1);
}

.shopify-section-header-hidden {
  transform: translateY(-100%);
}

.header-section.animate {
  transition: transform 0.15s ease-out;
}

.header__container {
  max-width: calc(1050px + 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  min-height: 74px;
}

@media only screen and (max-width: 1023px) {
  .header__container {
    min-height: 50px;
  }
}

.header-wrapper {
  position: relative;
}

.header {
  color: var(--text-color);
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--color-border);
  z-index: 10;
  font-family: var(--font-family-condensed), "Arial", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  padding: 0 !important;
}

.header .header-padded {
  padding: 0 10px;
}

.header a {
  color: inherit;
}

.header-menu .search-modal__close {
  margin: 0;
}

.header-right-menu {
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 35px;
}

@media only screen and (max-width: 1023px) {
  .header-right-menu {
    margin: 0;
  }
}

.header-right-menu .custom-search {
  border-radius: 4px;
}

.header-right-menu .custom-search form {
  display: flex;
}

.header-right-menu .custom-search .custom-search-input {
  min-width: 225px;
  line-height: 1.8;
  border-radius: 4px;
}

@media only screen and (min-width: 1024px) {
  .header-right-menu .custom-search .custom-search-input::placeholder {
    font-size: var(--font-size-body-1);
    line-height: 1;
    transform: translateY(3px);
  }

  .custom-search.mobile {
    display: none;
  }
}

.header-right-menu .custom-search .custom-btn-search {
  padding: 9px 7px 8px;
  width: 50px;
}

.header-right-menu .custom-search .custom-btn-search i {
  font-size: 22px;
}

.header-right-menu .header-menu__list {
  padding-right: 0;
  margin-left: 0;
  justify-content: flex-end;
}

.header-right-menu .header-menu {
  width: 100%;
  max-width: 100%;
}

.header-menu__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -1px;
}

.header-menu__item .header-menu__link {
  display: flex;
  padding: 10px;
  line-height: 1;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
}

.header-menu__item .header-menu__link .icon {
  margin-top: -4px;
}

.header-menu__item .header-menu__link[aria-expanded="true"] {
  color: var(--color-link-text-hover);
}

a.header__logo {
  width: var(--logo-width);
  margin-right: auto;
  padding: 10px 0;
  flex-shrink: 0;
}

a.header__logo--mobile {
  width: var(--logo-mobile-width);
}

@media only screen and (max-width: 1023px) {
  a.header__logo {
    margin: 0 auto;
  }
}

a.header__logo:hover {
  color: inherit;
}

a.header__logo img {
  width: 100%;
}

a.header__logo img {
  max-height: 47px;
}

a.header__logo .header__logo-img--transparent {
  display: none;
}

.header__heading {
  margin: 0;
  padding: 0;
  text-align: center;
}

.header-icons {
  display: flex;
  align-items: center;
  margin-right: -10px;
  /* margin-bottom: 15px; */
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 10px;
}

.header-icons__item.header-icons__cart .icon--bag {
  margin-top: -3px;
}

.header-icons__item .icon--search {
  margin-top: 3px;
}

.header-icons__item .header__icon {
  padding: 23px 10px 18px;
  display: block;
  line-height: 1;
  min-height: 64px;
}

.header__icon--cart {
  color: inherit;
}

.header-submenu__wrapper {
  display: block;
}

.header-submenu {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease;
  background-color: var(--bg-color);
  position: fixed;
  top: calc(var(--header-height, 0px) + var(--announcement-bar-height, 0px));
  left: 0;
  width: 100%;
  padding: 22px 1vw 35px;
  max-height: calc(100vh - var(--header-height, 0px) - var(--announcement-bar-height, 0px));
  border-bottom: 1px solid var(--color-border);
}

.header-submenu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.header-submenu__inner {
  display: flex;
  justify-content: space-between;
  overflow: auto;
  max-width: 1090px;
  margin: 0 auto;
  max-height: calc(100vh - var(--header-height, 0px) - var(--announcement-bar-height, 0px) - 48px);
}

.header-submenu__inner .header-submenu__blocks-wrapper {
  width: 100%;
}

.header-submenu__blocks-wrapper .accordion__content-inner {
  margin-left: 77px;
}

.submenu-block__wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 0;
}

.submenu-block--column-1 {
  grid-area: 1 / 1 / 2 / 2;
}

.submenu-block--column-2 {
  grid-area: 1 / 2 / 2 / 3;
}

.submenu-block--column-3 {
  grid-area: 1 / 3 / 2 / 4;
}

.submenu-block--column-4 {
  grid-area: 1 / 4 / 2 / 5;
}

.submenu-block--column-5 {
  grid-area: 1 / 5 / 2 / 6;
}

.submenu-block--column-6 {
  grid-area: 1 / 6 / 2 / 7;
}

.submenu-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.submenu-block.submenu-block--column-6 {
  margin-left: 30px;
}

.submenu-block--merge-with-next .submenu-block__heading {
  width: calc(100% * 2);
}

.submenu-block--merge-with-next+.submenu-block {
  /* margin-left: 16px; */
}

.submenu-block--merge-with-next+.submenu-block:not(:has(.submenu-block__heading)) {
  margin-top: 32px;
}

.header-submenu__list {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  max-width: 255px;
  width: 100%;
}

.header-submenu__list .header-submenu__item:first-child {
  padding-top: 0;
}

.header-submenu__item {
  width: 100%;
  min-width: 12.6vw;
}

.header-submenu__item {
  padding: 20px 0;
  border-color: #000000;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
  font-family: var(--font-family-condensed), "Arial", sans-serif;
}

.header-submenu__item button .icon {
  display: block !important;
}

.header-submenu__btn,
.header-submenu__link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  min-height: unset;
}

.header-submenu__btn[aria-expanded="false"] .icon {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.header-submenu__btn[aria-expanded="false"] .accordion-title {
  font-family: var(--font-family-condensed), "Arial", sans-serif;
  font-weight: 400;
}

.header-submenu__btn[aria-expanded="true"] .accordion-title {
  font-family: var(--font-family-pro), "Arial", sans-serif;
  font-weight: 700;
}

.header-submenu__btn[aria-expanded="true"] .icon {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

a.header-submenu__link:hover {
  color: inherit;
}

.header-subsubmenu__item a {
  display: block;
  padding: 5px 0;
}

.header-overlay {
  position: fixed;
  top: calc(var(--header-height) + var(--announcement-bar-height, 0px));
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: matrix(1, 0, 0, -1, 0, 0);
  opacity: 0;
  visibility: hidden;
  transition: opacity, visibility 0.3s;
  z-index: -1;
}

.header-overlay[aria-hidden="false"] {
  opacity: 0.5;
  visibility: visible;
}

.header-banner__content {
  margin-top: 10px;
}

.header-banner__rating {
  line-height: 1;
  margin-top: 10px;
  margin-bottom: 10px;
}

.header-banner__rating [data-bv-show="inline_rating"] .bv_averageRating_component_container,
.header-banner__rating [data-bv-show="inline_rating"] .bv_numReviews_component_container {
  display: none !important;
}

.header-banner__label {
  display: block;
  margin-bottom: 0;
}

.header-banner__title {
  display: inline-block;
}

.header-banner__link {
  margin-top: 10px;
  display: inline-block;
}

.header-banner__collections {
  display: inline-block;
  margin-right: 5px;
  font-weight: 400;
}

.header-banner__collections:last-child span {
  display: none;
}

.header-banner__item {
  width: 20.7vw;
}

.header-image-banner__item {
  margin-bottom: 20px;
}

.header-image-banner__item .image-abs-wrapper {
  padding-bottom: 132%;
}

.hamburger-icon {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  min-height: unset;
}

.hamburger-icon:after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 34px;
  left: -10px;
  top: -10px;
}

.hamburger-icon span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background-color: currentColor;
  transition: 0.3s;
}

.hamburger-icon span:last-child {
  width: 10px;
}

.hamburger-icon[aria-expanded="true"] span {
  position: absolute;
  top: 50%;
  left: 50%;
}

.hamburger-icon[aria-expanded="true"] span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger-icon[aria-expanded="true"] span:last-child {
  width: 20px;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hamburger-icon[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-drawer {
  padding: 0 20px 10px;
}

.menu-drawer__link svg {
  margin-right: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}

.menu-drawer__link,
.menu-drawer__btn {
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1.2;
  font-size: var(--font-size-body-1);
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  justify-content: space-between;
}

.menu-drawer__btn[aria-expanded="false"] .accordion__icons .icon--plus {
  display: block !important;
}

.menu-drawer__btn[aria-expanded="false"] .accordion__icons .icon--minus {
  display: none !important;
}

.menu-drawer__btn[aria-expanded="true"] .accordion__icons .icon--plus {
  display: none !important;
}

.menu-drawer__btn[aria-expanded="true"] .accordion__icons .icon--minus {
  display: block !important;
}

@media only screen and (min-width: 1024px) {
  .menu-drawer__link {
    padding: 10px 0;
  }
}

.menu-drawer__link-account {
  margin-top: -10px;
}

.menu-drawer__list {
  margin-bottom: 10px;
}

.submenu-drawer .menu-drawer__list {
  overflow-y: auto;
  height: 100%;
}

.submenu-drawer .menu-drawer__link {
  justify-content: flex-start;
  border-bottom: none;
  padding-bottom: 10px;
}

.submenu-drawer .menu-drawer__link svg {
  margin-top: 3px;
}

.submenu-drawer .menu-drawer__link {
  padding-left: 20px;
}

.menu-drawer__inner {
  overflow-y: auto;
  height: 100%;

  display: flex;
  /* check after for ios*/
  flex-direction: column;
  justify-content: space-between;
}

.submenu-block__heading {
  margin-bottom: 4px;
  font-family: var(--font-family-condensed), "Arial", sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 1;
  text-transform: capitalize;
}

.submenu-block__heading span {
  position: relative;
}

.submenu-block__heading span::after {
  content: '';
  position: absolute;
  width: 100%;
  bottom: 3px;
  left: 0;
  border-bottom: 1px solid var(--color-border);
}

.submenu-block__item .site-nav__link {
  font-size: 20px;
}

.menu-drawer__list.menu-drawer__list-secondary li {
  margin-bottom: 5px;
}

.menu-drawer__list.menu-drawer__list-secondary .menu-drawer__link {
  padding: 0;
  border: unset;
  color: var(--color-text-secondary);
  font-size: var(--font-size-heading-1--mobile);
  line-height: 1;
  text-transform: unset;
}

@media only screen and (max-width: 1279px) {
  .header-menu__item .header-menu__link {
    padding: 28px 10px 41px;
  }

  .header-submenu__blocks-wrapper .accordion__content-inner {
    margin-left: 30px;
  }

  .submenu-block__wrapper {
    grid-column-gap: 10px;
  }
}

/* @media only screen and (max-width: 1023px) {
  .header {
    border: unset;
  } */

.header-icons {
  margin: 0;
  gap: 10px;
}

.menu-drawer__list {
  margin-bottom: 40px;
}

.header-submenu__blocks-wrapper .accordion__content-inner .submenu-block__item {
  font-weight: 400;
}

.menu-drawer__link,
.menu-drawer__btn {
  font-size: var(--font-size-heading-1--mobile);
  font-family: var(--font-family-condensed), "Arial", sans-serif;
  line-height: 1.15;
  padding: 13px 0 4px;
  color: var(--color-text-primary);
  text-transform: uppercase;
}

.menu-drawer__link {
  padding: 10px 0 0;
}

.menu-drawer__list li:last-child .menu-drawer__link {
  border-bottom: 0;
}

.menu-drawer__list .accordion-title {
  margin-bottom: 0;
  font-family: var(--font-family-condensed), "Arial", sans-serif;
}

.menu-drawer__list .accordion .menu-drawer__list {
  margin-left: 24px;
}

.accordion .menu-drawer__list {
  margin-bottom: 0;
  padding-bottom: 20px;
  padding-top: 3px;
}

.menu-drawer__list .accordion .menu-drawer__list .menu-drawer__link {
  border-bottom: 0;
  font-size: var(--font-size-body-1--mobile);
  line-height: 1;
  text-transform: unset;
}

.menu-drawer__list .accordion .accordion__icons {
  margin-right: 4px;
}

.menu-drawer__list .tt-mobile-parent-search .tt-dropdown-menu {
  display: none;
}

#mobile-menu-drawer ul {
  padding: 0;
}

#mobile-menu-drawer li {
  list-style: none;
}

#mobile-menu-drawer li button {
  padding: 10px 0;
}

.menu-drawer__search-wrapper {
  margin-bottom: 22px;
}

.menu-drawer__list .custom-search form {
  width: 100%;
  display: flex;
}

.menu-drawer__list .custom-btn-search {
  width: 34px;
}

.menu-drawer__list .custom-search-input {
  border-radius: 4px 0 0 4px;
  background: #EBEBED;
}
}