/** Shopify CDN: Minification failed

Line 1940:0 Unexpected "}"
Line 1956:8 Expected identifier but found whitespace
Line 1956:9 Unexpected "100%"
Line 2018:0 Unexpected "}"
Line 2285:0 Unexpected "}"

**/
/*
Theme Name: Core Store
Author: The4Studio
Author URI: https://the4.co/
Version: 1.0
NOTE: most of the CSS variables used are defined in the "css-variables.liquid" snippet file

/* -------------------------------------------
[Table of contents]
1. Hover Effect
2. Scrollbar
3. SEARCH
4. PhotoSwipe v5.4.4
5. Zoom image
------------------------------------------- */

/*================ 1. Hover Effect ================*/
@media screen and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  /* .hdt-btn:hover {
    box-shadow: inset 0 0 200px rgba(0,0,0,0.15);
  } */
  /* .hdt-btn-3d:hover {
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.15);
    opacity: .8
  } */
  .hdt-btn-3d:hover::after {
    transform: translate3d(0, 0, 0);
  }
  .hdt-btn-3d2:hover::after {
    --hdt-op: 0;
  }
  /* .hdt-btn-outline:hover {
    background-color: var(--color-secondary-button-text);
    --color-button-text: var(--color-secondary-brightness);
  } */
  .hdt-btn-link:hover {
    background-color: transparent !important;
    box-shadow: none;
  }
  .hdt-btn-link:hover:after {
    transform: scaleX(0);
  }
  .rte a:not(.hdt-btn):hover, .hdt-form__alert--error a:hover, .hdt-link-text:hover, .hdt-heading a:hover, .hdt-caption a:hover, .hdt-author a:hover, .hdt-countdown-mess a:hover {
    background-size: 0 1px;
  }
  .hdt-hover-line {
    background: linear-gradient(to right, currentColor, currentColor) 0 min(100%,1.35em) / 0 1px no-repeat;
    background-position-x: var(--value-origin-start);
    transition: background-size 0.4s ease;
  }
  .hdt-hover-line-wrap .hdt-hover-line {
    pointer-events: none;
  }
  .hdt-hover-line:hover,
  .hdt-hover-line-wrap:hover .hdt-hover-line {
    background-size: 100% 1px;
  }
  .hdt-link-fade {
    transition: opacity .25s ease;
  }
  .hdt-link-fade:hover {
    opacity: .6;
  }
  .hdt-footer-block--link_list a[aria-current="page"],
  .hdt-footer-block--link_list a:after {
    color: var(--color-foreground);
  }
  .hdt-btn-text-flip:after {
    content: attr(data-hover);
    display: inline-block;
    grid-area: 1/-1;
    opacity: 0;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
    transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }
  .hdt-btn-text-flip:focus-visible:after {
    display: none;
  }
  /* .hdt-btn-text-flip:hover {
    opacity: 1 !important;
  }
  .hdt-btn-text-flip:hover:before {
    opacity: 0;
  } */
  .hdt-btn-text-flip:hover:after {
    transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
    opacity: 1;
  }

  .hdt-btn-line-graphic .hdt-icon-graphic--slide {
    transition: transform 0.7s;
    transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
  }
  .hdt-btn-line-graphic:hover .hdt-icon-graphic--slide {
    transform: translate3d(calc(-66.6% * var(--value-logical-flip)), 0, 0);
  }
  .hdt-btn-line-graphic:hover {
    background-color: transparent !important;
    box-shadow: none;
  }

  .hdt-btn--hover-flip,
  .hdt-btn--flip-after {
    --button-slide-text-2: translate3d(0px, 110%, 0px) scale3d(.94, .5, 0);
    --button-slide-text-hover-1: translate3d(0px, -110%, 0px) scale3d(.94, .5, 0);
    --button-slide-text-hover-2: translate3d(0px, 0%, 0px);
  }

  :is(.hdt-btn, .hdt-collection-card__title, button[type="submit"][name="add"], .hdt-btn--set__text):is(.hdt-btn--hover-flip, .hdt-btn--flip-after) {
    --button-slide-text-2: translate3d(0px, 168%, 0px) scale3d(.94, .5, 0);
    --button-slide-text-hover-1: translate3d(0px, -168%, 0px) scale3d(.94, .5, 0);
  }
  .hdt-btn--hover-flip span,
  .hdt-btn--flip-after span,
  .hdt-btn--flip-after::after,
  .hdt-btn--hover-flip .hdt-flip-after {
    grid-area: 1/-1;
    transition: color .2s, opacity .5s cubic-bezier(.21, .6, .35, 1), transform .4s cubic-bezier(.21, .6, .35, 1);
    transform-style: preserve-3d;
    will-change: transform, opacity;
    transition: opacity .6s, transform .5s;
    transition-timing-function: cubic-bezier(.21, .6, .35, 1);
    place-self: center;
  }
  /* .hdt-btn--hover-flip span:first-child,
  .hdt-btn--flip-after span:first-child {
    transition: opacity .5s, transform .5s;
  } */
  .hdt-btn-effect--none{

    .hdt-btn--hover-flip span[aria-hidden="true"], .hdt-btn--hover-flip .hdt-flip-after, .hdt-btn--flip-after::after{
      display: none!important;
    }
    .hdt-btn--hover-flip:hover span:first-child, .hdt-btn--flip-after:hover span, .hdt-btn--hover-flip:focus span:first-child, .hdt-btn--flip-after:focus span{
      transform: unset;
      opacity: 1;
    }
    #predictive-search-results .hdt-psrl--collections .hdt-predictive-search__list-item > a:hover .hdt-btn--flip-after > span,
    .hdt-search-list-collections > a:hover .hdt-btn--flip-after > span {
      transform: unset;
      opacity: 1;
    }
  }
  .hdt-btn-effect--fade{
    .hdt-btn--hover-flip span[aria-hidden="true"], .hdt-btn--hover-flip .hdt-flip-after, .hdt-btn--flip-after::after{
      display: none!important;
    }
    .hdt-btn--hover-flip:hover span:first-child, .hdt-btn--flip-after:hover span, .hdt-btn--hover-flip:focus span:first-child, .hdt-btn--flip-after:focus span{
      transform: unset;
      opacity: 1;
    }
    .hdt-btn--hover-flip:not([disabled]):not([aria-disabled="true"]):hover, .hdt-btn--flip-after:not([disabled]):not([aria-disabled="true"]):hover{
      opacity: 0.75!important;
      transition: transform .3s ease-in-out, opacity .3s ease-in-out, background 0.3s ease-in-out;
      &.hdt-btn-outline{
        background: color-mix(in srgb, var(--color-button-text), transparent 94%);
        backdrop-filter: blur(20);
        --webkit-backdrop-filter: blur(20);
      }
    }

    #predictive-search-results .hdt-psrl--collections .hdt-predictive-search__list-item > a:hover .hdt-btn--flip-after > span,
    .hdt-search-list-collections > a:hover .hdt-btn--flip-after > span {
      transform: unset;
      opacity: 1;
    }
  }
  .hdt-btn--hover-flip span[aria-hidden="true"],
  .hdt-btn--hover-flip .hdt-flip-after,
  .hdt-btn--flip-after::after {
    display: flex;
    transform: var(--button-slide-text-2);
    opacity: 0;
    pointer-events: none;
  }
  .hdt-btn--flip-after::after {
    content: attr(data-hover);
  }
  .hdt-mega-menu__item--highlight .hdt-btn--flip-after::after {
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    overflow: hidden;
    display: block;
  }
  .hdt-btn--ce-collection::after {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    overflow: hidden;
  }
  .hdt-btn--hover-flip:hover span:first-child,
  .hdt-btn--flip-after:hover span,
  .hdt-btn--hover-flip:focus span:first-child,
  .hdt-btn--flip-after:focus span {
    transform: var(--button-slide-text-hover-1);
    opacity: 0;
    /*
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.5s forwards 0.3s;
    animation-timing-function: cubic-bezier(.21, .6, .35, 1);
    */
  }
  .hdt-btn--hover-flip:hover span[aria-hidden="true"],
  .hdt-btn--hover-flip:hover .hdt-flip-after,
  .hdt-btn--flip-after:hover::after,
  .hdt-btn--hover-flip:focus span[aria-hidden="true"],
  .hdt-btn--hover-flip:focus .hdt-flip-after,
  .hdt-btn--flip-after:focus::after {
    transform: var(--button-slide-text-hover-2);
    opacity: 1;
  }
  .hdt-product-quantity:not(.disabled) button, .hdt-cart-quantity:not(.disabled) button {
    transition: background-color 0.3s;
  }
  .hdt-product-quantity:not(.disabled) button:hover {
    background-color: color-mix(in srgb, var(--color-foreground), transparent 95%);
  }
  .hdt-cart-quantity:not(.disabled) button:hover {
    background-color: color-mix(in srgb, var(--color-foreground), transparent 93%);
  }
  .hdt-btn--hover-run, .hdt-btn--hover-run-left {
    display: inline-grid;
    overflow: hidden;
  }
  .hdt-btn--hover-run:not(.disabled):hover > *:not(.sr-only) {
    animation: run-ltr 0.4s ease-in-out;
  }
  .hdt-btn--hover-run-left:not(.disabled):hover > *:not(.sr-only) {
    animation: run-rtl 0.4s ease-in-out;
  }
  .hdt-cart__empty-collection:hover :where(img, svg) {
     transform: scale(1.1);
  }
  @keyframes run-rtl {
    0% { transform: translateX(0); }
    50% { transform: translateX(-200%); } 
    51% { transform: translateX(200%); }
    100% { transform: translateX(0); } 
  }
  @keyframes run-ltr {
    0% { transform: translateX(0); }
    50% { transform: translateX(200%); } 
    51% { transform: translateX(-200%); }
    100% { transform: translateX(0); } 
  }
  /* @keyframes MoveScaleUpInitial {
    to {
      transform: translate3d(0,-105%,0);
      opacity: 0;
    }
  }
  @keyframes MoveScaleUpEnd {
    from {
      transform: translate3d(0,100%,0);
      opacity: 0;
    }
    to {
      transform: translate3d(0,0,0);
      opacity: 1;
    }
  } */

  .hdt-btn--hover-shine.hdt-btn-solid, button.shopify-payment-button__button--unbranded, button.shopify-payment-button__button--unbranded:not([disabled]), .hdt-newsletter-form .hdt-btn {
    position: relative;
    overflow: hidden;
    --light_skew-color: color-mix(in srgb, var(--color-button-text), transparent 75%);
  }

  .hdt-btn--hover-shine.hdt-btn-solid:not([disabled])::after, button.shopify-payment-button__button--unbranded:not([disabled])::after, .hdt-newsletter-form .hdt-btn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-start: 150%;
    background-image: linear-gradient(90deg,transparent,var(--light_skew-color,transparent),transparent);
    transform: skew(-20deg);
    width: 200%;
  }

  .hdt-btn--hover-shine.hdt-btn-solid:hover::after, .hdt-btn--hover-shine.hdt-btn-solid:focus::after,
  button.shopify-payment-button__button--unbranded:not([disabled]):hover::after, 
  button.shopify-payment-button__button--unbranded:not([disabled]):focus::after, 
  .hdt-newsletter-form .hdt-btn:hover::after {
    animation: sheen 1s forwards;
  }
  @keyframes sheen {
    100% {
      inset-inline-start: -200%;
    }
  }

  .hdt-btn-shadow:hover {
    box-shadow: none;
  }

  .use--zoom-image .hdt-zoom-img {
    transition: transform 2.5s ease;
  }
  .use--zoom-image .hdt-hover-mask:hover .hdt-zoom-img,
  .use--zoom-image .hdt-hover-link:hover + .hdt-hover-mask .hdt-zoom-img {
    transform: scale(1.09);
  }
  .use--zoom-image hdt-video::part(control-play) {
    transition: scale 2s ease;
    will-change: scale;
  }
  .use--zoom-image .hdt-hover-mask:hover hdt-video::part(control-play) {
    scale: 1.1;
  }
  .hdt-collection-card .hdt-media-overlap-content:hover .hdt-btn,
  .hdt-column-card.is-btn-bottom .hdt-hover-mask:hover .hdt-button-group,
  .hdt-collection-card .hdt-media-overlap-content:focus-within .hdt-btn,
  .hdt-column-card.is-btn-bottom .hdt-hover-mask:focus-within .hdt-button-group {
    opacity: 1;
    transform: translateY(0) translateZ(0);
  }
  .hdt-collection-card--hover-show-btn .hdt-media-overlap-content:hover .hdt-collection-card__content,
  .hdt-column-card.is-btn-bottom .hdt-hover-mask:hover .hdt-media-content,
  .hdt-collection-card--hover-show-btn .hdt-media-overlap-content:focus-within .hdt-collection-card__content,
  .hdt-column-card.is-btn-bottom .hdt-hover-mask:focus-within .hdt-media-content {
    transform: translateY(0) translateZ(0);
  }
  .hdt-column-card:where(.is-btn-top,.is-btn-center) .hdt-hover-mask:hover .hdt-button-group,
  .hdt-column-card:where(.is-btn-top,.is-btn-center) .hdt-hover-mask:focus-within .hdt-button-group {
    opacity: 1;
    transition: opacity .4s ease, transform .4s ease;
    transform: translateY(0);
  }
  .hdt-column-card.is-btn-center .hdt-hover-mask .hdt-media-content {
    transition: transform .3s ease;
  }
  .hdt-column-card.is-btn-center .hdt-hover-mask:hover .hdt-media-content,
  .hdt-column-card.is-btn-center .hdt-hover-mask:focus-within .hdt-media-content {
    transform: translateY(calc(((var(--size-btn, 4.4rem) + var(--space-btn, 3rem))* -1) / 2));
  }
  .hdt-column-card.is-btn-center.is-btn-size-xs {
    --size-btn: 3.6rem;
  }
  .hdt-column-card.is-btn-center.is-btn-size-m {
    --size-btn: 4.8rem;
  }
  .banner-btn-position-hover .banner-btn-wrapper {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
    transform: translateY(15px);
  }
  .hdt-card-product__media img {
    transition: all 0.5s ease;
  }
  /* .use--zoom-image .hdt-card-product__media:hover .hdt-card-product__media--main {
    opacity: 0;
    transform: scale(1);
  } */
  .use--zoom-image .hdt-card-product__media:hover .hdt-card-product__media--hover {
    opacity: 1;
    transform: scale(1);
    content-visibility: visible;
  }
  .hdt-icon--hover__sidey:hover svg {
    animation: .5s cubic-bezier(0.7, 0, 0.3, 1) .08s forwards iconSlideY;
  }
  .hdt-icon--hover__sidex {
    position: relative;
    overflow: hidden;
  }
  .hdt-icon--hover__sidex[reverse-ani] {
    --stt-btn: 1;
    --stt-btn2: -1;
  }
  .hdt-icon--hover__sidex:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    scale: 1;
    transition: scale .3s linear .06s;
    background-color: inherit;
    border-radius: inherit;
  }
  /* .hdt-shop-the-look__products .hdt-slider-nav .hdt-icon--hover__sidex {
    border: none;
  }
  .hdt-shop-the-look__products .hdt-slider-nav .hdt-icon--hover__sidex:before {
    border: 1px solid var(--color-pr-text);
  } */
  .hdt-icon--hover__sidex:hover :where(svg, .hdt-run-eff) {
    animation: .5s cubic-bezier(0.7, 0, 0.3, 1) .08s forwards iconSlideX;
  }
  .hdt-icon--hover__sidex:hover:before {
    scale: 1.1;
  }
  .hdt-slider-nav--bar > button {
    transition: border-color .25s ease;
  }
  .hdt-slider-nav--bar > button:hover {
    border-color: var(--color-foreground);
  }
  .hdt-hover-bg-zoom, .hdt-hover-bg-zoom-b {
    position: relative;
    --bg-hover: color-mix(in srgb, var(--color-foreground), transparent 90%);
  }
  .hdt-hover-bg-zoom:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    border-radius: inherit;
    background: var(--bg-hover);
    transform: scale(0);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
  }
  .hdt-hover-bg-zoom:hover:after {
    transform: scale(1);
    opacity: 1;
  }
  .hdt-hover-bg-zoom-b:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    border-radius: inherit;
    background: var(--bg-hover);
    transform: scale(0);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
  }
  .hdt-hover-bg-zoom-b:hover:before {
    transform: scale(1);
    opacity: 1;
  }
  .hdt-slider__viewport:not(.hdt-slider-border) .hdt-lgl-item-image {
    opacity: 1;
    filter: grayscale(0);
    transition: all .25s ease;
  }
  .hdt-slider__viewport:not(.hdt-slider-border) .hdt-lgl-item-image:hover {
    opacity: .5;
    filter: grayscale(100%);
  }
  .hdt-slider-border .hdt-lgl-item-image {
    transition: background-color .25s;
  }
  .hdt-slider-border .hdt-lgl-item-image:hover {
    background: color-mix(in srgb, var(--color-line-borde), transparent 80%);
  }
  .hdt-icon-hover-bounce:hover svg path {
    animation: iconBouncing 1.2s infinite;
  }
  .hdt-btn--close svg, .hdt-active-filters__remove svg {
    transition: transform 0.25s ease;
  }
  .hdt-btn--close:hover svg, .hdt-active-filters__remove:hover svg {
    transform: rotate(-90deg);
  }
  .hdt-show-pw {
    --bg-hover: color-mix(in srgb, var(--color-foreground), transparent 88%);
  }
  .hdt-show-pw:not(.hdt-hover-bg-zoom-b):hover {
    background-color: color-mix(in srgb, var(--color-foreground), transparent 88%);
  }
  .hdt-show-pw:hover:after {
    border-color: transparent !important;
  }
  .hdt-social-links > a {
    transition: color .25s ease;
  }
  .hdt-social-links > a:before {
    transition: border-color .25s ease;
  }
  .hdt-social-links > a:after {
    --bg-hover: var(--color-social);
    z-index: 1;
  }
  .hdt-social-links > a:hover {
    color: #fff;
  }
  .hdt-social-links > a:hover:before {
    border-color: transparent;
  }
  .hdt-social-link--snapchat:hover {
    color: var(--color-foreground) !important;
  }
  .hdt-toolbar-transparent-enable .hdt-social-links>a,
  .hdt-toolbar-transparent-enable .hdt-social-links > a:before,
  .hdt-toolbar-transparent-enable .hdt-hover-bg-zoom:after {
    transition: none;
  }
  .hdt-toolbar-transparent-enable:hover .hdt-social-links>a {
    transition: color .25s ease;
  }
  .hdt-toolbar-transparent-enable:hover .hdt-social-links > a:before {
    transition: border-color .25s ease;
  }
  .hdt-toolbar-transparent-enable:hover .hdt-hover-bg-zoom:after {
    transition: transform .25s ease, opacity .25s ease;
  }
  .hdt-btn--modal-pw:hover svg {
    animation: .5s cubic-bezier(0.7, 0, 0.3, 1) .08s forwards iconSlideY;
  }
  .hdt-card-product__title a.hdt-line-clamp {
    transition: text-decoration-color 0.25s;
    text-decoration: underline solid transparent;
    text-underline-offset: .3rem;
  }
  .hdt-card-product__title a.hdt-line-clamp:hover {
    text-decoration-color: var(--color-pr-text);
  }
  .hdt-card-product__vendor {
    transition: color 0.25s;
  }
  .hdt-card-product__vendor:hover {
    color: color-mix(in srgb, var(--color-pr-text), transparent 15%);
  }
  .hdt-hover-bounce {
    transition: transform 0.2s;
  }
  .hdt-hover-bounce:hover {
    animation: gentleBounce 1s ease-in-out infinite;
  }
  .hdt-copy-btn--redeem {
    cursor: pointer;
    --bg-hover: color-mix(in srgb, var(--color-foreground), transparent 95%);
  }
  [type='radio'] + .hdt-swatch__color:hover .hdt-color-bg {
    clip-path: inset(3.4px round var(--round-color,50%));
  }
  .hdt-slideshow:not([autoplay]) .hdt-slideshow__controls--bars .hdt-slider-controls > button:hover {
    background: color-mix(in srgb, var(--color-button), transparent 50%);
  }
  .hdt-slideshow:not([autoplay]) .hdt-slideshow__controls--bars .hdt-slider-controls > button[aria-current="true"]:hover {
    background: var(--color-button);
  }
  .hdt-slider-control--counter .hdt-slider-nav--back-next > button[name="previous"]:hover > svg  {
    animation: moveLeftToStart 0.6s ease-in-out;
  }
  .hdt-slider-control--counter .hdt-slider-nav--back-next > button[name="next"]:hover > svg  {
    animation: moveRightToStart 0.6s ease-in-out;
  }
  .hdt-slideshow:not([autoplay]) .hdt-slideshow__controls--dots .hdt-slider-controls > button:hover .hdt-progress__path {
    stroke-dasharray: 0;
    --progress-color: color-mix(in srgb, var(--color-button), transparent 60%)
  }
  .hdt-slider-thumb-bar .hdt-slider__dot:hover:before {
    background-color: color-mix(in srgb, var(--color-foreground), transparent 40%);
  }

  .hdt-bundle-product--selected .hdt-bundle-product__image :where(img, svg), .hdt-bundle-product:hover .hdt-bundle-product__image :where(img, svg) {
    clip-path: inset(.5rem round calc(var(--corner-radius-xs)));
    padding: .5rem;
  }

  @keyframes moveLeftToStart {
    0% { transform: translateX(0); }
    50% { transform: translateX(-100%); opacity: 0; }
    51% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes moveRightToStart {
    0% { transform: translateX(0); }
    50% { transform: translateX(100%); opacity: 0; }
    51% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }
  .hdt-disclosure__item {
    transition: background-color .25s ease;
  }
  .hdt-disclosure__item:hover {
    background-color: color-mix(in srgb, var(--color-foreground), transparent 94%);
  }
  .hdt-richlist--variant :is(button, a):hover {
    color: var(--color-foreground);
    background-color: color-mix(in srgb, var(--color-foreground), transparent 97%);
  }
  .rte.rte---un-style-link a:not(.hdt-btn):hover {
    background-size: 100% 1px;
  }
  @keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-2rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
  }
  @keyframes fadeOutLeft {
      from {
          opacity: 1;
          transform: translateX(0);
      }
      to {
          opacity: 0;
          transform: translateX(2rem);
      }
  }
  summary.hdt-dropdown__link--level-2:hover .hdt-dropdown__icon {
    background-color: color-mix(in srgb, var(--color-foreground), transparent 95%);
  }
}

.hdt-header__menu-item::after {
  content: '';
  width: 100%;
  display: block;
  height: 1px;
  position: absolute;
  top: 100%;
  pointer-events: none;
  background-color: var(--color-foreground);
  transform: scaleX(0);
  transform-origin: var(--value-origin-start);
  transition: transform .25s ease-in-out;
}
.hdt-header__inline-list > li details[open] .hdt-header__menu-item::after {
  transform: scaleX(1);
}
@media screen and (min-width: 768px) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .hdt-product__complementary-product-image.hdt-product-has-qv::after {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: color-mix(in srgb, var(--color-overlay), transparent calc(100% - var(--overlay-intensity, 50%)));
    opacity: 0;
    transition: opacity 0.3s;
  }
  .hdt-product__complementary-product-image:hover::after {
    z-index: 1;
    opacity: 1;
  }
  .hdt-product__complementary-product-image:hover .hdt-open-quickview-wrapp {
    animation: fadeIn 0.3s forwards;
  }
  .hdt-product__complementary-product-image:not(:hover) .hdt-open-quickview-wrapp {
    animation: fadeOut 0.3s forwards;
  }
  .hdt-header__menu-item::after {
    margin-top: .4rem;
  }
  .hdt-header__inline-list > li:hover .hdt-header__menu-item::after {
    transform: scaleX(1);
  }
}

#CartDrawer .hdt-dialog-drawer__inner:before,
#MainCart[effect-blur]:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  background-color: rgb(var(--hdt-light));
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s;
}
#CartDrawer[effect-blur] .hdt-dialog-drawer__inner:before,
#MainCart[effect-blur]:before {
  pointer-events: auto;
  opacity: .6;
}
.hdt-search-modal__form {
  position: relative;
  display: block;
}
#hdt-search-drawer::part(wrapper) {
  align-items: start;
  height: auto;
}
#hdt-search-drawer::part(content) {
  max-width: 100%;
  width: 100%;
  padding: 0;
  max-height: var(--hdt-search-mh, 90vh);
  border-radius: 0;
}
#hdt-search-drawer::part(body) {
  padding: 0;
}
@keyframes animateMenuOpen {
  0% { opacity: 0; transform: translateY(-15px); }
  100% { opacity: 1; transform: translateY(0); }
}
#hdt-search-drawer[open]::part(content) {
  animation: animateMenuOpen .5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  #hdt-search-drawer[open]::part(content) {
    animation: none;
  }
}

/* ==========================================================================
  3. SEARCH
  ========================================================================== */
.hdt-search--empty-title {
  row-gap: 1rem;
}
.hdt-search-modal__form form {
  padding-block: 7.5rem;
}
.hdt-search-field {
  height: 5.4rem;
  max-width: 61rem;
  margin: 0 auto;
  display: grid;
  align-items: center;
  grid: "space search line input reset close" / 5rem 6.4rem 0.1rem minmax(0, 1fr) 6.4rem 5rem;
}
.hdt-input--search {
  --height-input: 5.4rem;
  grid-area: search / search / reset / reset;
  padding-block: 1rem;
  padding-inline: 8.4rem 6.4rem;
}
.hdt-search__btn,
.hdt-reset-search__btn {
  grid-area: search;
  height: 100%;
  display: grid;
  place-items: center;
}
.hdt-search__btn > :where(svg, div) {
  grid-area: 1/-1;
}
.hdt-reset-search__btn {
  grid-area: reset;
}
.hdt-reset-search__btn.hidden {
  display: none !important;
}
.hdt-close-search__btn {
  grid-area: close;
}
.hdt-close-search__btn button {
  width: 4.5rem;
  height: 5.4rem;
  margin-inline-start: 1.5rem;
  display: grid;
  place-content: center;
}
.hdt-close-search__btn svg {
  width: 3rem;
  height: 3rem;
}
.hdt-close-search__btn line {
  stroke-width: .68px;
}
.hdt-search__line {
  grid-area: line;
  width: .1rem;
  height: 3.3rem;
  background-color: var(--color-line-border);
}
.hdt-predictive-search .hdt-icon-spinner {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 0;
}
.hdt-icon-reset {
  height: 1.8rem;
  width: 1.8rem;
  stroke-width: .1rem;
}
.hdt-predictive-search__heading {
  font-size: var(--text-sm);
  letter-spacing: calc(var(--text-sm)* 0.1);
  text-transform: uppercase;
  padding-bottom: 1.2rem;
  transition: opacity .25s cubic-bezier(0.19, 1, 0.22, 1), box-shadow .25s cubic-bezier(0.19, 1, 0.22, 1);
}
.hdt-predictive-search__result-tabs .hdt-predictive-search__heading {
  opacity: .7;
}
.hdt-predictive-search__result-tabs .hdt-predictive-search__heading[aria-selected="true"] {
  opacity: 1;
}
.hdt-predictive-search__item-query-result mark {
  font-weight: bolder;
  background-color: transparent;
}
.hdt-predictive-search__item {
  display: inline-flex;
  text-align: start;
  text-decoration: none;
  gap: 1.5rem;
}
.hdt-predictive-search__item > :where(img, svg) {
  flex: none;
  align-self: start;
}
.hdt-predictive-search__results-list {
  display: grid;
  gap: 1.4rem;
}
/* .hdt-predictive-search__list-item[aria-selected='true'] > *,
.hdt-predictive-search__item[aria-selected='true'] {
  color: var(--color-foreground);
  background-color: color-mix(in srgb, var(--color-foreground), transparent 96%);
} */
.hdt-predictive-search :where(.hdt-predictive-search__loading, .hdt-icon-search) {
  transition: opacity .25s cubic-bezier(0.19, 1, 0.22, 1);
}
.hdt-predictive-search:not([loading]) .hdt-predictive-search__loading,
.hdt-predictive-search[loading] .hdt-search__btn .hdt-icon-search {
  opacity: 0;
}
.hdt-predictive-search-wrapp {
  display: none;
}
.hdt-predictive-search[open] .hdt-predictive-search-wrapp,
.hdt-predictive-search[loading] .hdt-predictive-search-wrapp {
  display: block;
}
.hdt-predictive-search[loading] .hdt-predictive-search__search-for-button {
  display: none;
}
/* .hdt-predictive-search[loading] .hdt-predictive-search-groups-wrapper ~ .hdt-predictive-search__search-for-button {
  display: initial;
} */
.hdt-predictive-search__result-tabs::part(hdt-tabs-slot) {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid var(--color-line-border);
  margin-bottom: 3rem;
}
.hdt-predictive-search__result-tabs {
  position: relative;
}
.hdt-predictive-search__result-tabs:after {
  content: '';
  pointer-events: none;
  width: var(--ink-bar-w, 10px);
  transform: translateX(var(--ink-bar-x, 0px)) translateY(var(--ink-bar-y, 25px));
  transform-origin: var(--value-origin-start);
  will-change: transform, width;
  height: 1.25px;
  display: block;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  background-color: var(--color-foreground);
  transition: transform 0.3s ease, width 0.3s ease;
}
#predictive-search-queries {
  border-bottom: 1px solid var(--color-line-border);
  margin-bottom: 3rem;
}
.hdt-predictive-search-groups-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: 4rem;
}
.hdt-predictive-search__item-content {
  display: grid;
  gap: .5rem;
}
.hdt-predictive-search__item-query-result {
  font-size: var(--text-base);
}
.hdt-predictive-search-status {
  padding-top: 4rem;
}
.hdt-predictive-search__search-for-button {
  margin-top: 9rem;
}
.hdt-predictive-search__search-for-button button {
  min-width: min(23.6rem, 100%);
}
@media (max-width: 767px) {
  .hdt-reset-search__btn.hidden ~ .hdt-search__line {
    opacity: 0;
  }
  .hdt-predictive-search-groups-wrapper {
    padding-top: 3rem;
  }
  .hdt-search-modal__form form {
    padding: 3rem 0;
  }
  .hdt-search-field {
    padding-inline: 1.5rem 0;
    grid: "input reset line search close" / minmax(0, 1fr) 5rem 0.1rem 5rem 5rem;
  }
  .hdt-input--search {
    --height-input: 5rem;
    grid-area: input / input / search / search;
    padding-block: 1rem;
    padding-inline: 1.7rem 10.1rem;
  }
  .hdt-search__btn .hdt-icon-search {
    width: 1.5rem;
    height: 1.5rem;
  }
  .hdt-close-search__btn button {
    width: 4.4rem;
    height: 5rem;
    margin-inline-start: 0.6rem;
  }
  .hdt-predictive-search__results-list,
  .hdt-predictive-search__result-tabs::part(hdt-tabs-slot) {
    padding-inline: 1.5rem;
  }
  .hdt-predictive-search__result-tabs::part(hdt-tabs-header) {
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    display: grid;
  }
  .hdt-predictive-search__result-tabs::part(hdt-tabs-slot), #predictive-search-results-queries-list {
    display: grid;
    grid: auto / auto-flow max-content;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    overflow: auto hidden;
  }
  #predictive-search-queries {
    margin-bottom: 2rem;
    padding-inline: 1.5rem;
  }
  .hdt-predictive-search-status {
    padding: 3rem 1.5rem 0;
  }
  .hdt-predictive-search__search-for-button {
    margin-top: 4rem;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .hdt-predictive-search-groups-wrapper--suggestions {
    grid-template-columns: min(33rem, 20vw) 1fr;
  }
}

@media screen and (min-width: 768px) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  #predictive-search-results .hdt-psrl--collections .hdt-predictive-search__list-item > a:hover .hdt-btn--flip-after > span,
  .hdt-search-list-collections > a:hover .hdt-btn--flip-after > span {
    transform: var(--button-slide-text-hover-1);
    opacity: 0;
  }
  #predictive-search-results .hdt-psrl--collections .hdt-predictive-search__list-item > a:hover .hdt-btn--flip-after:after,
  .hdt-search-list-collections > a:hover .hdt-btn--flip-after:after {
    transform: var(--button-slide-text-hover-2);
    opacity: 1;
  }
}

.hdt-btn--loading_spinner[aria-disabled="true"],
.hdt-btn--loading_spinner[aria-busy="true"] {
  color: transparent
}
.hdt-btn--loading_spinner .hdt-icon-spinner {
  transition: opacity .25s cubic-bezier(0.19, 1, 0.22, 1);
}
.hdt-btn--loading_spinner .hdt-icon-spinner {
  opacity: 0;
}
.hdt-btn--loading_spinner[aria-busy="true"] > *:not(.hdt-loading-area__spinner) {
  opacity: 0;
  transition: none;
}
.hdt-btn--loading_spinner[aria-disabled="true"],
.hdt-btn--loading_spinner[aria-disabled="true"] .hdt-icon-spinner,
.hdt-btn--loading_spinner[aria-busy="true"],
.hdt-btn--loading_spinner[aria-busy="true"] .hdt-icon-spinner {
  opacity: 1;
}
[loading]>.hdt-icon-spinner,
.hdt-predictive-search[loading] .hdt-icon-spinner,
.hdt-btn--loading_spinner[aria-disabled="true"] .hdt-icon-spinner,
.hdt-btn--loading_spinner[aria-busy="true"] .hdt-icon-spinner {
  --hdt-anim-state: running;
}
.hdt-icon-spinner {
  animation: hdt-rotator 1s infinite linear var(--hdt-anim-state, paused);
}
@keyframes hdt-rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}

.hdt-path {
  stroke-dasharray: 280;
  stroke-dashoffset: 0;
  transform-origin: center;
  stroke: var(--color-foreground);
  animation: hdt-dash 1s infinite ease-in-out var(--hdt-anim-state, paused);
}
.hdt-btn--loading_spinner .hdt-path {
  stroke: var(--color-button-text);
}

@media screen and (forced-colors: active) {
  .hdt-path {
    stroke: CanvasText;
  }
}

@keyframes hdt-dash {
  0% {
    stroke-dashoffset: 280;
  }
  50% {
    stroke-dashoffset: 75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 280;
    transform: rotate(450deg);
  }
}

@keyframes iconSlideY {
  0% { opacity: 1; transform: translateY(0) }
  50% {opacity: 0;transform: translateY(calc(max(100%, 14px) * -1))}
  51% {opacity: 0;transform: translateY(max(100%, 14px))}
  100% {opacity: 1;transform: translateY(0)}
}
@keyframes iconSlideX {
  0% { opacity: 1; transform: translateX(0);}
  50% {opacity: 0; transform: translateX(calc(max(100%, 14px) * var(--stt-btn, -1)));}
  51% {opacity: 0; transform: translateX(calc(max(100%, 14px) * var(--stt-btn2, 1)));}
  100% {opacity: 1; transform: translateX(0);}
}
@keyframes iconBouncing {
  0% {
      transform: translateY(0);
      animation-timing-function: ease-in;
  }
  20% {
      transform: translateY(-0.3rem);
      animation-timing-function: ease-out;
  }
  60% {
      transform: translateY(0.3rem);
  }
  80% {
      transform: translateY(-0.3rem);
  }
  100% {
      transform: translateY(0);
  }
}
.hdt-loading-area__spinner {
  display: inline-block;
}
.hdt-product-card-btn {
  &[aria-busy="true"] {
    .hdt-loading-area__spinner {
      display: block;
      .hdt-icon-spinner {
        opacity: 1;
      }
    }
  }
}

/*================ 2. Scrollbar CSS ================*/

/*================ 4. PhotoSwipe v5.4.4 ================*/
.pswp {
  --color-background: rgba(255 255 255 / 1);
  --color-foreground: rgba(0 0 0 / 1);
  --pswp-bg: var(--color-background);
  --pswp-placeholder-bg: color-mix(in srgb, var(--color-foreground), transparent 90%);
  --pswp-root-z-index: 100000;

  /* defined via js:
  --pswp-transition-duration: 333ms; */
  --pswp-icon-color:var(--color-foreground);
  --pswp-icon-color-secondary: var(--color-foreground);
  --pswp-icon-stroke-color: var(--color-foreground);
  --pswp-icon-stroke-width: 1px;
  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: var(--cursor-zoom-in-icon) 22 22, zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 44px;
	height: 44px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
  appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  /* fill: var(--pswp-icon-color); */
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 18px;
  height: 18px;
  overflow: hidden;
  pointer-events: none;
}
.pswp__button--close .pswp__icn {
  width: 24px;
  height: 24px;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 44px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
	z-index: 10;
  background-color: color-mix(in srgb, var(--color-background), transparent 20%);

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}
.pswp__top-bar .pswp__button svg {
  position: static;
  stroke-width: 1.8px;
}


/*

  Close button

*/
.pswp__button--close {
  margin-inline-end: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 70px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  /* transform: scale(-1, 1); */
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: flex;
}

/* "+" => "-" */
.pswp--zoomed-in #pswp__icn-plus {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 44px;
  height: 44px;
  margin-inline-end: auto;
}

.pswp__preloader .pswp__icn {
  position: static;
  opacity: 0;
  transition: opacity 0.2s linear;
  fill: var(--pswp-icon-color);
  width: 30px;
  height: 30px;
}

.pswp__preloader .pswp__icn-shadow {
  stroke-width: 0px;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
  animation: pswp-clockwise 600ms linear infinite;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  /* height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  line-height: 30px; */
  font-size: 14px;
  color: var(--pswp-icon-color);
  /* text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary); */
  opacity: 0.85;
  margin-inline-start: 6px;
  padding: 0 .5rem;
  pointer-events: none;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

/*

  Thumbnails

*/
.pswp__thumbnails {
  padding: 1rem 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  white-space: nowrap;
  overflow: auto;
  opacity: 0;
  background: 0 0;
  transition: opacity .2s ease-out;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* text-align: center; */
  transform: translate3d(0,100%,0);
  background-color: color-mix(in srgb, var(--color-background), transparent 20%);
}
.pswp__thumbnails .hdt-slider {
  --slide-size-set: 6rem;
  --slide-spacing: 1rem;
}
.pswp__thumbnail {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: inline-block;
  /* margin: 0; */
  /* background-color: (var(--color-background) ; */
}
.pswp__thumbnail img {
  width: 100%;
}
.hdt-psw-animate .pswp__thumbnails {
  opacity: 1;
  transition: transform .6s cubic-bezier(.19,1,.22,1) 0s;
  transform: translate3d(0,0,0);
}
.pswp__thumbnail img {
  margin-bottom: -5px;
  opacity: .6;
  transition: transform .6s,opacity .6s;
  -ms-transform: translateY(0);
  transform: translateY(0);
  pointer-events: none;
}
.pswp__thumbnails .hdt-slider__container {
  align-items: end;
}
@media (min-width: 768px) {
  .pswp__thumbnails .hdt-slider {
     --slide-size-set: 8rem;
  }
}
.pswp__thumbnail--active img {
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  opacity: 1;
}
@media screen and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .pswp__thumbnail:hover img {
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    opacity: 1;
  }
}

/*================ 5. Zoom image ================*/
.drift-bounding-box,
.drift-zoom-pane {
  position: absolute;
  pointer-events: none;
}

@keyframes noop {
  0% { zoom: 1; }
}

@-webkit-keyframes noop {
  0% { zoom: 1; }
}

.drift-zoom-pane.drift-open {
  display: block;
}

.drift-zoom-pane.drift-closing,
.drift-zoom-pane.drift-opening {
  animation: noop 1ms;
  -webkit-animation: noop 1ms;
}

.drift-zoom-pane {
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.drift-zoom-pane-loader {
  display: none;
}
@keyframes drift-fadeZoomIn {
  0% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes drift-fadeZoomOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  15% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}

@keyframes drift-loader-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-180deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes drift-loader-before {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2) translateX(6px);
  }
  25% {
    transform: scale(1.3) translateX(8px);
  }
  40% {
    transform: scale(1.2) translateX(6px);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.8) translateX(6px);
  }
  75% {
    transform: scale(0.7) translateX(8px);
  }
  90% {
    transform: scale(0.8) translateX(6px);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes drift-loader-after {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2) translateX(-6px);
  }
  25% {
    transform: scale(1.3) translateX(-8px);
  }
  40% {
    transform: scale(1.2) translateX(-6px);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.8) translateX(-6px);
  }
  75% {
    transform: scale(0.7) translateX(-8px);
  }
  90% {
    transform: scale(0.8) translateX(-6px);
  }
  100% {
    transform: scale(1);
  }
}

.drift-zoom-pane {
  /* background: rgba(0, 0, 0, 0.5); */
  /* This is required because of a bug that causes border-radius to not
  work with child elements in certain cases. */
  background: var(--color-background);
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  box-shadow: 0 1px 5px rgb(127 127 127 / 2%), 0 5px 18px rgb(127 127 127 / 20%);
  z-index: 3;
}

.drift-zoom-pane.drift-opening {
  animation: drift-fadeZoomIn 180ms ease-out;
  -webkit-animation: drift-fadeZoomIn 180ms ease-out;
}

.drift-zoom-pane.drift-closing {
  animation: drift-fadeZoomOut 210ms ease-in;
  -webkit-animation: drift-fadeZoomOut 210ms ease-in;
}

.drift-zoom-pane.drift-inline {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 75px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.drift-loading .drift-zoom-pane-loader {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 66px;
  height: 20px;
  animation: drift-loader-rotate 1800ms infinite linear;
  -webkit-animation: drift-loader-rotate 1800ms infinite linear;
}

.drift-zoom-pane-loader:before,
.drift-zoom-pane-loader:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  border-radius: 20px;
  background-color: var(--color-foreground)
}

.drift-zoom-pane-loader:before {
  left: 0;
  animation: drift-loader-before 1800ms infinite linear;
  -webkit-animation: drift-loader-before 1800ms infinite linear;
}

.drift-zoom-pane-loader:after {
  right: 0;
  animation: drift-loader-after 1800ms infinite linear;
  -webkit-animation: drift-loader-after 1800ms infinite linear;
  animation-delay: -900ms;
  -webkit-animation-delay: -900ms;
}

.drift-bounding-box {
    /* background: rgba(255,255,255,.25);
    box-shadow: 0 0 0 1px rgb(0 0 0 / 40%) inset; */
    background-image: var(--tile-zoom);
    z-index: 500;
}
.drift-zoom-pane img {
    position: absolute;
    display: block;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover;
    top: 0;
    left: 0;
}
.hdt-produc-zoom--wrapp {
  inset-inline-start: 0;
}
.hdt-produc-zoom--wrapp .drift-zoom-pane {
    top: 0;
    inset-inline-start: 0;
    height: 52rem;
    max-width: 52rem;
    width: 100%;
}
.zoom-type--external :is(.hdt-product-media__thumb, .hdt-product__info-container) {
    transition: opacity .2s;
}
.zoom-type--external :is(.zoom_fade_media .hdt-product-media__thumb, .zoom_fade_info) {
    opacity: .3;
}
@media screen and (pointer: fine) {
  .hdt-produc-zoom--wrapp {
    position: sticky;
    top: 3rem;
    z-index: 4;
  }
}
.hdt-bf-range:focus-visible + .hdt-bf-image-handle > span:not(.sr-only),
summary.hdt-accordion-heading:focus-visible,
.hdt-product-info__accordion summary:focus-visible {
  outline: var(--color-focus) auto 0.1rem;
  outline-offset: -.1rem;
}
:has(.hdt-card-product__media-wrapp:focus:focus-visible) .hdt-card-product__media:focus-within {
  outline: 0;
  box-shadow: 0 0 0 0.2rem var(--color-focus);
}
.hdt-card-product__media-wrapp:focus {
  outline: 0;
}
wrapp-hdt-swatches .sr-only[type=radio]:focus-visible + .hdt-color-list__color {
  box-shadow: 0 0 0 0.2rem var(--color-focus);
}
wrapp-hdt-swatches[auto-limit] .sr-only[type=radio]:focus-visible + .hdt-color-list__color {
  box-shadow: inset 0 0 0 0.2rem var(--color-focus);
}
:is(a.hdt-media-overlap-content, a.hdt-hover-mask):focus-visible {
  outline: 0;
  &:after {
    content: '';
    position: absolute;
    display: block;
    inset: 0;
    border: 0.25rem solid var(--color-focus);
    pointer-events: none;
  }
}
.hdt-bundle-products__form .hdt-product-form__submit:focus-visible,
.hdt-slider-controls>button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 .2rem var(--color-background), 0 0 0 .4rem var(--color-focus)
}
:is(.hdt-input:focus-visible:not(:focus),.hdt-textarea:focus-visible:not(:focus),.hdt-select:focus-visible:not(:focus)) {
  outline: none;
  border-color: var(--color-focus);
}
.hdt-field--fieldset:focus-within {
  border-color: var(--color-foreground);
}
.hdt-input--search:focus-visible {
  border-color: currentColor;
}
.product-metafield-image-section {
  width: 100%;
  margin: 24px 0;
}

.product-metafield-image-section img {
  width: 100%;
  height: auto;
  display: block;
}
/* Center product custom metafield images */
.product-custom-image-section {
  text-align: center;
}

.product-custom-image-section img {
  display: inline-block !important;
  max-width: 100%;
  height: auto;
}
/* --- FIX: allow horizontal layout inside accordion RTE --- */
.not-rte {
  all: unset;
  display: block;
  margin-top: 16px;
}

/* Proven Results slider layout */
.proven-results-slider {
  width: 100%;
}

.proven-track {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.proven-card {
  flex: 0 0 220px;
  min-height: 90px;
  padding: 14px;
  background: #ffffff;
  border-radius: 12px;
  text-align: center;

  display: flex !important;
  align-items: center;
  justify-content: center;

  white-space: normal;
}

}
/* Remove RTE spacing interference */
.rte .proven-results-slider,
.rte .proven-track,
.rte .proven-card {
  margin: 0 !important;
}
/* ================================
   Proven Results – Final Design
   ================================ */

.proven-results-slider {
  margin-top: 0px;     /* space ABOVE boxes */
  margin-bottom: 10px; /* space BELOW boxes */
}

  width: 100%;
}

/* Horizontal scroll container */
.proven-track {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px;

  overflow-x: auto;
  -webkit-overflow-scrolling: touch;

  scroll-snap-type: x mandatory;
}

/* Individual card */
.proven-card {
  flex: 0 0 300px;          /* Card width (matches reference feel) */
  min-height: 50px;        /* Equal height */

  padding: 16px 18px;

  background: #f6f2ee;     /* Warm beige/off-white */
  color: #111;

  border-radius: 0px;     /* Rounded corners like reference */
  border: none;

  display: flex !important;
  align-items: center;
  gap: 14px;

  box-sizing: border-box;
  text-align: left;

  font-size: 14px;
  line-height: 1.4;

  scroll-snap-align: start;
}

/* Big number (2X / 3X etc) */
.proven-card strong,
.proven-card b {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #000;

  flex-shrink: 0;
}

/* Remove Vergo RTE spacing interference */
.rte .proven-results-slider,
.rte .proven-track,
.rte .proven-card {
  margin: 0 !important;
}
.hdt-product-info__accordion details[open] .hdt-accordion-content {
  padding-top: 10 !important;
}

}

.hdt-product-info__accordion .hdt-accordion-content {
  padding-bottom: 5px !important;
}

/* Product custom image padding control */
.product-custom-image-section {
  text-align: center;

  /* 🔧 CONTROL PADDING HERE */
  padding: 40px 16px 24px 16px; 

}

.product-custom-image-section img {
  display: inline-block !important;
  max-width: 100%;
  height: auto;
}

/* ===============================
   PRODUCT PROBLEM BUNDLE – BASE
   =============================== */

.problem-bundle-section {
  margin-top: 40px;
}

.problem-bundle-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.problem-bundle-header {
  text-align: center;
  margin-bottom: 32px;
}

.problem-bundle-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.problem-bundle-desc {
  font-size: 16px;
  color: #555;
}

/* Steps wrapper */
.problem-bundle-steps {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

/* Individual step card */
.bundle-step {
  flex: 1 1 0;
  max-width: 320px;
  background: #f7f7f7;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

/* Step number */
.bundle-step-number {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #777;
}

/* Image */
.bundle-step-image img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}

/* Title */
.bundle-step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Description */
.bundle-step-text {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* Mobile scroll */
@media (max-width: 768px) {
  .problem-bundle-steps {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .bundle-step {
    min-width: 260px;
  }
}
/* ===============================
   BUNDLE PLUS CONNECTORS
   =============================== */

.problem-bundle-steps {
  position: relative;
}

.bundle-step {
  position: relative;
}

/* Add + between cards */
.bundle-step:not(:last-child)::after {
  content: "+";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 600;
  color: #333;
}

/* Hide connectors on mobile */
@media (max-width: 768px) {
  .bundle-step::after {
    display: none;
  }
}
/* ===============================
   BUNDLE CARD – VISUAL POLISH
   =============================== */

.bundle-step {
  background: #f5f6f7;            /* Light grey */
  border: 1px solid rgba(0,0,0,0.06); /* Soft border */
  border-radius: 14px;
  padding: 22px 20px 24px;
}

/* Bigger product image */
.bundle-step-image img {
  max-width: 220px;
  margin-bottom: 18px;
}

/* Step number – subtle */
.bundle-step-number {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

/* Product title */
.bundle-step-title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

/* Step description */
.bundle-step-text {
  font-size: 14px;
  color: #555;
  margin-top: 6px;
  line-height: 1.45;
}
/* ===============================
   BUNDLE FOOTER
   =============================== */

.bundle-footer {
  margin-top: 32px;
  text-align: center;
}

.bundle-price {
  font-size: 16px;
  margin-bottom: 12px;
}

.bundle-add-to-cart {
  background: #000;
  color: #fff;
  border: none;
  padding: 5px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
}

.bundle-add-to-cart:hover {
  opacity: 0.9;
}
/* Bundle – remove card background */
.bundle-step {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.bundle-step-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-step-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Center align bundle total price */
.problem-bundle-section .bundle-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem-bundle-section .bundle-price {
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}
/* Control spacing around total bundle price */
.problem-bundle-section .bundle-price {
  margin-top: 20px;      /* 👈 increase/decrease this */
  margin-bottom: 0; /* 👈 increase/decrease this */
}

.problem-bundle-section .bundle-add-to-cart {
  margin-top: 0 !important;   /* reduce this */
}

/* Subtle, minimal border around bundle product images */
.problem-bundle-section .bundle-step-image {
  max-width: 260px;                 /* image size control */
  margin: 0 auto;

  border: 0.5px solid rgba(0,0,0,0.75); /* thinner border */
  padding: 6px;                      /* 🔽 reduce border spacing */
  box-sizing: border-box;
}

.problem-bundle-section .bundle-step-image img {
  width: 100%;
  height: auto;
  display: block;
}

}
/* Increase bundle product image size */
.problem-bundle-section .bundle-step-image {
  max-width: 260px;   /* 🔼 increase this */
  margin: 0 auto;
}

.problem-bundle-section .bundle-step-image img {
  width: 100%;
  height: auto;
  display: block;
}
.product-primary-ingredient-text {
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.4;
  color:rgb(0, 0, 0);
}

.product-primary-ingredient-text ul,
.product-primary-ingredient-text ol {
  list-style: disc;
  padding-left: 18px;
  margin: 6px 0;
}

.product-primary-ingredient-text li {
  margin-bottom: 4px;
}

.product-primary-ingredient-text h1,
.product-primary-ingredient-text h2,
.product-primary-ingredient-text h3,
.product-primary-ingredient-text h4 {
  margin-bottom: 4px;
  font-weight: 600;
}


/* ✅ Fix circular clipping / mask issue WITHOUT breaking slideshow height logic */
.hdt-slideshow .hdt-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* remove weird masks / shapes */
  border-radius: 0 !important;
  clip-path: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* ❌ DO NOT force heights on slideshow containers */
/* ❌ DO NOT set min-height on slide or viewport */
/* ❌ DO NOT set height: 100% !important on wrapper/picture */

/* 🔥 Force slideshow content box to be horizontally centered */
.hdt-slideshow .hdt-media-content {
  width: 100%;
  display: flex;
  justify-content: center;  /* centers horizontally */
}

/* Keep vertical positioning intact */
.hdt-slideshow .hdt-media-content-wrapp {
  margin-left: auto;
  margin-right: auto;
}
.hdt-media-content-wrapp:empty {
  display: none !important;
}
/* 🔥 Allow Split Image Promo height controls to work */
.split-image-promo__item {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

.split-image-promo__img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}

