/** Shopify CDN: Minification failed

Line 2098:70 Expected ":"
Line 2187:18 "margn-top" is not a known CSS property

**/
product-info {
  display: block;
}

.product {
  margin: 0;
  column-gap: 0;
}

.product__media-wrapper {
  padding-bottom: 0;
  position: relative;
}

.product__thumbnails-wrapper,
.no-js .product__thumbnails-wrapper {
  display: none;
}

media-gallery {
  display: block;
}

media-gallery .media-wrapper.media-wrapper--intrinsic-size {
  padding-left: calc((100% - var(--intrinsic-width)) / 2);
  padding-right: calc((100% - var(--intrinsic-width)) / 2);
  background-color: transparent;
}

@media screen and (min-width: 750px) {
  .product--right {
    flex-direction: row-reverse;
  }

  .product__thumbnails-wrapper {
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    right: -2.3rem;
    bottom: 0;
    width: 4.6rem;
    pointer-events: none;
  }

  .product__thumbnails {
    position: sticky;
    top: 6rem;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 6rem 0 0;
    display: grid;
    row-gap: 0.6rem;
    pointer-events: visible;
  }

  .product__thumbnail {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 4rem rgba(var(--color-foreground), 0.2);
  }

  .product__thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 0 0.2rem rgb(var(--color-background));
    transition: box-shadow var(--duration-default) ease;
  }

  .product__thumbnail.is-active::after {
    box-shadow: inset 0 0 0 0.2rem rgb(var(--color-foreground));
  }

  .product__thumbnails .media {
    pointer-events: none;
    background-color: rgba(var(--color-foreground), 0.06);
    transition: transform var(--duration-long) ease;
  }

  .product__thumbnails .media-wrapper.loading {
    box-shadow: inset 0 0 0 0.2rem rgb(var(--color-background));
  }

  .product__thumbnails .deferred-media__poster-button {
    position:absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 0.4rem;
    pointer-events: none;
    color: rgb(var(--color-background));
    background-color: rgba(var(--color-foreground), 0.9);
  }
}

@media screen and (min-width: 990px) {
  .product__thumbnails-wrapper {
    width: 6rem;
    right: -3rem;
  }
}

@media screen and (hover: hover) {
  .product__thumbnail:hover::after {
    box-shadow: inset 0 0 0 0.3rem rgb(var(--color-background));
  }

  .product__thumbnail.is-active:hover::after {
    box-shadow: inset 0 0 0 0.3rem rgb(var(--color-foreground));
  }

  .product__thumbnail:hover .media {
    transform: scale(1.1);
  }
}

.product__info-wrapper {
  padding-bottom: 0;
}

.product__media-wrapper .slider-mobile--overlay .slider-buttons {
  top: 50%;
  transform:translateY(-50%);
  margin-bottom: 0;
  justify-content:space-between;
  width:100%;
}

.product__media-wrapper .slider-mobile--overlay .slider-button {
  width: 3.6rem;
  height: 3.6rem;
  text-align: center;
  border-radius:50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 750px) {
  .product__media-wrapper .slider-mobile--overlay .slider-button {
    width: 5rem;
    height: 5rem;
  }
  .product--thumbnail_slider .product__media-gallery,
  .product--stacked .product__info-container--sticky,
  .product--columns .product__info-container--sticky {
    display: block;
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .product--right .product__info-container {
    padding-inline-start: 0;
    padding-inline-end: 5rem;
  }

  .product__info-container {
    padding-inline-start: 2rem;
  }

  .product__media-wrapper .slider-buttons {
    display: none;
  }

  .product--thumbnail_slider:not(.product--hide-thumbnails) .product__media-item:not(.is-active) {
    display: none;
  }
}

@media screen and (min-width: 990px) {
  .product--right .product__info-container {
    padding-inline-start: 0;
    padding-inline-end: 3rem;
  }

  .product__info-container {
    padding-inline-start: 3rem;
  }

  .product--large:not(.product--no-media) .product__media-wrapper,
  .product--small:not(.product--no-media) .product__info-wrapper {
    max-width: 56%;
    width: calc(56% - var(--grid-horizontal-spacing) / 2);
  }

  .product--large:not(.product--no-media) .product__info-wrapper,
  .product--small:not(.product--no-media) .product__media-wrapper {
    max-width: 44%;
    width: calc(44% - var(--grid-horizontal-spacing) / 2);
  }

  .product--medium:not(.product--no-media) .product__media-wrapper,
  .product--medium:not(.product--no-media) .product__info-wrapper {
    max-width: 50%;
    width: calc(50% - var(--grid-horizontal-spacing) / 2);
  }
}

/* Dynamic checkout */

.shopify-payment-button__button {
  font-size: calc(var(--font-button-size) * 0.8);
  letter-spacing: 0.3rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  min-width: 12rem;
  min-height: 3.6rem;
  font-weight: 600;
  border-radius: var(--button-radius);
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-family: var(--font-button-family);
  margin-top: var(--button-shadow-vertical-offset);
}

@media screen and (min-width: 750px) {
  .shopify-payment-button__button {
    min-height: 4.6rem;
    font-size: var(--font-button-size);
  }
}

.shopify-payment-button__button--unbranded {
  color: rgb(var(--color-button-text));
  background-color: rgb(var(--color-button-background));
  border: var(--button-border-width) solid rgb(var(--color-button-border));
  transition-property: color, background-color, box-shadow;
  transition-duration: var(--duration-long);
  transition-timing-function: ease;
  box-shadow: var(--button-shadow-horizontal-offset) var(--button-shadow-vertical-offset) rgba(var(--color-shadow), var(--shadow-opacity));
}

@media screen and (hover: hover) {
  .shopify-payment-button__button--unbranded::after {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transform: skew(-15deg);
    background-image: linear-gradient(90deg, transparent, rgba(var(--color-button-text), 0.25), transparent);
  }
  
  .shopify-payment-button__button--unbranded:hover:not([disabled]) {
    box-shadow: none;
    background-color: rgba(var(--color-button-background), 0.85);
    transition-delay: var(--duration-default);
  }

  .shopify-payment-button__button--unbranded:hover::after {
    animation: shine var(--duration-animate) ease;
  }
}

.shopify-payment-button__more-options {
  display:none;
  margin: 1.6rem 0 1rem;
  font-size: 1.2rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  letter-spacing: 0.05rem;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

/* Product form */

.product-form {
  display: block;
}

.product-form__error-message-wrapper:not([hidden]) {
  display: flex;
  align-items: flex-start;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.product-form__error-message-wrapper svg {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.7rem;
  margin-top: 0.5rem;
}

/* Form Elements */
.product-form__input {
  flex: 0 0 100%;
  padding: 0;
  margin: 1.2rem 0 0 0;
  min-width: fit-content;
  border: none;
  display: flex;
  flex-wrap: wrap;
}
.product-form__input + .product-form__input{
  margin-top: 0.8rem;
}
noscript .product-form__input {
  margin: 2rem 0 0;
}

variant-radios,
variant-selects {
  display: block;
}

.product-form__input--dropdown {
  margin-bottom: 1.6rem;
}

.product-form__input .form__label {
  font-size: 1.4rem;
  width: 100%;
  padding-inline-start: 0;
}

fieldset.product-form__input .form__label {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
  display:flex;
  justify-content:space-between;
  align-items:start;
  flex-wrap: nowrap;
}

.product-form__input .form__label-info {
  display: inline-block;
  color: rgba(var(--color-foreground), 0.7);
  text-transform: none;
}

.product-form__input .form__facet-checkbox,
.product-form__input .form__facet-radio {
  position: relative;
  display: flex;
  align-items: center;
  word-break: break-word;
  line-height: 1.6rem;
  cursor: pointer;
}

.product-form__input .form__facet-checkbox input[type=checkbox] {
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 0.1rem;
  width: 0.1rem;
}

.product-form__input .form__facet-checkbox .icon {
  color: rgb(var(--color-border));
  background-color: rgb(var(--color-background));
  margin-inline-end: 1rem;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
}

.product-form__input .form__facet-checkbox .icon path:last-child {
  color: rgb(var(--color-foreground));
}

.product-form__input .form__facet-radio .icon {
  display: block;
  width: 2rem;
  height: 2rem;
  margin-inline-end: 1rem;
  position: relative;
  border: 1px solid rgb(var(--color-border));
  border-radius: 50%;
}

.product-form__input .form__facet-radio .icon::after {
  content: '';
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: currentColor;
  border-radius: 50%;
}

.product-form__input .form__facet-checkbox .icon path:last-child,
.product-form__input .form__facet-radio .icon::after {
  opacity: 0;
  transition: opacity var(--duration-short) ease;
}

.product-form__input .form__facet-checkbox > input[type=checkbox]:checked ~ .icon-checkmark path:last-child,
.product-form__input .form__facet-radio > input[type=radio]:checked ~ .icon::after {
  opacity: 1;
}

.product-form__input fieldset.product-form__input {
  flex-direction: column;
  row-gap: 1rem;
}

.product-form__input .form__popup {
}

.product-form__input .form__popup .link {
  align-items: center;
  font-size: inherit;
  line-height: 1.2;
}

.product-form__input input[type=radio] {
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 0.1rem;
  width: 0.1rem;
}

.product-form__input input[type=radio] + label {
  box-shadow: inset 0 0 0 0.1rem rgb(var(--color-border));
  color: rgb(var(--color-label,--color-foreground));
  margin-top: 0;
  margin-bottom: 0.8rem;
  margin-inline-end: 1rem;
  padding: 0.4rem 1rem;
  min-width: 4rem;
  min-height: 3rem;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  display: flex;
  flex-direction:column;
  justify-content:center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition-property: color, box-shadow;
  transition-timing-function: ease;
  transition-duration: var(--duration-default);
  border-radius: min(var(--button-radius), 1rem);
}

@media screen and (hover: hover) {
  .product-form__input input.button-input__input:not(:disabled):not([data-crossout]) + label:hover {
    box-shadow: inset 0 0 0 0.2rem rgb(var(--color-foreground));
  }
}

.product-form__input input.button-input__input + label::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  width: calc(100% - 2rem);
  border-bottom: 0.1rem solid rgb(var(--color-border));
  transform: rotate(-30deg);
  opacity: 0;
  transition: opacity var(--duration-default) ease;
}

.product-form__input input.button-input__input + label::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: background-color var(--duration-default) ease;
  border-radius: min(var(--button-radius), 1rem);
}

.product-form__input input[type=radio]:checked + label {
  color: rgb(var(--color-background));
}

.product-form__input input.button-input__input:checked + label {
  box-shadow: inset 0 0 0 0.2rem rgb(var(--color-foreground));
}

.product-form__input input.button-input__input:checked + label::after {
  background-color: rgb(var(--color-foreground));
}

.product-form__input input[type=radio]:disabled + label,
.product-form__input input[type=radio][data-crossout] + label {
  color: rgb(var(--color-border));
  overflow: hidden;
}

.product-form__input input[type=radio]:disabled + label {
  cursor: not-allowed;
}

.product-form__input input[type=radio]:disabled + label::before,
.product-form__input input[type=radio][data-crossout] + label::before {
  opacity: 1;
}

.product-form__input input.button-input__input:disabled + label::after,
.product-form__input input.button-input__input[data-crossout] + label::after {
  background-color: transparent;
}

.product-form__input input[type=radio]:focus-visible + label {
  outline: 0.2rem solid rgb(var(--color-keyboard-focus));
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
  0 0 0.5rem 0.4rem rgba(var(--color-keyboard-focus), 0.5);
}

@media screen and (min-width: 750px) {
  .product-form__input input[type=radio] + label{
    padding: 0.6rem 1.6rem;
    min-height: 4rem;
  }
}

/* Fallback */
.product-form__input input[type=radio].focused + label,
.no-js .shopify-payment-button__button [role=button]:focus + label {
  outline: 0.2rem solid rgb(var(--color-keyboard-focus));
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
  0 0 0.5rem 0.4rem rgba(var(--color-keyboard-focus), 0.5);
}

/* No outline when focus-visible is available in the browser */
.no-js .product-form__input input[type=radio]:focus:not(:focus-visible) + label {
  box-shadow: none;
}

/* Color swatches */
.product-form__input {
  --swatch-input--size: 4.4rem;
}

.product-form__input .swatch {
  --swatch--size: var(--swatch-input--size, 4.4rem);
  --swatch--border-radius: var(--swatch-input--border-radius, 50%);
  display: block;
  width: var(--swatch--size);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--swatch--background);
  background-position: var(--swatch-focal-point, initial);
  background-origin: border-box;
  background-size: cover;
  outline: 0.1rem solid rgba(var(--color-foreground), 0.15);
  box-shadow: inset 0 0 0 0.3rem var(--swatch-outline-color);
  border-radius: var(--swatch--border-radius);
  transition: scale var(--duration-long) ease;
  scale: 0.85;
  overflow: hidden;
}

.product-form__input .swatch-input__input + .swatch-input__label {
  padding: 0;
  min-width: auto;
  min-height: auto;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-inline-end: 0.5rem;
  margin: .7rem .7rem .2rem 0;
}

.product-form__input .swatch--square {
  --swatch--border-radius: var(--swatch-input--border-radius, 0rem);
}

.product-form__input .swatch-input__input + .swatch-input__label.swatch-input__label--variant {
  --swatch-input--size: 4.6rem;
  margin-inline-end: 0.9rem;
}

.product-form__input .swatch-input__input[disabled] + .swatch-input__label .swatch {
  opacity: 0.7;
}

.product-form__input .swatch-input__input:not([disabled]) + .swatch-input__label:hover .swatch,
.product-form__input .swatch-input__input:checked + .swatch-input__label .swatch {
  outline-width: 0.25rem;
  outline-color: rgb(var(--color-foreground), 1);
  scale: 1;
}

.product-form__input .swatch-input__input[data-crossout] + label > .swatch:after {
  --diagonal--size: calc(var(--swatch--size)* 1.414);
  --crossed-line--size: .1rem;
  content: "";
  position: absolute;
  bottom: calc(var(--crossed-line--size)* -.5);
  left: 0;
  width: var(--diagonal--size);
  height: var(--crossed-line--size);
  background-color: var(--swatch-outline-color);
  transform: rotate(-45deg);
  transform-origin: left;
}

.product-form__input--dropdown {
  --swatch-input--size: 2.8rem;
}

.product-form__input--dropdown .dropdown-swatch + select {
  padding-left: calc(2.4rem + var(--swatch-input--size));
}

.product-form__input--dropdown .dropdown-swatch {
  position: absolute;
  left: 1.6rem;
  top: calc(50% - var(--swatch-input--size) / 2);
  width: var(--swatch-input--size);
  height: var(--swatch-input--size);
  z-index: 1;
}

.product-form__input--dropdown .dropdown-swatch .swatch {
  outline: 0.1rem solid rgba(var(--color-foreground), 0.15);
  box-shadow: inset 0 0 0 0.1rem var(--swatch-outline-color);
}

.product-form__buttons {
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content:space-between;
}

.product-form__quantity {
  align-self: center;
  display: flex;align-items: center;gap: 1rem;border: 1px solid #DBBAA8;padding: 0.6rem;border-radius: 50px;
}

@media screen and (min-width: 480px) {
  .product-form__quantity + .product-form__submit {
    width: calc(100% - 14rem);
    flex-grow: 1;
  }

  .no-js .product-form__quantity + .product-form__submit {
    width: 100%;
  }
}


.product-form__submit[aria-disabled=true] + .shopify-payment-button,
.product-form__submit[disabled] + .shopify-payment-button {
  pointer-events: none;
}

@media screen and (forced-colors: active) {
  .product-form__submit[aria-disabled=true] {
    color: Window;
  }
}

/* Overrides */
.shopify-payment-button__more-options {
  color: rgb(var(--color-foreground));
}

.shopify-payment-button__button--hidden {
  display: none;
}

/* Product info */

.product__info-container > * + * {
  margin: 1.2rem 0 0;
}

.product__info-container .product__description {
  line-height: 1.4;
}

.product__info-container .product-form,
.product__info-container .product__description,
.product__info-container .share-button {
  margin: 2.5rem 0 0;
}

.product__info-container .product__accordion + .share-button,
.product__info-container .product-link__button + .share-button {
  margin-top: 1.5rem;
}

.product__info-container .spr-summary-starrating,
.product__info-container .rating {
  margin-top: -1rem;
}

.product__info-container .rating {
  display: block;
}

.product__info-container .rating .rating-star {
  --letter-spacing: 0.2;
  --font-size: 1.8;
}

.product__info-container .spacing-section {
  display: block;
  margin: 0;
  min-height: var(--spacing-section-mobile);
}

@media screen and (min-width: 990px) {
  .product__info-container .spacing-section {
    min-height: var(--spacing-section-desktop);
  }
}

.product__info-container .spacing-section + * {
  margin-top: 0;
}

.product__text {
  display: flex;
  align-items: center;
  justify-content:var(--text-alignment);
  margin-bottom: 1rem;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
}

.product__text .link {
  font-size: inherit;
  line-height: calc(1 + 0.4 / var(--font-body-scale));
}

.product__text .icon {
  fill: rgb(var(--color-foreground));
  height: calc(var(--font-heading-scale) * 2rem);
  width: calc(var(--font-heading-scale) * 2rem);
  margin-right: calc(var(--font-heading-scale) * 1rem);
}

a.product__text {
  display: block;
  text-decoration: none;
  color: rgba(var(--color-foreground), 0.75);
}

.product__text.caption-with-letter-spacing {
  text-transform: uppercase;
}

.product__text + .product__text {
  margin-top: 0.4rem;
}

.breadcrumb-wrapper + .product__title {
  margin-top: 2rem;
}

.product__title {
  margin-bottom: 1.5rem;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  column-gap: 3rem;
}

.product__title .product__heading {
  margin: 0;
  word-break: break-word;
}

@media screen and (min-width: 750px) {
  .product__title .price {
    margin-top: 0.6rem;
  }
  .product__info-container > * + * {
    margin: 2rem 0 0;
  }
}

.product__title .price .price__sale,
.product__title .price .price__last,
.product__title .price .unit-price {
  justify-content: flex-end;
}

.product__title .price .unit-price {
  margin-top: 0;
}

.product__title + .product__text.caption-with-letter-spacing,
.product__title + .product__sku {
  margin-top: -1rem;
}

.product__text.caption-with-letter-spacing + .product__title {
  font-weight: 600;
}

.breadcrumb + .product__title {
  margin-top: 1rem;
}

.product__sku + .rating {
  margin-top: 0;
}

.product__accordion .summary__title {
  padding: 0 1.5rem;
}

.product__accordion .accordion__title {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  display: flex;
  align-items: center;
  max-width: 100%;
}

.product__accordion .accordion__content {
  padding-inline-start: 1.5rem;
  padding-inline-end: 1.5rem;
  font-size: 1.6rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  /*max-height: 25rem;*/
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.product__accordion .accordion__content::-webkit-scrollbar {
  appearance: none;
  width: 0.9rem;
  background-clip: padding-box;
  border: 0.3rem solid transparent;
  border-radius: 1.6rem;
  background-color: rgba(var(--color-border), 0.3);
}

.product__accordion .accordion__content::-webkit-scrollbar-thumb {
  border: 0.3rem solid transparent;
  background-clip: padding-box;
  border-radius: 1.6rem;
  background-color: rgb(var(--color-border));
}

.product__accordion .accordion__content li {
  line-height: calc(1 + 0.4 / var(--font-body-scale));
}

.product__accordion + .product-link__button {
  margin-top: 0;
  border-top: 0;
}

.product-link__button {
  border-top: 0.1rem solid rgb(var(--color-border));
  border-bottom: 0.1rem solid rgb(var(--color-border));
}

.product-link__button a {
  line-height: 1;
  padding: 1.5rem 0;
  display: block;
  position: relative;
  text-decoration: none;
  color: rgb(var(--color-foreground));
}

.product-link__button .summary__title {
  display: flex;
  flex: 1;
}

.product-link__button .accordion__title {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  display: flex;
  align-items: center;
  max-width: 100%;
}

.product-link__button .icon-caret {
  position: absolute;
  top: 50%;
  margin-top: -0.3rem;
  right: 1.5rem;
  height: 0.6rem;
  transform: rotate(-90deg);
}

related-buttons {
  position: relative;
  display: block;
  transition: 0.6s;
  transform-style: preserve-3d;
}

related-buttons a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: rotateX(0);
}

related-buttons a:last-child:not(:only-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: rotateX(180deg);
}

related-buttons a > * {
  pointer-events: none;
}

related-buttons.is-flipped {
  transform: rotateX(180deg);
}

related-buttons.is-flipped a:first-child:only-child {
  transform: rotateX(180deg);
}

.product-countdown {
  margin-bottom: 3rem;
}

.product-countdown .countdown {
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  --color-border: var(--color-foreground);
}

.product-countdown .h4 {
  margin: 0 0 1rem;
}

.product-countdown svg {
  fill: currentColor;
  height: 1.6rem;
  margin-inline-end: 0.8rem;
  margin-bottom: -0.2rem;
}

.product-countdown--compact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
  background-color: rgb(var(--color-background));
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  border-radius: min(var(--button-radius), 0.8rem);
}

.product-countdown--compact .h4 {
  margin: 0;
}

.product-countdown--compact .countdown {
  background-color: transparent;
  width: auto;
  border: none;
  column-gap: 1rem;
  font-size: calc(var(--font-heading-scale) * 1.6rem);
  line-height: calc(1 + .3/max(1,var(--font-heading-scale)));
}

.product-countdown--compact .countdown__item {
  padding: 0;
  width: auto;
}

.product-countdown--compact .countdown__item + .countdown__item {
  border: none;
}

.product-separator hr {
  margin: 0;
}

.product-link__image {
  display: flex;
}

.product-link__image a {
  display: block;
  line-height: 1;
  width:100%;
}

.product-link__image img {
  max-width: 100%;
  width: auto;
  height: var(--image-height);
  border-radius: var(--image-radius);
}

.product-link__image.full-image img{
  width:100%;
  height:auto;
}

#ProductImages {
  display: block;
  position: relative;
  visibility: hidden;
  top: -7rem;
}

.product__info-container .price {
  line-height: calc(1 + 0.5 / var(--font-price-scale));
  letter-spacing: 0.13rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}

.product__info-container .price--sold-out .price__badge-sale {
  display: none;
}

.product__info-container .price .price__last {
  display: flex;
}

.product__info-container .price .unit-price,
.product__info-container .price .unit-price bdi,
.product__info-container .price--on-sale .price-item--regular bdi,
.product__info-container .price--on-discount .price-item--regular bdi
{
  font-size: calc(var(--font-heading-scale) * 2rem);
}

.product__info-container .price--large bdi {
  font-size: calc(var(--font-heading-scale) * 3.8rem);
  font-style: italic;
}

.product__info-container .price--medium bdi {
  font-size: calc(var(--font-heading-scale) * 2.6rem);
  font-style: italic;
}

@media screen and (min-width: 750px) {
  .product__info-container > *:first-child {
    margin-top: 0;
  }
}

.product__description-title {
  font-weight: 600;
}

.product--no-media {
  max-width: 57rem;
  margin: 0 auto;
}

.product--no-media .product__info-container {
  padding-inline-start: 0;
  padding-inline-end: 0;
}

.product--no-media .product__info-container .rating,
.product--no-media .product__inventory-item,
.product--no-media .product__tax {
  text-align: center;
}

.product--no-media .product__title,
.product--no-media .product__text,
.product--no-media .product-link__image {
  justify-content: center;
}

.product--no-media fieldset.product-form__input,
.product--no-media .product-form__input--dropdown,
.product--no-media .share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product__tax {
  margin-top: 0;
}

.product--no-media .product-link__button {
  justify-content: center;
}

.product--no-media .product-form__input--dropdown {
  flex-direction: column;
  max-width: 100%;
}

.product--no-media fieldset.product-form__input {
  flex-wrap: wrap;
  margin: 0 auto 1.2rem auto;
}

.product--no-media .product__info-container > modal-opener {
  display: block;
  text-align: center;
}

.product--no-media .price {
  justify-content: center;
}

/* Product media */

product-gallery {
  display: block;
  overflow: hidden;
  padding:0 2.5rem;
}

.product__media-list {
  margin-bottom: 0;
}

.slider.product__media-list {
  margin-top: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 749px) {
  .product__media-wrapper product-gallery {
    margin-bottom: 0.4rem;
  }
  product-gallery{padding:0;}

  .product--mobile-adapt .product__media-list {
    height: 0;
    padding-bottom: var(--force-image-ratio-percent);
  }
    .product--mobile-adapt .product__media-list.partial-media-list {
    height: 100%;
    padding-bottom: 0;
  }
}

.product__media-item--variant {
  display: none;
}

.product__media-item--variant:first-child {
  display: block;
}

[data-gang-option] {
  display: none;
}

[data-gang-option].gang__active {
  display: block;
}

.product__media-icon .icon {
  width: 1.4rem;
  height: 1.4rem;
}

.product__modal-opener--video .product__media-icon .icon {
  width: 2.4rem;
  height: 2.4rem;
}

.product__media-icon {
  color: rgb(var(--color-foreground));
  background-color: rgb(var(--color-background));
  box-shadow: 0 0 4rem rgba(var(--color-foreground), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.6rem;
  width: 3.6rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 1;
}

.product__media-video .product__media-icon {
  opacity: 1;
}

@media screen and (min-width: 750px) {
  .grid__item.product__media-item--full {
    width: 100%;
  }

  .product--columns .product__media-list {
    row-gap: var(--grid-horizontal-spacing);
    --grid-horizontal-spacing: 0.2rem;
  }

  .product--columns .product__media-item:not(.product__media-item--single):not(:only-child) {
    max-width: calc(50% - var(--grid-horizontal-spacing) / 2);
  }

  .product--columns .product__media-list .media-wrapper {
    opacity: 1;
    transform: translateZ(0);
  }

  .product--columns .thumbnail-slider {
    display: none;
  }

  .product__media-icon {
    right: 1.5rem;
    top: 1.5rem;
  }
}

@media screen and (min-width: 990px) {
  .product__media-icon {
    display: none;
  }
}

.product__media-item {
  padding-inline-start: 0;
  padding-bottom: 0;
}

.product__media-item > * {
  display: block;
  position: relative;
}

product-gallery .product__media-toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 990px) {
  product-gallery .product__media-toggle {
    cursor: none;
  }
}

.product-media-modal {
  background-color: rgb(var(--color-background));
  box-sizing: border-box;
  position: static;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}

.product-media-modal[open] {
  position: fixed;
  height: 100%;
  width: 100%;
}

.product-media-modal:not([open]) {
  content-visibility: hidden!important;
}

.product-media-modal:not([open]) * {
  display: none;
  content-visibility: hidden!important;
}

@media screen and (min-width: 750px) {
  .product-media-modal {
    padding: 0;
  }
}

.product-media-modal[open] {
  z-index: 101;
  opacity: 1;
  pointer-events: visible;
  transform: scale(1);
  transition-property: opacity, transform;
  transition-timing-function: ease;
  transition-duration: var(--duration-long);
}

.product-media-modal__content {
  height: 100vh;
  overflow: auto;
  width: 100%;
}

@supports (height: 100svh) {
  .product-media-modal__content {
    height: 100svh;
  }
}

.product__media-list .deferred-media {
  display: none;
}

@media screen and (min-width: 750px) {
  .product-media-modal__content {
    height: 100vh;
  }

  .product__modal-opener:not(.product__modal-opener--image) {
    display: none;
  }

  .product__media-list .deferred-media {
    display: block;
  }
}

.product-media-modal__content > * {
  width: 100%;
  height: auto;
  margin: auto;
}

.product-media-modal__content .media {
  background: none;
}

.product-media-modal__model {
  width: 100%;
}

.product-media-modal__toggle {
  color: rgb(var(--color-foreground));
  background-color: rgb(var(--color-background));
  box-shadow: 0 0 4rem rgba(var(--color-foreground), 0.2);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 1.2rem;
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  width: 4.4rem;
  height: 4.4rem;
}

.product-media-modal__content .deferred-media {
  width: 100%;
}

@media screen and (min-width: 750px) {
  .product-media-modal__toggle {
    width: 6rem;
    height: 6rem;
    right: 4.8rem;
    top: 3.5rem;
  }
}

@media screen and (min-width: 990px) {
  .product-media-modal__toggle {
    right: 4.3rem;
    top: 3rem;
  }
}

.product-media-modal__toggle .icon {
  pointer-events: none;
  display: block;
  position: relative;
  width: 2rem;
  height: 2rem;
  transform: rotate(45deg);
  transition: transform var(--duration-default) ease;
}

@media screen and (min-width: 750px) {
  .product-media-modal__toggle .icon {
    width: 3rem;
    height: 3rem;
  }
}

@media screen and (hover: hover) {
  .product-media-modal__toggle:hover .icon {
    transform: scale(0.8) rotate(135deg);
  }
}

/* Product share */

.share-button {
  display: block;
  position: relative;
}

/* Product popup */

.product-popup-modal {
  box-sizing: border-box;
  opacity: 0;
  position: fixed;
  visibility: hidden;
  z-index: -1;
  margin: 0 auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: url(cross.svg), url(cross.png), zoom-out;
  background-color: rgba(var(--color-overlay), 0.5);
  transition: opacity var(--duration-default) ease;
}

@media screen and (min-width: 750px) {
  .product-popup-modal {
    align-items: center;
  }
}

.product-popup-modal[open] {
  opacity: 1;
  visibility: visible;
  z-index: 101;
}

.product-popup-modal__content {
  background-color: rgb(var(--color-background));
  margin: 0 auto;
  position: relative;
  cursor: auto;
  max-width:72rem;
  min-width: 36rem;
  min-height: 28rem;
  border-radius:var(--card-radius);
}

.product-popup-modal__content img {
  max-width: 100%;
}

.product-popup-modal__content table {
  width: 100%;
}

@media screen and (max-width: 749px) {
  .product-popup-modal__content {
    width: 100%;
    max-width: 100%;
    border-top-left-radius: 0.8rem;
    border-top-right-radius: 0.8rem;
  }

  .product-popup-modal__content table {
    display: block;
    max-width: fit-content;
    overflow-x: auto;
    white-space: nowrap;
    margin: 0;
  }
}

.product-popup-modal__content table tbody tr:nth-child(odd) {
  background-color: rgba(var(--color-foreground), 0.06);
}

.product-popup-modal__opener {
  display: block;
}

.product-popup-modal__button {
  font-size: 1.6rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
}

.product-popup-modal__content-info {
  padding: 2.5rem 1.5rem;
  max-height: 80vh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

@media screen and (min-width: 750px) {
  .product-popup-modal__content-info {
    padding: 3rem 4.5rem;
  }
}

.product-popup-modal__content-info::-webkit-scrollbar {
  appearance: none;
  width: 0.9rem;
  background-clip: padding-box;
  border: 0.3rem solid transparent;
  border-radius: 1.6rem;
  background-color: rgba(var(--color-border), 0.3);
}

.product-popup-modal__content-info::-webkit-scrollbar-thumb {
  border: 0.3rem solid transparent;
  background-clip: padding-box;
  border-radius: 1.6rem;
  background-color: rgb(var(--color-border));
}

.product-popup-modal__content-info > * {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

@media screen and (max-width: 749px) {
  .product-popup-modal__content-info > * {
    max-height: 100%;
  }
}

.product-popup-modal__content-info > .h2 {
  word-break: break-word;
  margin-bottom: 1.5rem;
}

.product-popup-modal__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 2rem;
  right: 2rem;
  height: 4.4rem;
  width: 4.4rem;
  border-radius: 50%;
  color: rgb(var(--color-foreground));
  background-color: rgb(var(--color-background));
  box-shadow: 0 0 4rem rgba(var(--color-foreground), 0.2);
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  z-index: 1;
}

@media screen and (max-width: 749px) {
  .product-popup-modal__toggle {
    top: 0;
    right: 50%;
    margin-top: -5.5rem;
    margin-right: -2.2rem;
  }
}

.product-popup-modal__toggle .icon {
  pointer-events: none;
  position: relative;
  width: 2rem;
  height: 2rem;
  transition: transform var(--duration-default) ease;
  will-change: transform;
  transform: scale(1) rotate(45deg);
}

@media screen and (hover: hover) {
  .product-popup-modal__toggle:hover .icon {
    transform: scale(0.8) rotate(135deg);
  }
}

.product .slider.product__media-list::-webkit-scrollbar,
.product .slider.thumbnail-list::-webkit-scrollbar {
  display: none;
}

/* Product thumbnail */

.thumbnail-list {
  display: flex;
  flex: 1;
  max-width: 27rem;
  padding: 0.6rem;
  column-gap: 0.6rem;
  scroll-padding-inline-start: 0.6rem;
  background-color: rgb(var(--color-background));
  box-shadow: 0 0 4rem rgba(var(--color-foreground), 0.2);
}

@media screen and (min-width: 750px) {
  .product--stacked .thumbnail-list {
    display: none;
  }
}

.thumbnail-slider .thumbnail-list + .slider-buttons {
  position: absolute;
  width: 27rem;
  left: 50%;
  bottom: 0;
  margin-bottom: 0;
  transform: translate(-50%);
  height: 100%;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
}

.thumbnail-slider .slider-button {
  pointer-events: visible;
  background-color: transparent;
  width: 4.4rem;
  height: 4.4rem;
  text-align: center;
}

.thumbnail-slider .slider-button .icon {
  width: 1.4rem;
}

.thumbnail-slider .slider-button--prev {
  transform: translateX(-100%);
}

.thumbnail-slider .slider-button--prev .icon {
  transform: rotate(90deg);
}

.thumbnail-slider .slider-button--next {
  transform: translateX(100%);
}

.thumbnail-slider .slider-button--next .icon {
  transform: rotate(-90deg);
}

.thumbnail-slider .slider-button--next::after {
  content: none;
}

.thumbnail-list_item--variant:not(:first-child) {
  display: none;
}

@media screen and (max-width: 749px) {
  .product--zoom-disabled .product__modal-opener:not(.product__modal-opener--image) {
    display: none;
  }

  .product--zoom-disabled .product__media-list .deferred-media {
    display: block;
  }

  .product__modal-opener {
    width: 100%;
  }

  .product__modal-opener:not(.product__modal-opener--image) .product__media-icon .icon {
    width: 2.4rem;
    height: 2.4rem;
  }

  media-gallery .thumbnail-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -2rem;
    margin-bottom: 3rem;
  }

  .thumbnail-list {
    max-width: 25.6rem;
  }

  .thumbnail-list[data-media-count="2"] {
    max-width: 10.6rem;
  }
  
  .thumbnail-list[data-media-count="3"] {
    max-width: 15.6rem;
  }

  .thumbnail-list[data-media-count="4"] {
    max-width: 20.6rem;
  }

  .thumbnail-list__item.slider__slide {
    width: 4.4rem;
  }
}

@media screen and (min-width: 750px) {
  [data-animate-image] .product--thumbnail_slider use-animate[data-animate=fade-up] {
    transform: none;
  }

  .product--thumbnail_slider .thumbnail-slider {
    z-index: 5;
    display: flex;
    /*align-items: center;*/
    align-items:start;
    justify-content: center;
    /*margin-top: 3rem;*/
  }
/*
  .product--hide-thumbnails .thumbnail-slider {
    display: none;
  }*/

  .product--hide-thumbnails .product__media-list {
    position: relative;
    flex-wrap: inherit;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    display: flex;
    margin: 0;
    list-style: none;
  }

  .product--hide-thumbnails.product--adapt .product__media-list {
    height: 0;
    padding-bottom: var(--force-image-ratio-percent);
  }

  .product--hide-thumbnails .product__media-wrapper .slider-buttons {
    display: flex;
    justify-content: space-between;
    width:100%;
  }

  .product__media-gallery .slider-mobile-gutter .slider-button {
    display: none;
  }

  .product--thumbnail_slider .slider-mobile-gutter .slider-button {
    display: flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 0 5px #eee;
    margin:0.5rem;
  }

  .thumbnail-list.slider--tablet-up .thumbnail-list__item.slider__slide {
    width: 100%;padding:0.5rem 0;
  }
  
  .thumbnail-list.slider--tablet-up[data-media-count="2"] {
    max-width: 13.8rem;
  }
  
  .thumbnail-list.slider--tablet-up[data-media-count="3"] {
    max-width: 20.4rem;
  }
}

.thumbnail {
  width: 100%;
  cursor: pointer;
  border: none;
  background-color: transparent;
  border-radius:var(--card-radius);
}

.thumbnail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,.5);
  /*
  box-shadow: inset 0 0 0 0.1rem rgba(var(--color-foreground), .04);
  transition: box-shadow var(--duration-default) ease;*/
}

.thumbnail[aria-current]::after {
  background-color: rgba(255,255,255, 0);
  /*
  box-shadow: inset 0 0 0 0.2rem rgba(var(--color-foreground), 1);
  */
}

.thumbnail img {
  pointer-events: none;
  transition: transform var(--duration-long) ease;
}

@media screen and (hover: hover) {
  .thumbnail:not([aria-current]):hover::after {
    box-shadow: inset 0 0 0 0.2rem rgba(var(--color-foreground), .04);
  }

  .thumbnail:not([aria-current]):hover img {
    transform: scale(1.1);
  }
}

.thumbnail-list__item {
  position: relative;
}

.thumbnail-list__item .deferred-media__poster-button {
  bottom: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  pointer-events: none;
  color: rgb(var(--color-background));
  background-color: rgba(var(--color-foreground), 0.9);
}

/* Product gallery */

.gallery-cursor {
  display: none;
}

@media screen and (min-width: 990px) {
  .gallery-cursor {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.4rem;
    height: 6.4rem;
    position: fixed;
    left: 30rem;
    top: 30rem;
    z-index: 2;
    pointer-events: none;
    cursor: none;
    background-color: rgb(var(--color-background));
    box-shadow: 0 0 4rem rgba(var(--color-foreground), 0.2);
    border-radius: 50%;
    transform: scale(0);
    transform-origin: center;
    transition: transform var(--duration-long) ease;
  }
  
  .gallery-cursor.show {
    transform: scale(1);
  }
  
  .gallery-cursor .icon {
    pointer-events: none;
    display: block;
    position: relative;
    width: 3rem;
    height: 3rem;
    transition: transform var(--duration-default) ease;
  }
}

@media screen and (min-width: 750px) {
  [data-animate-image] .product:not(.featured-product) .product__media-no-animate use-animate:not(.loading),
  [data-animate-image] .product:not(.featured-product) .product__media-no-animate use-animate:not(.loading) > .image-animate {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

@media screen and (max-width: 749px) {
  [data-animate-image] .product:not(.featured-product) use-animate[data-animate^=fade] {
    opacity: 1;
    transform: none;
  }
}

/* Recipient form */
.recipient-form {
  /* (2.88[line-height] - 1.6rem) / 2 */
  --recipient-checkbox-margin-top: 0.64rem;

  display: block;
  position: relative;
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.recipient-form-field-label {
  margin: 0.6rem 0;
}

.recipient-form-field-label--space-between {
  display: flex;
  justify-content: space-between;
}

.recipient-checkbox {
  flex-grow: 1;
  font-size: 1.6rem;
  display: flex;
  word-break: break-word;
  align-items: flex-start;
  max-width: inherit;
  position: relative;
  cursor: pointer;
}

.no-js .recipient-checkbox {
  display: none;
}

.recipient-form > input[type='checkbox'] {
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  margin: var(--recipient-checkbox-margin-top) 0;
  top: 0;
  left: 0;
  z-index: -1;
  appearance: none;
  -webkit-appearance: none;
}

.recipient-fields__field {
  margin: 0 0 2rem 0;
}

.recipient-fields .field__label {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: calc(100% - 3.5rem);
  overflow: hidden;
}

.recipient-checkbox > svg {
  margin-top: var(--recipient-checkbox-margin-top);
  margin-right: 1.2rem;
  flex-shrink: 0;
}

.recipient-form .icon-checkmark {
  visibility: hidden;
  position: absolute;
  left: 0.28rem;
  z-index: 5;
  top: 0.4rem;
}

.recipient-form > input[type='checkbox']:checked + label .icon-checkmark {
  visibility: visible;
}

.js .recipient-fields {
  display: none;
}

.recipient-fields hr {
  margin: 1.6rem auto;
}

.recipient-form > input[type='checkbox']:checked ~ .recipient-fields {
  display: block;
  animation: animateMenuOpen var(--duration-default) ease;
}
.recipient-form > input[type='checkbox']:not(:checked, :disabled) ~ .recipient-fields,
.recipient-email-label {
  display: none;
}

.js .recipient-email-label.required,
.no-js .recipient-email-label.optional {
  display: inline;
}

.recipient-form ul {
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  padding-left: 4.4rem;
  text-align: left;
}

.recipient-form ul a {
  display: inline;
}

.recipient-form .error-message::first-letter {
  text-transform: capitalize;
}

@media screen and (forced-colors: active) {
  .recipient-fields > hr {
    border-top: 0.1rem solid rgb(var(--color-background));
  }

  .recipient-checkbox > svg {
    background-color: inherit;
    border: 0.1rem solid rgb(var(--color-background));
  }

  .recipient-form > input[type='checkbox']:checked + label .icon-checkmark {
    border: none;
  }
}

/*title*/
@media screen and (max-width: 749px) {
  .product__title .product__heading{font-size: 1.6rem;}
  
}


/*text*/
.product__text.has_text_bg{background:rgb(var(--text_background));padding:0.8rem;border-radius: var(--bg-radius);}

.size-guide-popup .link-with-icon .label{font-size:1.4rem;background-image:none;}
.size-guide-popup .link-with-icon .icon{margin-inline-start:0.2rem;margin-inline-end:0;}
.product-form__input .form__popup .link{background:#DBBAA8;border-radius:8px;padding:0.3rem 1rem;}

.tag-list{display: inline-flex;flex-wrap: wrap;justify-content: start;gap: 1rem;}
.tag-list .tag{background:var(--tag-bg);color: var(--tag-color, #000);border-radius:50px;padding:0.2rem 1.2rem;font-size:1.4rem;}
.product__title .tag-list{gap:0.6rem;}
.product__title .tag-list .tag{font-size:2rem;}
.variant-badge{text-transform: capitalize;background: #42190c;border-radius: 50px;padding: .2rem 1.2rem;color: #fff;font-size: 1.2rem;vertical-align: middle;}
.variant-badge-dot{position: absolute;top: -0.6rem;right: -0.6rem;width: 2rem;height: 2rem;background: #42190C;border-radius: 50%;border:0.2rem solid #fff;}
.option-badge-icon{position:relative;top: -2.6rem;height:0;width:100%;transition: all 0.3s ease;}
.product-form__input input.button-input__input:checked+label .option-badge-icon{background:none;}
.option-badge-icon img{width:auto;height:25px;object-fit: cover;}
.option-badge-icon.icon-right{text-align: right;transform: translate(1.6rem);}
.option-badge-icon.icon-left{text-align: left;transform: translate(-1.6rem);}
.option-badge-icon.icon-center{text-align:center;}
.buy_button_wrapper{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:2rem;flex:1 1 auto;}
.buy_button_wrapper .product-form__submit, .buy_button_wrapper .shopify-payment-button{flex:1 1 calc(50% - 2rem);}
.buy_button_wrapper .product-form__submit{background-color: rgb(var(--color-button-background));border-color:rgb(var(--color-button-background));padding:1rem;}
.buy_button_wrapper .product-form__submit:hover{background-color: rgb(var(--color-foreground));border-color: rgb(var(--color-foreground));}
.text-with-icon-block .list{display:flex;justify-content:space-around;align-items:center;gap:1rem;overflow-x: auto;scrollbar-width:auto;padding-bottom: 0.4rem;}
.text-with-icon-block ::-webkit-scrollbar{width:4px;height:4px;}
.text-with-icon-block .item{display:inline-flex;gap:0.4rem;align-items:center;flex: 0 0 auto;}
.text-with-icon-block .item span{line-height:1.25;}
.text-with-icon-block svg{width:22px;height:22px;fill: var(--color-icon);}
@media screen and (max-width: 749px) {
  .text-with-icon-block .item{flex-direction:column;text-align:center;}
  .template-product .quick-view .buy_button_wrapper{display:flex;}
  .text-with-icon-block .item span{font-size: 1.4rem;}
  .product__title .tag-list .tag{font-size:1.4rem;}
  .option-badge-icon img{height:16px;}
  .option-badge-icon{top:-1.45rem;}
}
@media screen and (max-width: 520px) {
  .text-with-icon-block .item{flex:1 1 25%;}
  .buy_button_wrapper{gap:1rem;}

  
}
/*description table*/
.streamlined-table th{background: #f2e2d1 !important;line-height:1.45;}
.streamlined-table th, .streamlined-table td{
  border: 1px solid #F2E2D1 !important;
  line-height:1.45;
}
.description-collapsible-table table tr:nth-child(n+5){ption-badge-ico
  display:none;
}

.description-collapsible-table table, .streamlined-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
  }
.description-collapsible-table table th, .description-collapsible-table table td, .streamlined-table th, .streamlined-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
  }
.description-collapsible-table th, .streamlined-table th {
    background-color: #f4f4f4;
    font-weight: bold;
  }
  
/*slider*/

.main-media-slider{position:relative;max-width:100%;grid-area:main-media;}
.main-media-slider .slider-button--prev, .quick-view .slider-button.slider-button--prev{transform:rotate(180deg);}
.main-media-slider .badge, .quick-view__left.product__media-wrapper .badge{position:absolute;top:1rem;left:1rem;z-index:3;}
@media screen and (min-width: 750px) {
  .thumbnail-list{flex-direction:column;max-height:32rem;}
  .thumbnail-list.slider.slider--tablet-up{
    overflow-x: hidden;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
  }
    .product--thumbnail_slider .product__media-gallery {
        display: grid;
       grid-template-areas: 'thumbs main-media';
       grid-template-columns:20% 80%;
        position: sticky;
        top: 150px;
        z-index: 1;
      width:100%;
    }
  .product--thumbnail_slider .product__media-gallery.no-thumbnail{grid-template-columns: 100%; grid-template-areas: 'main-media';}
   .product__media-gallery.no-thumbnail .slider-button, .product__media-gallery.no-thumbnail .media-gallery-dots{display:none;}
  .product__media-gallery.no-thumbnail product-gallery{padding:0;}
  .product--thumbnail_slider .thumbnail-slider{padding-right:1rem;grid-area: thumbs;}
 .main-media-slider{max-width:100%;grid-area:main-media;}
  .main-media-slider .badge{left:3.5rem;}
  .main-media-slider .slider-button .icon{width:3rem;height:3rem;}
}
@media screen and (min-width: 1280px) {
  .thumbnail-list{max-height:50rem;}
}
.media-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 1rem 0;
  overflow-x:hidden;
  padding:0.2rem;
}

.media-gallery-dot {
  width: 10px;
  height: 10px;
  background-color: #F2E2D1;
  border-radius: 50%;
  border: none;
  padding:0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.media-gallery-dot.is-active {
  background-color: #DBBAA8; 
  transform:scale(1.3);
  transition: all 0.3s ease;
}

@media screen and (max-width: 749px) {
  .product__media-list.partial-media-list .product__media-item{width:80%;}
  .product__media-list.partial-media-list .overlay-promo-image{width:80%;}
}


.product__info-wrapper .price-wrapper{display:flex;justify-content:space-between;align-items:center;}
.review-heart{padding:0.2rem 1rem;border-radius:1rem;border:0.1rem solid #DBBAA8;text-decoration:none;color: rgb(var(--color-link));line-height:1;}
.review-heart .icon-star path{fill:#DBBAA8;}
.review-heart .rating__count{vertical-align:super;}
#judgeme_product_reviews{scroll-margin-top: 180px;}
@media screen and (max-width: 749px) {
  .product__title{margn-top:2rem;}
  .review-heart{padding:0.2rem 0.6rem;font-size:1.2rem;}
  .review-heart svg{width:2rem;height:2rem;}
  #judgeme_product_reviews{scroll-margin-top: 80px;}
}

.quick-view .product-gallery{padding:0;}

.accordion__content video, .product-desc-media-list video{width:100%;height:auto;display:block;}

/*promotion block*/
.accordion.promo-content-accordion{border-top:none;border-bottom:none;margin-top:0;}
.promo-content-accordion .summary__title{justify-content:space-between;}
.promo-content-accordion .accordion__title{line-height:1.8;font-size:1.3rem;}
.accordion.promo-content-accordion summary{padding:0;}
.promo-content-accordion details>summary svg{transition:rotate 0.5s ease-in-out;}
.promo-content-accordion details[open]>summary svg{transform:rotate(180deg);transition:rotate 0.5s ease-in-out;}
.promo-content-accordion .accordion__content{line-height:1.8;padding-bottom:0;}
.promo-content-accordion .accordion__content p{margin:0;font-size:1.3rem;}
.promo-page-warpper.has_background_image{background-color:#f8f8f8;background-image:var(--background-image);background-repeat:no-repeat;background-size:cover;background-position:center;padding:1.2rem 1.6rem;color:#fff;}
.promo-page-warpper.has_background_image .accordion .summary__title .icon{fill:#fff;}
/*property popup*/
.product-popup-modal__opener .field__input{display:none;}
.product-popup-modal__opener .form__label{font-size:1.6rem;text-align:left;margin-bottom:0;cursor:pointer;}
.product-popup-modal__button{white-space:unset;}
/* deal price popup*/
.deal-price-popup-modal .product-popup-modal__content{max-width:90rem;}
.deal-price-popup-modal .heading{text-align:center;padding-bottom:1rem;border-bottom:0.1rem solid #f0f0f0;}
.deal-price-popup-modal .bg{background:rgb(242,226, 209);padding:1rem;border-radius:10px;}
.deal-price-popup-modal p.bg{padding: 0.4rem;text-align: center;margin: 1rem 0;}
.deal-price-popup-modal .tips{font-size:1rem;}
.calculate-group{display:flex;gap: 1rem;text-align: center;justify-content: space-around;padding: 0.5rem;background:rgb(242,226, 209);border-radius:10px;}
.calculate-group .calculate-price{font-weight:600;font-size:1.8rem;}
.calculate-group .desc{font-size:1.2rem;line-height:1.2;}
.deal-price-popup-modal .container{display:flex;justify-content:space-between;align-items:start;gap:2rem;flex-wrap:wrap;}
.deal-price-popup-modal .bubble{margin:1rem 0;padding:1rem;display:flex;justify-content:space-between;align-items:start;}
.deal-price-popup-modal .bubble:after{left:auto;right:16%;}
.deal-price-popup-modal .bubble p{margin-bottom:1rem;}
.deal-price-popup-modal .bubble p:last-child{margin-bottom:0;}
.deal-price-popup-modal p{margin:0;}
.deal-price-popup-modal .wrapper{flex:1;}
.deal-price-popup-modal .discount-wrapper .item{margin-bottom:1rem;padding:1.9rem;display:flex;justify-content:space-between;align-items:start;gap:2rem;border-radius:10px;}
.deal-price-popup-modal h4{margin:0;}
.deal-price-popup-modal ul{padding:0;margin:0;list-style:none;}
.text-with-icon-block, .text-with-icon-block a{color:rgb(var(--color-foreground));text-decoration: none;}
.deal-price-popup-modal .info p{font-size:1.2rem;margin-top:0.6rem;}
.product__info-container .complementary-products .price--on-sale .price-item--regular bdi{font-size:1.4rem;}
@media screen and (max-width: 989px) {
  .product__info-container .price--large bdi{  font-size: calc(var(--font-heading-scale)* 2.6rem);}
  .product__info-container .price .unit-price, .product__info-container .price .unit-price bdi, .product__info-container .price--on-sale .price-item--regular bdi, .product__info-container .price--on-discount .price-item--regular bdi{font-size: calc(var(--font-heading-scale)* 1.6rem);}
}

@media screen and (max-width: 749px) {
  .product-popup-modal__content-info{padding:1rem;}
  .deal-price-popup-modal .container{gap:1rem;}
  .deal-price-popup-modal .bubble{padding:1rem;}
  .deal-price-popup-modal .wrapper .h3{margin-top:0.2rem;}
  .deal-price-popup-modal .discount-wrapper .h3{display:flex;justify-content:center;}
  .deal-price-popup-modal .discount-wrapper .h3 span{position:relative;text-align:center;display:block;}
  .deal-price-popup-modal .discount-wrapper .h3 span:before{content: '';position:absolute;top:50%;left:-25%;transform:translateY(-50%);width:20px;height:1px;background:rgb(var(--color-foreground));}
  .deal-price-popup-modal .discount-wrapper .h3 span:after{content: '';position:absolute;top:50%;right:-25%;transform:translateY(-50%);width:20px;height:1px;background:rgb(var(--color-foreground));}
  .deal-price-popup-modal .discount-wrapper .item{padding:0.6rem 1rem;}
  .product-popup-modal__opener .form__label{font-size:1.2rem;}
  .line-item-property-opener-wrapper.product-popup-opener-wrapper .product-popup-modal__button{padding:0.6rem;}
}

.product__info-container .promo-warpper:not(first-child){margin-top:1rem;}

.product-form__input.item_property_input{display:inline-flex;}
.product-form__input.item_property_input.invisible{display:none;}
.free-gift-input .box{width:120px;height:auto;border: 1px solid rgb(var(--color-foreground));background: rgba(var(--color-foreground), 0.05);padding:2px;text-align:center;border-radius:var(--card-radius);}
.free-gift-input .box img{width:100%;height:auto;}
.free-gift-input .box span{font-size:1rem;}

.product-form__input input[type=radio]:disabled+label.nonexistent{display:none;}

/*动态结账按钮*/
.sticky-cart shopify-accelerated-checkout{
  --shopify-accelerated-checkout-button-block-size:40px;
}
  .sticky-cart__form .shopify-payment-button__button--unbranded{min-height:4rem;font-size:1.4rem;}

  shopify-accelerated-checkout{
    --shopify-accelerated-checkout-button-block-size:5rem;
  }
@media screen and (max-width: 749px) {
  shopify-accelerated-checkout{
    --shopify-accelerated-checkout-button-block-size:40px;
  }
}

/*popup product details*/
.product-popup-opener-wrapper{position:relative;}
.product-popup-opener-wrapper.border-top{border-top: .1rem solid rgb(var(--color-border));}
.product-popup-opener-wrapper.border-bottom{border-bottom: .1rem solid rgb(var(--color-border));}
.product-popup-opener-wrapper + .product-popup-opener-wrapper{margin-top:0;}
.product-popup-opener-wrapper .link-with-icon .label{background-image:none;line-height:1;}
.product-popup-opener-wrapper table tr:nth-child(n+5) {
    display: none;
}
.product-popup-opener-wrapper .product-popup-modal__opener:hover{background:#fcfcfc;}
.product-popup-opener-wrapper .product-popup-modal__button{display:flex;justify-content:space-between;width:100%;padding:1.5rem 0;column-gap: 0.4rem;font-size:1.4rem;letter-spacing: .1rem;background:var(--label-background);border-radius:8px;}
.product-popup-opener-wrapper.border .product-popup-modal__button{justify-content:space-between;border-radius:0;}
.product-popup-modal__button .icon-caret{transform:rotate(270deg);margin-inline-end:0;}
.product-popup-opener-wrapper .product-popup-modal__button .btn-span{display:flex;align-items:center;}
.product-popup-opener-wrapper .btn-span svg{width:var(--icon-width);height:var(--icon-width);fill: var(--color-icon);}
.product-popup-opener-wrapper .tags-inner{display:flex;justify-content:start;gap:2rem;align-items:center;}
.product-popup-opener-wrapper .btn-span .label-inner{display:flex;justify-content:start;column-gap:1rem;row-gap:0;align-items:center;flex-wrap:wrap;margin-bottom:0.6rem;}
.product-popup-opener-wrapper .sub-label{font-size:1.2rem;}
.product-popup-opener-wrapper .link-with-icon .label{line-height:1.25;text-align:left;font-size: 1.6rem;}
.product-popup-opener-wrapper .tags-inner .tag{position:relative;padding-left:12px;}
.product-popup-opener-wrapper .tags-inner .tag:before{
  content: '';width:8px;height:8px;background: #f2e2d1;border-radius:50%;display:block;position:absolute;left:0;top:50%;transform:translateY(-50%);
}
.view-more-button{position: relative;bottom: 0;margin: 0 auto;left: 0;right: 0;height: 50px;text-align: center;display: flex;justify-content: center;align-items: center;width: 100%;/*background-image: linear-gradient(to bottom, rgba(255, 255, 255, .8) 0%, #f2e2d1 100%);*/}
.view-more-button .link{background-image: linear-gradient(to top, rgb(var(--color-border)) 0px 0px), linear-gradient(to top, #42190c 0px, #42190c 0px);}
@media screen and (max-width: 749px) {
  .product-popup-opener-wrapper .btn-span .label-inner{column-gap:0.2rem;}
  .product-popup-opener-wrapper .btn-span svg{width:2.6rem;height:2.6rem;}
  .product-popup-opener-wrapper .tags-inner{gap:0.8rem;}
  .product-popup-opener-wrapper .link-with-icon .label{font-size:1.4rem;}
  .product-popup-opener-wrapper .tags-inner .tag{font-size:1.2rem;}
}
/*top navigation*/
top-navigation{display:none;}
@media screen and (max-width: 749px) {
  top-navigation.top-nav-sticky{display:block;}
  top-navigation{position:fixed;top:62px;left:0;right:0;width:100%;background:rgb(var(--color-background));z-index:8;border-top:1px solid #f0f0f0;border-bottom:1px solid #f0f0f0;}
  top-navigation .navigation-container{display:flex;justify-content:space-between;align-items:center;gap:0.4rem;padding-top:0.4rem;padding-bottom:0.4rem;}
  .navigation-container input{display:none;}
  top-navigation .navigation-container input[type=radio]:checked + label {
        border-bottom: .6vw solid rgb(var(--color-foreground));
    }
  [data-tab="top-navigation-overview"],[data-tab="top-navigation-details"], [data-tab="top-navigation-review"], [data-tab="top-navigation-faq"]{scroll-margin-top: 120px;}
}



.pay-later .product-popup-modal__opener{display:inline-block;vertical-align:middle;line-height:1;}
.pay-later .product-popup-modal__opener .link{line-height:1;}
.pay-later .icon-guarantee{width:16px;height:16px;}
@media screen and (min-width: 750px) {
  .pay-later-popup-modal .product-popup-modal__content{max-width:45rem;}
   .pay-later-popup-modal .product-popup-modal__toggle{right:-5rem;}
  .pay-later-popup-modal  .product-popup-modal__content-info {
        padding: 0;
    }
}

.product__info-container .custom__liquid{margin:0;}


.product__text.richtext-tips{padding:0.8rem 2rem;}
.product__text a{color:rgb(var(--color-heading));font-weight: 700;}
.richtext-tips p{margin:0;}
@media screen and (max-width: 750px) {
  .product__text.richtext-tips{padding:0.8rem;}
}

/*loop countdown*/
.product-loop-countdown{display: flex;justify-content:var(--justify-content);align-items: center;flex-wrap: wrap;gap:var(--countdown-gap,1rem);background-color: var(--background);
  padding:var(--countdown-padding,1rem);border-radius: 10px;background-image:var(--background-image);background-size:cover;background-position: center;background-repeat: no-repeat;
  margin-top:1rem;}
.product-loop-countdown + variant-selects{margin-top:1rem;}
.product-loop-countdown .h3{margin:0;}
.product-loop-countdown .digit{line-height:1.45;}
@media screen and (max-width: 750px) {
  .product-loop-countdown .time-group{min-width: auto;}
  .product-loop-countdown .digit{line-height: 1.25;}
}

.product-option-badge-image{max-width: 70px !important;height: auto;display: inline-block;vertical-align: middle;}


.product__info-container .installment{margin:0;}
.product__info-container .pay-later{margin-top:0.2rem;font-size:1.2rem;}
.product__info-container .pay-later svg{width:50px;}
.product__info-container .pay-later svg{vertical-align:inherit;}
.product-desc-media-list{margin-top:1rem;}
.product-desc-media-list img{height: auto;max-width: 100%;display: block;}
@media screen and (max-width: 480px) {
  .product__info-container .pay-later svg{width:40px;}
}

/* promo tips */
.promo-info .promo-info-wrapper{background:#f0f0f0;padding:1rem 1.4rem;border-radius:5px;font-size:18px;}
.promo-info span.promo-content{margin-right:1rem;}
.promo-info .offer-highlight{font-size:22px;font-weight:700;color:#9e6b35;}
.promo-info .code-wrapper{position:relative;display:inline-block;border-radius: var(--button-radius);}
.promo-info .copied-meassge{position:absolute;inset:0;background:#fff;z-index:1;}
.promo-info .copied-meassge .text{display:flex;justify-content:center;align-items:center;height:100%;width:100%;}
.promo-info .button.applied{background:#fff;border-color:#fff;color:rgb(66 25 12);}
.promo-info-wrapper + .promo-info-wrapper{margin-top:1rem;}
.promo-info-wrapper .wrapper{display:flex;justify-content: space-between;align-items:center;flex-wrap:wrap;row-gap: 1rem;}
.promo-info .time-group{min-width:30px;}
.promo-info .digits{padding:0.2rem;}
.promo-info .digit{line-height:1.65;}
@media screen and (max-width: 480px) {
  .promo-info{font-size:14px;}
  .promo-info .offer-highlight{font-size:16px;}
  .promo-info .button{font-size:12px;min-height:2rem;min-width:8rem;padding:0.6rem 1.6rem;}
}

/*related products*/
.related-proudct-slider .heading-wrapper{display:flex;align-items:center;gap:1rem;}
.related-proudct-slider .countdown-box{margin-bottom:1rem;padding:0.2rem 1rem;}

.related-proudct-slider .countdown{--countdown-width:20px;--countdown-size:2.2rem;--num-padding:0;}
.related-proudct-slider .countdown .digit, .related-proudct-slider .countdown .separator{line-height:1.25;}
.related-proudct-slider .slider-mobile-gutter .slider-buttons{position:absolute;top:32%;width:100%;justify-content:space-between;opacity:0;}
.related-proudct-slider .slider-mobile-gutter:hover .slider-buttons{opacity:1;}
.related-proudct-slider .slider-mobile-gutter .slider-button{background:none;box-shadow:none;}
.related-proudct-slider .card-information__text{font-size:14px;}
.related-proudct-slider .card-information .badge{font-size:10px;}
.related-proudct-slider .card-information__wrapper .price bdi{font-size:1.6rem;}
.related-proudct-slider  .card-information__wrapper .price--on-sale .price-item--regular bdi, .related-proudct-slider .card-information__wrapper .price--on-discount .price-item--regular bdi{font-size:1.2rem;}



