/** Shopify CDN: Minification failed

Line 1659:25 The "+" operator only works if there is whitespace on both sides
Line 1659:53 The "+" operator only works if there is whitespace on both sides
Line 1706:28 The "+" operator only works if there is whitespace on both sides
Line 1706:33 The "+" operator only works if there is whitespace on both sides
Line 1706:61 The "+" operator only works if there is whitespace on both sides

**/
/* section-image-banner.css */
.banner__box {
    text-align: center
}

.banner__box.gradient {
    transform: perspective(0)
}
.banner__content .overlay_link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1
}

.banner__content .banner__box {
    position: read-only;
    z-index: 2
}

.banner__content {
    padding: 0;
    display: flex;
    position: relative;
    width: 100%;
    align-items: center;
    justify-content: center;
    z-index: 2
}

.banner__box {
    padding: 4rem 2rem;
    position: relative;
    height: fit-content;
    align-items: center;
    text-align: center;
    width: 100%;
    word-wrap: break-word;
    z-index: 1
}  

.banner__box>*:first-child {
    margin-top: 0
}

.banner__buttons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 45rem;
    word-break: break-word
}



/* component-card.css */

.card--media .card__inner .card__content {
    position: relative;
    padding: calc(var(--image-padding) + 1rem);
}

/* component-localization-form.css */
.localization-form {
    display: flex;
    flex-direction: column;
    flex: auto 1 0;
    padding: 1rem;
    margin: 0 auto
}
.localization-form:only-child {
    display: inline-flex;
    flex-wrap: wrap; 
    flex: initial;
    padding: 0
}
@media screen and (min-width: 750px) {
  .localization-form {
    padding:1rem 2rem 1rem 0
  }

  .localization-form:first-of-type {
    padding-left: 0
  }

  .localization-form:only-child { 
    justify-content: start; 
    width: auto;
    margin: 0 1rem 0 0
  }
}
.localization-form__currency {
    opacity: 0;
    transition: opacity .15s cubic-bezier(.25,.46,.45,.94);
    white-space: nowrap;
    padding-right: 1.7rem
}
.countries {
    padding-top: .6rem
}
.disclosure__item {
    position: relative
}

.disclosure__link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: .5rem;
    padding: .9rem 1.5rem;
    text-decoration: none;
    line-height: calc(1 + .8 / var(--font-body-scale));
    color: rgba(var(--color-foreground),1);
    word-break: break-word
}
.desktop-localization-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end
}
.header-localization:not(.menu-drawer__localization) {
    align-items: center
}
details-drawer .localization-form {
    width: 100%!important
}

details-drawer .localization-form .country {
    min-width: 195px
}

details-drawer .localization-form .disclosure__link {
    padding: .6rem 0rem;
    font-size: 13px;
    font-weight: 500;
    color: rgba(var(--color-foreground))
}

details-drawer .localization-form .disclosure__link:hover,details-drawer .localization-form .disclosure__link[aria-current=true] {
    color: rgb(var(--color-button))
}

.localization-drawer-trigger .svg-wrapper {
    width: 1.2rem;
    height: 1.2rem
}

.localization-drawer-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500
}

details-drawer .drawer__heading {
    margin: 0 0 0rem
}

/* component-cart.css */

.cart__contents>*+* {
    margin-top: 2.5rem
}

@media screen and (min-width: 750px) {
  .cart__contents>*+* {
    margin-top: 0
  }
}

.cart__ctas button {
    width: 100%
}

.cart__ctas>*+* {
    margin-top: 1rem
}

.tax-note {
    margin: 2.2rem 0 1.6rem auto;
    text-align: center;
    display: block
}

.cart__checkout-button {
    max-width: 36rem
}

.cart__ctas {
    text-align: center
}

@media screen and (min-width: 750px) {
  .tax-note {
    margin-bottom: 2.2rem;
    text-align: right
  }
  .cart__ctas {
    display: flex;
    gap: 1rem
  }
}
.custom-gift--container {
    margin: 0 0 3rem
}

.custom-gift--container .cart-gift-title {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem
}

.custom-gift--container .cart-gift-title * {
    font-size: 1.2rem
}

.cart-gift-title input {
    margin: 0;
    cursor: pointer
}

.cart-gift-title label {
    line-height: 1;
    font-weight: 500;
    cursor: pointer
}
.cart__ctas {
    position: relative
}

/* component-cart-drawer.css */

.drawer.active {
  visibility: visible;
}

.drawer {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    background-color: rgba(var(--color-foreground),.5);
    transition: visibility var(--duration-default) ease
}

.drawer__inner {
    height: 100%;
    width: 56rem;
    max-width: calc(100vw - 3rem);
    padding: 0 3rem;
    border: .1rem solid rgba(var(--color-foreground),.2);
    border-right: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translate(100%);
    transition: transform ease-out .5s
}

@media (max-width: 749px) {
  .drawer__inner {
    width: 75rem;
    max-width: 100vw;
    padding: 0 2rem;
  }
}

.drawer__inner-empty {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cart-drawer__warnings {
  display: flex;
  flex-direction: column;
  flex: 1;
  /* justify-content: center; */
}

.cart-drawer__empty-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 3rem;
}

.cart-drawer__empty-content .drawer__heading {
  margin: 0;
}

.cart-drawer__empty-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 3rem;
}

.cart-drawer__empty-content + .rte {
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
}

cart-drawer.is-empty .drawer__inner {
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  padding: 0;
}

cart-drawer.is-empty .drawer__header {
  display: none;
}

cart-drawer:not(.is-empty) .cart-drawer__warnings,
cart-drawer:not(.is-empty) .cart-drawer__collection {
  display: none;
}

.drawer__inner:has(.drawer__inner-empty) .free-shipping-bar {
  display: none;
}

.cart-drawer__overlay:empty {
  display: block;
}

cart-drawer-items.is-empty + .drawer__footer {
  display: none;
}

.cart-drawer__empty-content .drawer__heading {
  margin: 0;
}

.drawer__heading {
    font-size: 2.8rem;
    padding-right: 2rem;
    position: relative
}

.drawer__heading:after {
    content: "";
    position: absolute;
    right: 0;
    width: 14px;
    height: 14px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(/cdn/shop/files/icon-c.png);
    filter: invert(51%) sepia(3%) saturate(4293%) hue-rotate(129deg) brightness(119%) contrast(83%)
}
#LocalizationDrawer .drawer__heading:after {
    background-image: url(/cdn/shop/files/pink-text-icon.png?v=1737359478);
    filter: none;
    height: 24px;
    width: 17px;
    bottom: 6px;
    right: -10px
}
.drawer__header {
    position: relative;
    padding: 2.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.drawer.active .drawer__inner {
    transform: translate(0);
    transition: transform ease-in .5s
}

.cart-drawer__empty-content+.rte {
    padding: 1.5rem 3rem;
    font-size: 1.2rem
}

cart-drawer.is-empty .drawer__inner {
    display: grid;
    grid-template-rows: 1fr;
    align-items: center;
    padding: 0
}

cart-drawer.is-empty .drawer__header {
    display: none
}

cart-drawer:not(.is-empty) .cart-drawer__warnings,cart-drawer:not(.is-empty) .cart-drawer__collection {
    display: none
}

.cart-drawer__warnings--has-collection .cart__login-title {
    margin-top: 2.5rem
}

.drawer__heading {
    margin: 0 0 1rem
}

.drawer__close {
    display: inline-block;
    padding: 0;
    box-shadow: 0 0 0 .2rem rgba(var(--color-button),0);
    color: rgb(var(--color-foreground));
    background-color: transparent;
    border: none;
    cursor: pointer
}
.drawer__close .svg-wrapper {
    height: 2rem;
    width: 2rem
}

.drawer__contents {
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.drawer__footer {
    padding: 2.5rem 0 3rem
}
cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%
}

.cart-drawer__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.cart-drawer__overlay:empty {
    display: block
}

.cart-drawer__form {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    height: 100%
}
.cart-drawer .drawer__cart-items-wrapper {
    flex-grow: 1
}

.cart-drawer .cart-items,.cart-drawer tbody {
    display: block;
    width: 100%
}
cart-drawer-items {
    overflow: auto;
    flex: 1
}

.cart-drawer .cart-item {
    display: grid;
    grid-template: repeat(2,auto) / repeat(4,1fr);
    gap: 1rem;
    padding-bottom: 1rem;
    padding-top: 1.5rem;
    border-bottom: 1px solid #d2c9be
}

.cart-drawer .cart-item__media {
    grid-row: 1 / 3
}

.cart-drawer .cart-item__image {
    max-width: 100%
}
.cart-drawer .cart-item:last-child {
    margin-bottom: 1.5rem
}

.cart-drawer .cart-item .loading__spinner {
    right: 5px;
    padding-top: 2.5rem
}

.cart-drawer .cart-items td {
    padding-top: 1.7rem;
    padding-top: 0
}

.cart-drawer .cart-item>td+td {
    padding-left: 1rem
}

.cart-drawer .cart-item__details {
    width: auto;
    grid-column: 2 / 4
}

.cart-item .cart-item__meta-text {
    font-size: 1.2rem;
    text-decoration: none;
    color: #63a6a4
}

.cart-drawer .cart-item__quantity quantity-input.quantity {
    justify-content: start
}

.cart-drawer .cart-item__quantity-wrapper {
    justify-content: space-between
}

.cart-drawer .cart-item__totals {
    pointer-events: none;
    width: auto
}

.cart-drawer.cart-drawer .cart-item__price-wrapper>*:only-child {
    margin-top: 0
}

.cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices {
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.cart-item__price-wrapper .price--end {
    font-size: 1.2rem;
    font-weight: 500
}
.cart-drawer .cart-items .cart-item__quantity {
    padding-top: 0;
    grid-column: 2 / 5
}
.cart-drawer__footer>*+* {
    margin-top: 1rem
}

.cart-drawer .totals {
    justify-content: space-between
}

.cart-drawer .price {
    line-height: 1
}

.cart-drawer .tax-note {
    margin: 1.2rem 0 2rem auto;
    text-align: left
}

.cart-drawer .product-option dd {
    word-break: break-word
}
.cart-drawer .cart__checkout-button {
    max-width: none
}
cart-drawer-items::-webkit-scrollbar {
    width: 3px
}

cart-drawer-items::-webkit-scrollbar-thumb {
    background-color: rgba(var(--color-foreground),.7);
    border-radius: 100px
}

cart-drawer-items::-webkit-scrollbar-track-piece {
    margin-top: 31px
}

.cart-drawer .quantity-popover-container {
    padding: 0
}
.cart-drawer .cart-item__error {
    margin-top: .8rem
}
@media screen and (min-width: 750px) {
  .cart-drawer .cart-item__error {
    margin-left: 0
  }
}
.cart-drawer__footer .totals {
    margin: 0 0 2rem
}

.cart-drawer__footer .totals__total,.cart-drawer__footer .totals__total-value {
    font-size: 1.6rem;
    font-family: var(--font-body-family);
    font-weight: 500;
    letter-spacing: 0
}

.drawer__footer .cart__ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .5rem
}

.drawer__footer .cart__ctas .link {
    font-size: 1.2rem;
    margin-top: 0;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid
}

/* component-mega-menu.css */

.mega-menu {
    position: static
}

.mega-menu__content {
    background-color: rgb(var(--color-background));
    border-left: 0;
    border-radius: 0;
    border-right: 0;
    left: 0;
    overflow-y: auto;
    padding-bottom: 3rem;
    padding-top: 3rem;
    position: absolute;
    right: 0;
    top: 100%;
    border: none
}
.js .mega-menu__content {
    opacity: 0;
    transform: translateY(-1.5rem);
    display: none
}

.mega-menu[open] .mega-menu__content,li .mega-menu:hover .mega-menu__content {
    opacity: 1;
    transform: translateY(-1rem);
    z-index: 2;
    display: block
}

.mega-menu__list {
    display: grid;
    gap: 1.8rem 4rem;
    grid-template-columns: repeat(5,minmax(0,1fr));
    list-style: none
}

.mega-menu__link {
    color: rgba(var(--color-foreground),1);
    display: block;
    line-height: calc(1 + .3 / var(--font-body-scale));
    padding-bottom: .6rem;
    padding-top: .6rem;
    text-decoration: none;
    transition: text-decoration var(--duration-short) ease;
    word-wrap: break-word;
    font-size: 1.3rem
}
.mega-menu .list-menu__item {
    gap: .5rem;
    position: relative
}
.care__item>a:after,.community__item>a:after,.about__item>a:after,.gift-by-style__item>a:after,.gifts-by-price__item>a:after,.gift-for__item>a:after,.collections__item>a:after,.charms__item>a:after,.earrings__item>a:after,.necklaces__item>a:after,.rings__item>a:after,.bracelets__item>a:after {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}
.gift-by-style__item>a:after {
    background-image: url(/cdn/shop/files/icon-b_1.png?v=1734428786);
    filter: invert(69%) sepia(17%) saturate(1070%) hue-rotate(218deg) brightness(77%) contrast(86%)
}

.gifts-by-price__item>a:after {
    background-image: url(/cdn/shop/files/icon-d_1eba93c7-a9a1-48c2-b1d1-81406c44cafc.png?v=1734428785);
    filter: invert(51%) sepia(3%) saturate(4293%) hue-rotate(129deg) brightness(119%) contrast(83%)
}

.about__item>a:after {
    background-image: url(/cdn/shop/files/icon-a_242fd42e-aaba-4b5f-b427-5883c2063304.png?v=1734428786);
    filter: invert(69%) sepia(17%) saturate(1070%) hue-rotate(218deg) brightness(77%) contrast(86%)
}

.community__item>a:after {
    background-image: url(/cdn/shop/files/icon-b_1.png?v=1734428786);
    filter: invert(46%) sepia(72%) saturate(535%) hue-rotate(294deg) brightness(107%) contrast(77%)
}

.care__item>a:after {
    background-image: url(/cdn/shop/files/icon-j_f5d0c785-440b-4156-b88d-2c03e4a0b7a4.png?v=1734428786);
    filter: invert(69%) sepia(17%) saturate(1070%) hue-rotate(218deg) brightness(77%) contrast(86%)
}
.mega-menu__list:has(>.gift-by-style__item) {
    grid-template-columns: repeat(6,minmax(0,1fr))
}

.mega-menu__list:has(>.gift-by-style__item) li.mega-menu__image {
    grid-column: 5 / 7
}

/* embla-swiper.min.css */

.embla {
  overflow: hidden;
}
.embla__container {
  display: flex;
}
.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  /* position: relative */
}

custom-swiper {
  position: relative;
  display: block;
}
custom-swiper .embla__container {
  margin-left: calc(var(--grid-desktop-horizontal-spacing) * -1);
}
custom-swiper .embla__slide {
  padding-left: var(--grid-desktop-horizontal-spacing);
  flex: 0 0 calc(1 / var(--columns-desktop) * 100%);
}

/* base.css */
:root {
    --alpha-button-background: 1;
    --alpha-button-border: 1;
    --alpha-link: 0.85;
    --alpha-badge-border: 0.1;
    --focused-base-outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
    --focused-base-outline-offset: 0.3rem;
    --focused-base-box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3)
}
.product-card-wrapper .card,.contains-card--product {
    --border-radius: var(--product-card-corner-radius);
    --border-width: var(--product-card-border-width);
    --border-opacity: var(--product-card-border-opacity);
    --shadow-horizontal-offset: var(--product-card-shadow-horizontal-offset);
    --shadow-vertical-offset: var(--product-card-shadow-vertical-offset);
    --shadow-blur-radius: var(--product-card-shadow-blur-radius);
    --shadow-opacity: var(--product-card-shadow-opacity);
    --shadow-visible: var(--product-card-shadow-visible);
    --image-padding: var(--product-card-image-padding);
    --text-alignment: var(--product-card-text-alignment)
}
.contains-content-container,.content-container {
    --border-radius: var(--text-boxes-radius);
    --border-width: var(--text-boxes-border-width);
    --border-opacity: var(--text-boxes-border-opacity);
    --shadow-horizontal-offset: var(--text-boxes-shadow-horizontal-offset);
    --shadow-vertical-offset: var(--text-boxes-shadow-vertical-offset);
    --shadow-blur-radius: var(--text-boxes-shadow-blur-radius);
    --shadow-opacity: var(--text-boxes-shadow-opacity);
    --shadow-visible: var(--text-boxes-shadow-visible)
}
.page-width {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 1.5rem
}
@media screen and (min-width: 750px) {
  .page-width {
      padding:0 3rem
  }

  .header.page-width,.utility-bar__grid.page-width {
      padding-left: 3rem;
      padding-right: 3rem
  }
}
@media screen and (min-width: 990px) {
  .page-width {
      padding:0 4.5rem
  }

  .header:not(.drawer-menu).page-width {
      padding-left: 4.5rem;
      padding-right: 6.5rem
  }
}
.isolate {
    position: relative;
    z-index: 0
}

.section+.section {
    margin-top: var(--spacing-sections-mobile)
}

@media screen and (min-width: 750px) {
    .section+.section {
        margin-top:var(--spacing-sections-desktop)
    }
}
.list-unstyled {
    margin: 0;
    padding: 0;
    list-style: none
}

.hidden {
    display: none!important
}

.visually-hidden {
    position: absolute!important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    word-wrap: normal!important
}

.visually-hidden--inline {
    margin: 0;
    height: 1em
}

.overflow-hidden {
    overflow: hidden
}
::selection {
    background-color: rgba(var(--color-foreground),.2)
}

.text-body {
    font-size: 1.5rem;
    letter-spacing: .06rem;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight)
}

h1,h2,h3,h4,h5,.h0,.h1,.h2,.h3,.h4,.h5 {
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    font-weight: var(--font-heading-weight);
    letter-spacing: 0;
    color: rgb(var(--color-foreground));
    line-height: 1.2;
    word-break: break-word
}
h1,.h1 {
    font-size: calc(var(--font-heading-scale) * 3.6rem);
    line-height: 1.1
}

@media only screen and (min-width: 750px) {
    h1,.h1 {
        font-size:calc(var(--font-heading-scale) * 4.8rem)
    }
}

h2,.h2 {
    font-size: calc(var(--font-heading-scale) * 2.4rem)
}

@media only screen and (min-width: 750px) {
    h2,.h2 {
        font-size:calc(var(--font-heading-scale) * 3.6rem)
    }
}

h3,.h3 {
    font-size: calc(var(--font-heading-scale) * 2rem)
}

@media only screen and (min-width: 750px) {
    h3,.h3 {
        font-size:calc(var(--font-heading-scale) * 2.4rem)
    }
}

h4,.h4 {
    font-size: calc(var(--font-heading-scale) * 1.3rem)
}

@media only screen and (min-width: 750px) {
    h4,.h4 {
        font-size:calc(var(--font-heading-scale) * 1.6rem)
    }
}

h5,.h5 {
    font-size: calc(var(--font-heading-scale) * 1.2rem)
}

@media only screen and (min-width: 750px) {
    h5,.h5 {
        font-size:calc(var(--font-heading-scale) * 1.3rem)
    }
}

h6,.h6 {
    font-size: calc(var(--font-heading-scale) * 1.1rem);
    color: rgba(var(--color-foreground),1)
}

@media only screen and (min-width: 750px) {
    h6,.h6 {
        font-size:calc(var(--font-heading-scale) * 1.2rem)
    }
}
.caption {
    font-size: 1rem;
    letter-spacing: .07rem;
    line-height: calc(1 + 0.7 / var(--font-body-scale))
}

@media screen and (min-width: 750px) {
    .caption {
        font-size:1.2rem
    }
}
.caption-large,.customer .field input,.customer select,.field__input,.form__label,.select__select {
    font-size: 1.2rem;
    line-height: calc(1 + 0.4 / var(--font-body-scale));
    letter-spacing: .04rem
}
@media screen and (max-width: 749px) {
    .small-hide {
        display:none!important
    }
}
.center {
    text-align: center
}

.right {
    text-align: right
}
.uppercase {
    text-transform: uppercase
}

.light {
    opacity: .7
}

a:empty,ul:empty,dl:empty,div:empty,section:empty,article:empty,p:empty,h1:empty,h2:empty,h3:empty,h4:empty,h5:empty,h6:empty {
    display: none
}

.link,.customer a {
    cursor: pointer;
    display: inline-block;
    border: none;
    box-shadow: none;
    text-decoration: underline;
    text-underline-offset: .3rem;
    color: rgb(var(--color-link));
    background-color: #fff0;
    font-size: 1.2rem;
    font-family: inherit;
    letter-spacing: 0
}

.link--text {
    color: rgb(var(--color-foreground))
}
.full-unstyled-link {
    text-decoration: none;
    color: currentColor;
    display: block
}
details>* {
    box-sizing: border-box
}

.break {
    word-break: break-word
}
:root {
    --duration-short: 100ms;
    --duration-default: 200ms;
    --duration-announcement-bar: 250ms;
    --duration-medium: 300ms;
    --duration-long: 500ms;
    --duration-extra-long: 600ms;
    --duration-extra-longer: 750ms;
    --duration-extended: 3s;
    --ease-out-slow: cubic-bezier(0, 0, 0.3, 1);
    --animation-slide-in: slideIn var(--duration-extra-long) var(--ease-out-slow) forwards;
    --animation-fade-in: fadeIn var(--duration-extra-long) var(--ease-out-slow)
}

.underlined-link,.customer a,.inline-richtext a {
    text-underline-offset: .3rem;
    text-decoration-thickness: .1rem;
    transition: text-decoration-thickness ease 100ms
}

.underlined-link,.customer a {
    color: rgba(var(--color-link),1)
}
.svg-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px
}

.svg-wrapper>svg {
    height: 100%;
    width: 100%
}

summary {
    cursor: pointer;
    list-style: none;
    position: relative
}
*:focus {
    outline: 0;
    box-shadow: none
}
.focus-none {
    box-shadow: none!important;
    outline: 0!important
}
.title,.title-wrapper-with-link {
    margin: 3rem 0 2rem
}

.title-wrapper-with-link .title {
    margin: 0
}
.title-wrapper-with-link {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap
}
@media screen and (min-width: 990px) {
  .title,.title-wrapper-with-link {
      margin:5rem 0 3rem
  }
  .title-wrapper-with-link {
      align-items: center
  }

  .title-wrapper-with-link .title {
      margin-bottom: 0
  }
}
.title-wrapper-with-link a {
  margin-top: 0;
  flex-shrink: 0
}

.title-wrapper--no-top-margin {
    margin-top: 0
}

.title-wrapper--no-top-margin>.title {
    margin-top: 0
}
.media {
    display: block;
    background-color: rgba(var(--color-foreground),.1);
    position: relative;
    overflow: hidden
}

.media--transparent {
    background-color: #fff0
}

.media>*:not(.zoom):not(.deferred-media__poster-button),.media model-viewer {
    display: block;
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.media>img {
    object-fit: cover;
    object-position: center center;
    transition: opacity 0.8s cubic-bezier(.25,.46,.45,.94)
}
.media.media--hover-effect>img+img {
    opacity: 0
}
.button--secondary,.button--tertiary {
    --color-button: var(--color-secondary-button);
    --color-button-text: var(--color-secondary-button-text)
}
.button--tertiary {
    --alpha-button-background: 0;
    --alpha-button-border: 0.2
}

.button,.shopify-challenge__button,.customer button,button.shopify-payment-button__button--unbranded {
    --shadow-horizontal-offset: var(--buttons-shadow-horizontal-offset);
    --shadow-vertical-offset: var(--buttons-shadow-vertical-offset);
    --shadow-blur-radius: var(--buttons-shadow-blur-radius);
    --shadow-opacity: var(--buttons-shadow-opacity);
    --shadow-visible: var(--buttons-shadow-visible);
    --border-offset: var( --buttons-border-offset );
    --border-opacity: calc(1 - var(--buttons-border-opacity));
    border-radius: var(--buttons-radius-outset);
    position: relative
}

.button,.shopify-challenge__button,.customer button,button.shopify-payment-button__button--unbranded {
    min-width: calc(25rem + var(--buttons-border-width) * 2);
    min-height: 4rem
}

.button,.shopify-challenge__button,.customer button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    padding: 0 3rem;
    cursor: pointer;
    font: inherit;
    font-size: 1.3rem;
    text-decoration: none;
    text-transform: uppercase;
    color: rgb(var(--color-button-text));
    transition: all ease-out 0.1s;
    -webkit-appearance: none;
    appearance: none;
    background-color: rgba(var(--color-button),var(--alpha-button-background));
    border-radius: var(--buttons-radius);
    border: var(--buttons-border-width) solid rgba(var(--color-button),1);
    box-shadow: unset;
    font-weight: 400;
    letter-spacing: 0
}
.button::selection,.shopify-challenge__button::selection,.customer button::selection {
    background-color: rgba(var(--color-button-text),.3)
}

.button,.button-label,.shopify-challenge__button,.customer button {
    font-size: 1.3rem;
    letter-spacing: .1rem;
    line-height: calc(1 + 0.2 / var(--font-body-scale))
}

.button--tertiary {
    font-size: 1.3rem;
    padding: 1rem 1.5rem;
    min-width: calc(9rem + var(--buttons-border-width) * 2);
    min-height: calc(3.5rem + var(--buttons-border-width) * 2)
}
.button:disabled,.button[aria-disabled="true"],.button.disabled,.customer button:disabled,.customer button[aria-disabled="true"],.customer button.disabled,.quantity__button.disabled {
    cursor: not-allowed;
    opacity: .5
}

.button--full-width {
    display: flex;
    width: 100%
}
.field__input,.select__select,.customer .field input,.customer select {
    -webkit-appearance: none;
    appearance: none;
    background-color: rgb(var(--color-background));
    color: rgb(var(--color-foreground));
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
    font-size: 1.2rem;
    width: 100%;
    box-sizing: border-box;
    transition: box-shadow var(--duration-short) ease;
    border-radius: var(--inputs-radius);
    height: 4rem;
    min-height: calc(var(--inputs-border-width) * 2);
    min-width: calc(7rem + (var(--inputs-border-width) * 2));
    position: relative;
    border: 0
}

.field:before,.select:before,.customer .field:before,.customer select:before,.localization-form__select:before {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: var(--inputs-radius-outset);
    box-shadow: var(--inputs-shadow-horizontal-offset) var(--inputs-shadow-vertical-offset) var(--inputs-shadow-blur-radius) rgba(var(--color-shadow),var(--inputs-shadow-opacity));
    z-index: -1
}

.field:after,.select:after,.customer .field:after,.customer select:after,.localization-form__select:after {
    pointer-events: none;
    content: "";
    position: absolute;
    top: var(--inputs-border-width);
    right: var(--inputs-border-width);
    bottom: var(--inputs-border-width);
    left: var(--inputs-border-width);
    border: .1rem solid #fff0;
    border-radius: var(--inputs-radius);
    box-shadow: 0 0 0 var(--inputs-border-width) rgba(var(--color-foreground),var(--inputs-border-opacity));
    transition: box-shadow var(--duration-short) ease;
    z-index: 1
}
.field {
    position: relative;
    width: 100%;
    display: flex;
    transition: box-shadow var(--duration-short) ease
}

.customer .field {
    display: flex
}
.field__input,.customer .field input {
    flex-grow: 1;
    text-align: left;
    padding: 1.5rem;
    padding: 9px 1.4rem;
    margin: var(--inputs-border-width);
    transition: box-shadow var(--duration-short) ease
}

.field__label,.customer .field label {
    font-size: 1.6rem;
    left: calc(var(--inputs-border-width) + 2rem);
    top: calc(1rem + var(--inputs-border-width));
    margin-bottom: 0;
    pointer-events: none;
    position: absolute;
    transition: top var(--duration-short) ease,font-size var(--duration-short) ease;
    color: rgba(var(--color-foreground),.75);
    letter-spacing: .1rem;
    line-height: 1.5;
    letter-spacing: 0!important;
    font-size: 1.2rem;
    left: calc(var(--inputs-border-width) + 1.4rem);
    top: calc(1.1rem + var(--inputs-border-width));
    color: rgba(var(--color-button))
}

.field__input:focus~.field__label,.field__input:not(:placeholder-shown)~.field__label,.field__input:-webkit-autofill~.field__label,.customer .field input:focus~label,.customer .field input:not(:placeholder-shown)~label,.customer .field input:-webkit-autofill~label {
    font-size: 1rem;
    top: calc(var(--inputs-border-width) + 0.5rem);
    left: calc(var(--inputs-border-width) + 2rem);
    letter-spacing: .04rem;
    display: none
}

.field__input:focus,.field__input:not(:placeholder-shown),.field__input:-webkit-autofill,.customer .field input:focus,.customer .field input:not(:placeholder-shown),.customer .field input:-webkit-autofill {
    margin: var(--inputs-border-width)
}

.field__input::-webkit-search-cancel-button,.customer .field input::-webkit-search-cancel-button {
    display: none
}

.field__input::placeholder,.customer .field input::placeholder {
    opacity: 0;
    letter-spacing: 0
}

.field__button {
    align-items: center;
    background-color: #fff0;
    border: 0;
    color: currentColor;
    cursor: pointer;
    display: flex;
    height: 4.4rem;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 4.4rem
}

.field__button>.svg-wrapper {
    height: 2.5rem;
    width: 2.5rem
}

.field__input:-webkit-autofill~.field__button,.field__input:-webkit-autofill~.field__label,.customer .field input:-webkit-autofill~label {
    color: #000
}
input[type="checkbox"] {
    display: inline-block;
    width: auto;
    margin-right: .5rem
}

.dummy-checkbox {
    width: 20px;
    height: 20px;
    background: rgb(var(--color-button));
    color: rgb(var(--color-background))
}

input[type="radio"]:not(:checked)+label .dummy-checkbox,input[type="checkbox"]:not(:checked)+label .dummy-checkbox {
    border: 1px solid rgba(var(--color-foreground),.2);
    background: #fff0
}

input[type="radio"]:not(:checked)+label .dummy-checkbox svg,input[type="checkbox"]:not(:checked)+label .dummy-checkbox svg {
    display: none
}

label:has(.dummy-checkbox) {
    display: flex;
    align-items: center;
    gap: 7px
}
.quantity {
    color: rgba(var(--color-foreground));
    position: relative;
    width: calc(14rem / var(--font-body-scale) + var(--inputs-border-width) * 2);
    display: flex;
    border-radius: var(--inputs-radius);
    min-height: calc((var(--inputs-border-width) * 2) + 4.5rem)
}

.quantity:after {
    pointer-events: none;
    content: "";
    position: absolute;
    top: var(--inputs-border-width);
    right: var(--inputs-border-width);
    bottom: var(--inputs-border-width);
    left: var(--inputs-border-width);
    border: .1rem solid #fff0;
    border-radius: var(--inputs-radius);
    box-shadow: 0 0 0 var(--inputs-border-width) rgba(var(--color-foreground),var(--inputs-border-opacity));
    transition: box-shadow var(--duration-short) ease;
    z-index: 1
}

.quantity:before {
    background: rgb(var(--color-background));
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: var(--inputs-radius-outset);
    box-shadow: var(--inputs-shadow-horizontal-offset) var(--inputs-shadow-vertical-offset) var(--inputs-shadow-blur-radius) rgba(var(--color-shadow),var(--inputs-shadow-opacity));
    z-index: -1
}

.quantity__input {
    color: currentColor;
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
    font-size: 1.6rem;
    font-weight: 500;
    opacity: .85;
    text-align: center;
    background-color: #fff0;
    border: 0;
    padding: 0 .5rem;
    width: 100%;
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none
}

.quantity__button {
    width: calc(4.5rem / var(--font-body-scale));
    flex-shrink: 0;
    font-size: 1.8rem;
    border: 0;
    background-color: #fff0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--color-foreground));
    padding: 0
}

.quantity__button:first-child {
    margin-left: calc(var(--inputs-border-width))
}

.quantity__button:last-child {
    margin-right: calc(var(--inputs-border-width))
}

.quantity__button .svg-wrapper {
    width: 1rem;
    pointer-events: none
}
.quantity__button:not(:focus-visible):not(.focused),.quantity__input:not(:focus-visible):not(.focused) {
    box-shadow: inherit;
    background-color: inherit
}
.quantity__input::-webkit-outer-spin-button,.quantity__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.quantity__input[type="number"] {
    -moz-appearance: textfield
}
.modal__toggle {
    list-style-type: none
}
.modal__close-button.link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem;
    height: 4.4rem;
    width: 4.4rem;
    background-color: #fff0
}

.modal__close-button .icon {
    width: 1.7rem;
    height: 1.7rem
}

.modal__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(var(--color-background));
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center
}
.cart-count-bubble {
    position: absolute;
    background-color: #e9dfd4;
    color: #000;
    height: 2.2rem;
    width: 2.2rem;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    bottom: 0rem;
    left: 2.2rem;
    line-height: calc(1 + 0.1 / var(--font-body-scale));
    line-height: 0;
    font-family: var(--font-body-family)
}
.header {
    display: grid;
    grid-template-areas: "left-icons heading icons";
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center
}
@media screen and (min-width: 990px) {
    .header {
        grid-template-columns:1fr auto 1fr
    }
    .header--middle-left {
        grid-template-areas: "heading navigation icons";
        grid-template-columns: auto auto 1fr;
        column-gap: 2rem
    }
}
.header__heading {
    margin: 0;
    line-height: 0
}
.header__heading,.header__heading-link {
    grid-area: heading;
    justify-self: center
}

.header__heading-link {
    display: inline-block;
    padding: .75rem;
    text-decoration: none;
    word-break: break-word
}
.header__heading-logo {
    height: auto;
    max-width: 100%
}

.header__heading-logo-wrapper {
    width: 100%;
    display: inline-block;
    transition: width 0.3s cubic-bezier(.52,0,.61,.99)
}
@media screen and (max-width: 989px) {
  .header__heading,.header__heading-link {
      text-align:center
  }
}
@media screen and (min-width: 990px) {
  .header--middle-left .header__heading-link,.header--top-left .header__heading-link {
      margin-left:-.75rem
  }

  .header__heading,.header__heading-link {
      justify-self: start
  }
}
.header__icons {
    display: flex;
    grid-area: icons;
    justify-self: end;
    gap: 1rem;
    gap: 2.8rem
}
.header__icon:not(.header__icon--summary),.header__icon span {
    display: flex;
    align-items: center;
    justify-content: center
}

.header__icon {
    color: rgb(var(--color-foreground))
}

.header__icon span {
    height: 100%
}

.header__icon .svg-wrapper {
    width: 2rem;
    height: 2rem
}

.header__icon::after {
    content: none
}
.header__icon .icon {
    height: 2rem;
    width: 2rem;
    fill: none;
    vertical-align: middle
}

.header__icon,.header__icon--cart .icon {
    height: 2rem;
    width: 2rem;
    padding: 0
}
.header__icon--cart {
    position: relative
}
@media screen and (max-width: 749px) {
    .menu-drawer {
        height:calc(100vh - var(--header-height))!important;
        max-height: calc(100vh - var(--header-height))!important;
        overflow: hidden!important
    }

    .menu-drawer__inner-container {
        height: 100%!important;
        display: flex!important;
        flex-direction: column!important
    }

    .menu-drawer__navigation-container {
        flex: 1 1 auto!important;
        min-height: 0!important;
        overflow-y: auto!important
    }

    .menu-drawer__utility-links {
        margin-top: auto!important;
        flex-shrink: 0!important;
        background: #fdfaf5!important
    }
}
details .header__icon-close {
    display: none
}
account-icon {
    display: flex
}

@media (max-width: 750px) {
    .header__icons {
        gap:1rem
    }

    .header__icon {
        padding: .1rem
    }

    .header__icon .icon {
        height: 1.6rem;
        width: 1.6rem
    }

    .header__icon,.header__icon--cart .icon {
        height: 1.6rem;
        width: 1.6rem
    }
}
.header__search {
    display: inline-flex;
    line-height: 0
}
@media screen and (min-width: 990px) {
  .header:not(.header--top-center) *>.header__search,.header--top-center>.header__search {
      display:inline-flex
  }
}
.search-modal {
    opacity: 0;
    border-bottom: .1rem solid rgba(var(--color-foreground),.08);
    min-height: calc(100%+var(--inputs-margin-offset)+(2 * var(--inputs-border-width)));
    height: 100%
}
.search-modal__content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 5rem 0 1rem;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
    position: relative
}

.search-modal__content-bottom {
    bottom: calc((var(--inputs-margin-offset) / 2))
}
.search-modal__form {
    width: 100%
}

.search-modal__close-button {
    position: absolute;
    right: .3rem
}

@media screen and (min-width: 750px) {
    .search-modal__close-button {
        right:1rem
    }

    .search-modal__content {
        padding: 0 6rem
    }
}
@media screen and (min-width: 990px) {
    .search-modal__form {
        max-width:74.2rem
    }

    .search-modal__close-button {
        position: initial;
        margin-left: .5rem
    }
}
@media (max-width: 750px) {
    .search-modal {
        min-height:calc(100%+2rem+var(--inputs-margin-offset)+(2 * var(--inputs-border-width)));
        padding-bottom: 10px
    }

    .search-modal__form .field__input,.search-modal__form .field__button {
        height: 3.5rem
    }

    .search-modal__form .field__label {
        top: calc(1.1rem + var(--inputs-border-width));
        line-height: 1
    }
}
.header__icon--menu .icon {
    display: block;
    position: absolute;
    opacity: 1;
    transform: scale(1);
    transition: transform 150ms ease,opacity 150ms ease;
    position: relative;
    transform: none;
    top: 0;
    width: 100%;
    height: 100%;
    right: 0;
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    min-height: 2rem
}

details:not([open])>.header__icon--menu .icon-close,details[open]>.header__icon--menu .icon-hamburger {
    visibility: hidden;
    opacity: 0;
    transform: scale(1);
    display: none
}
.header__inline-menu {
    margin-left: -1.2rem;
    grid-area: navigation;
    display: none
}
@media screen and (min-width: 990px) {
  .header__inline-menu {
      display:block
  }
  .header--middle-left .header__inline-menu {
      margin-left: 0
  }
}
.header__menu-item {
    padding: 1.6rem 1.75rem;
    text-decoration: none;
    color: rgba(var(--color-foreground),1);
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    text-transform: uppercase
}
.header__menu-item span {
    position: relative;
    line-height: 1
}

.header__menu-item span:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -.4rem;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    -webkit-transition: 0.3s width ease-in;
    -moz-transition: 0.3s width ease-in;
    -o-transition: 0.3s width ease-in;
    transition: 0.3s width ease-in
}
.global-settings-popup,.header__submenu.global-settings-popup {
    border-radius: var(--popup-corner-radius);
    border-color: rgba(var(--color-foreground),var(--popup-border-opacity));
    border-style: solid;
    border-width: var(--popup-border-width);
    box-shadow: var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius) rgba(var(--color-shadow),var(--popup-shadow-opacity));
    z-index: -1
}
.badge {
    border-radius: var(--badge-corner-radius);
    display: inline-block;
    font-size: 1.2rem;
    letter-spacing: 0;
    line-height: 1;
    padding: .5rem .8rem;
    text-align: center;
    background-color: rgb(var(--color-badge-background));
    color: rgb(var(--color-badge-foreground));
    word-break: break-word;
    text-transform: uppercase
}

.gradient {
    background: rgb(var(--color-background));
    background: var(--gradient-background);
    background-attachment: fixed
}
.ratio {
    display: flex;
    position: relative;
    align-items: stretch
}

.ratio::before {
    content: "";
    width: 0;
    height: 0;
    padding-bottom: var(--ratio-percent)
}

.content-container {
    border-radius: var(--text-boxes-radius);
    border: var(--text-boxes-border-width) solid rgba(var(--color-foreground),var(--text-boxes-border-opacity));
    position: relative
}

.content-container:after {
    content: "";
    position: absolute;
    top: calc(var(--text-boxes-border-width) * -1);
    right: calc(var(--text-boxes-border-width) * -1);
    bottom: calc(var(--text-boxes-border-width) * -1);
    left: calc(var(--text-boxes-border-width) * -1);
    border-radius: var(--text-boxes-radius);
    box-shadow: var(--text-boxes-shadow-horizontal-offset) var(--text-boxes-shadow-vertical-offset) var(--text-boxes-shadow-blur-radius) rgba(var(--color-shadow),var(--text-boxes-shadow-opacity));
    z-index: -1
}
@media screen and (max-width: 749px) {
    .content-container--full-width-mobile {
        border-left:none;
        border-right: none;
        border-radius: 0
    }

    .content-container--full-width-mobile:after {
        display: none
    }
}
@media (prefers-reduced-motion:no-preference) and (hover: hover) {
  :root {
      --easter-egg: none;
      --sparkle: url(./sparkle.gif)
  }
}
.loading__spinner {
    position: absolute;
    z-index: 1;
    width: 1.8rem
}

.loading__spinner {
    width: 1.8rem;
    display: inline-block
}
html {
    scroll-behavior: smooth
}

body::-webkit-scrollbar {
    width: 5px
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #fff;
    border-radius: 0
}

body::-webkit-scrollbar-thumb {
    border-radius: 0;
    -webkit-box-shadow: inset 0 0 6px #9980ba
}
.font-regular {
    font-weight: 400
}

.font-medium {
    font-weight: 500
}
.body-font {
    font-family: var(--font-body-family)
}
.heading-with-icon {
    position: relative
}

.heading-with-icon:after {
    content: "";
    display: inline-block;
    margin: 0 0 0 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

@media (min-width: 750px) {
    .bestseller-icon:after {
        background-image:url(/cdn/shop/files/Bestseller.png?v=1734330751);
        width: 1.5rem;
        height: 3rem;
        filter: invert(46%) sepia(72%) saturate(535%) hue-rotate(294deg) brightness(107%) contrast(77%)
    }
}

@media (max-width: 749px) {
    .bestseller-icon:after {
        background-image:url(/cdn/shop/files/Bestseller.png?v=1734330751);
        width: .8rem;
        height: 3rem;
        filter: invert(46%) sepia(72%) saturate(535%) hue-rotate(294deg) brightness(107%) contrast(77%);
        margin: 0 30px -5px 7.2px
    }
}
.back_to_top {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    text-transform: uppercase;
    color: #eadfd4;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
    text-decoration: none;
    font-size: 1.1rem
}
@media (max-width: 989px) {
  .back_to_top {
      right:1rem;
      font-size: 1rem
  }
}
.overflow-hidden .back_to_top,.overflow-hidden-mobile .back_to_top,.overflow-hidden-tablet .back_to_top,.overflow-hidden-desktop .back_to_top {
    display: none!important
}
.header .icon {
    fill: rgb(var(--color-foreground))
}
@media (max-width: 749px) {
  .button {
      min-width: 15rem;
      min-height: 4rem;
      padding: 0 1rem;
      font-size: 1.1rem;
      letter-spacing: 0
  }
}
.cart__ctas a.cart__checkout-button {
    display: none
}
a.cart__checkout-button+button {
    margin-top: 0
}
.button {
    min-width: 300px
}
@media screen and (max-width: 749px) {
  .button {
      min-width:150px
  }
}
.header .icon-hamburger,.header .icon-hamburger+.icon-close {
    width: 1.6rem;
    height: 1.6rem;
    min-height: 1.6rem;
    min-width: 1.6rem
}
#Details-Drawer-localization-drawer .drawer__header {
    padding-bottom: 2.5rem
}

@media (max-width: 749px) {
  header .disclosure__list-wrapper.country-selector {
      height: calc(100% - 4rem);
      max-height: none
  }
  .disclosure__link>span:first-of-type {
      display: none
  }
  .disclosure__link:hover,.disclosure__link[aria-current="true"] {
      color: #9980ba!important
  }
}
#AccountDrawer .drawer__heading {
    padding-right: 6rem
}

#AccountDrawer .drawer__heading:after {
    bottom: 5px;
    background-image: url(/cdn/shop/files/image_8fb3e0db-97ed-4183-abe8-26152e855be8.png?v=1738910616);
    filter: invert(51%) sepia(3%) saturate(4293%) hue-rotate(129deg) brightness(119%) contrast(83%);
    width: 56px;
    height: 9px
}

.customer.drawer-register-form,.customer.drawer-login-form {
    width: 100%;
    max-width: 100%!important;
    padding: 0!important;
    margin: 0!important
}

.customer.drawer-register-form {
    display: none
}

.customer.drawer-register-form>form,.customer.drawer-login-form>form {
    margin: 0
}

.customer.drawer-register-form>form button,.customer.drawer-login-form>form button {
    margin: 2rem 0
}

.customer.drawer-register-form>form .custom-form-field,.customer.drawer-login-form>form .custom-form-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 500
}
@media only screen and (max-width: 750px) {
    .custom-product-variants {
        gap:.75rem
    }

    .badge {
        font-size: 10px
    }
}

div.card-information {
    margin-top: 10px
}

ul,ul li,ol,ol li,table,tr,th,td {
    font-weight: 300
}

@media only screen and (max-width: 750px) {
    section {
        scroll-margin-top:192px
    }
}
.price__regular,.price__sale {
    display: inline-block!important
}
.mm-trust-bar {
    width: 100%;
    background: #fdfaf5;
    border-bottom: 1px solid #eadfd4;
    padding: 10px 32px
}

.mm-trust-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: center
}

.mm-trust-item {
    position: relative;
    text-align: center;
    padding: 0 24px
}

.mm-trust-item strong {
    display: block;
    font-size: 11px;
    line-height: 1.1;
    letter-spacing: .08em;
    font-weight: 600;
    color: #1f1f1f
}

.mm-trust-item span {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.25;
    color: #7a736d
}

.mm-trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 34px;
    background: #eadfd4
}

@media screen and (max-width: 749px) {
    .mm-trust-bar {
        padding:9px 8px
    }

    .mm-trust-bar-inner {
        max-width: 100%
    }

    .mm-trust-item {
        padding: 0 8px
    }

    .mm-trust-item strong {
        font-size: 9px;
        letter-spacing: .04em
    }

    .mm-trust-item span {
        font-size: 9px;
        margin-top: 3px
    }

    .mm-trust-item:not(:last-child)::after {
        height: 30px
    }
}
