/** Shopify CDN: Minification failed

Line 526:110 Expected ":"

**/
.card {
  display: block;
  overflow: hidden;
  text-decoration: none;
  border-radius: var(--card-radius);
}

.card + .card-information {
  padding-top: 0.6rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.card.card--soft {
  background-color: rgba(var(--color-foreground), 0.06);
  color: rgb(var(--color-foreground));
}

.card__text {
  display: flex;
  align-items: center;
}

.card .icon-arrow {
  width: 1.5rem;
  height: 1.5rem;
}

.card .icon-wrap {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
}

.card--media {
  display: block;
  text-decoration: none;
}

.card--text .media--adapt {
  padding-bottom: 100%;
}

.card--product,
.card--page {
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  overflow: visible;
  border: var(--card-border-width) solid rgb(var(--color-border));
  background-color: rgb(var(--card-color-scheme));
  box-shadow: var(--card-shadow-horizontal-offset) var(--card-shadow-vertical-offset) rgba(var(--color-shadow), var(--shadow-opacity));
}

.card--product + .card-information,
.card--page + .card-information {
  text-align: var(--card-text-alignment);
}

.card--outline {
  border: 0.1rem solid rgb(var(--color-border));
}

.card__text-spacing {
  padding: 3rem;
}

.card-colored {
  background-color: rgba(var(--color-foreground), 0.06);
}

.card--media .card__text-spacing {
  padding: 1.5rem 2rem;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  color: rgb(var(--color-background));
  --color-link: currentColor;
  --color-border: currentColor;
  --color-heading: currentColor;
  --color-price: currentColor;
}

.card--media .card__text-spacing::after {
  content: '';
  pointer-events: none;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to top, rgba(var(--color-foreground), 0.46) 0, transparent 40%, transparent 100%);
}

@media screen and (min-width: 750px) {
  .card--media .card__text-spacing {
    padding: 2rem 3rem;
  }
}

.card--media .card__text-spacing > div {
  display: flex;
  flex-direction: column-reverse;
}

.card-information > * + * {
  margin-top: 0.5rem;
}

.card--product + .card-information > * + * {
  margin-top: 0;
}

.card--text .card__media {
  width: 100%;
  height: 100%;
}

.card__content > * {
  margin: 0;
}

.card--text .card__content,
.card--text:not(.card--product) + .card-information {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem 2rem;
}

@media screen and (min-width: 750px) {
  .card--text .card__content,
  .card--text:not(.card--product) + .card-information {
    padding: 2rem 3rem;
  }
}

.card--text .media:empty {
  display: block;
}

.card__text-spacing > * {
  margin: 0;
}

.card__text-spacing > *:not(.overlay-card) + * {
  margin-top: 1.5rem;
}

.card__text {
  margin: 0;
  word-break: break-word;
}

.card--text .card__text {
  text-align: center;
}

.card__text-spacing .card-information__text {
  padding-bottom: 0;
}

.card-information__text {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-size: calc(var(--font-heading-scale) * 1.2rem);
  font-weight: 400;
  text-decoration: none;
  color: rgb(var(--color-link));
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

.card-information__text small {
  padding-inline-start: 0.4rem;
  color: rgba(var(--color-foreground), 0.7);
}

/* .card-information__wrapper .price {
  justify-content: center;
} */

.card-information__button {
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  column-gap: 1rem;
  text-align: center;
  position: absolute;
  bottom: 100%;
  z-index: 2;
  white-space: nowrap;
  width: calc(100% - 3rem);
  height: 3.6rem;
  margin-top: 0;
  transform: translateY(-1.5rem);
}

.card-information__button .countdown {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
  font-family: var(--font-button-family);
  font-size: max(calc(var(--font-button-size) - 2px), 1.2rem);
  line-height: calc(1 + 0.3/max(1, var(--font-heading-scale)));
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 0.6rem 2rem;
  padding-top: calc(0.6rem + var(--font-button-baseline));
  background-color: var(--color-sale-price);
  color: rgb(var(--color-background));
  border-radius: min(var(--button-radius), 0.8rem);
}

.card-information__button .countdown__item {
  width: auto;
  flex: none;
  padding: 0;
  border-inline-start: none;
  color: inherit;
  font-family: inherit;
}

.card-information__button .countdown__item span {
  color: inherit;
}

@media screen and (min-width: 750px) {
  .card-information__button .countdown {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity var(--duration-default) ease;
  }
}

@media screen and (max-width: 480px) {
  .product-grid:not(.grid--1-col-mobile) .card-information__button .countdown {
    display: none;
  }
}

.card-information__wrapper {
  width: 100%;
  line-height: calc(1 + 0.4 / var(--font-body-scale));
  /* text-align: center; */
}

.card-information__wrapper .caption-with-letter-spacing {
  margin-bottom: 0.6rem;
  display: block;
}

.card-information__wrapper > * {
  /* margin-top: .8rem; */
}

.card-information__wrapper .caption {
  letter-spacing: 0.07rem;
}

.card-wrapper {
  color: inherit;
  display: block;
  position: relative;
  text-decoration: none;
}

.card-wrapper:focus-within .card {
  box-shadow: none;
}

.card-wrapper .full-unstyled-link {
  display: none;
}

.card__media {
  padding: var(--card-image-padding);
  border-radius: calc(var(--card-radius) - var(--card-border-width) - var(--card-image-padding));
}

.card__media-full-spacer {
  padding: 2rem;
}

.card-article-info {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
}

.card__badge {
  display: flex;
  flex-direction: column;
  grid-row-gap: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  max-width: 50%;
  pointer-events: none;
  font-weight: bold;
}

@media screen and (hover: hover) {
  .card-wrapper:hover .card-information__button .countdown {
    opacity: 0;
  }
}

@media screen and (min-width: 990px) {
  .card-wrapper .full-unstyled-link {
    display: flex;
  }

  .card .media.media--hover-effect > img:only-child,
  .card .media.media--hover-effect > img + img,
  .card-wrapper .media.media--hover-effect > img:only-child {
    transition-property: transform, opacity;
  }

  .card:hover .media.media--hover-effect > img:first-child:only-child {
    transform: scale(1.03);
  }

  .card:hover .media.media--hover-effect > img + img {
    opacity: 1;
    transition-property: opacity, transform;
    transform: scale(1.03);
  }

  .card--search img {
    transition: transform var(--duration-default) ease;
  }
  
  .card-wrapper:hover .card--search img {
    transform: scale(1.05);
  }
  
  .card-wrapper:hover .card__heading {
    text-decoration: underline;
    text-underline-offset: 0.3rem;
  }
}

@media screen and (hover: hover) {
  .card-information__text {
    background-image: linear-gradient(to top, rgb(var(--color-border)) 0, rgb(var(--color-border)) 0), linear-gradient(to top, transparent 0, transparent 0);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 0 0.1rem, 100% 0.1rem;
    transition: background-size var(--duration-default) ease;
  }

  /* .card-wrapper:hover .card-information__text {
    background-position: left bottom;
    background-size: 100% 0.1rem, 100% 0.1rem;
  } */
}

.product-grid .badge--soldout {
  display: none;
}

.product-grid .card-information .button--soldout {
  pointer-events: none;
  display: inline-flex;
  transform: none;
  box-shadow: none;
  border: none;
  opacity: 1;
  background-color: rgba(var(--color-foreground), 0.5);
  color: rgb(var(--color-background));
  border-radius: var(--button-radius);
  text-indent: unset;
  width: 100%;
  padding: 0.6rem 2rem;
  padding-top: calc(0.6rem + var(--font-button-baseline));
}

.card-information__button.is-expanded {
  height: auto;
  width: 100%;
  max-width: 100%;
  transform: translateY(0);
}

.card-information__button .card__swatches {
  padding: 2rem;
  border: none;
  cursor: unset;
  font-weight: inherit;
  background-color: rgba(var(--color-background), 0.95);
}

.card-information__button .card__swatches::before,
.card-information__button .card__swatches::after {
  content: none;
}

.card-information__button .card__swatches .variant-input-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: none;
  margin: 0;
  padding: 0;
}

.card-information__button .card__swatches .swatch {
  box-shadow: inset 0 0 0 0.1rem rgb(var(--color-border));
  color: rgb(var(--color-foreground));
  padding: 0.6rem;
  min-width: 3.4rem;
  min-height: 3.4rem;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: 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), 0.2rem);
}

.card-information__button .card__swatches .swatch::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: background-color var(--duration-long) ease;
}

@media screen and (hover: hover) {
  .card-information__button .card__swatches .swatch:not(.disabled, .loading):hover {
    box-shadow: inset 0 0 0 0.2rem rgb(var(--color-foreground));
  }
}

.card-information__button .card__swatches .swatch.disabled {
  cursor: not-allowed;
  color: rgb(var(--color-border));
}

.card-information__button .card__swatches .swatch.disabled::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 50%;
  width: calc(100% - 1rem);
  border-bottom: 0.1rem solid rgb(var(--color-border));
  transform: rotate(-30deg);
}

.card-information__button .card__swatches .swatch.loading {
  color: transparent;
  cursor: progress;
}

.card-information__button .card__swatches .swatch.loading::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  margin-top: -1rem;
  margin-left: -1rem;
  animation: loading var(--duration-long) infinite linear;
  border: 0.1rem solid transparent;
  border-inline-start: 0.1rem solid rgb(var(--color-foreground));
  border-radius: 100%;
  height: 2rem;
  width: 2rem;
}

.card-information__top {
  display: flex;
  justify-content: space-between;
}

/* custom label, pay-later, snatch-price  */
.product-deal { display: flex; align-items: center; width: fit-content; margin: 0 auto; line-height: 1.0; background-color: #eddee5; }
.product-deal:empty { display: block; background: unset; }
.product-deal--text { margin-right: 1rem; color: #7e807f; }
.product-deal--price { font-weight: 600; color: #822448; }
.custom-product__badge { max-width: 100%; margin-bottom: 1rem; }
.custom-product__badge.product__badge-empty { min-height: 2.5rem; }
.custom-product__badge .badge-item { display: inline-block; padding: .25rem .75rem; margin-left: .2rem; margin-right: .3rem; margin-bottom: .5rem; line-height: 1.0; font-size: 1.4rem; box-shadow: 0 0 0 1px #5d0018; color: #5d0018; border-radius: 2rem; }
.custom-product-sold { text-align: center; line-height: 1.0; color: rgba(var(--color-foreground),.7); -webkit- transform: scale(.9); transform: scale(.9); }
 .card-information__text { -webkit-line-clamp: 2; }
@media screen and (max-width: 749px) {
  .custom-product__badge { margin-bottom: .5rem; }
  .custom-product__badge.product__badge-empty { min-height: 2.3rem; }
  .custom-product__badge .badge-item { font-size: 1.2rem; }
  .product-deal, .custom-product-sold { padding: .3rem .5rem; margin-top: .6rem; }
  /* .product-deal:empty { height: 2.2rem; } */

}
@media screen and (max-width: 480px) {
  .custom-product__badge { font-size: 1.4rem; }
  .product-deal, .custom-product-sold { font-size: 1.4rem; }
  /* .product-deal:empty { height: 2rem; } */
}
@media screen and (min-width: 750px) {
  .custom-product__badge { font-size: 1.7rem; }
  .product-deal, .custom-product-sold { padding: .4rem .7rem; margin-top: .85rem; font-size: 1.6rem; }
  /* .product-deal:empty { height: 2.4rem; } */
 
}
lazy-video video { width: 100%; }

.custom-pay-later-price {
  position: relative;
  width: 100%;
  height: 4rem;
  background-color: #FBE5EE;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10%;
  box-sizing: border-box;
}
.custom-pay-later-price img {
  width: 3rem;
  height: auto;
}
.pay-later-tips {
  display: flex;
  flex-direction: column;
}
.pay-later-tips span {
  line-height: 1.2;
}
.pay-later-tips span:first-child {
  font-size: max(0.78125vw, 12px);
  color: #A04268;
  font-weight: 600;
}
.pay-later-tips span:last-child {
  font-size: max(0.52vw, 10px);
}
.pay-later {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 35%;
  height: 50px;
  background-color: #9E4167;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pay-later span {
  line-height: 1;
  color: #fff !important;
}
.pay-later span:first-child {
  font-size: max(0.52vw, 8px);
  margin-bottom: 5px;
}
.pay-later span:last-child {
  font-size: max(1.25vw, 16px);
  font-weight: bold;
}
.m-custom-pay-later-price {
  display: none;
}
.m-pay-later {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #9E4167;
  font-size: 12px;
  color: #FFFFFF;
  height: 22px;
}
.m-pay-later span{
  font-weight: 600;
  margin-left: 2px;
}
.m-pay-later-tips {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  background-color: #FBE5EE;
}
.m-pay-later-tips img {
  width: 20px;
  height: auto;
}
.m-pay-later-tips span:nth-child(2) {
  font-size: 12px;
  color: #A04268;
}
@media screen and (max-width: 900px) {
  .m-custom-pay-later-price {
    display: block;
  }
  .custom-pay-later-price {
    display: none;
  }
}

.add-btn-inner{display: flex;justify-content: space-between;align-items: center;margin-top: 0.8rem;}
.add-btn-inner.add-btn-with-text{flex-direction:column;gap:0.4rem;align-items:start;}
.add-btn-inner.add-btn-with-text .custom-card-button{width:100%;}
.add-btn-inner.add-btn-with-text  .custom-card-button .btn{background:#000;color:#fff;padding:0.8rem 1.4rem;}
.sale-mask-image{position: absolute; top: 0; left: 0; width: 100%; height: auto; }
@media screen and (max-width: 1280px) {
.add-btn-inner.add-btn-with-text .custom-card-button .btn{font-size:12px;}
}
@media screen and (max-width: 749px) {
.add-btn-inner.add-btn-with-text .custom-card-button .btn{font-size:10px;}
}

/*custom inventory progress*/

.card-inventory-progress{position:relative;z-index:2;margin:1.4rem 0;width:100%;}
.add-btn-with-text .card-inventory-progress{margin-top:0;}
.card-inventory-progress .progress-bar-background{position: relative;display: block;margin-top: .6rem;width: 100%;height: auto;background-color: #f6ddee;border-radius:50px;color:#ffffff;}
.card-inventory-progress .progress-bar{position:relative;height: 100%;padding:0 4rem 0 1rem;transition: width 2.5s ease;display:block;font-size:12px;}
.card-inventory-progress .progress-bar span{line-height:1;display: inline-block;}
.card-inventory-progress .has-progress-bar{background-image:linear-gradient(to right,#790202,#d01717,#8d0000);width: var(--progress-bar-width, 100%);border-radius: 50px;display:flex;align-items:center;min-height:2.4rem;}
.card-inventory-progress .has-progress-bar:before{content: "";position:absolute;right:-1px;top:-4px;width:32px;height:32px;border-radius:50%;background-image:linear-gradient(to right,#b91e2b,#5d0f16);border:1.5px solid #ffffff;}
.card-inventory-progress .has-progress-bar:after{content: "";position:absolute;right:6px;top:2px;width:18px;height:18px;background-image:url('data:image/png;base64,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');
 background-position:center;background-size:contain;background-repeat:no-repeat;                                           
}
@media screen and (max-width: 749px) {
  .card-inventory-progress{margin:1rem 0;}
  .card-inventory-progress .progress-bar{padding:0 2rem 0 0.8rem;}
  .card-inventory-progress .progress-bar span{font-size:10px;vertical-align: middle;}
  .card-inventory-progress .has-progress-bar{min-height:1.2rem;}
  .card-inventory-progress .has-progress-bar:before{top:-0.3rem;width:1.8rem;height:1.8rem;}
  .card-inventory-progress .has-progress-bar:after{top:0;right:2px;width:1.2rem;height:1.2rem;}
}