/* source/scss/kunu.scss */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
.bs-container,
.page-width {
  max-width: calc(var(--page-width) + 20px * 2);
  margin: 0 auto;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
@media (min-width: 750px) {
  .bs-container,
  .page-width {
    max-width: calc(var(--page-width) + 50px * 2);
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
}
.bs-container + .bs-container {
  margin-top: 40px;
}
section {
  overflow-x: hidden;
}
details:not([open]) > .header__icon--menu .icon-close,
details[open] > .header__icon--menu .icon-hamburger {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
}
html:has(.menu-open) {
  overflow: hidden;
}
.menu-drawer {
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateX(-100%);
  visibility: hidden;
  height: var(--drawer-height, 100vh);
  width: 100vw;
  z-index: 100;
  padding: 0;
  background: #FFFBF2;
  overflow: auto;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s ease,
    visibility 0.4s ease,
    opacity 0.4s ease;
}
.menu-drawer__localization {
  align-items: center;
}
@media screen and (min-width: 750px) {
  .menu-drawer {
    width: 25rem;
  }
}
.menu-drawer:has(details[open]) {
  overflow: initial;
}
details[open].menu-opening > .menu-drawer,
details[open].menu-opening > .menu-drawer__submenu {
  transform: translate(0);
  visibility: visible;
}
.menu-open > .menu-drawer,
.menu-open > .menu-drawer__submenu:not(.menu-drawer__menu--childlist) {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.menu-drawer__inner-container {
  position: relative;
  height: 100%;
}
.menu-drawer__navigation-container {
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: space-between;
  overflow-y: auto;
  height: 100%;
}
.menu-drawer__inner-submenu {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}
.menu-drawer__menu {
  list-style: none;
  padding-inline: 0;
  margin-inline: 0;
  margin-block-start: 0;
}
.menu-drawer__menu-item {
  display: flex;
  padding: 0.25rem 0;
  position: relative;
  text-decoration: none;
  justify-content: space-between;
  align-items: center;
}
.menu-drawer__menu-item-text {
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-drawer__close-button {
  position: relative;
  right: auto;
  top: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: var(--padding-lg, 1rem);
  will-change: transform;
}
.menu-drawer__back-button {
  display: flex;
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: none;
  align-items: center;
  color: var(--color-foreground, #302E2C);
  background-color: transparent;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  overflow-x: hidden;
  line-height: 1.2;
  box-shadow: none;
}
.menu-drawer__back-button > .svg-wrapper {
  margin-right: 0.75rem;
  width: 1.6rem;
  height: 1.6rem;
}
.menu-drawer__submenu {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100dvh;
  background-color: var(--color-background, #fff);
  z-index: 2;
  transform: translateX(-5%);
  visibility: hidden;
  overflow-y: auto;
  opacity: 0;
  transition:
    transform 0.4s ease,
    visibility 0.4s ease,
    opacity 0.4s ease;
}
@media (max-width: 1023px) {
  .header-custom:has(details[open].menu-opening) #cart_button_trigger,
  .header-custom:has(details[open].menu-opening) .header__search {
    display: none !important;
  }
  .header-custom .menu-drawer__menu .menu-drawer__localization .disclosure__button {
    padding-inline-end: 0 !important;
    padding: 0 !important;
  }
}
.menu-drawer__menu__bestsellers,
.header__submenu__bestsellers {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 20px 32px 20px;
  position: relative;
  background: var(--nav-drawer-recommend-background);
  color: var(--nav-drawer-recommend-font-color);
  font-size: 16px;
}
@media (min-width: 990px) {
  .menu-drawer__menu__bestsellers,
  .header__submenu__bestsellers {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    border-radius: 8px;
    gap: 12px;
    height: -moz-max-content;
    height: max-content;
  }
}
.menu-drawer__menu__bestsellers__title,
.header__submenu__bestsellers__title {
  font-size: 18px;
  line-height: 120%;
  font-family: Cormorant;
  font-weight: 700;
  color: #fff;
  letter-spacing: normal;
  margin: 0;
  text-align: left;
  text-transform: none;
}
@media (min-width: 990px) {
  .menu-drawer__menu__bestsellers__title,
  .header__submenu__bestsellers__title {
    font-size: 24px;
  }
}
.menu-drawer__menu__bestsellers__content,
.header__submenu__bestsellers__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (min-width: 990px) {
  .menu-drawer__menu__bestsellers__content,
  .header__submenu__bestsellers__content {
    gap: 12px;
  }
}
.menu-drawer__menu__bestsellers__content a,
.header__submenu__bestsellers__content a {
  text-decoration: none;
}
.menu-drawer__menu__bestsellers .bestseller-item,
.header__submenu__bestsellers .bestseller-item {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background: #FFFBF2;
  padding: 4px;
  border: 1px solid;
  border-color: transparent;
  transition: border-color 0.3s ease-in-out;
}
.menu-drawer__menu__bestsellers .bestseller-item:hover,
.header__submenu__bestsellers .bestseller-item:hover {
  cursor: pointer;
}
.menu-drawer__menu__bestsellers .bestseller-item img,
.header__submenu__bestsellers .bestseller-item img {
  width: auto;
  aspect-ratio: 1/1;
  height: 48px;
  -o-object-fit: cover;
  object-fit: cover;
}
.menu-drawer__menu__bestsellers .bestseller-item .bs-card__rating,
.header__submenu__bestsellers .bestseller-item .bs-card__rating {
  gap: 0;
  align-items: baseline;
  pointer-events: none;
}
.menu-drawer__menu__bestsellers .bestseller-item .bs-card__rating.ruk_rating_snippet i,
.header__submenu__bestsellers .bestseller-item .bs-card__rating.ruk_rating_snippet i {
  line-height: normal;
}
@media (min-width: 990px) {
  .menu-drawer__menu__bestsellers .bestseller-item .bs-card__rating.ruk_rating_snippet i,
  .header__submenu__bestsellers .bestseller-item .bs-card__rating.ruk_rating_snippet i {
    font-size: 12px;
  }
}
.menu-drawer__menu__bestsellers .bestseller-item .bs-card__rating span,
.header__submenu__bestsellers .bestseller-item .bs-card__rating span {
  margin-left: 4px;
  line-height: normal;
  font-weight: 300;
}
.menu-drawer__menu__bestsellers .bestseller-item__text,
.header__submenu__bestsellers .bestseller-item__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  width: 100%;
}
.menu-drawer__menu__bestsellers .bestseller-item--banner,
.header__submenu__bestsellers .bestseller-item--banner {
  background: #FFFBF2;
  grid-column: span 2;
  padding: 4px;
  position: relative;
  align-items: flex-start;
  text-align: left;
  gap: 2px;
  align-items: center;
  overflow: hidden;
}
.menu-drawer__menu__bestsellers .bestseller-item--banner .bestseller-item__text,
.header__submenu__bestsellers .bestseller-item--banner .bestseller-item__text {
  padding: 0 8px;
}
.menu-drawer__menu__bestsellers .bestseller-item--banner .bestseller-item__label,
.header__submenu__bestsellers .bestseller-item--banner .bestseller-item__label {
  font-size: 16px;
  line-height: 120%;
  color: #302E2C;
  font-weight: 500;
  text-align: left;
  z-index: 1;
}
@media (min-width: 990px) {
  .menu-drawer__menu__bestsellers .bestseller-item--banner .bestseller-item__label,
  .header__submenu__bestsellers .bestseller-item--banner .bestseller-item__label {
    font-size: 18px;
  }
}
.menu-drawer__menu__bestsellers .bestseller-item--banner .bestseller-item__sub-label,
.header__submenu__bestsellers .bestseller-item--banner .bestseller-item__sub-label {
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
  color: #302E2C;
  z-index: 1;
  opacity: 0.7;
}
.menu-drawer__menu__bestsellers .bestseller-item--banner img,
.header__submenu__bestsellers .bestseller-item--banner img {
  height: 90px;
  width: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}
.menu-drawer__menu__bestsellers .bestseller-item__label,
.header__submenu__bestsellers .bestseller-item__label {
  color: #302E2C;
  font-weight: 500;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  font-size: 14px;
}
@media (min-width: 990px) {
  .menu-drawer__menu__bestsellers .bestseller-item__label,
  .header__submenu__bestsellers .bestseller-item__label {
    font-size: 16px;
  }
}
#shopify-section-bs-mobile-navigation {
  height: 100%;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
  padding-inline: 20px;
}
#shopify-section-bs-mobile-navigation > .menu-drawer__navItem:first-child {
  margin-top: 24px;
}
.header-custom .menu-drawer {
  top: 100%;
}
.header-custom .menu-drawer__menu {
  height: calc(100dvh - var(--header-total));
  transition: transform 0.2s ease-out;
  display: flex;
  flex-direction: column;
}
.header-custom .menu-drawer__menu[data-level="0"] {
  transform: translateX(0);
}
.header-custom .menu-drawer__menu[data-level="1"] {
  transform: translateX(-100%);
}
.header-custom .menu-drawer__menu[data-level="2"] {
  transform: translateX(-200%);
}
.header-custom .menu-drawer__menu .menu-drawer__localization .disclosure__button {
  padding: 12px 12px 12px 0;
}
.header-custom .menu-drawer__menu .menu-drawer__localization .disclosure__button span {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 120%;
  color: #302E2C;
  font-weight: 400;
}
.header-custom .menu-drawer__menu .menu-drawer__localization .disclosure__button .icon-caret {
  position: relative;
  margin-left: 4px;
  right: unset;
}
.header-custom .menu-drawer__menu .menu-drawer__localization .disclosure__button .icon-caret:not(.icon-caret--mobile) {
  display: none;
}
.header-custom .menu-drawer__menu .menu-drawer__localization .disclosure__button .icon-caret path {
  stroke: #302E2C;
}
.header-custom .menu-drawer__navigation {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.header-custom .menu-drawer__navItem {
  padding: 13px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.header-custom .menu-drawer__navItem:not(.menu-drawer__navItem--parent) {
  padding: 12px 13px;
  text-decoration: none;
  margin-bottom: 0;
  border-radius: 0;
}
.header-custom .menu-drawer__navItem:not(.menu-drawer__navItem--parent):last-of-type {
  border-bottom: none;
}
.header-custom .menu-drawer__navItem:not(.menu-drawer__navItem--parent) .menu-drawer__navItem__title {
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
  text-transform: none;
  font-family: "Jost", sans-serif;
  letter-spacing: normal;
  color: #5C5C5C;
}
.header-custom .menu-drawer__navItem--parent:has(+ a.menu-drawer__navItem) {
  margin-bottom: 12px;
  min-height: 47px;
}
.header-custom .menu-drawer__navItem--parent:has(+ a.menu-drawer__navItem) + .menu-drawer__navItem:not(.menu-drawer__navItem--parent) {
  margin-top: auto;
}
.header-custom .menu-drawer__navItem--parent:has(+ .menu-drawer__navItem--parent) {
  margin-bottom: 12px;
}
.header-custom .menu-drawer__navItem__arrow {
  display: none;
  position: relative;
  margin-left: auto;
}
.header-custom .menu-drawer__navItem--parent {
  background: #F6F0E3;
  padding-right: 16px;
  padding-left: 16px;
  border-radius: 4px;
}
.header-custom .menu-drawer__navItem--parent .menu-drawer__navItem__arrow {
  display: inline-block;
  width: auto;
  height: 20px;
}
.header-custom .menu-drawer__navItem--parent.menu-drawer__navItem--normal-position {
  background: none;
}
.header-custom .menu-drawer__navItem__content {
  display: flex;
  flex-direction: column;
}
.header-custom .menu-drawer__navItem__title {
  color: #302E2C;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: normal;
}
.header-custom .menu-drawer__navItem__titleWrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-left: 0;
  transition: margin-left 0.3s ease;
}
.header-custom .menu-drawer__navItem__titleWrapper:hover {
  margin-left: 4px;
}
.header-custom .menu-drawer__navItem__titleWrapper * {
  font-family: "Jost", sans-serif;
}
.header-custom .menu-drawer__navItem__subtitle {
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}
.header-custom .menu-drawer__navItem__tag,
.header-custom .menu-drawer__submenuItem__tag {
  padding: 4px 8px;
  border-radius: 50px;
  line-height: normal;
  font-size: 12px;
  font-weight: 700;
}
.header-custom .menu-drawer__navItem__submenu {
  height: calc(100dvh - var(--header-total) - 48px);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: #FFFBF2;
  transform: translateX(100%);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  display: flex;
  flex-direction: column;
  padding: 16px 20px 0;
  cursor: auto;
}
.header-custom .menu-drawer__navItem__submenu > div:has(> .menu-drawer__navItem__submenu__prevButton, > .header-custom .menu-drawer__subSubmenu__prevButton),
.header-custom .menu-drawer__navItem__submenu .menu-drawer__submenuItem__submenu > div:has(> .menu-drawer__subSubmenu__prevButton) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.header-custom .menu-drawer__navItem__submenu__prevButton,
.header-custom .menu-drawer__subSubmenu__prevButton {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 24px;
  font-family: Cormorant;
  font-weight: 600;
  padding: 14px 20px;
  background: #F6F0E3;
  color: #302E2C;
  cursor: pointer;
}
.header-custom .menu-drawer__navItem__submenu__prevButton span,
.header-custom .menu-drawer__subSubmenu__prevButton span {
  line-height: normal;
}
.header-custom .menu-drawer__navItem__submenu__items {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  height: 100%;
  overflow-y: scroll;
  margin-top: 57px;
}
.header-custom .menu-drawer__navItem--open .menu-drawer__navItem__submenu {
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.2s ease-out;
  z-index: 4000;
}
.header-custom .menu-drawer__submenuItem {
  padding: 16px 0;
  border-bottom: 1px solid #E2DBCA;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #302E2C;
  min-height: 64px;
}
.header-custom .menu-drawer__submenuItem--all {
  min-height: unset;
  font-size: 16px;
  color: #302E2C;
  font-weight: 400;
}
.header-custom .menu-drawer__submenuItem:has(> img),
.header-custom .menu-drawer__submenuItem:has(> a > img) {
  padding: 3px 0;
}
.header-custom .menu-drawer__submenuItem a:has(+ .menu-drawer__submenuItem__arrow) {
  display: flex;
  gap: 12px;
}
.header-custom .menu-drawer__submenuItem a:has(+ .menu-drawer__submenuItem__arrow) img {
  height: 48px;
  width: 48px;
  -o-object-fit: cover;
  object-fit: cover;
}
.header-custom .menu-drawer__submenuItem > img {
  height: 32px;
  width: 32px;
  -o-object-fit: cover;
  object-fit: cover;
}
.header-custom .menu-drawer__submenuItem__arrow {
  display: none;
  position: relative !important;
  margin-left: auto;
  right: 8px;
}
.header-custom .menu-drawer__submenuItem--parent .menu-drawer__submenuItem__arrow {
  display: inline-block;
}
.header-custom .menu-drawer__submenuItem__title {
  color: #302E2C;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 130%;
}
.header-custom .menu-drawer__submenuItem__titleWrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.header-custom .menu-drawer__submenuItem__subtitle {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}
.header-custom .menu-drawer__submenuItem__submenu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  display: flex;
  flex-direction: column;
  padding: 0 16px 0;
  height: calc(100dvh - var(--header-total) - 48px);
}
.header-custom .menu-drawer__submenuItem__submenu > div:has(a) {
  height: 100%;
  overflow-y: scroll;
}
.header-custom .menu-drawer__submenuItem--open .menu-drawer__submenuItem__submenu {
  opacity: 1;
  pointer-events: auto;
  z-index: 5000;
}
.header-custom .menu-drawer__submenuItem:last-of-type {
  border-bottom: none;
}
.header-custom .menu-drawer__subSubmenu > div:has(.menu-drawer__subSubmenu__prevButton) {
  position: absolute;
  top: 0;
  transform: translateY(-100%);
}
.header-custom .menu-drawer__subSubmenuItem {
  display: flex;
  text-decoration: none;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px dashed #E2DBCA;
}
@media (min-width: 1100px) {
  .header-custom .menu-drawer__subSubmenuItem {
    padding: 8px 0;
    border-bottom: none;
  }
}
.header-custom .menu-drawer .language-selector[data-type=lsn-switchers][data-mobile=""] {
  display: none !important;
}
.header-custom .menu-drawer__footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #F6F0E3;
  padding: 12px 20px;
  position: relative;
}
.header-custom .menu-drawer__footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc((100vw - 100%) / 2);
  height: 100%;
  background: #F6F0E3;
  transform: translateX(-100%);
}
.header-custom .menu-drawer__footer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc((100vw - 100%) / 2);
  height: 100%;
  background: #F6F0E3;
  transform: translateX(100%);
}
.header-custom .menu-drawer__footer__account-trigger {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
}
.header-custom .menu-drawer__footer__account-trigger svg {
  min-height: 24px;
  min-width: 24px;
}
.header-custom .menu-drawer__footer__account-trigger span {
  font-size: 14px;
  line-height: normal;
  color: #302E2C;
  font-weight: 400;
}
.header-custom .menu-drawer__footer .country-selector-form__wrapper {
  flex-grow: 1;
}
.header-custom .menu-drawer__footer .localization-wrapper {
  width: 100%;
  left: 0;
  right: unset;
  top: unset;
  bottom: 0;
  transform: translateY(-56px);
  max-height: unset;
  position: fixed;
  border-radius: 0;
  box-shadow: none;
  height: calc(100% - 8px);
  overflow-y: hidden;
}
.header-custom .menu-drawer__footer .localization-wrapper localization-form-component {
  position: relative;
  height: 100%;
}
.header-custom .menu-drawer__footer .localization-wrapper localization-form-component::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(var(--backdrop-color-rgb)/var(--backdrop-opacity));
  transform: translateY(-100%);
  pointer-events: none;
}
@media (min-width: 990px) {
  .header-custom .menu-drawer__footer .localization-wrapper {
    border-radius: 0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: none;
  }
}
.header-custom .menu-drawer__footer .dropdown-localization__button {
  padding-top: 0;
  padding-bottom: 0;
}
.header-custom .menu-drawer__footer .dropdown-localization__button span {
  font-size: 14px;
  color: #302E2C;
}
.header-custom .menu-drawer__footer .localization-form__list {
  height: 100%;
  max-height: unset;
}
.header-custom .menu-drawer__footer .localization-form {
  display: flex;
  flex-direction: column;
}
.header-custom .menu-drawer__footer .localization-form__select {
  padding-block: 0;
  padding-inline: 0;
  padding-inline-end: 10px !important;
  background-color: transparent;
}
.header-custom .menu-drawer__footer .language-selector {
  min-width: 100%;
  padding-inline-start: 16px !important;
  padding-right: 16px;
}
.header-custom .menu-drawer__footer .language-selector .svg-wrapper.icon-caret {
  width: 8px;
  height: auto;
  right: 16px;
  transform: translateX(50%) translateY(-50%);
}
@media (min-width: 990px) {
  .header-custom .menu-drawer__footer .language-selector .svg-wrapper.icon-caret {
    right: 12px;
  }
}
.header-custom .menu-drawer__footer anchored-popover-component {
  display: flex !important;
}
.header-custom .menu-drawer__footer cart-drawer-component {
  display: none;
}
.header__menu-item:hover .header__menu-item__hoverThreshold {
  pointer-events: auto;
}
.header__menu-item__hoverThreshold {
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 45px;
  transform: translateY(30px);
  pointer-events: none;
}
.header__icon {
  width: 24px;
  height: 24px;
}
@media (min-width: 990px) {
  .header__icon {
    width: 26px;
    height: 26px;
  }
}
.header__icon--search {
  color: #fff;
}
.header__icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
@media (min-width: 990px) {
  .header__heading {
    height: 71px;
    display: flex;
    align-items: center;
  }
}
.header .header__search {
  display: none;
}
@media (min-width: 990px) {
  .header .header__search {
    display: inline-flex !important;
  }
}
@media (max-width: 1024px) {
  body:has(.menu-drawer-container[open]) iframe#launcher {
    display: none;
  }
}
.section-custom-header .header__search .search-modal {
  overflow: hidden;
}
.section-custom-header .header__search .search-modal__content::before,
.section-custom-header .header__search .search-modal__content::after {
  content: none;
}
.section-custom-header .header__search .search-modal .search__input {
  background: transparent;
  margin-left: 0;
}
.section-custom-header .header__search .search-modal .search__input:focus-visible {
  outline: none;
}
.section-custom-header .header__search .search-modal__form select.select__select {
  opacity: 1 !important;
  padding: 0 calc(var(--inputs-border-width) + 3rem) 0 1.5rem !important;
  border: none;
  pointer-events: all;
  position: relative;
}
.section-custom-header .header__search .search-modal__form select.select__select + .nice-select {
  display: none;
}
.bs-collection-slider .bs-collection-slider__card.swiper-slide {
  padding: 12px 10px 13px 10px;
  background: #FFFBF2;
}
@media (min-width: 750px) {
  .bs-collection-slider .bs-collection-slider__card.swiper-slide {
    padding: 15px;
    width: 350px !important;
    border-radius: 12px;
  }
}
.bs-collection-slider .slider--desktop.grid--3-col-desktop .grid__item {
  width: 350px !important;
}
.bs-collection-slider .slider-scrollbar__track.bs-collection-slider__scrollbar {
  display: none !important;
}
.bs-collection-slider .slider-component-full-width .slider--desktop .slider__slide:first-child {
  margin-inline-start: 0 !important;
}
.bs-collection-slider .slider.slider--desktop .slider__slide {
  padding-top: 18px !important;
}
@media (min-width: 750px) {
  .bs-collection-slider .slider.slider--desktop .slider__slide {
    padding-top: 30px !important;
  }
}
.bs-guarantee-section {
  padding: 3rem 0;
}
.bs-guarantee-section__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media (min-width: 750px) {
  .bs-guarantee-section__inner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
}
.bs-guarantee-section__icon {
  flex-shrink: 0;
  height: 48px;
}
.bs-guarantee-section__icon svg {
  width: 48px;
  height: 48px;
}
@media (min-width: 750px) {
  .bs-guarantee-section__icon svg {
    width: 64px;
    height: 64px;
  }
}
.bs-guarantee-section__content {
  text-align: left;
}
@media (min-width: 750px) {
  .bs-guarantee-section__content {
    text-align: center;
  }
}
.bs-guarantee-section__heading {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 120%;
  text-align: left;
}
@media (min-width: 750px) {
  .bs-guarantee-section__heading {
    letter-spacing: 0.0015px;
    line-height: 130%;
  }
}
.bs-guarantee-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bs-guarantee-section__item {
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.015px;
}
.bs-guarantee-section__item:last-child {
  font-size: 12px;
}
.bs-guarantee-section__link {
  display: flex;
  align-items: center;
  text-decoration: underline;
  font-weight: 500;
  color: inherit;
  transition: opacity 0.2s;
}
.bs-guarantee-section__link:hover {
  opacity: 0.7;
}
.bs-guarantee-section__item-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.bs-guarantee-section__item-icon svg {
  width: 9px;
  height: 7px;
}
header.shopify-section.shopify-section-group-header-group.header-section {
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.section-custom-header.shopify-section-group-custom-header-group {
  z-index: 100;
  top: calc(var(--header-announcement-height));
  top: 0;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}
.section-custom-header.shopify-section-group-custom-header-group.menu-open {
  z-index: 100;
  width: 100%;
  position: fixed !important;
  top: calc(var(--header-announcement-height));
}
@media (min-width: 990px) {
  .section-custom-header.shopify-section-group-custom-header-group.menu-open {
    position: sticky !important;
  }
}
.section-custom-header .header-wrapper {
  background: #FFFBF2;
  border-bottom: none;
}
@media (min-width: 990px) {
  .section-custom-header .header-wrapper {
    margin-bottom: 0;
    background: #F6F0E3;
  }
}
.header-wrapper {
  transition: background 0.4s ease;
}
.header.header-custom {
  min-height: 84px;
  max-width: 1440px;
  position: relative;
  z-index: 100;
}
@media (min-width: 990px) {
  .header.header-custom {
    display: grid;
    grid-template-areas: "navigation heading icons";
    grid-template-columns: 1fr auto 1fr;
  }
}
@media (max-width: 1023px) {
  .header.header-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 990px) {
  .header.header-custom {
    padding: 0 50px;
  }
}
@media (min-width: 1100px) {
  .header.header-custom {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
}
.header.header-custom:not(.drawer-menu).page-width {
  padding: 0 20px;
}
.header.header-custom .header__svg-logo svg {
  width: 150px;
  height: 46px;
}
.header.header-custom .cart-count-bubble {
  bottom: 0;
  right: 0;
  transform: translateX(-75%) translateY(50%);
}
@media (min-width: 990px) {
  .header.header-custom .cart-count-bubble {
    transform: translateX(-55%) translateY(-55%);
  }
}
.header.header-custom .header__menu-item img:not(.bestseller-item__image),
.header.header-custom .menu-drawer__menu-item img:not(.bestseller-item__image) {
  position: relative;
  top: 1px;
}
.header.header-custom .header__menu-item img:not(.bestseller-item__image).icon--left,
.header.header-custom .menu-drawer__menu-item img:not(.bestseller-item__image).icon--left {
  margin-right: 10px;
  max-width: 15px;
}
.header.header-custom .header__menu-item img:not(.bestseller-item__image).icon--right,
.header.header-custom .menu-drawer__menu-item img:not(.bestseller-item__image).icon--right {
  margin-left: 10px;
}
.header.header-custom .header__inline-menu {
  height: 100%;
  margin-left: 0;
  display: none;
}
@media (min-width: 990px) {
  .header.header-custom .header__inline-menu {
    display: block;
  }
}
.header.header-custom .header__inline-menu > .shopify-section {
  height: 100%;
}
.header.header-custom .header__inline-menu > .shopify-section > ul {
  height: 100%;
  padding-left: 0;
}
.header.header-custom .header__inline-menu > .shopify-section > ul .header__menu-item__title {
  color: #233F2A;
  font-weight: 400;
  transition: font-weight 0.3s ease-out;
}
.header.header-custom .header__inline-menu > .shopify-section > ul .header__menu-item a.header__menu-item__title {
  text-decoration: none;
}
.header.header-custom .header__inline-menu > .shopify-section > ul .header__menu-item:first-of-type span span,
.header.header-custom .header__inline-menu > .shopify-section > ul .header__menu-item:first-of-type span a {
  font-weight: 700;
}
.header.header-custom .header__inline-menu > .shopify-section > ul .header__menu-item a {
  transition: color 0.3s ease-out, transform 0.3s ease-out;
  transform: translateX(0);
  text-decoration: none;
}
.header.header-custom .header__inline-menu > .shopify-section > ul .header__menu-item .header__submenuItem {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.header.header-custom .header__inline-menu > .shopify-section > ul .header__menu-item .header__submenuItem img {
  height: 40px;
  width: 40px;
  -o-object-fit: cover;
  object-fit: cover;
}
.header.header-custom .header__inline-menu > .shopify-section > ul .header__menu-item .header__submenuItem__content * {
  font-weight: 400;
  color: #302E2C;
  font-size: 16px;
  margin-left: 0;
  transition: color 0.3s ease-out, margin-left 0.3s ease-out;
}
.header.header-custom .header__inline-menu > .shopify-section > ul .header__menu-item .header__submenuItem--parent {
  transition: color 0.3s ease-out, margin-left 0.3s ease-out;
  margin-left: 0;
}
.header.header-custom .header__inline-menu > .shopify-section > ul .header__menu-item .header__submenuItem__tag {
  padding: 4px 8px;
  border-radius: 50px;
  line-height: normal;
  font-size: 12px;
  font-weight: 700;
}
.header.header-custom .header__inline-menu > .shopify-section > ul .header__menu-item .header__submenuItem:hover .header__submenuItem__title {
  font-weight: 700;
  margin-left: 3px;
}
.header.header-custom .header__inline-menu li {
  margin-right: 30px;
}
.header.header-custom .header__inline-menu li:last-child {
  margin-right: 0;
}
.header.header-custom .header__inline-menu .header__menu-item {
  padding: 0;
  position: unset;
  color: #302E2C;
  font-size: 16px;
  margin-right: 32px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease-in-out;
}
.header.header-custom .header__inline-menu .header__menu-item .header__active-menu-item {
  text-decoration: none;
  font-weight: 600;
}
.header.header-custom .header__inline-menu .header__menu-item:hover {
  border-bottom: 2px solid #233F2A;
  cursor: pointer;
}
.header.header-custom .header__inline-menu .header__menu-item:hover span {
  text-decoration: none;
}
.header.header-custom .header__inline-menu .header__menu-item:hover > span > .header__menu-item__title {
  font-weight: 400;
}
.header.header-custom .header__inline-menu li:hover .header__submenu,
.header.header-custom .header__inline-menu .header__menu-item__hoverThreshold:hover .header__submenu {
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.header.header-custom .header__inline-menu .header__submenu {
  position: absolute;
  top: calc(var(--custom-header-height));
  min-width: unset;
  width: auto;
  padding: 20px 40px 10px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
  border-top: none;
  background-color: #FFFBF2;
  transform: translateX(-40px);
}
.header.header-custom .header__inline-menu .header__submenu::after {
  content: "";
  position: absolute;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  height: 200vh;
  background: transparent;
  pointer-events: none;
  display: block;
  transition: background 0.3s ease;
}
.header.header-custom .header__inline-menu .header__submenu li {
  display: flex;
  margin-right: 0;
  padding: 0;
  transition: transform 0.3s ease-out;
}
.header.header-custom .header__inline-menu .header__submenu li:hover {
  transform: translateX(7px);
}
.header.header-custom .header__inline-menu .header__submenu li .header__active-menu-item {
  text-decoration: none;
  font-weight: 600;
}
.header.header-custom .header__inline-menu .header__submenu-wrapper {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
}
@media (min-width: 1100px) {
  .header.header-custom .header__inline-menu .header__submenu-wrapper {
    padding: 0 90px;
  }
}
.header.header-custom .header__inline-menu .header__submenu-wrapper::before {
  content: "";
  background: #FFFBF2;
  height: 100%;
  width: calc((100vw - 100%) / 2);
  top: 0;
  left: 0;
  position: absolute;
  transform: translateX(-100%);
}
.header.header-custom .header__inline-menu .header__submenu-wrapper::after {
  content: "";
  background: #FFFBF2;
  height: 100%;
  width: calc((100vw - 100%) / 2);
  top: 0;
  right: 0;
  position: absolute;
  transform: translateX(100%);
}
.header.header-custom .header__inline-menu .header__submenu__drawer {
  position: relative;
  overflow: hidden;
  transition: height 0.3s ease;
  height: 100%;
  min-height: calc(100% + 1px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@supports (-webkit-hyphens: none) {
  .header.header-custom .header__inline-menu .header__submenu__drawer {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.header.header-custom .header__inline-menu .header__submenu__collection-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
  margin-top: 24px;
}
.header.header-custom .header__inline-menu .header__submenu__collection-wrapper--single-column {
  grid-template-columns: 1fr;
}
.header.header-custom .header__inline-menu .header__submenu__cta {
  padding: 12px 0;
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  color: #302E2C;
  display: flex;
  align-items: center;
  gap: 16px;
}
.header.header-custom .header__inline-menu .header__submenu .header__menu-item {
  text-decoration: none;
  padding-left: 0;
  padding-top: 0;
  padding: 0;
  padding-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-transform: none;
  color: #0b0a0a;
  transition: color 0.3s ease-out;
  margin-bottom: 10px;
}
.header.header-custom .header__inline-menu .header__submenu .header__menu-item:hover,
.header.header-custom .header__inline-menu .header__submenu .header__menu-item.list-menu__item--active {
  color: #0b0a0a;
}
.header.header-custom .header__inline-menu .header__submenu .header__menu-item.list-menu__item--active {
  font-weight: 600;
}
.header.header-custom .header__inline-menu .header__submenu .header__menu-item:before {
  content: none;
}
.header.header-custom .header__inline-menu .header__submenu--full {
  width: 100%;
  left: 0;
  transform: translateX(0px);
  padding: 0;
}
@media (min-width: 750px) {
  .header.header-custom .header__inline-menu .header__submenu--full {
    border-radius: 0;
  }
}
.header.header-custom .header__inline-menu .header__submenu--full .header__submenu-wrapper {
  padding-top: 40px;
  padding-bottom: 48px;
  display: grid;
  gap: 50px;
  grid-template-columns: 1.2fr 1fr;
}
.header.header-custom .header__inline-menu .header__submenu--full .collection__title {
  margin-top: 0;
  color: #0b0a0a;
  margin-bottom: 10px;
}
.header.header-custom .header__inline-menu .header__submenu--full .header__menu-item {
  margin-bottom: 10px;
  font-size: 18px;
}
.header.header-custom .header__inline-menu .header__submenuItem__titleWrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.header.header-custom .header__icon .icon {
  width: 24px;
  height: 24px;
}
.header.header-custom .header__icon .icon-account,
.header.header-custom .header__icon .icon-cart {
  color: #233F2A;
}
.header.header-custom .header__icon--summary {
  padding-left: 0;
}
.header.header-custom .header__icon--summary span > svg {
  color: #233F2A;
}
.header.header-custom .header__icon:hover .icon {
  transform: unset;
}
.header.header-custom .header__heading-link {
  padding: 0;
}
.header.header-custom .header-logo__image-container {
  display: flex;
}
.header.header-custom .header__heading-logo {
  height: 40px;
  width: auto;
  position: relative;
}
@media (min-width: 1024px) {
  .header.header-custom .header__heading-logo {
    height: 56px;
  }
}
@media (max-width: 1023px) {
  .header.header-custom {
    min-height: 56px;
  }
  .header.header-custom .menu-drawer {
    width: 100%;
    max-width: unset;
  }
  .header.header-custom .menu-drawer:has(.menu-drawer__menu[data-level="1"]),
  .header.header-custom .menu-drawer:has(.menu-drawer__menu[data-level="2"]) {
    z-index: 5;
  }
  .header.header-custom:not(.drawer-menu).page-width {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header.header-custom .menu-drawer__navigation {
    padding: 0;
  }
  .header.header-custom .menu-drawer__navigation > .menu-drawer__menu.has-submenu > li:nth-last-child(2) .menu-drawer__menu-item,
  .header.header-custom .menu-drawer__navigation > .menu-drawer__menu.has-submenu > li:nth-last-child(1) .menu-drawer__menu-item {
    font-size: 16px;
    font-weight: 400;
  }
  .header.header-custom .menu-drawer__navigation > .menu-drawer__menu.has-submenu > li:nth-last-child(2) .menu-drawer__menu-item > .icon-arrow,
  .header.header-custom .menu-drawer__navigation > .menu-drawer__menu.has-submenu > li:nth-last-child(1) .menu-drawer__menu-item > .icon-arrow {
    width: 8px;
  }
  .header.header-custom .menu-drawer__menu {
    margin-block-end: 0;
  }
  .header.header-custom .menu-drawer__menu .menu-drawer__menu-item {
    padding: 20px 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
  }
  .header.header-custom .menu-drawer__menu .menu-drawer__menu-item:hover {
    background-color: unset;
  }
  .header.header-custom .menu-drawer__menu .menu-drawer__menu-item > .icon-arrow {
    right: 0;
    width: 11px;
  }
  .header.header-custom .menu-drawer__menu li {
    border-bottom: 1px #E2DBCA solid;
    margin-bottom: 0;
  }
  .header.header-custom .menu-drawer__menu li:last-child {
    border-bottom: none;
  }
  .header.header-custom .menu-drawer__menu .list-menu__item--active {
    text-decoration: none;
    color: #0b0a0a !important;
  }
  .header.header-custom .menu-drawer__menu-item--active,
  .header.header-custom .menu-drawer__menu-item:focus {
    background-color: unset;
    color: #0b0a0a !important;
  }
  .header.header-custom .menu-drawer__inner-submenu .menu-drawer__menu-item--active {
    font-weight: 600 !important;
  }
  .header.header-custom .menu-drawer__close-button {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    min-height: 60px;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 600;
  }
  .header.header-custom anchored-popover-component,
  .header.header-custom .desktop-localization-wrapper {
    display: none;
  }
}
.header.header-custom .menu-drawer__utility-links {
  display: none;
}
.header.header-custom .header__icons--localization .localization-form__select .icon-caret {
  right: 14px;
  height: 12px;
  top: unset;
}
.header.header-custom .header__icons--localization .localization-form__select .icon-caret.icon-caret--mobile {
  display: none;
}
.header.header-custom .header__icon--account {
  display: none;
}
@media (min-width: 990px) {
  .header.header-custom .header__icon--account {
    display: flex;
  }
}
.header.header-custom .header__icon--account .account-button {
  display: none;
}
.header.header-custom .search__button:not(.field__button) {
  display: none;
}
.header.header-custom .reset__button {
  right: 0;
  transform: translateX(calc(50% - 12px));
  height: 100%;
}
.header.header-custom .reset__button.hidden + .search__button {
  display: none;
}
.header.header-custom .desktop-localization-wrapper {
  padding-right: 0;
}
.header.header-custom .desktop-localization-wrapper .localization-form {
  margin-right: 0;
}
.header.header-custom .desktop-localization-wrapper .localization-form__select {
  min-width: unset;
}
.header.header-custom .desktop-localization-wrapper .disclosure__list-wrapper {
  bottom: 0;
  right: 0;
  transform: translateY(calc(100% + 16px)) translateX(24px);
  animation: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: none;
}
.header.header-custom .desktop-localization-wrapper .disclosure--has-arrow:after,
.header.header-custom .desktop-localization-wrapper .disclosure--has-arrow:before {
  content: none;
}
.header.header-custom .desktop-localization-wrapper .disclosure__button {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.header.header-custom .desktop-localization-wrapper .disclosure__button::before,
.header.header-custom .desktop-localization-wrapper .disclosure__button::after {
  content: none;
}
.header.header-custom .desktop-localization-wrapper .disclosure__button svg {
  position: relative;
  top: unset;
  inset-inline-end: unset;
  height: 24px;
}
.header.header-custom .desktop-localization-wrapper .disclosure__button span {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: #302E2C;
}
.header.header-custom .desktop-localization-wrapper .localization-wrapper {
  top: calc(100% + 16px);
}
@media (min-width: 990px) {
  .header.header-custom .desktop-localization-wrapper .localization-wrapper {
    border-radius: 0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: none;
  }
}
.menu-drawer__navigation .submenu-open {
  visibility: visible !important;
}
.header--middle-center:not(.drawer-menu) {
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
@media (min-width: 1024px) {
  .close-drawer {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .header.header-custom .header__heading {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s ease, left 0.3s ease;
  }
  .header__icon--cart {
    opacity: 1;
    visibility: visible;
    transition: width 0.3s ease-out, height 0.3s ease-out;
  }
  .close-drawer {
    cursor: pointer;
    display: none;
    width: 0;
    height: 0;
    transition: width 0.3s ease-out, height 0.3s ease-out;
  }
  header-drawer {
    transition: margin-left 0.2s ease-out;
  }
  .menu-open header-drawer {
    margin-left: -100%;
  }
  .menu-open .header.header-custom .close-drawer {
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: block;
  }
  .menu-open .header.header-custom .header__icon--cart,
  .menu-open .header.header-custom .header__icon--search {
    width: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    border: none;
  }
  .menu-open .header.header-custom .header__heading {
    left: 20px;
    transform: translateX(0);
  }
  .menu-open .search-modal {
    background: #fff;
  }
  .menu-open .search-modal .field__input {
    background: #fff;
  }
}
.language-selector {
  z-index: 4;
}
.language-selector[data-mobile] {
  margin-right: 25px;
}
.language-selector[data-type=lsn-switchers][data-mobile] .lsn-switcher {
  padding: 8px 16px !important;
  font-size: 16px !important;
  max-height: 38px;
}
[data-type=lsn-switchers][data-mobile=""] {
  display: inline-block !important;
}
.search-modal {
  top: 100%;
  opacity: 1;
  background: #fff;
  height: -moz-fit-content;
  height: fit-content;
  height: 48px;
  border-bottom: 1px dashed #E2DBCA;
}
@media (min-width: 990px) {
  .search-modal {
    height: 56px;
  }
}
@media (min-width: 990px) {
  .search-modal__content {
    padding-left: 0;
    padding-right: 0;
  }
  .search-modal__content::before {
    content: "";
    background: #fff;
    left: 0;
    top: 0;
    height: 100%;
    width: 30vw;
    position: absolute;
    transform: translateX(-100%);
  }
  .search-modal__content::after {
    content: "";
    background: #fff;
    right: 0;
    top: 0;
    height: 100%;
    width: 30vw;
    position: absolute;
    transform: translateX(100%);
  }
}
.search-modal .field:hover::before,
.search-modal .field:hover::after {
  box-shadow: none;
}
.search-modal .field > svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.search-modal .field__label {
  opacity: 1;
  transition: opacity 0.3s ease;
  left: 32px;
  font-size: 16px;
  font-weight: 400;
}
.search-modal .field__input {
  background: #fff;
  margin: 0 0 0 32px;
  padding: 14px 0;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: normal;
}
.search-modal .field__input:focus {
  box-shadow: none;
  padding: unset;
}
.search-modal .field__input:focus ~ .field__label {
  opacity: 0;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  left: 31px;
  letter-spacing: normal;
  line-height: 22px;
}
.search-modal .field__input:not(:-moz-placeholder) {
  padding: 1.5rem;
  padding-left: 0;
  padding-right: 50px;
}
.search-modal .field__input:not(:placeholder-shown) {
  padding: 1.5rem;
  padding-left: 0;
  padding-right: 50px;
}
.search-modal .field__input:not(:-moz-placeholder) ~ .field__label {
  display: none;
}
.search-modal .field__input:not(:placeholder-shown) ~ .field__label {
  display: none;
}
.search-modal .field::before,
.search-modal .field::after {
  box-shadow: none;
  border: none;
}
.section-image-banner .banner__box .section-content__buttons {
  width: 100% !important;
}
.section-image-banner .banner__box .section-content__buttons .button {
  width: 100% !important;
}
.section-image-banner .banner__box .ruk_rating_snippet {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 6px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  margin-top: 0 !important;
}
.section-image-banner .banner__box .shopify-block.shopify-app-block {
  min-height: 30px !important;
}
.section-image-banner .banner__box .R-RatingStars {
  order: 1 !important;
}
.section-image-banner .banner__box .ruk_rating_snippet .R-TextBody.u-textSentenceCase,
.section-image-banner .banner__box .ruk_rating_snippet .cssVar-reviewStatistics.u-textSentenceCase {
  order: 2 !important;
  display: inline-block !important;
  visibility: visible !important;
}
.section-image-banner .banner__box .R-TextBody.R-TextBody--xxs,
.section-image-banner .banner__box .R-TextBody:not(.u-textSentenceCase) {
  order: 3 !important;
}
.section-image-banner .banner__box .R-TextBody.R-TextBody--xxs > *:not(.cssVar-reviewStatistics),
.section-image-banner .banner__box .R-TextBody:not(.u-textSentenceCase) > *:not(.cssVar-reviewStatistics) {
  display: none !important;
}
.section-image-banner .banner__box .R-TextBody.R-TextBody--xxs > span.cssVar-reviewStatistics:first-child,
.section-image-banner .banner__box .R-TextBody:not(.u-textSentenceCase) > span.cssVar-reviewStatistics:first-child {
  display: none !important;
}
.section-image-banner .banner__box .R-TextBody.R-TextBody--xxs > span.cssVar-reviewStatistics:last-child,
.section-image-banner .banner__box .R-TextBody:not(.u-textSentenceCase) > span.cssVar-reviewStatistics:last-child {
  display: inline-block !important;
}
.section-image-banner .banner__box .R-TextBody.R-TextBody--xxs > span.cssVar-reviewStatistics:last-child::before,
.section-image-banner .banner__box .R-TextBody:not(.u-textSentenceCase) > span.cssVar-reviewStatistics:last-child::before {
  content: "(";
}
.section-image-banner .banner__box .R-TextBody.R-TextBody--xxs > span.cssVar-reviewStatistics:last-child::after,
.section-image-banner .banner__box .R-TextBody:not(.u-textSentenceCase) > span.cssVar-reviewStatistics:last-child::after {
  content: ")";
}
.banner__box.gradient {
  padding: 32px !important;
}
.section-content > *:first-child {
  margin-top: 0px !important;
  margin-bottom: 8px !important;
}
.banner__heading.inline-richtext {
  margin-top: 0 !important;
  margin-bottom: 8px !important;
}
.banner__buttons.section-content__buttons {
  margin-top: 8px !important;
  margin-bottom: -10px !important;
}
.image-with-text__video {
  width: 100%;
  height: 100%;
  display: block;
}
.image-with-text__video--cover {
  -o-object-fit: cover;
  object-fit: cover;
}
.image-with-text__video--contain {
  -o-object-fit: contain;
  object-fit: contain;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/*# sourceMappingURL=bs-kunu.min.css.map */
