/** Shopify CDN: Minification failed

Line 1788:46 The "-" operator only works if there is whitespace on both sides
Line 2527:0 Expected percentage but found "0"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:about-us (INDEX:1) */
/*

=========================
SECTION SHELL
=========================
*/
.about-section {
padding: var(--space-16) var(--space-6);


/*

background: radial-gradient(circle at 12% 8%, var(--color-primary-wash), transparent 42%),
radial-gradient(circle at 88% 92%, var(--color-primary-wash), transparent 40%), var(--color-background);
*/
color: var(--color-text);
font-family: var(--font-body);
}

.about-section .container {
max-width: 1600px;
margin-inline: auto;
display: grid;
gap: var(--space-16);
}

p.high-light {
color: var(--color-primary) !important;
text-transform: uppercase !important;
font-style: italic !important;
}


/*

=========================
HERO
=========================
*/
.about-section .hero-card {
position: relative;
}

.about-section .hero-image {
display: block;
width: 100%;
aspect-ratio: 16 / 7;
object-fit: cover;
border: var(--border-thick) solid var(--border-color);
border-radius: var(--radius-2xl);
box-shadow: var(--shadow-panel);
}


/*

=========================
CONTENT BLOCKS
=========================
*/
.about-section .content-grid {
display: grid;
grid-template-columns: 1.4fr 1fr;
gap: var(--space-12);
align-items: center;
}

.about-section .content-grid.reverse {
grid-template-columns: 1fr 1.4fr;
}

/* keep the image first column on reverse rows for correct visual order */


.about-section .content-grid.reverse .small-image {
order: -1;
}

.about-section .text-box h2 {
margin: 0 0 var(--space-5);
font-family: var(--font-body);
font-size: var(--text-lg);
font-weight: var(--font-bold);
line-height: var(--line-heading);
/* letter-spacing: 0.01em; */
color: var(--color-heading);
text-transform: uppercase;
}

/* little brand accent under each heading */


/*

.about-section .text-box h2::after {
content: "";
display: block;
width: 6.4rem;
height: 0.5rem;
margin-top: var(--space-3);
border-radius: var(--radius-full);
background: linear-gradient(90deg, var(--color-primary), var(--border-color));
}
*/.about-section .paragraph {
display: grid;
gap: var(--space-2);
}

.about-section .paragraph p {
margin: 0;
font-size: var(--text-xs);
font-weight: 300;

/* line-height: var(--line-relaxed); */
color: var(--color-text-light);
}


/*

=========================
SUPPORTING IMAGES
=========================
*/
.about-section .small-image img {
display: block;
border: 5px solid var(--border-color-light);
border-radius: 20px;
height: 100%;
width: 100%;

object-fit: cover;

transition: transform var(--transition-smooth)
, box-shadow var(--transition-smooth);
}
.about-section .small-image {
height: 100%;
img {

}
}


/*

.about-section .small-image img:hover {
transform: translateY(-6px) rotate(-1deg);
box-shadow: var(--shadow-lg);
}
*/


/*

=========================
FEATURES
=========================
*/.about-section .features {
display: flex;
/* grid-template-columns: repeat(3, 1fr); */
/* gap: var(--space-6); */
align-items: center;
justify-content: center;
}

.about-section .features img {
width: 40%;
}


/*

=========================
BOTTOM BANNER
=========================
*/
.bottom-banner img {
display: block;
width: 100%;
height: 90vh;
/* aspect-ratio: 21 / 9; */
object-fit: cover;
/* border: var(--border-thick) solid var(--border-color); */
/* border-radius: var(--radius-2xl); */
/* box-shadow: var(--shadow-panel); */
}


/*

=========================
RESPONSIVE
=========================
*/
@media (max-width: 900px) {
.about-section {
padding: var(--space-12) var(--space-5);
}

.about-section .container {
gap: var(--space-12);
}

.about-section .content-grid,
.about-section .content-grid.reverse {
grid-template-columns: 1fr;
gap: var(--space-8);
}

/* show the image above the text on every block when stacked */
.about-section .content-grid .small-image,
.about-section .content-grid.reverse .small-image {
order: -1;
}

.about-section .text-box h2 {
font-size: var(--text-xl);
}
}

@media (max-width: 600px) {
.about-section {
padding: var(--space-20) var(--space-4);
}

.about-section .features {
grid-template-columns: 1fr;
gap: var(--space-5);
}

.about-section .feature-card {
flex-direction: row;
justify-content: flex-start;
text-align: left;
padding: var(--space-5) var(--space-6);
}

.about-section .feature-card .icon {
width: 6rem;
height: 6rem;
}

.about-section .hero-image {
aspect-ratio: 4 / 3;
}

.about-section .features img {
width: 100%;
}
}
/* END_SECTION:about-us */

/* START_SECTION:collection (INDEX:5) */
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    @media (max-width: 768px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
  }
  .collection-hero {
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-weight: 500;
    min-height: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    h1 {
      font-weight: 500;
    }
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:6) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:contact-us (INDEX:7) */
.form-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: var(--space-20);
      @media (max-width: 768px) {
        min-height: 50vh;
      }
    }

    .contact-section {

      background: var(--color-secondary);

    }

    .form-card {
      width: 100%;
      max-width: 50rem;
      border-radius: var(--radius-md);
      padding: 3rem;
    }

    .contact-section .form-card {
      background: var(--color-surface-dark);

    }
    .distributor-section {
     background-image: url('//blissnack.com/cdn/shop/t/10/assets/form-bg.png');
     background-repeat: no-repeat;
     background-position: center center;
     background-size: cover;
    }

    .distributor-section .form-card {
      border: var(--border-thick) solid var(--color-border-primary);
      background-color: var(--color-background);
    }


    .form-title {
      font-family: var(--font-heading);
      font-size: var(--text-md);
      font-weight: var(--font-regular);
      color: var(--color-heading);
      text-align: center;
      margin-bottom: var(--space-2);
      line-height: var(--line-heading);
    }

    .form-paragraph {
      text-align: center;
    }

    .form-box {
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
      padding-top: 20px;
    }

    .form-box-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-3);
    }

    .form-box input,
    .form-box textarea {
      width: 100%;
      background: transparent;
      border: 1px solid rgba(53, 42, 10, 0.35);
      border-radius: var(--radius-xxxs);
      padding: var(--text-xxxs);
      font-family: var(--font-body);
      font-size: var(--text-xxxs);
      color: var(--color-text);
      outline: none;
      transition: var(--transition-base);
      @media (max-width: 768px) {
        font-size: var(--text-xs);
        
      }
    }

    .form-box input::placeholder,
    .form-box textarea::placeholder {
      color: var(--color-text-muted);
    }

    .form-box input:focus,
    .form-box textarea:focus {
      border-color: var(--color-primary);
    }

    .form-box textarea {
      min-height: 9rem;
      resize: none;
    }

    .form-box-btn {
      position: relative;
      overflow: hidden;
      isolation: isolate;

      margin: 0 auto;
      /* min-width: 28rem; */
      padding: 1rem 2rem;
      border: 0;
      border-radius: var(--radius-full);
      background: var(--color-primary);
      color: var(--color-white);
      font-family: var(--font-body);
      font-size: var(--text-xxxs);
      /* font-weight: var(--font-bold); */
      cursor: pointer;
      transition: var(--transition-base);
      @media (max-width: 768px) {
        font-size: var(--text-xs);
       
      }

    }

    .form-box-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;

      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .form-box-btn:hover::before {
      transform: scaleX(1);
    }

    .form-box-btn {
      color: var(--color-white);
      background: var(--color-primary);
       &:hover {
        color: var(--color-primary);
      }
    }

    .form-box-btn::before {
      background: var(--color-white);
    }


    /*
     .form-box-btn:hover {
     background: var(--color-primary-dark);
     transform: translateY(-2px);
     }
  */
    .contact-us-bottom {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: var(--space-6);
      gap: 20px;
    }
    .contact-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 50%;
      gap: 10px;
    }
    .contact-info-item {
      display: flex;
      gap: 5px;
    }
    .contact-info-item span {
      display: inline-block;
    }
    .contact-info-item p {
      display: inline-block;
      text-align: center;
    }

    @media (max-width: 767px) {
      .form-section{
        padding: var(--space-20) var(--space-6);

      }
      .form-card {
        padding: 3rem 2rem;
      }

      .form-box-grid {
        grid-template-columns: 1fr;
      }

      .form-title {
        font-size: var(--text-xl);
      }

      .form-box-btn {
        width: 100%;
        min-width: auto;
      }
      .contact-info {
        width: 90%;
      }
    }
/* END_SECTION:contact-us */

/* START_SECTION:custom-section (INDEX:8) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:footer-social-gallery (INDEX:9) */
/*
   ========================================= 
   SOCIAL GALLERY COMPONENT 
   =========================================
*/

  .social-gallery {
    --gallery-gap: 1.5rem;
    --gallery-radius: 1.75rem;
    --gallery-bg: #ece9df;
    --gallery-border: #f2b500;
    --gallery-text: #1f1400;
    --gallery-icon-bg: #f2b500;
    --gallery-card-width: 33.333%;
    --gallery-transition: 0.35s ease;

    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    /* background: var(--gallery-bg); */
  }

  .social-gallery__header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    padding: 0 4rem;
  }

  .social-gallery__title {
    margin: 0;
    color: var(--gallery-text);
    font-size: var(--text-xxl);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.02em;
  }

  .social-gallery__track {
    overflow: hidden;
    position: relative;
  }

  .social-gallery[data-overflow-slide='true'] .social-gallery__track {
    overflow: visible;
  }

  .social-gallery__slides {
    display: flex;
    gap: var(--gallery-gap);
    will-change: transform;
    cursor: grab;
    user-select: none;
  }

  .social-gallery__slides.is-dragging {
    cursor: grabbing;
  }

  .social-gallery__slide {
    position: relative;
    flex: 0 0 calc((100% / var(--gallery-slide-view)) - var(--gallery-gap));
    border-radius: var(--gallery-radius);
    overflow: hidden;
    transition: transform var(--gallery-transition)
    , opacity var(--gallery-transition);
  }


  /*
   .social-gallery__slide:hover { 
   transform: translateY(-6px); 
   }
*/

  .social-gallery__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 0.72;
    border-radius: inherit;
    border: 4px solid var(--gallery-border);
  }


  /*
   ========================================= 
   TABLET 
   =========================================
*/

  @media (max-width: 991px) {
    .social-gallery {
      --gallery-slide-view: 2.2;
    }

    .social-gallery__social-btn {
      width: 3.5rem;
      height: 3.5rem;
    }
  }


  /*
   ========================================= 
   MOBILE 
   =========================================
*/

  @media (max-width: 767px) {
    .social-gallery {
      --gallery-gap: 1rem;
      --gallery-slide-view: 2.2;
      padding: var(--space-10) var(--space-2);
    }

    .social-gallery__header {
      flex-direction: row;
      align-items: flex-start;
      padding: 0 1rem;
    }

    .social-gallery__socials {
      width: 100%;
    }

    .social-gallery__social-btn {
      width: 3rem;
      height: 3rem;
    }

    .social-gallery__social-btn svg {
      width: 1.2rem;
      height: 1.2rem;
    }
  }
/* END_SECTION:footer-social-gallery */

/* START_SECTION:footer (INDEX:10) */
/*

   ========================= 
   Footer Component 
   ========================= 
*/

  .footer {
    --footer-bg: #4761b0;
    --footer-bg-overlay: rgba(38, 52, 122, 0.2);

    --footer-text: #ffffff;
    --footer-text-muted: rgba(255, 255, 255, 0.85);

    --footer-bottom-bg: #f5f1ec;
    --footer-bottom-text: #2c2419;

    --footer-container: 1280px;

    --footer-title-size: clamp(1.5rem, 2vw, 2.75rem);
    --footer-link-size: clamp(1rem, 1.2vw, 1.75rem);
    --footer-watermark-size: clamp(7rem, 22vw, 26rem);

    --footer-space-x: clamp(1.5rem, 4vw, 6rem);
    --footer-space-y: clamp(6rem, 6vw, 9rem);

    --footer-radius: 0;
    --footer-transition: 0.3s ease;

    position: relative;
    overflow: hidden;
  }

  /* Main Section */
  .footer-main-section {
    position: relative;
    background: var(--footer-bg);
    border-radius: var(--footer-radius);
    overflow: hidden;
  }

  /* Watermark */
  .footer__background-text {
    position: absolute;
    inset: auto 0 0 0;
    color: #4059a2;
    opacity: 0.5;

    font-size: var(--footer-watermark-size);
    font-weight: 800;
    line-height: 0.8;

    letter-spacing: -0.08em;
    text-transform: uppercase;

    color: var(--footer-bg-overlay);

    white-space: nowrap;
    pointer-events: none;
    user-select: none;

    transform: translateY(5%);
  }
  .footer__background-text svg {
    width: 100%;
    height: 100%;
  }

  /* Grid Layout */
  .footer__grid {
    position: relative;
    z-index: 2;

    max-width: var(--footer-container);
    margin: 0 auto;

    display: flex;
    /* grid-template-columns: repeat(3, 1fr); */
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;

    gap: clamp(2rem, 5vw, 8rem);

    padding: var(--footer-space-y) var(--footer-space-x);
  }

  /* Column */
  .footer__column {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }

  /* Title */
  .footer__title {
    margin: 0;

    color: var(--footer-text);

    font-size: var(--footer-title-size);
    font-weight: var(--font-medium);
    line-height: 1;
  }

  /* Menu */
  .footer__menu {
    margin: 0;
    padding: 0;
    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Link / Text */
  .footer__link,
  .footer__text {
    color: var(--footer-text-muted);

    font-size: var(--footer-link-size);
    font-weight: var(--font-regular);
    line-height: 1.4;

    text-decoration: none;

    transition: color var(--footer-transition)
    , opacity var(--footer-transition);
  }

  .footer__link:hover {
    color: var(--footer-text);
  }

  /* Bottom */
  .footer-bottom {
    background: var(--footer-bottom-bg);

    padding: 0.875rem 1rem;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-bottom__text {
    margin: 0;

    color: var(--footer-bottom-text);

    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;

    text-align: center;
  }


  /*

   ========================= 
   Responsive 
   ========================= 
*/

  @media (max-width: 991px) {
    .footer__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 640px) {
    .footer__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
    }

    .footer__background-text {
      /* height: 105%; */
      white-space: normal;
      line-height: 0.9;
      svg {
         height: 100%;
       /* width: 220vw; */
      }
    }

    .footer__title {
      font-size: 1.75rem;
    }

    .footer__link,
    .footer__text {
      font-size: 1rem;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:11) */
.header {
    position: fixed;
    width: 100%;
    max-width: 100vw;
    z-index: var(--z-modal);
  }

  .header .svg-wrapper {
  @media (max-width: 767px) {
    height: 2rem;
    width: 2rem;
  }
}

.header .container {
  margin: 24px auto;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  width: 97%;
  padding: var(--space-3) var(--space-6);
  border-radius: 24px;
  background: var(--color-primary);
  justify-content: space-between;
  align-items: center;
  @media (max-width: 767px) {
    margin: 10px auto;
    border-radius: 8px;

  }


}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: var(--space-4);
}

.menu-hamburger {
  background-color: transparent;
  border: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.menu-hamburger svg {
  color: var(--color-white);
}

.header-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.header-center img {
  width: 100%;
  max-width: 140px;
}
.cart-count {
  font-size: var(--text-xxxxs);
  position: absolute;
  display: flex;
  top: -10px;
  right: -10px;
  background: var(--color-secondary);
  color: var(--color-white);
  width: var(--text-xxxxs);
  height: var(--text-xxxxs);
  border-radius: 100%;
  padding: var(--text-xxxxs);
  align-content: center;
  justify-content: center;
  align-items: center;
  @media (max-width: 767px) {
    font-size: var(--text-xxs);
    width: var(--text-xxs);
    height: var(--text-xxs);
    padding: var(--text-xxs);
    top: -8px;
    right: -6px;
  }
}

.cart-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;


  /*

   width: 3.8rem; 
   height: 3.8rem; 
*/
  border: 0;
  border-radius: var(--radius-full);
  background: transparent;
  cursor: pointer;
  transition: transform var(--transition-smooth)
  , background var(--transition-smooth);
}
.profile-icon {
  display: flex;
  align-items: center;
}
/* END_SECTION:header */

/* START_SECTION:home-banner (INDEX:12) */
.slider {
    position: relative;
    z-index: var(--z-slider);
    width: 100%;
    overflow: hidden;
    mask: radial-gradient(20.69px at 50% calc(100% - 29.25px), #000 99%, #0000 101%) calc(50% - 30px) 0/60px 100%,
      radial-gradient(20.69px at 50% calc(100% + 14.25px), #0000 99%, #000 101%) 50% calc(100% - 15px) / 60px 100%
        repeat-x;
    margin-bottom: -30px;
  }

  .slides {
    display: flex;
    width: 400%;
    height: 100%;
    transition: 0.5s;
  }

  .slide {
    width: 25%;
    height: 100%;
    flex-shrink: 0;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Hide radio buttons */
  /* input {
    display: none;
  } */

  /* Navigation dots */
  .navigation-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
  }

  .dot:hover {
    opacity: 1;
  }

  /* Prev / Next buttons */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
  }

  .nav-btn:hover {
    background: #fff;
  }

  .prev {
    left: 15px;
  }

  .next {
    right: 15px;
  }
/* END_SECTION:home-banner */

/* START_SECTION:home-full-product-card (INDEX:13) */
/* Main product hero section. */
  .spicy-hero {
    position: relative;
    width: 100%;
    min-height: 110vh;
    /* background: var(--color-spicy-red); */
    overflow: hidden;
    isolation: isolate;
    background-repeat: no-repeat;
    background: center;
    display: flex;
    align-items: stretch;
    padding: 0;
  }

  /* Oversized repeated product title behind the foreground content. */
  .spicy-hero-bg-text {
    position: absolute;
    top: 36%;
    left: 25%;
    width: 250%;
    height: 250%;
    z-index: 1;
    filter: saturate(9);
    transform: translate(-50%, -50%) rotate(-14deg);
    transform-origin: center center;
    /* color: #000000; */
    opacity: 0.2;
    font-family: var(--font-display);
    font-size: 45vw;
    font-weight: var(--font-medium);
    line-height: 0.8;
    /* letter-spacing: 2px; */
    text-transform: uppercase;
    user-select: none;
    pointer-events: none;
    word-break: break-all;
    overflow: hidden;
    white-space: normal;
    text-align: left;
    padding: 1rem;
  }

  .spicy-hero-bg-text span {
    display: inline;
    font-family: inherit;
  }

  /* Foreground content lifts into place when the product is hovered. */
  .spicy-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container-width);
    padding: var(--space-4);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    align-items: end;
    gap: 4rem;
    box-sizing: border-box;
    transform: translateY(44%);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 80ms;
    will-change: transform;
  }

  /* .spicy-hero-container:has(.spicy-hero-product-img:hover) {
    transform: translateY(0);
  } */
  .spicy-hero-container:hover,
  .spicy-hero.is-inview .spicy-hero-container {
    transform: translateY(0);
  }

  /* Bottom-left title and call-to-action. */
  .spicy-hero-content {
    color: var(--color-white);
    position: absolute;
    bottom: 12%;
    left: 5%;

    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-self: end;
    padding-bottom: 2rem;
  }

  .spicy-hero-titles {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .spicy-hero-brand {
    font-family: var(--font-body);
    font-size: var(--text-md);
    font-weight: var(--font-regular);
    color: var(--color-white);
    letter-spacing: 0.01em;
    line-height: 1;
  }

  .spicy-hero-title-row {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex-wrap: wrap;
  }

  .spicy-hero-title {
    font-family: var(--font-body);
    font-size: var(--text-xl);
    font-weight: var(--font-medium);
    color: var(--color-white);
    line-height: 1;
    letter-spacing: 1px;
    margin: 0;
  }

  .spicy-hero-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--text-lg);
    height: var(--text-lg);
    border-radius: var(--radius-full);
    background: var(--color-white);
    color: var(--color-ink);
    text-decoration: none;
    box-shadow: var(--shadow-hero-control);
    transition: transform var(--transition-base), background var(--transition-base), color var(--transition-base);
    flex-shrink: 0;
    transform: scale(1.1);
    @media (max-width: 767px) {
      width: var(--text-md);
      height: var(--text-md);
    }
  }

  .spicy-hero-arrow:hover {
    /* transform: translateX(6px) scale(1.3); */
    background: var(--color-primary);
    color: var(--color-white);
  }

  /* CTA button with sliding hover background. */
  .spicy-hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: var(--space-1) var(--space-6);
    border-radius: var(--radius-full);
    background: var(--color-white);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    box-shadow: var(--shadow-hero-button);
    transition: color var(--transition-base), transform var(--transition-base);
  }

  .spicy-hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--color-primary);
    transform: translateX(-101%);
    transition: transform 0.45s;
  }

  .spicy-hero-cta:hover {
    color: var(--color-white);
    transform: translateY(-2px);
  }

  .spicy-hero-cta:hover::before {
    transform: translateX(0);
  }

  .spicy-hero-cta-label {
    font-weight: var(--font-medium);
    position: relative;
    z-index: 1;
  }

  /* Product image stays editable through section settings. */
  .spicy-hero-product {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: end;
    justify-content: center;
    align-self: stretch;
  }

  .spicy-hero-product-img {
    /* width: 100%; */
    width: auto;
    height: 85vh;
    margin-bottom: -2rem;
    transform: translateY(0) rotate(var(--product-rotate, 0deg)) scale(var(--product-scale, 1));
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    @media (max-width: 600px) {
      width: 100%;
      height: auto;
    }
  }

  .spicy-hero-product-img:hover {
    transform: translateY(-1rem) rotate(var(--product-rotate, 0deg)) scale(var(--product-scale, 1));
  }

  .spicy-hero-demo-card {
    width: min(100%, 44rem);
    aspect-ratio: 1;
    margin-bottom: -2rem;
    border: 0.4rem dashed rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    text-align: center;
  }

  .spicy-hero-demo-svg {
    width: 60%;
    height: auto;
    color: currentColor;
  }

  .spicy-hero-demo-card span {
    font-family: var(--font-body);
    font-size: var(--text-md);
    font-weight: var(--font-bold);
    text-transform: uppercase;
  }

  /* Decorative floating images expand from the product area on hover. */
  .spicy-hero-floats {
    position: absolute;
    inset: 0;
    z-index: 2;
    transform: translateY(40%) scale(0.2);
    pointer-events: none;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 80ms;
    will-change: transform;
  }

  .spicy-hero:has(.spicy-hero-container:hover) .spicy-hero-floats,
  .spicy-hero.is-inview .spicy-hero-floats {
    transform: translateY(9%) scale(1);

    @media (max-width: 600px) {
      transform: translateY(0%) scale(1);
    }
  }

  .spicy-hero-float {
    position: absolute;
    transform: translateX(var(--float-x, 0)) translateY(var(--float-y, 0)) scale(var(--float-scale, 1))
      rotate(var(--float-rotate, 0deg));
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  @media (max-width: 1024px) {
    .spicy-hero {
      padding: 10rem 0 6rem;
      min-height: 80vh;
    }
    .spicy-hero-container {
      grid-template-columns: 1fr;
      padding: 0 4rem;
      gap: 2rem;
      text-align: left;
    }
    .spicy-hero-content {
      align-items: flex-start;
      bottom: -20px;
      left: 5%;
    }
    .spicy-hero-product {
      align-items: self-start;
    }
    .spicy-hero-bg-text {
      font-size: clamp(7rem, 18vw, 16rem);
    }
  }

  @media (max-width: 600px) {
    .spicy-hero {
      padding: 9rem 0 5rem;
    }
    .spicy-hero-container {
      padding: 0 2rem;
      gap: 1.5rem;
    }
    .spicy-hero-product-img {
      max-width: 100%;
    }
    .spicy-hero-brand {
      font-size: var(--text-md);
    }

    .spicy-hero-arrow {
            width: var(--text-lg);
        height: var(--text-lg);
    }
    .spicy-hero-cta {
      padding: 1.4rem 3rem;
      font-size: var(--text-sm);
    }
    .spicy-hero-bg-text {
      font-size: clamp(6rem, 22vw, 12rem);
      gap: 1rem 2rem;
    }
    .spicy-hero-float {
      /* width: 45px; */
      object-fit: contain;
    }
    .spicy-hero-float--7 {
      display: none;
    }
    .spicy-hero-float--8 {
      display: none;
    }
    
    /* folting elements */

    .spicy-hero-floats.mobile-only {
      .spicy-hero-float--1{
        top: -10vw;
        left: 10px;
        width: 40px;
      }
      .spicy-hero-float--2{
        top: 25vw;
        left: 10px;
        width: 50px;
      }
      .spicy-hero-float--3{
          top: 50vw;
          left: 10px;
        width: 30px;
      }
      .spicy-hero-float--4{
          top: -3vw;
         right: 42vw;
        width: 90px;
      }
      .spicy-hero-float--5{
          top: 3vw;
          right: 16px;
          width: 70px;
      }
      .spicy-hero-float--6{
       top: 60vw;
        right: 20px;
        width: 40px;
      }
      .spicy-hero-float--7{
        top: 50vw;
        right: 0;
        width: 14vw;
      }
    }

  }

  @media (prefers-reduced-motion: reduce) {
    .spicy-hero-product-img,
    .spicy-hero-float,
    .spicy-hero-floats,
    .spicy-hero-container {
      transition: none !important;
      will-change: auto;
    }
  }
/* END_SECTION:home-full-product-card */

/* START_SECTION:home-image-slider (INDEX:14) */
.slider {
    position: relative;
    z-index: var(--z-slider);
    width: 100%;
    overflow: hidden;
    mask: radial-gradient(20.69px at 50% calc(100% - 29.25px), #000 99%, #0000 101%) calc(50% - 30px) 0/60px 100%,
      radial-gradient(20.69px at 50% calc(100% + 14.25px), #0000 99%, #000 101%) 50% calc(100% - 15px) / 60px 100%
        repeat-x;
    margin-bottom: -30px;
  }

  .slides {
    display: flex;
    width: 400%;
    height: 100%;
    transition: 0.5s;
  }

  .slide {
    width: 25%;
    height: 100%;
    flex-shrink: 0;
  }

  .slide img,
  .slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Hide radio buttons */
  /* input {
    display: none;
  } */

  /* Navigation dots */
  .navigation-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
  }

  .dot:hover {
    opacity: 1;
  }

  /* Prev / Next buttons */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
  }

  .nav-btn:hover {
    background: #fff;
  }

  .prev {
    left: 15px;
  }

  .next {
    right: 15px;
  }
/* END_SECTION:home-image-slider */

/* START_SECTION:image-with-text (INDEX:15) */
/*

   ========================================================= 
   CTA PROMO BANNER 
   ========================================================= 
*/
  .cta-banner {
    background: var(--color-background);
    padding: var(--space-10);
  }

  .cta-banner .cta-banner-frame {
    position: relative;
    /* width: min(100% - var(--space-10), var(--container-width)); */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: stretch;
    border: var(--border-thick) solid var(--color-primary);
    border-radius: var(--radius-lg);
    background: var(--color-background);
    overflow: hidden;
    /* box-shadow: var(--shadow-md); */
    padding: 0;
  }

  /* ---------- left: content ---------- */
  .cta-banner .cta-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--space-2);
    padding: var(--space-10);
    background: var(--color-background);
    @media (max-width: 767px) {
      font-size: var(--text-sm);
    }
  }

  .cta-banner .cta-banner-title {
    font-family: var(--font-display);
    font-weight: var(--font-medium);
    font-size: var(--text-3xl);
    line-height: 0.8;
    color: var(--color-heading);
    margin: 0;
    display: flex;
    flex-direction: column;
    letter-spacing: 0;
  }

  .cta-banner .cta-banner-title-line {
    display: block;
    font-family: inherit;
  }

  .cta-banner .cta-banner-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--color-heading);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: var(--line-base);
    margin: calc(var(--space-5) * -1) 0;
    max-width: 42rem;
    margin: 10px 0;
  }


  /*

   visual styling lives on .btn .btn--primary (components/button.css). 
   This rule only positions the button within the banner content stack. 
*/
  .cta-banner .cta-banner-btn {
    align-self: flex-start;
    margin-top: calc(var(--space-5) * -1);
  }

  .cta-banner .cta-banner-warning {
    width: 100%;
    align-self: flex-start;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-xs);
    background: var(--color-peach);
    color: var(--color-heading);
    font-family: var(--font-body);
    font-size: var(--text-xxs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    margin-top: 70px;
    @media (max-width: 767px) {
      margin-top: 10px;
    }
  }

  /* ---------- right: media ---------- */
  .cta-banner .cta-banner-media {
    position: relative;
    background: var(--color-deep-blue);
    overflow: hidden;
  }

  .cta-banner .cta-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* ---------- responsive ---------- */
  @media (max-width: 1024px) {
    .cta-banner .cta-banner-frame {
      grid-template-columns: 1fr 1fr;
      min-height: 48rem;
    }
    .cta-banner .cta-banner-content {
      padding: var(--space-10) var(--space-8);
      gap: var(--space-6);
    }
  }

  @media (max-width: 820px) {
    .cta-banner {
      padding: var(--space-12) var(--space-6);
    }
    .cta-banner .cta-banner-frame {
      grid-template-columns: 1fr;
      min-height: auto;
      border-radius: var(--radius-xl);
    }
    .cta-banner .cta-banner-content {
      padding: var(--space-10) var(--space-6);
      gap: var(--space-5);
    }

    .cta-banner .cta-banner-subtitle {
      font-size: var(--text-base);
      margin-top: 0;
    }
    .cta-banner .cta-banner-btn {
      margin-top: 0;
    }
    .cta-banner .cta-banner-media {
      /* order: 2; */
      aspect-ratio: 4 / 3;
    }
    .cta-banner .cta-banner-image {
      position: relative;
    }
  }

  @media (max-width: 480px) {
    .cta-banner .cta-banner-content {
      padding: var(--space-8) var(--space-5);
      order: 2;
    }
    .cta-banner .cta-banner-warning {
      font-size: var(--text-xs);
      padding: var(--space-3) var(--space-4);
    }
    .cta-banner .cta-banner-btn {
      padding: var(--space-3) var(--space-6);
      border: 1px red solid;
    }
  }
/* END_SECTION:image-with-text */

/* START_SECTION:product-carousel (INDEX:18) */
/*

   ========================================================= 
   PRODUCT CAROUSEL 
   Component-scoped styles for sections/product-carousel.liquid 
   ========================================================= 
*/

  .product-carousel {
    --product-carousel-gap: 1.4rem;
    --product-carousel-card-width: calc((100% -(var(--product-carousel-gap) * 2)) / 3);
    --product-carousel-side-space: clamp(var(--space-4), 4vw, var(--space-10));
    --product-carousel-block-space: clamp(var(--space-12), 8vw, var(--space-20));
    --product-carousel-control-size: 2.4rem;

    position: relative;
    overflow: hidden;
    padding: var(--product-carousel-block-space) 0;
    background: linear-gradient(180deg, var(--color-background-warm-light) 0%, var(--color-background) 100%);
  }

  /* Section heading and top action. */
  .product-carousel__header {
    width: min(100%, var(--container-width));
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding-inline: var(--product-carousel-side-space);
    padding-block: 0 var(--space-8);
  }

  .product-carousel__title {
    margin: 0;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: var(--text-xxl);
    font-weight: var(--font-medium);
    line-height: var(--line-heading);
    letter-spacing: -0.02em;
  }

  .product-carousel__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .product-carousel__view-all {
    min-height: 4.4rem;
    padding: var(--space-2) var(--space-5);
    border: var(--border-medium) solid var(--color-border-primary);
    border-radius: var(--radius-full);
    background: var(--color-primary);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-button);
    transition: transform var(--transition-smooth)
    , background var(--transition-smooth)
    , box-shadow var(--transition-smooth);
  }

  .product-carousel__view-all:hover {
    transform: translateY(-2px);
    background: var(--color-primary-light);
    box-shadow: var(--shadow-button-hover);
  }

  .product-carousel__view-all:focus-visible,
  .product-carousel .carousel-btn:focus-visible,
  .product-carousel .carousel-dot:focus-visible {
    outline: var(--border-medium) solid var(--color-secondary);
    outline-offset: var(--space-1);
  }

  /* Carousel frame uses the JS-generated navigation and dots. */
  .product-carousel__body {
    width: min(100%, var(--container-width));
    margin: 0 auto;
    padding-inline: var(--product-carousel-side-space);
    box-sizing: border-box;
  }

  .product-carousel__slider {
    position: relative;
  }

  .product-carousel__viewport {
    overflow: hidden;
    width: 100%;
  }

  .product-carousel .carousel-track {
    display: flex;

    gap: var(--product-carousel-gap);
    align-items: stretch;
    transition: transform var(--transition-smooth);
    will-change: transform;
  }
  .carousel-track .carousel-card:nth-child(3n + 1) .product-card-frame {
    background-color: #ffdacc;
  }

  .carousel-track .carousel-card:nth-child(3n + 2) .product-card-frame {
    background-color: #f3e6f5;
  }

  .carousel-track .carousel-card:nth-child(3n) .product-card-frame {
    background-color: #e1f1e1;
  }

  .product-carousel .carousel-card {
    flex: 0 0 400px;
    width: 100%;
    border: var(--border-thin) solid var(--color-border-muted);
    border-radius: var(--radius-md);
    background: var(--color-card-soft);
    box-shadow: var(--shadow-card-soft);
    transition: transform var(--transition-smooth)
    , box-shadow var(--transition-smooth)
    , border-color var(--transition-smooth);
    overflow: hidden;
    @media (max-width: 768px) {
      flex: 0 0 280px;
      width: 100%;
    }
  }

  .product-carousel .carousel-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-primary);
    box-shadow: var(--shadow-card-hover);
  }

  .product-carousel .carousel-card > * {
    height: 100%;
  }

  /* JS creates these controls after page load. */
  .product-carousel .carousel-navigation {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-2);
    margin-top: var(--space-6);
  }
  .product-carousel .btn-navigation {
    position: absolute;
    top: 16%;
    right: 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    @media (max-width: 768px) {
      gap: var(--space-1);
      top: 10%;
    }
  }

  .product-carousel .carousel-btn {
    min-width: var(--product-carousel-control-size);
    min-height: var(--product-carousel-control-size);
    /* padding: 0 var(--space-2); */
    border: var(--border-thin) solid var(--color-border);
    border-radius: var(--radius-full);
    background: var(--color-text-light);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth)
    , background var(--transition-smooth)
    , border-color var(--transition-smooth);
    display: grid;
    align-items: center;
    justify-items: center;
  }

  .product-carousel .carousel-btn:hover {
    /* transform: translateY(-2px); */
    border-color: var(--color-border-primary);
    background: var(--color-primary);
  }

  .product-carousel .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
  }

  .product-carousel .carousel-dot {
    width: 1rem;
    height: 1rem;
    border-radius: var(--radius-full);
    background: var(--color-border-strong);
    cursor: pointer;
    transition: width var(--transition-smooth)
    , background var(--transition-smooth)
    , transform var(--transition-smooth);
  }

  .product-carousel .carousel-dot:hover,
  .product-carousel .carousel-dot.active {
    width: 2.8rem;
    background: var(--color-primary);
  }

  @media (max-width: 900px) {
    .product-carousel {
      --product-carousel-card-width: calc((100% - var(--product-carousel-gap)) / 2);
    }
  }

  @media (max-width: 640px) {
    .product-carousel {
      --product-carousel-card-width: 100%;
      --product-carousel-side-space: var(--space-4);
    }

    .product-carousel__header {
      align-items: flex-start;
      flex-direction: row;
      padding-bottom: var(--space-6);
    }

    .product-carousel__view-all {
      min-height: 4rem;
      padding-inline: var(--space-4);
    }

    .product-carousel .carousel-navigation {
      justify-content: space-between;
    }

    .product-carousel .carousel-btn {
      flex: 1;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .product-carousel .carousel-track,
    .product-carousel .carousel-card,
    .product-carousel .carousel-btn,
    .product-carousel .carousel-dot,
    .product-carousel__view-all {
      transition: none;
      will-change: auto;
    }
  }
/* END_SECTION:product-carousel */

/* START_SECTION:product-details (INDEX:19) */
/*

=========================================================
PRODUCT SHOWCASE (premium PDP section)
=========================================================
*/
.product-showcase {
padding-top: clamp(5.6rem, 8vw, 10rem);
background: radial-gradient(circle at 12% 12%, var(--color-primary-wash), transparent 28rem), linear-gradient(180deg,
var(--color-background-warm), var(--color-background-warm-light));
color: var(--color-text-dark);
overflow: hidden;
}

.product-showcase .container {
margin: 0 auto;
display: grid;

grid-template-columns: 2.8fr 0.8fr 3fr;
align-items: flex-start;
gap: var(--space-6);
@media (max-width: 767px) {
grid-template-columns: 1fr;
padding: var(--space-8);
}
}

.product-showcase .product-showcase-gallery,
.product-showcase .product-showcase-info {
opacity: 0;
transform: translateY(2rem);
animation: productShowcaseReveal 800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.product-showcase .product-showcase-info {
animation-delay: 120ms;
}

.media-slider {
--slider-gap: 1rem;
--slider-radius: 1.25rem;
--dot-size: 1rem;
--dot-color: #00000000;
--dot-active: var(--color-primary);
--transition: 0.35s ease;

position: relative;
width: 100%;
}

.media-slider-tracker {
display: flex;
gap: var(--slider-gap);
overflow-x: auto;
scroll-behavior: smooth;
will-change: scroll-position;
-webkit-overflow-scrolling: touch;
scroll-snap-type: x mandatory;
scrollbar-width: none;


}

.media-slider-tracker::-webkit-scrollbar {
display: none;
}

.media-slider-tracker.dragging {
cursor: grabbing;
scroll-behavior: auto;
}

.media-slider .slide {
width: 100%;
aspect-ratio: 1 / 1;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
border-radius: 16px;
scroll-snap-align: center;


transition: transform var(--transition);
user-select: none;

cursor: zoom-in;
touch-action: none;
overflow: hidden;
transition: transform 0.15s ease;


}

.media-slider .slide .slide-img {
object-fit: cover;

-webkit-user-drag: none;
-webkit-touch-callout: none;
/* iOS */
user-select: none;
pointer-events: none;
}


/*

.media-slider .slide:hover {
transform: translateY(-4px);
}
*/
.media-slider .slider-btn {
position: absolute;
z-index: 20;
min-width: 2.4rem;
height: 2.4rem;
/* padding: 0 var(--space-2); */
border: var(--border-thin) solid var(--color-border);
border-radius: var(--radius-full);
background: var(--color-text-dark) ;
color:var(--color-text-light);

font-family: var(--font-body);
font-size: var(--text-xs);
font-weight: var(--font-bold);
cursor: pointer;
box-shadow: var(--shadow-sm);
transition: transform var(--transition-smooth)
, background var(--transition-smooth)
, border-color var(--transition-smooth);
display: grid;
align-items: center;
justify-items: center;
}

.media-slider .slider-prev-btn {
right: 10px;
top: 50%;
}

.media-slider .slider-next-btn {
left: 10px;
top: 50%;
}




.media-slider .dots {
display: flex;
justify-content: center;
align-items: center;
gap: 0.5rem;
margin-top: 0.8rem;
/* position: absolute; */
width: 100%;
}

.media-slider .dot {
width: var(--dot-size);
height: var(--dot-size);
border-radius: 50%;
border: none;
background: var(--dot-color);
border: 1px solid var(--dot-active);
cursor: pointer;
transition: all var(--transition);
}

.media-slider .dot.active {
background: var(--dot-active);
transform: scale(1.2);
}


/*

@media (min-width: 768px) {
.media-slider {
--slider-gap: 1.25rem;
}

.media-slider .slide {
flex: 0 0 calc(50% - 1rem);
}
}

@media (min-width: 1024px) {
.media-slider .slide {
flex: 0 0 calc(33.333% - 1rem);
}
}
*/

/*---------------------- flip image ---------------------- */.flip-image-card {
--flip-radius: 1.25rem;
--flip-duration: 0.7s;

aspect-ratio: 1 / 1;
perspective: 1200px;
cursor: pointer;
}

.flip-image-inner {
position: relative;
width: 100%;
height: 100%;
transition: transform var(--flip-duration);
transform-style: preserve-3d;
}

.flip-image-card.active .flip-image-inner {
transform: rotateY(180deg);
}

.flip-image-front,
.flip-image-back {
position: absolute;
inset: 0;
overflow: hidden;
border-radius: var(--flip-radius);
backface-visibility: hidden;
}

.flip-image-back {
transform: rotateY(180deg);
}

.flip-image-front img,
.flip-image-back img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
transition: transform 0.4s ease;
}


/*

.flip-image-card:hover img {
transform: scale(1.04);
}
*/


/*

=========================================================
MIDDLE - FEATURES
=========================================================
*/.product-showcase .product-showcase-features {
display: flex;
flex-direction: column;
/* gap: clamp(1.4rem, 2vw, 2rem); */
height: 100%;
justify-content: flex-start;
gap: 43px;
}

.product-showcase .product-showcase-feature {
min-height: clamp(12rem, 12vw, 15.6rem);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1.2rem;
padding: clamp(1.8rem, 2vw, 2.4rem);
border: 0.1rem solid var(--color-border-warm);
border-radius: var(--radius-lg);
background: var(--color-warm-wash);
box-shadow: var(--shadow-card-soft);
text-align: center;
opacity: 0;
transform: translateY(1.6rem);
animation: productShowcaseReveal 680ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
transition: transform var(--transition-spring)
, box-shadow var(--transition-spring)
, border-color var(--transition-spring)
, background var(--transition-spring);
will-change: transform
, opacity;
}

.product-showcase .product-showcase-feature:nth-child(1) {
animation-delay: 180ms;
}

.product-showcase .product-showcase-feature:nth-child(2) {
animation-delay: 280ms;
}

.product-showcase .product-showcase-feature:nth-child(3) {
animation-delay: 380ms;
}

.product-showcase .product-showcase-feature:hover {
transform: translateY(-0.6rem);
border-color: var(--color-primary-border);
background: var(--color-card-soft);
box-shadow: var(--shadow-card-hover);
}

.product-showcase .product-showcase-feature-icon {
width: 4.8rem;
height: 4.8rem;
display: inline-flex;
align-items: center;
justify-content: center;
}

.product-showcase .product-showcase-feature-icon svg {
width: 100%;
height: 100%;
}

.product-showcase .product-showcase-feature--protein .product-showcase-feature-icon {
color: var(--color-accent-purple);
}

.product-showcase .product-showcase-feature--oil .product-showcase-feature-icon {
color: var(--color-accent-teal);
}

.product-showcase .product-showcase-feature--snack .product-showcase-feature-icon {
color: var(--color-accent-berry);
}

.product-showcase .product-showcase-feature-label {
margin: 0;
font-size: clamp(1.4rem, 1.5vw, 1.8rem);
font-weight: var(--font-bold);
line-height: 1.1;
color: var(--color-text-dark);
}


/*

=========================================================
RIGHT - PRODUCT DETAILS
=========================================================
*/
.product-showcase .product-showcase-info {
display: flex;
flex-direction: column;
gap: clamp(2rem, 2.4vw, 3rem);
}

.product-showcase .product-showcase-heading {
display: flex;
flex-direction: column;
/* gap: 0.7rem; */
}

.product-showcase .product-showcase-eyebrow {
margin: 0;
color: var(--color-text);
font-size: clamp(1.2rem, 1.1vw, 1.4rem);
font-weight: var(--font-regular);
text-transform: uppercase;
}

.product-showcase .product-showcase-title {
margin: 0;
color: var(--color-text-dark);
font-family: var(--font-heading);
font-size: var(--text-lg);
font-weight: var(--font-medium);
line-height: 0.95;
}

.product-showcase .product-showcase-price-row {
display: flex;
align-items: flex-start;
gap: 1rem;
flex-wrap: wrap;
flex-direction: column;
align-content: flex-start;
}

.product-showcase .product-showcase-price {
display: inline-flex;
align-items: baseline;
gap: 0.2rem;
margin: 0;
color: var(--color-text-dark);
font-size: var(--text-lg);
font-weight: var(--font-medium);
line-height: 1;
padding-inline-end: 10px;
}
.product-showcase .product-showcase-cut-price {
color: var(--color-text-muted);
font-size: var(--text-md);
text-decoration: line-through;

}

.product-showcase .product-showcase-price-currency {
font-size: 0.68em;
}

.product-showcase .product-showcase-badge {
display: inline-flex;
align-items: center;
padding: 0.6rem 1.4rem;
border-radius: var(--radius-xs);
background: var(--color-primary);
color: var(--color-white);
font-size: var(--text-xs);
/* font-weight: var(--font-bold); */
/* box-shadow: var(--shadow-button); */
}

.product-showcase .product-showcase-actions {
display: flex;
align-items: center;
gap: 1.4rem;
}

.product-showcase .product-showcase-cta {
min-height: 5.6rem;
flex: 1 1 auto;
padding: 0 2.8rem;
border: 0;
border-radius: var(--radius-full);
background: var(--color-primary);
color: var(--color-white);
box-shadow: var(--shadow-button-strong);
font-size: clamp(1.3rem, 1.1vw, 1.5rem);
font-weight: var(--font-bold);
text-transform: uppercase;
cursor: pointer;
transition: transform var(--transition-spring)
, box-shadow var(--transition-spring)
, background var(--transition-spring);
will-change: transform;
}

.product-showcase .product-showcase-cta:hover,
.product-showcase .product-showcase-cta:focus-visible {
background: var(--color-primary-strong);
box-shadow: var(--shadow-button-hover);
outline: none;
transform: translateY(-0.4rem);
}

.product-showcase .product-showcase-cta:active {
transform: translateY(-0.1rem);
}

.product-showcase .product-showcase-description {
max-width: 80%;
display: flex;
flex-direction: column;
gap: 1.4rem;
padding-top: 0.8rem;
/* border-top: 0.1rem solid var (--color-border-warm) ; */
@media (max-width: 767px) {
max-width: 100%;
}
}

.product-showcase .product-showcase-description p {
margin: 0;
color: var(--color-text);
font-size: var(--text-xxs);
@media (max-width: 767px) {
font-size: var(--text-sm);
}
}


/*

=========================================================
ANIMATION
=========================================================
*/
@keyframes productShowcaseReveal {
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes productShowcaseFloat {
0,
100% {
transform: translate3d(0, 0, 0) rotate(-1deg);
}

50% {
transform: translate3d(0, -1.2rem, 0) rotate(1deg);
}
}


/*

=========================================================
RESPONSIVE
=========================================================
*/
@media (max-width: 1180px) {
.product-showcase .container {
grid-template-columns: 1fr 1fr;
}

.product-showcase .product-showcase-container {
grid-template-columns: minmax(0, 1fr) minmax(30rem, 0.85fr);
align-items: start;
}

.product-showcase .product-showcase-gallery {
min-height: clamp(38rem, 52vw, 58rem);
}

.product-showcase .product-showcase-features {
grid-column: 1 / -1;
grid-row: 2;
flex-direction: row;
order: 3;
}

.product-showcase .product-showcase-feature {
flex: 1 1 0;
min-height: 12rem;
}
}

@media (max-width: 820px) {
.product-showcase .container {
grid-template-columns: 1fr ;
}
.product-showcase {
padding: 4.8rem 0 5.6rem;
}

.product-showcase .product-showcase-container {
width: min(100% - 3.2rem, 64rem);
grid-template-columns: 1fr;
gap: 2.4rem;
}

.product-showcase .product-showcase-gallery {
min-height: clamp(36rem, 92vw, 52rem);
}

.product-showcase .product-showcase-gallery-bg span {
font-size: clamp(6.2rem, 20vw, 10rem);
}

.product-showcase .product-showcase-features {
grid-column: auto;
grid-row: auto;
display: grid;
grid-template-columns: repeat(3, minmax(13.6rem, 1fr));
gap: 1.2rem;
overflow-x: auto;
padding-bottom: 0.4rem;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
}

.product-showcase .product-showcase-feature {
min-height: 11.2rem;
scroll-snap-align: start;
}

.product-showcase .product-showcase-info {
gap: 2.2rem;
}
}

@media (max-width: 560px) {
.product-showcase .product-showcase-container {
width: min(100% - 2.4rem, 44rem);
}

.product-showcase .splide__slide {
padding: 4.6rem 2.4rem 5.8rem;
}

.product-showcase .product-showcase-slide-img {
width: min(82%, 32rem);
}

.product-showcase .product-showcase-features {
grid-template-columns: repeat(3, 1fr);
}

.product-showcase .product-showcase-actions {
align-items: stretch;
flex-direction: column;
}

.product-showcase .product-showcase-qty {
width: max-content;
}

.product-showcase .product-showcase-cta {
width: 100%;
}
}

@media (prefers-reduced-motion: reduce) {
.product-showcase *,
.product-showcase *::before,
.product-showcase *::after {
animation: none !important;
transition: none !important;
scroll-behavior: auto !important;
}

.product-showcase .product-showcase-gallery,
.product-showcase .product-showcase-info,
.product-showcase .product-showcase-feature {
opacity: 1;
transform: none;
}
}
/* END_SECTION:product-details */

/* START_SECTION:search (INDEX:21) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* START_SECTION:video-banner (INDEX:22) */
.banner-video {
    /* background-color: antiquewhite; */
    width: 100%;
  }
/* END_SECTION:video-banner */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:23) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:24) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:button-viwe-all (INDEX:25) */
.button-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* padding: 14px 22px; */
    background: transparent;
    font-size: var(--text-sm);

    border: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
  }

  .button-view-all span {
    position: relative;
    z-index: 2;
  }

  .button-view-all .svg-wrapper {
    /* width: var(--text-sm);
    height: var(--text-sm); */

    border-radius: 50%;
    background: #5a5131;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  /* current icon */
  .button-view-all .svg-wrapper svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    transition: transform 0.35s ease;
  }

  /* duplicate icon */

  .button-view-all .svg-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    color: var(--color-white);

    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    transform: translateX(-120%);
    transition: transform 0.35s ease;
  }

  /* hover effect */
  .button-view-all:hover .svg-wrapper {
    background: #000;
  }

  .button-view-all:hover .svg-wrapper svg {
    transform: translateX(120%);
  }

  .button-view-all:hover .svg-wrapper::after {
    transform: translateX(0);
  }
/* END_SNIPPET:button-viwe-all */

/* START_SNIPPET:cart-drawer (INDEX:27) */
.checkout-btn {
width: 100%;
}
.cart-item-remove {
background-color: transparent;
outline: none;
border: none;
text-decoration: underline;
cursor: pointer;
}

.cart-item-action {
display: flex;
flex-direction: row;
gap: 20px;
justify-content: space-between;
align-items: flex-end;
flex-wrap: wrap;
align-content: space-around;
}

.button-container {
font-size: var(--text-md);
display: grid;
grid-template-columns: 1fr;
gap: 10px;
}

.cart-drawer {
position: fixed;
inset: 0;
z-index: var(--z-cart-drawer);

pointer-events: none;
}

.cart-drawer.is-active {
pointer-events: auto;
}

body:has(.cart-drawer.is-active) {
overflow: hidden;
}

.cart-drawer__overlay {
position: absolute;
inset: 0;
background: rgb(0 0 0 / 50%);
opacity: 0;
transition: opacity 0.3s ease;
}

.close-btn {
/* position: absolute; */
top: var(--space-2);
right: var(--space-2);
z-index: 1;
width: 3rem;
height: 3rem;
border: var(--border-thin) solid var(--color-border);
border-radius: var(--radius-full);
background: var(--color-white);
color: var(--color-text-dark);
font-size: var(--text-sm);
line-height: 1;
cursor: pointer;
justify-self: end;
@media (max-width: 767px) {
font-size: var(--text-lg);
width: var(--text-lg);
height: var(--text-lg);
}
}

.cart-drawer__panel {
position: absolute;
display: flex;
top: 0;
right: 0;
width: 580px;
max-width: 100%;
padding: var(--space-2) 0px;
height: 100%;
gap: 20px;
background: var(--color-background);
transform: translateX(100%);
transition: transform 0.3s ease;
flex-direction: column;
justify-content: space-between;
overflow: hidden;
border-radius: 15px 0px 0px 15px;

@media (max-width: 767px) {
width: 90%;
}
}

.cart-drawer.is-active .cart-drawer__overlay {
opacity: 1;
}

.cart-drawer.is-active .cart-drawer__panel {
transform: translateX(0);
}

/* card item---------------- */
.cart-drawer__header,
.cart-drawer__footer {
position: sticky;
/* background: var(--color-white); */
}

.cart-drawer__header {
top: 0;
padding: 0px var(--space-4);
/* border-bottom: var(--border-thin) solid var(--color-border-muted); */
display: grid;
grid-template-columns: 3fr 1fr;

@media (max-width: 767px) {
padding-top: var(--space-4);
}
}

.cart-header__title {
margin: 0;
padding-top: 0.7rem;
color: var(--color-heading);
font-family: var(--font-heading);
font-size: var(--text-sm);
line-height: var(--line-heading);
@media (max-width: 767px) {
font-size: var(--text-lg);
}
}

.cart-header__count {
margin: var(--space-1) 0 0;
color: var(--color-text-muted);
font-size: var(--text-xs);
@media (max-width: 767px) {
font-size: var(--text-lg);
}
}

.free-shipping {
display: flex;
margin: auto;
width: 90%;
justify-content: center;
gap: var(--space-3);
padding: var(--space-2);
/* border: var(--border-thin) solid var(--color-border-primary); */
border-radius: var(--radius-sm);
background: var(--color-info);
color: var(--color-text-dark);
font-size: var(--text-xxs);
@media (max-width: 767px) {
font-size: var(--text-sm);
}
}

.free-shipping__label,
.free-shipping__amount {
font-weight: var(--font-regular);
}

.cart-drawer__body .cart-drawer__header {
padding-left: var(--space-2);
}

.cart-drawer__body {
min-height: 0;
overflow-y: auto;
flex-grow: 1;
padding: 0 var(--space-4);
}

.cart-items {
display: grid;
gap: var(--space-3);
margin: 0;
padding: 0;
list-style: none;
}

.cart-item-card {
display: grid;
grid-template-columns: 2fr 4fr;
gap: var(--space-4);
padding: var(--space-2);
border: var(--border-thick) solid var(--border-color);
border-radius: var(--radius-md);
/* background: var(--color-white); */
box-shadow: var(--shadow-xs);
@media (max-width: 767px) {
grid-template-columns: 1fr 2fr;
}
}

.product-image {
display: grid;
align-items: center;
overflow: hidden;
border-radius: var(--radius-sm);
background: var(--color-card-soft);
justify-content: center;
}

.product-image__media {
display: block;
width: 100%;
height: 100%;
aspect-ratio: 1/1;
object-fit: cover;
}

.product-info {
display: flex;
flex-direction: column;
justify-content: space-around;
min-width: 0;
}

.product-title {
/* margin: 0 0 var(--space-3); */
font-size: var(--text-xxs);
line-height: var(--line-base);
@media (max-width: 767px) {
font-size: var(--text-md);
}
}

.product-title a {
color: var(--color-heading);
text-decoration: none;
}

.cart-item-card__meta {
display: flex;
flex-direction: column;

justify-content: space-between;
gap: var(--space-3);
color: var(--color-text-muted);
font-size: var(--text-sm);
}

.price {
font-size: var(--text-sm);
color: var(--color-text-dark);
font-weight: var(--font-bold);
width: 100%;
@media (max-width: 767px) {
font-size: var(--text-md);
}
}

.cart-carousel {
min-height: 7.2rem;
margin-top: var(--space-5);
border: var(--border-thick) solid var(--border-color);
border-radius: var(--radius-md);
background: var(--color-background-warm-light);
}

.cart-drawer__empty {
padding: var(--space-10) var(--space-4);
text-align: center;
}

.cart-drawer__empty h3 {
margin: 0 0 var(--space-2);
color: var(--color-heading);
font-size: var(--text-lg);
}

.cart-drawer__empty p {
margin: 0;
color: var(--color-text-muted);
    font-size: var(--text-xs);
}

.cart-drawer__footer {
bottom: 0;
padding: var(--space-2) var(--space-4);
border-top: var(--border-thin) solid var(--color-border-muted);
box-shadow: var(--shadow-footer);
}

.cart-footer__total {
display: flex;
justify-content: space-between;
gap: var(--space-4);
margin-bottom: var(--space-4);
color: var(--color-heading);
font-size: var(--text-md);
}

.checkout-button {
width: 100%;
/* min-height: 4.8rem; */
padding: var(--space-2);
border: 0;
border-radius: var(--radius-full);
background: var(--color-primary);
color: var(--color-text-dark);
font: inherit;
font-weight: var(--font-bold);
cursor: pointer;
box-shadow: var(--shadow-button);
}
.update-qty {
/* min-height: 4.8rem; */
padding: var(--space-2);
border: 0;
border-radius: var(--radius-full);
background: var(--color-primary);
color: var(--color-text-dark);

font-weight: var(--font-bold);
cursor: pointer;
box-shadow: var(--shadow-button);
}

.qty-container {
display: flex;
gap: 10px;
}

.checkout-button:disabled {
cursor: not-allowed;
opacity: 0.5;
}

@media screen and (max-width: 749px) {
.cart-drawer {
width: 100%;
border-left: 0;
}
}
/* END_SNIPPET:cart-drawer */

/* START_SNIPPET:form-input-qty (INDEX:30) */
.product-qty {
   display: inline-grid;
       grid-template-columns: 0.9fr 1fr 0.9fr;
    align-items: stretch;
    border: 0.1rem solid var(--color-border-strong);
    border-radius: var(--radius-full);
    background: var(--color-white-soft);
    justify-items: stretch;
    justify-content: space-between;
    align-content: space-between;
    @media (max-width: 767px) {
      font-size: var(--text-sm);
    }
  }

  .product-qty-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: transform var(--transition-spring), background var(--transition-spring), color var(--transition-spring);
    @media (max-width: 767px) {
      width: 3rem;
      height: 3rem;
    }
  }

  .product-qty-btn:hover,
  .product-qty-btn:focus-visible {
    background: var(--color-primary);
    color: var(--color-white);
    outline: none;
    transform: scale(1.06);
  }

  .product-qty-btn:active {
    transform: scale(0.94);
  }

  .product-qty-btn:disabled {
    opacity: 0.42;
    cursor: not-allowed;
    transform: none;
  }

  .product-qty-btn svg {
    width: 80%;
    height: 80%;
  }

  .product-qty-input {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--color-text-dark);
    font-size: 1.2em;
    font-weight: var(--font-bold);
    text-align: center;
    pointer-events: none;
    -moz-appearance: textfield;
  }

  .product-qty-input::-webkit-outer-spin-button,
  .product-qty-input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }
/* END_SNIPPET:form-input-qty */

/* START_SNIPPET:form-product (INDEX:32) */
.product-form .shopify-product-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    @media (max-width: 767px) {
      font-size: var(--text-md);
    }
  }
/* END_SNIPPET:form-product */

/* START_SNIPPET:hamburger (INDEX:33) */
.close-btn-div {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding-bottom: 30px;
  }

  .hamburger-sidebar {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: var(--z-modal);

    background-color: var(--color-overlay);

    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
  }

  .hamburger-sidebar.hamburger-active {
    opacity: 1;
    visibility: visible;
  }

  .hamburger-slide {
    width: 100%;
    max-width: 300px;
    height: 100vh;
    border-radius: 0px 24px 24px 0px;
    padding: var(--space-6);

    background-color: var(--color-background);
    box-shadow: var(--shadow-drawer);

    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
    will-change: transform;
  }

  .hamburger-sidebar.hamburger-active .hamburger-slide {
    transform: translateX(0);
  }

  .header-menu {
    list-style-type: none;
    color: var(--color-white);
    display: flex;
    flex-direction: column;

    gap: 20px;
    li {
      color: var(--color-heading);
      font-size: var(--text-xs);
      text-transform: uppercase;
      border-bottom: 1px solid var(--color-heading);
      padding-bottom: var(--space-2);
      cursor: pointer;

      @media (max-width: 767px) {
        font-size: var(--text-lg);
      }
    }
  }
/* END_SNIPPET:hamburger */

/* START_SNIPPET:image (INDEX:34) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */

/* START_SNIPPET:product-card (INDEX:36) */
/* ---------- card ---------- */
  .combo-badge {
    position: absolute;
    background-color: #f94c9c;
    padding: 5px 20%;
    right: 0px;
    transform: rotate(46deg) translateY(-100%) translateX(30%);
    text-align: center;
    color: var(--color-white);
    z-index: 1;
  }
  .text-badge {
    position: absolute;
    background-color: var(--color-white);
    padding: 5px 10px;
    font-weight: 500;
    border-radius: 20px;
    top: 20px;
    left: 20px;
    @media (max-width: 768px) {
      top: 10px;
      left: 10px;
    }
  }
  .product-card {
    position: relative;
    isolation: isolate;
    width: 100%;

    -webkit-user-select: none; /* Chrome, Safari, Opera */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Standard syntax */
  }

  .product-card-frame {
    position: relative;
    border: var(--border-thick) solid var(--border-color-light);
    border-radius: var(--radius-md);
    background: var(--color-peach);
    overflow: hidden;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
    will-change: transform, box-shadow;
    box-shadow: var(--shadow-sm);
    height: 100%;
  }
  /* 
  .product-card:hover .product-card-frame,
  .product-card:focus-within .product-card-frame {
     transform: translateY(-4px); 
    border-color: var(--border-color);
     box-shadow: var(--shadow-product); 
  }
  */

  /* ---------- media area ---------- */
  .product-card-media {
    position: relative;
    aspect-ratio: 1 / 1.05;
    /* background: var(--color-peach); */
    overflow: hidden;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 400px;
    /* transition: 0.3s ease-in-out 0.5s; */
    @media (max-width: 768px) {
      height: 280px;
    }
  }

  /* .product-card:hover .product-card-media {
    transform: scale(1.2);
  } */

  .product-card-track {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-card-slide {
    /* position: absolute; */
    margin: auto;
    inset: 0;
    width: 85%;
    height: 85%;
    object-fit: cover;
    opacity: 0;
    transform: scale(0.96) translateX(8%);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    will-change: transform, opacity;
    /* Prevents text selection/highlighting */
    -webkit-user-select: none; /* Chrome, Safari, newer Opera */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard */

    /* Prevents dragging the image */
    -webkit-user-drag: none;
    user-drag: none;
    @media (max-width: 600px) {
     width: 100%;
    height: 100%;
      
    }
  }
  .a-tag {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-card-slide.is-active {
    opacity: 1;
    transform: scale(1) translateX(0);
  }

  .product-card-slide.is-leaving {
    opacity: 0;
    transform: scale(0.96) translateX(-8%);
  }

  .product-card:hover .product-card-slide.is-active {
    transform: scale(1.2) translateY(10px);
  }

  /* ---------- nav arrows ---------- */
  .product-card-nav {
    position: absolute;
    top: 50%;
    width: var(--space-8);
    height: var(--space-8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    color: var(--color-heading);
    cursor: pointer;
    opacity: 0;
    transform: translateY(-50%);
    transition: var(--transition-slow), color var(--transition-slow);
    z-index: 3;
    padding: 0;
  }

  .product-card-nav--prev {
    left: var(--space-2);
    transform: translate(-6px, -50%);
  }

  .product-card-nav--next {
    right: var(--space-2);
    transform: translate(6px, -50%);
  }

  .product-card-nav svg {
    transition: transform var(--transition-fast);
  }

  .product-card-nav:hover {
    color: var(--border-color);
  }

  .product-card-nav--prev:hover svg {
    transform: translateX(-2px);
  }
  .product-card-nav--next:hover svg {
    transform: translateX(2px);
  }

  .product-card:hover .product-card-nav--prev,
  .product-card:focus-within .product-card-nav--prev,
  .product-card:hover .product-card-nav--next,
  .product-card:focus-within .product-card-nav--next {
    opacity: 1;
    transform: translate(0, -50%);
  }

  /* ---------- info bar (default state) ---------- */
  .product-card-info {
    position: relative;
    /* bottom: -15px; */
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    background: var(--color-white);
    transition: opacity var(--transition-base), transform var(--transition-base);
    will-change: opacity, transform;
    @media (max-width: 768px) {
      gap: var(--space-1);
      bottom: 0;
      flex-direction: column;
      align-items: flex-start;
    }
  }

  .product-card-info-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    min-width: 0;
  }

  .product-card-title {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--color-heading);
    margin: 0;
    line-height: var(--line-base);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    @media (max-width: 600px) {
      font-size: var(--text-md);
      
    }


  }

  .product-card-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-xxs);

    color: var(--color-text-light);
    margin: 0;
    font-weight: var(--font-regular);
    letter-spacing: 1px;
    @media (max-width: 600px) {
      font-size: var(--text-xs);
    
    }
  }
  .price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    @media (max-width: 600px) {
      flex-direction: row;  
      align-items: center;   
    }

  }

  .product-card-price {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--color-heading);
    white-space: nowrap;
    @media (max-width: 600px) {
      font-size: var(--text-md);
      
    }
  }
  .product-card-cut-price{
    font-size: var(--text-xxxs);
    color: var(--color-text-muted);
    text-decoration: line-through;
    font-weight: var(--font-semibold);
    @media (max-width: 600px) {
      font-size: var(--text-xs);
      
    }
  }

  .product-card:hover .product-card-info,
  .product-card:focus-within .product-card-info {
    /* opacity: 0; */
    transform: translateY(100%);
    pointer-events: none;
  }

  /* ---------- CTA buttons (hover state) ---------- */
  .product-card-actions {
    position: absolute;
    left: var(--space-4);
    right: var(--space-4);
    bottom: var(--space-4);
    display: flex;
    gap: var(--space-2);
    z-index: 3;
    pointer-events: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .product-card-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    flex: 1;
    appearance: none;
    border: 0;
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-3);
    font-family: var(--font-body);
    font-size: var(--text-xxxs);
    font-weight: var(--font-semibold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;

    opacity: 0;
    transform: translateY(-100px);
    transition: opacity var(--transition-slow), transform var(--transition-slow),
      background-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
    will-change: opacity, transform;

    @media (max-width: 768px) {
      
           padding: 10px 10px;
      
    }

    

  }

  .product-card-btn--cart {
    background: var(--color-primary);
    color: var(--color-white);
    &:hover {
      color: var(--color-primary);
    }
  }

  .product-card-btn--cart::before {
    background: var(--color-white);
  }

  .product-card-btn--buy {
    background: var(--color-white);
    color: var(--color-primary);

    &:hover {
      color: var(--color-white);
    }
  }
  .product-card-btn--buy::before {
    background: var(--color-primary);
  }

  .product-card:hover .product-card-btn,
  .product-card:focus-within .product-card-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* animated background */
  .product-card-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .product-card-btn:hover::before {
    transform: scaleX(1);
  }

  /* .product-card-btn--cart:hover {
    background: var(--color-primary-light);
    box-shadow: var(--shadow-md);
  } 

  .product-card-btn--buy:hover {
    color: var(--border-color);
    box-shadow: var(--shadow-md);
  } 
  .product-card:hover .product-card-btn--buy,
  .product-card:focus-within .product-card-btn--buy {
    transition-delay: 80ms;
  } */
/* END_SNIPPET:product-card */

/* START_SNIPPET:search-box (INDEX:37) */
.search-box {
position: relative;
display: flex;
align-items: center;
}

.search-box-wreper{
position: relative;
}

/* ---------- trigger ---------- */
.search-box__trigger {
display: flex;
/* padding: 12px 0; */
align-items: center;
gap: var(--space-1);
background: transparent;
border: 0;
cursor: pointer;
opacity: 1;
transform: translateX(0);
transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
}

.search-box-text {
font-size: var(--text-xs);
font-weight: var(--font-regular);
line-height: var(--text-lg);
text-transform: uppercase;
color: var(--color-white);
}

/* trigger fades / slides out of the way while the field is open */
.search-box.is-open .search-box__trigger {
opacity: 0;
visibility: hidden;
transform: translateX(-8px);
pointer-events: none;
}

/* ---------- input field ---------- */
/* the form always renders (overlaying the trigger) so open/close can animate */
.search-box__form {
position: absolute;
top: 50%;
right: 0;
display: flex;
align-items: center;
gap: var(--space-2);
width: min(32rem, 60vw);
padding: var(--space-2) var(--space-3);
border-radius: var(--radius-full);
background: var(--color-white);
box-shadow: var(--shadow-sm);
transform-origin: left center;
opacity: 0;
visibility: hidden;
pointer-events: none;
transform: translateY(-50%) translateX(-12px) scale(0.9);
transition: opacity var(--transition-smooth), transform var(--transition-smooth),
visibility var(--transition-smooth);

@media (max-width: 767px) {

width: 67vw;

}
}

.search-box.is-open .search-box__form {
opacity: 1;
visibility: visible;
pointer-events: auto;
transform: translateY(-50%) translateX(0) scale(1);
}

.search-box__form-icon {
width: 1.5rem;
height: 1.5rem;
flex-shrink: 0;
}

/* the inline svg ships with a white stroke; recolor it for the white field */
.search-box__form-icon svg path {
stroke: var(--color-text-light);
}

.search-box__input {
flex: 1;
min-width: 0;
border: 0;
outline: 0;
background: transparent;
font-family: var(--font-body);
font-size: var(--text-xs);
color: var(--color-text);
}

.search-box__input::placeholder {
color: var(--color-text-muted);
}

/* hide the native search "x" so only our styled clear button shows */
.search-box__input::-webkit-search-cancel-button {
-webkit-appearance: none;
appearance: none;
}

.search-box__clear {
display: none;
align-items: center;
justify-content: center;
width: 2.2rem;
height: 2.2rem;
flex-shrink: 0;
border: 0;
border-radius: var(--radius-full);
background: var(--color-surface);
color: var(--color-text);
font-size: var(--text-md);
line-height: 1;
cursor: pointer;
transition: background var(--transition-fast);
}

.search-box__clear:hover {
background: var(--color-surface-dark);
}

.search-box.has-value .search-box__clear {
display: inline-flex;
}

/* ---------- results dropdown ---------- */
.search-box__results {
position: absolute;
top: calc(100% + var(--space-2));
right: -180%;
width: min(38rem, calc(100vw - 4rem));
max-height: 60vh;
overflow-y: auto;
padding: var(--space-2);
border-radius: var(--radius-md);
background: var(--color-white);
box-shadow: var(--shadow-lg);
opacity: 0;
visibility: hidden;
transform: translateY(-6px);
transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
z-index: var(--z-dropdown);
}

.search-box__results.is-visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.search-box__list {
list-style: none;
margin: 0;
padding: 0;
}

.search-box__link {
display: flex;
align-items: center;
gap: var(--space-3);
padding: var(--space-2);
border-radius: var(--radius-sm);
text-decoration: none;
color: var(--color-text);
transition: background var(--transition-fast);
}

.search-box__link:hover {
background: var(--color-surface);
}

.search-box__thumb {
display: flex;
flex-shrink: 0;
width: 5.6rem;
height: 5.6rem;
border-radius: var(--radius-sm);
overflow: hidden;
background: var(--color-surface);
}

.search-box__thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}

.search-box__meta {
display: flex;
flex-direction: column;
gap: var(--space-1);
min-width: 0;
}

.search-box__name {
font-size: var(--text-base);
font-weight: var(--font-regular);
color: var(--color-heading);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

.search-box__price {
font-size: var(--text-xs);
color: var(--color-text-light);
}

.search-box__view-all {
display: block;
margin-top: var(--space-2);
padding: var(--space-3);
border-radius: var(--radius-sm);
background: var(--color-primary);
color: var(--color-white);
font-size: var(--text-xs);
font-weight: var(--font-semibold);
text-transform: uppercase;
letter-spacing: 0.08em;
text-align: center;
text-decoration: none;
transition: background var(--transition-fast);
}

.search-box__view-all:hover {
background: var(--color-primary-dark);
}

.search-box__message {
padding: var(--space-4);
text-align: center;
font-size: var(--text-sm);
color: var(--color-text-light);
}

@media (max-width: 767px) {
.search-box-text {
display: none;
}
}
/* END_SNIPPET:search-box */

/* START_SNIPPET:socials-icon (INDEX:38) */
.social-gallery__socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-shrink: 0;
  }

  .social-gallery__social-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: transform var(--gallery-transition), opacity var(--gallery-transition);
  }

  .social-gallery__social-btn:hover {
    transform: translateY(-4px);
    opacity: 0.85;
  }

  .social-gallery__social-btn svg {
    width: 1.7rem;
    height: 1.7rem;
  }
/* END_SNIPPET:socials-icon */