/** Shopify CDN: Minification failed

Line 1531:25 The "-" operator only works if there is whitespace on both sides

**/
/* ==========================================================================
   Scroll Tab Switch V2 — sts2-* namespace
   Mobile-first. LCP / INP / CLS optimised.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS — all spacing at minimum
   -------------------------------------------------------------------------- */

.scroll-tab-switch-v2 {
  --sts2-circle-size: 52px;
  --sts2-circle-border: 2px;
  --sts2-circle-border-color: #E8E8E8;
  --sts2-circle-bg: #F5F5F5;

  --sts2-active-color: #388FE9;
  --sts2-active-ring: rgba(56, 143, 233, 0.18);

  --sts2-label-size: 10px;
  --sts2-label-weight: 500;
  --sts2-label-color: #797979;

  --sts2-tab-min-width: 84px;
  --sts2-tab-max-width: 96px;

  --sts2-tab-gap: 0px;
  --sts2-panel-gap: 32px;

  --sts2-nav-padding-block: 4px;     /* was 8px → 4px */
  --sts2-nav-margin-end: 12px;       /* was 20px → 12px */

  --sts2-fade-width: 28px;
}

/* --------------------------------------------------------------------------
   2. STICKY OVERFLOW FIX
   -------------------------------------------------------------------------- */

.scroll-tab-switch-v2,
.scroll-tab-switch-v2 > .section,
.scroll-tab-switch-v2 > .section > .page-width {
  overflow: visible !important;
}

/* --------------------------------------------------------------------------
   3. CUSTOM ELEMENT ROOT
   -------------------------------------------------------------------------- */

scroll-tab-switch-v2 {
  display: block;
}

/* --------------------------------------------------------------------------
   4. STICKY NAV WRAPPER
   -------------------------------------------------------------------------- */

.sts2-nav {
  position: sticky;
  top: calc(var(--sticky-header-height, var(--header-height, 0px)) - 1px);
  /*
    Header (sections/header.liquid) is z-22, cart-drawer is z-30 - this
    needs to clear the header (so the sticky nav covers it once stuck,
    matching the .sts2-nav-active header-hide behavior below) but stay
    under the floating bundle counter (z-25) and the drawer. The CC
    Club/Nector widget (z-20) sits below both the header and this nav.
    The VeriFast chat bubble isn't part of this theme's code and uses
    its own very high z-index by convention, so it's unaffected either
    way.
  */
  z-index: 23;
  will-change: transform;
  background-color: rgb(var(--color-background, 255 255 255));
  margin-inline: calc(-1 * var(--page-padding, 16px));
  padding-inline: var(--page-padding, 16px);
  padding-block: var(--sts2-nav-padding-block);
  margin-block-end: var(--sts2-nav-margin-end);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

/* --------------------------------------------------------------------------
   HEADER HIDE
   -------------------------------------------------------------------------- */

body.sts2-nav-active sticky-header,
body.sts2-nav-active .header-wrapper,
body.sts2-nav-active header-section {
  transform: translateY(-100%);
  transition: transform 0.2s ease;
}

body.sts2-nav-active .sts2-nav {
  top: 0;
}

body:not(.sts2-nav-active) sticky-header,
body:not(.sts2-nav-active) .header-wrapper,
body:not(.sts2-nav-active) header-section {
  transform: translateY(0);
  transition: transform 0.2s ease;
}

.scroll-tab-switch-v2 .section .title-wrapper {
  margin-block-end: 4px;             /* was 8px → 4px */
}

/* --------------------------------------------------------------------------
   5. HORIZONTAL SCROLL STRIP
   -------------------------------------------------------------------------- */

.sts2-nav__scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-width: none;
}
.sts2-nav__scroll::-webkit-scrollbar {
  display: none;
}

/*
  Edge fade — the strip is only as wide as the tabs that fit, so the active
  tab gets centred (see _scrollTabIntoView in the JS) and whatever's off
  either side is just hard-clipped by overflow-x. Without this it reads as
  a layout bug (tabs abruptly chopped mid-circle) rather than "scroll for
  more". Classes are toggled by the JS based on actual scrollLeft, so a
  fade only ever appears on the side that truly has more content — a strip
  that fits entirely (e.g. wide desktop viewports) gets no mask at all.
*/
.sts2-nav__scroll--fade-left {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 var(--sts2-fade-width));
  mask-image: linear-gradient(to right, transparent 0, #000 var(--sts2-fade-width));
}
.sts2-nav__scroll--fade-right {
  -webkit-mask-image: linear-gradient(to left, transparent 0, #000 var(--sts2-fade-width));
  mask-image: linear-gradient(to left, transparent 0, #000 var(--sts2-fade-width));
}
.sts2-nav__scroll--fade-left.sts2-nav__scroll--fade-right {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 var(--sts2-fade-width), #000 calc(100% - var(--sts2-fade-width)), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 var(--sts2-fade-width), #000 calc(100% - var(--sts2-fade-width)), transparent 100%);
}

/* --------------------------------------------------------------------------
   6. TAB LIST ROW
   -------------------------------------------------------------------------- */

.sts2-nav__list {
  display: flex;
  gap: var(--sts2-tab-gap);
  justify-content: flex-start;
  padding-block: 3px;                /* was 6px → 3px */
  padding-inline: 0;                 /* was 2px → 0 */
}

/* --------------------------------------------------------------------------
   7. INDIVIDUAL TAB BUTTON
   -------------------------------------------------------------------------- */

.sts2-tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;                          /* was 5px → 3px */
  padding: 2px 2px;                  /* was 4px 4px → 2px 2px */
  background: transparent;
  border: none;
  cursor: pointer;
  min-height: 44px;                  /* keep tap target */
  min-width: var(--sts2-tab-min-width);
  max-width: var(--sts2-tab-max-width);
  white-space: normal;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s ease;
  color: var(--sts2-label-color);
}

.sts2-tab:focus-visible {
  outline: 2px solid var(--sts2-active-color);
  outline-offset: 2px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   8. CIRCLE IMAGE CONTAINER
   -------------------------------------------------------------------------- */

.sts2-tab__circle {
  width: var(--sts2-circle-size);
  height: var(--sts2-circle-size);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: var(--sts2-circle-border) solid var(--sts2-circle-border-color);
  background-color: var(--sts2-circle-bg);
  flex-shrink: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* --------------------------------------------------------------------------
   9. CIRCLE IMAGE
   -------------------------------------------------------------------------- */

.sts2-tab__circle img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.sts2-tab__circle-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
}

/* --------------------------------------------------------------------------
   10. TAB LABEL
   -------------------------------------------------------------------------- */

.sts2-tab__text {
  display: block;
  font-size: var(--sts2-label-size);
  font-weight: var(--sts2-label-weight);
  line-height: 1.2;                  /* was 1.3 → 1.2 — tighter */
  text-align: center;
  color: inherit;
  width: 100%;
  min-height: 12px;                  /* single line — tab is wide enough */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

/* --------------------------------------------------------------------------
   11. ACTIVE STATE
   -------------------------------------------------------------------------- */

.sts2-tab--active {
  color: var(--sts2-active-color);
}

.sts2-tab--active .sts2-tab__circle {
  border-color: var(--sts2-active-color);
  box-shadow: 0 0 0 2px var(--sts2-active-ring);  /* was 3px → 2px */
}

.sts2-tab--active .sts2-tab__text {
  color: var(--sts2-active-color);
  font-weight: 600;
}

@media (hover: hover) {
  .sts2-tab:not(.sts2-tab--active):hover .sts2-tab__circle {
    border-color: #b0cff5;
  }
  .sts2-tab:not(.sts2-tab--active):hover {
    color: #555;
  }
}

/* --------------------------------------------------------------------------
   12. PANELS
   -------------------------------------------------------------------------- */

.sts2-panels {
  display: flex;
  flex-direction: column;
  gap: var(--sts2-panel-gap);
}

.sts2-panel {
  contain: layout style;
  /* Mobile nav height: 52px circle + 12px label + 3px gap + 8px nav padding + 6px list padding = ~81px + 12px room = 93px */
  scroll-margin-top: calc(var(--sticky-header-height, var(--header-height, 0px)) + 93px);
}

body.sts2-nav-active .sts2-panel {
  scroll-margin-top: 93px;
}

.sts2-panel__title {
  margin-block-end: 12px;            /* was 20px → 12px */
  font-size: 1.5rem;
}

/* --------------------------------------------------------------------------
   13. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* ── TIER 1: 480px+ -------------------------------------------------------- */
@media screen and (min-width: 480px) {
  .scroll-tab-switch-v2 {
    --sts2-circle-size: 58px;
    --sts2-label-size: 11px;
    --sts2-tab-min-width: 88px;
    --sts2-tab-max-width: 100px;
    --sts2-tab-gap: 0px;
    --sts2-nav-padding-block: 6px;
    --sts2-nav-margin-end: 14px;
  }

  .sts2-tab__text {
    min-height: 26px;                /* 11px × 1.2 × 2 */
  }

  .sts2-panel {
    scroll-margin-top: calc(var(--sticky-header-height, var(--header-height, 0px)) + 98px);
  }

  body.sts2-nav-active .sts2-panel {
    scroll-margin-top: 98px;
  }
}

/* ── TIER 2: 768px+ -------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .scroll-tab-switch-v2 {
    --sts2-circle-size: 72px;
    --sts2-label-size: 12px;
    --sts2-tab-min-width: 96px;
    --sts2-tab-max-width: 112px;
    --sts2-tab-gap: 2px;
    --sts2-panel-gap: 48px;
    --sts2-nav-padding-block: 8px;
    --sts2-nav-margin-end: 20px;
  }

  .sts2-nav__list {
    justify-content: center;
  }

  .sts2-tab {
    gap: 5px;
    padding: 3px 6px;
  }

  .sts2-tab__text {
    min-height: 29px;                /* 12px × 1.2 × 2 */
  }

  .sts2-panel {
    scroll-margin-top: calc(var(--sticky-header-height, var(--header-height, 0px)) + 108px);
  }

  body.sts2-nav-active .sts2-panel {
    scroll-margin-top: 108px;
  }

  .sts2-panel__title {
    font-size: 2rem;
    margin-block-end: 16px;
  }

  .scroll-tab-switch-v2 .section .title-wrapper {
    margin-block-end: unset;
  }
}

/* ── TIER 3: 1024px+ ------------------------------------------------------- */
@media screen and (min-width: 1024px) {
  .scroll-tab-switch-v2 {
    --sts2-circle-size: 88px;
    --sts2-label-size: 13px;
    --sts2-tab-min-width: 112px;
    --sts2-tab-max-width: 128px;
    --sts2-tab-gap: 4px;
    --sts2-panel-gap: 56px;
    --sts2-nav-padding-block: 10px;
    --sts2-nav-margin-end: 24px;
  }

  .sts2-tab {
    gap: 6px;
    padding: 4px 8px;
  }

  .sts2-tab__text {
    min-height: 31px;                /* 13px × 1.2 × 2 */
  }

  .sts2-panel {
    scroll-margin-top: calc(var(--sticky-header-height, var(--header-height, 0px)) + 128px);
  }

  body.sts2-nav-active .sts2-panel {
    scroll-margin-top: 128px;
  }

  .sts2-panel__title {
    font-size: 3rem;
    margin-block-end: 16px;
  }
}
/* ============================================================
   Bundle builder card styles, ported from new-bundle.liquid --
   moved here from an inline {% style %} block in
   scroll-tab-switch-v2.liquid (pure static CSS, no Liquid
   templating in it, so a straight relocation). Only takes
   effect when enable_bundle_mode renders bundle-card markup.
   ============================================================ */
  /* ---------- MOBILE FIRST ---------- */

  .new-bundle__container {
    padding: 20px 0;
  }
  .new-bundle__title {
    /* text-align: center; */
    font-size: 2.2rem;
  }

  .new-bundle__content__body {
    display: none;
  }

  .new-bundle__content.expanded .new-bundle__content__body {
    display: block;
  }

  .empty-bundle-content {
    padding: 1.5rem 1rem 0;
    text-align: center;
    font-family: 'Montserrat';
    font-size: 0.95rem;
    color: #666;
  }

  .empty-bundle-content svg {
    width: 100%;
  }

  .empty-bundle-content .empty-bundle-content__title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    color: #1A1A1A;
  }

  .empty-bundle-content .empty-bundle-content__description {
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
    color: #797979;
  }

  .new-bundle__content.has-products .empty-bundle-content {
    display: none;
  }

  .new-bundle__titlem h3,
  .new-bundle__child__title h3 {
    text-align: center;
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 20px;
    padding-top: 0.5rem;
    text-transform: capitalize;
  }

  .bundle-size-selector {
    padding: 1rem;
    text-align: center;
    background: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    margin: 0 0 1rem;
  }

  .bundle-size-selector label {
    display: block;
    margin-bottom: 0.8rem;
    font-family: Montserrat;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000000;
  }

  .bundle-size-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .bundle-size-btn {
    padding: 0;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 150px;
    overflow: hidden;
    border: 2.5px solid #3590ED;
  }

  .bundle-size-image {
    width: 100%;
    height: 140px;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .bundle-size-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .bundle-size-placeholder {
    width: 100%;
    height: 100%;
    background: #fff;
  }

  .bundle-size-info {
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    background: white;
  }

  .bundle-size-btn .size-label {
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }

  .bundle-size-btn .size-label b,
  .bundle-size-btn .size-price b {
    font-weight: 700;
  }

  .bundle-size-btn .size-price {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
  }

  .bundle-size-btn:hover {
    border-color: #378fe9;
  }

  .bundle-size-btn:hover .size-price {
    opacity: 1;
  }

  .bundle-size-btn.active {
    background: white;
    color: #333;
    border-color: #378FE9;
  }

  .bundle-size-btn.active .bundle-size-info {
    background: rgba(55, 143, 233, 0.45);
    color: #000;
  }

  .bundle-size-btn.active .size-label {
    color: #000;
  }

  .bundle-size-btn.active .size-price {
    color: #000;
    opacity: 1;
  }
  .new-bundle__child__products__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: center;
    /* gap: 1rem; */
    padding: 12px;
    row-gap: 12px;
    column-gap: 13px;
    background: #ffffff;
  }

  .new-bundle__child__products__container__box {
    position: relative;
    padding: 4px;
    width: calc(50% - 0.5rem);
    /* border: 2px solid #dcbebe; */
    border-radius: 8px;
    position: relative;
    box-sizing: border-box;
    border: 1px solid #F2F3F6;
  }

  .new-bundle__child__products__container__image img {
    width: 100%;
    height: auto;
    border-radius: 0.4rem;
    /* max-height: 160px; */
    /* margin-bottom: 0.7rem; */
  }

  .new-bundle__child__products__container__title {
    padding: 4px;
  }

  .new-bundle__child__products__container__title h3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.25;
    font-family: 'Montserrat';
    text-align: left;
    overflow: hidden;
  }

  .new-bundle__child__reviews {
    padding: 4px;
  }

  .new-bundle__child__products__container__atc {
    background: #378fe9;
    padding: 6px;
    /* width: 92%; */
    /* margin: 0 auto 0.4rem; */
    margin: 0;
    /* border-radius: 0.3rem; */
    border-radius: 8px;
    transition: background-color 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
  }

  .new-bundle__child__products__container__atc.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    animation: shine 1s ease-out forwards;
  }

  .new-bundle__child__products__container__atc.btn-shine.added {
    background: #378fe9;
    border-color: #378fe9;
  }

  .new-bundle__child__products__container__atc.btn-shine .bundle-qty-selector button,
  .new-bundle__child__products__container__atc.btn-shine .bundle-qty-value {
    color: #ffffff;
  }

  @keyframes shine {
    0% { width: 0; }
    100% { width: 100%; }
  }

  /* Dim disabled ATC buttons */
  .new-bundle__child__products__container__atc button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  .new-bundle__child__products__container__atc:has(button:disabled) {
    background: #ccd4db;
  }

  .new-bundle__child__products__container__atc:has(button:disabled) .bundle-qty-selector {
    opacity: 0.5;
  }

  .new-bundle__child__products__container__price {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 0.4rem 4px 0.3rem;
    gap: 1rem;
    font-size: 16px;
  }

  .new-bundle__child__products__container__price_mrp {
    font-size: 15px;
    color: #00000066;
    text-decoration: line-through;
  }

  .new-bundle__child__products__container__atc.added {
    /* background: #4caf50; */
    background: transparent;
    border: 1px solid #4B4B4B;
    padding: 5.75px 6px;
  }

  .new-bundle__child__products__container__atc.added .bundle-atc-btn {
    display: none;
  }

  .new-bundle__child__products__container__atc.added .bundle-qty-selector {
    display: flex !important;
  }

  .new-bundle__child__products__container__atc button {
    font-size: 14px;
    width: 100%;
    border: none;
    background: none;
    color: white;
    cursor: pointer;
  }

  .bundle-qty-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .bundle-qty-selector button {
    background: none;
    border: none;
    color: #4B4B4B;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    padding: 0 8px;
    line-height: 1;
  }

  .bundle-qty-value {
    color: #4B4B4B;
    font-size: 14px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
  }

  .new-bundle__child__products__container__weight {
    padding: 4px 4px 0;
    font-weight: 500;
    font-size: 10px;
    line-height: 1;
    color: #797979;
    text-align: left;
  }

  .selected-mark,
  .quantity-counter {
    display: none;
    position: absolute;
    width: 25px;
    height: 25px;
    color: white;
    text-align: center;
    line-height: 25px;
    border-radius: 50%;
    z-index: 2;
  }

  .selected-mark {
    display: none !important;
    top: 6px;
    right: 5px;
    background: #4caf50;
  }

  .quantity-counter {
    top: 25px;
    left: 6px;
    background: #2196f3;
    font-weight: bold;
  }

  .qty-limiter {
    text-align: left;
    font-size: 1rem;
    font-weight: 400;
    color: red;
  }

  .selected-mark.show,
  .quantity-counter.show {
    display: block;
  }

  .bundle-counter {
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 16px;
    line-height: 1.4;
    background-color: #F2F3F6;
    border: 1px solid #D9D9D9;
    color: #797979;
  }

  .new-bundle__content.expanded .bundle-counter .dropdown-svg {
    transform: rotate(180deg);
  }

  @keyframes shuttle {
    0% {
      transform: translateX(-50%);
    }
    50% {
      transform: translateX(calc(-50% + 4px));
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .new-bundle__content__offer {
    width: 60%;
    text-align: center;
    border-radius: 0.3rem;
    color: red;
    padding: 0.4rem;
    background: #cdb0b0;
    display: none;
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
    background: #4e3131;
    color: white !important;
  }
  @media only screen and (min-width: 768px) {
    .new-bundle__content__offer {
      width: 20%;
    }
    .empty-bundle-content {
      padding: 40px 0;
    }
    .empty-bundle-content svg {
      min-height: 120px;
    }
    .empty-bundle-content .empty-bundle-content__title {
      margin-top: 40px;
    }
    .selected-mark {
      top: 18px;
      right: 18px;
    }
    .quantity-counter {
      top: 35px;
      left: 14px;
    }
    .new-bundle__child__products__container__atc.added {
      padding: 11px 12px;
    }
  }

  .new-bundle__content__offer.show_offer {
    display: block;
    animation: shuttle 1.2s ease-in-out infinite;
  }

  .new-bundle__content.expanded {
    min-height: 412px;
  }

  .new-bundle__content {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffff;
    padding: 0;
    display: flex;
    flex-direction: column;
    /* border-top: 1px solid #cca5a5; */
    /* box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); */
    /* max-height: 250px; */
    /*
      Kept in sync with sections/new-bundle.liquid's copy of this rule -
      this section renders later on the page, so its copy wins the cascade
      for the one real .new-bundle__content element; both must match.
    */
    z-index: 24;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0px -7px 29.3px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }

  /* Expanded drawer: items flow from top, buy/pay sticks to bottom */
  .new-bundle__content.expanded .new-bundle__content__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
  }
  .new-bundle__content.expanded.has-products .new-bundle__content__image {
    justify-content: flex-start;
    flex: 0 0 auto;
    height: auto;
  }
  .new-bundle__content.expanded.has-products .placeholder-slot {
    height: 84px !important;
    flex: 0 0 auto;
  }
  .new-bundle__content.expanded .new-bundle__content__price__buynow_cont {
    margin-top: auto;
  }


  .bundle-counter {
    cursor: pointer;
    user-select: none;
  }

  .new-bundle__content__image {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: thin;
    justify-content: center;
    align-items: center;
    padding: 6px 12px 0;
  }

  .selected-product-image {
    width: 20%;
    flex: 0 0 20%;
    position: relative;
    /* border: 2px solid red; */
    border-radius: 0.3rem;
    border: 1px solid #a0ef81;
    background: rgba(160, 239, 129, 0.2);
    border-radius: 4px;
    margin-top: 0.5rem;
  }

  .new-bundle__content__image img {
    max-width: 45px;
    width: 100%;
    /* height: 80px; */
    height: auto;
    object-fit: cover;
    border-radius: 2px;
  }

  .new-bundle__content__cross {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #f44336;
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    margin-top: 0.4rem;
  }

  .new-bundle__content__cross {
    top: -10px;
    right: 0;
    font-size: 16px;
  }

  /* .remove-product {
    top: -10%;
    right: -14%;
    z-index: 9;
  } */

  .floating-counter {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    min-width: 150px;
    height: 40px;
    background: #378fe9;
    border-radius: 20px;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 25;
    padding: 0 15px;
  }

  .floating-counter:hover {
    transform: scale(1.1);
  }

  /* .floating-counter.show {
    display: flex;
  } */

  .floating-counter.hidden {
    display: none;
  }

  .floating-counter span:not(:last-child) {
    margin-right: 5px;
  }

  .new-bundle__content__atc {
    display: flex;
    gap: 12px;
    justify-content: center;
  }

  .new-bundle__content__add__button {
    /* background: #378fe9; */
    background: transparent;
    color: white;
    /* border-radius: 0.3rem; */
    /* margin-top: 0.6rem; */
    width: 100%;
    font-weight: 600;
    color: #2F2F2F;
    border: 1px solid #2F2F2F;
  }
  .new-bundle__content__add__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    /* background: #ccd4db; */
  }

  .bundle-tabs {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    /* Enable horizontal scroll */
    white-space: nowrap;
    /* Keep buttons in one line */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on mobile */
    padding-bottom: 6px;
    position: sticky;
    top: calc(var(--sticky-header-height, var(--header-height, 0px)) - 1px);
    z-index: 5;
    background: #fff;
    transition: top 0.3s ease;
  }

  /* On mobile, when the header hides on scroll-down, pin tabs to the viewport top */
  @media (max-width: 768px) {
    body:has(.header-section.header-hidden) .bundle-tabs {
      top: 0;
    }
  }
  /* Auto-margin centering: centers when content fits, releases (no left-clip)
     when content overflows so the leftmost tab stays scrollable on tablet/mobile */
  .bundle-tabs > :first-child {
    margin-left: auto;
  }
  .bundle-tabs > :last-child {
    margin-right: auto;
  }

  .bundle-tabs .tab__item {
    max-height: fit-content;
  }

  /* Hide scrollbar (all browsers) */
  .bundle-tabs::-webkit-scrollbar {
    display: none;
  }
  .bundle-tabs {
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .bundle-tab {
    min-width: max-content;
    font-size: 16px;
  }

  .new-bundle__child__products__container__product__info {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px;
    margin: 6px 6px 0 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #378fe9;
    gap: 5px;
    background: #ffffff;
    border-radius: 50%;
    text-decoration: underline;
  }

  .new-bundle__content__price__summary {
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1;
  }

  .new-bundle__content__price__buynow_cont__offer  {
    margin: 4px 0;
    padding: 6px 0 6px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-top: 1px dashed #D9D9D9;
    border-bottom: 1px dashed #D9D9D9;
  }

  .new-bundle__content__price__buynow_cont__text {
    font-size: 12px;
    color: #1A1A1A;
    font-weight: 600;
  }

  .placeholder-slot .remove-product {
    cursor: pointer;
  }

  /* ---------- DESKTOP OVERRIDES ---------- */
  @media screen and (min-width: 768px) {
    .new-bundle__child__products__container__box {
      /* width: calc(25% - 0.75rem); */
      /* flex: 0 0 calc(25% - 0.75rem); */
      width: 100%;
      flex: 0 0 calc(23% - 0.25rem);
      padding: 8px;
    }

    .selected-product-image {
      max-width: 100px;
    }

    .new-bundle__child__products__container {
      gap: 1rem;
    }

    .new-bundle__child__products__container__image {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .new-bundle__child__products__container__image .product_image {
      width: 100%;
    }
    .new-bundle__content__image img {
      object-fit: cover;
    }

    .bundle-tabs {
      padding: 10px 10rem;
      /* padding: 0; */
      margin-top: 15px;
    }

    @media only screen and (min-width: 768px) {
      .new-bundle__content {
        display: flex;
        flex-direction: column;
      }
      .new-bundle__content__image {
        height: 100%;
      }
      .placeholder-slot {
        height: 96% !important;
      }
      .placeholder-slot img {
        height: 100%;

        background: white;
      }
      /* .remove-product {
        top: -5%;
        left: 96%;
      } */
      .new-bundle__content__price__buynow_cont {
        gap: 2rem;
      }
      .new-bundle__content__atc {
        justify-content: flex-start;
      }
    }

    /* .remove-product {
      top: -4%;
      left: 90%;
      z-index: 9;
    } */

    .new-bundle__child__products__container__image img {
      max-height: max-content;
    }
  }

  @media only screen and (min-width: 880px) and (max-width: 1439px) {
    .new-bundle__child__products__container__box {
      flex: 0 0 30%;
    }
  }

  .bundle-tabs .tab__item {
    padding: 12px 20px;
    font-size: 14px;
  }

  .bundle-tabs button.button.button--secondary {
    border-radius: 40px;
  }

  .bundle-tab {
    border: 1px solid #D5D5D5;
    color: #797979;
  }

  .bundle-tab:hover {
    background: transparent;
    border: 1px solid #388FE9 !important;
    color: #388FE9 !important;
  }
  
  .bundle-tab.active {
    background: #388FE933 !important; 
    border: 1px solid #388FE9 !important;
    color: #388FE9 !important;
  }

  /* ===== Horizontal scroll toggle styles ===== */
  .new-bundle__child__products__container.is-horizontal-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #c1c1c1 #f1f1f1;
    /* Firefox */
    margin-bottom: 30px;
    /* raise scrollbar a bit */
    scrollbar-gutter: stable;
    /* keep space reserved for scrollbar */
    /* margin-left: 1rem; */
    margin-left: 12px;
  }

  .new-bundle__child__products__container.is-horizontal-scroll::-webkit-scrollbar {
    height: 8px;
  }

  .new-bundle__child__products__container.is-horizontal-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }

  .new-bundle__child__products__container.is-horizontal-scroll::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
  }

  .new-bundle__child__products__container.is-horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }

  .new-bundle__child__products__container.is-horizontal-scroll .new-bundle__child__products__container__box {
    scroll-snap-align: start;
    flex: 0 0 calc(48% - 0.5rem);
  }

  @media only screen and (max-width: 380px) {
    .new-bundle__child__products__container.is-horizontal-scroll .new-bundle__child__products__container__box {
      flex: 0 0 48%;
    }
  }

  /* ===== Scroll Arrow Styles (Desktop only) ===== */
  .horizontal-scroll-wrapper {
    position: relative;
  }

  .scroll-arrow {
    display: none;
  }

  .bundle-counter__dropdown-desktop {
    display: none;
  }

  .scroll-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    transition: all 0.2s ease;
  }

  @media only screen and (min-width: 769px) {
    .scroll-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #555555CC;
      border: 1px solid #787878;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.25s ease, visibility 0.25s ease;
      color: #333;
      backdrop-filter: blur(4px);
      box-shadow: 0px 4px 3.3px rgba(0, 0, 0, 0.25);
    }

    .horizontal-scroll-wrapper:hover .scroll-arrow.is-visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .scroll-arrow--left {
      left: 10px;
    }

    .scroll-arrow--right {
      right: 10px;
    }
  }

  @media only screen and (min-width: 768px) {
    .new-bundle__child__products__container.is-horizontal-scroll .new-bundle__child__products__container__box {
      scroll-snap-align: start;
      flex: 0 0 calc(22.75% - 0.5rem);
    }
    .new-bundle__child__products__container__product__info {
      margin: 14px 14px 0 0;
    }
    .new-bundle__child__products__container__weight {
      padding: 12px 4px 0;
      font-size: 14px;
    }
    .new-bundle__child__products__container__title {
      padding: 8px;
    }
    .new-bundle__child__products__container__title h3 {
      font-size: 16px;
    }
    .new-bundle__child__products__container__price {
      font-size: 20px;
    }
    .new-bundle__child__products__container__atc {
      padding: 12px;
    }
    .new-bundle__child__products__container__atc button {
      font-size: 18px;
    }
    .bundle-qty-selector button {
      font-size: 22px;
    }
    .bundle-qty-value {
      font-size: 18px;
    }
    .bundle-tabbed-area .new-bundle__child__products__container {
      gap: 40px;
    }
    .bundle-tabs .tab__item {
      padding: 8px 12x;
      font-size: 16px;
    }
    .bundle-tabbed-area .new-bundle__child__products__container {
      padding: 28px 40px;
    }
  }

  /* 3-up card layout for small tablet range */
  @media only screen and (min-width: 768px) and (max-width: 880px) {
    .new-bundle__child__products__container__box {
      flex: 0 0 29%;
    }
  }

  .product-card-addn p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Adds "..." if text overflows */
    white-space: normal;
    /* Allow wrapping */
    font-size: 11px;
    font-weight: 200;
    padding: 0.2rem 0;
    line-height: 1.1rem;
    text-align: left;
  }
  @media (min-width: 769px) {
    .product-card-addn.hide-desktop {
      display: none;
    }
  }
  @media (max-width: 768px) {
    .product-card-addn.hide-mobile {
      display: none;
    }

    .bundle-tabs {
      gap: 8px;
      padding: 8px 1rem;
      margin-top: 0px;
    }

    .bundle-size-btn {
      width: 110px;
    }

    .bundle-size-image {
      height: 110px;
    }

    .bundle-size-btn .size-label,
    .bundle-size-btn .size-price {
      font-size: 8px;
    }

  }

  .new-bundle__child__reviews .product-card-reviews {
    justify-content: flex-start !important;
  }

  .new-bundle__child__offer {
    padding: 4px;
  }

  .new-bundle__content__price__buynow_cont {
    position: relative;
    margin: 8px 0 0;
    padding: 14px 12px 6px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #F2F3F6;
    border: 1px solid #D9D9D9;
    transition: opacity 0.3s ease;
  }

  .new-bundle__content__price__buynow_cont.disabled {
    opacity: 0.5;
    pointer-events: none;
  }
  .bill-summary-wrapper {
    width: 100%;
  }
  .new-bundle__content__price {
    display: flex;
    gap: 4px;
    /* min-width: 100%; */
    align-items: flex-end;
  }
  
  .new-bundle__content__price__total,
  .new-bundle__content__price__savings {
    display: flex;
    font-size: 16px;
  }
  .new-bundle__content__price__savings {
    gap: 0.6rem;
  }
  .new-bundle__content__price__savings__saved {
    text-decoration: none !important;
  }
  .new-bundle__content__price__savings div {
    font-size: 12px !important;
    /* color: #c70B0B; */
  }
  .new-bundle__content__atc {
    width: 100%;
  }
  .new-bundle__content__price__savings__cont {
    display: flex;
    font-size: 12px;
    color: #797979;
  }

  /* ===== Placeholder slots in bottom panel ===== */
  .placeholder-slot {
    width: 100%;
    flex: 0 0 calc((100% -(4 * 1rem)) / 5);
    height: 84px;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    justify-content: center;
    /* margin-top: 0.5rem; */
    /* background: rgba(160, 239, 129, 0.2); */
    /* border: 1px solid #a0ef81; */
  }
  .placeholder-slot.empty {
    display: none;
    background: transparent;
    border: 2px dashed #c9c9c9;
  }
  .placeholder-slot.hidden {
    display: none;
  }
  .placeholder-label {
    font-size: 14px;
    color: #9b9b9b;
  }
  .slot-product-info {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: space-around;
    padding: 0;
    box-sizing: border-box;
  }
  .slot-product-title {
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 12px;
    font-weight: 600;
    color: #1A1A1A;
    text-align: left;
    overflow: hidden;
  }
  .slot-product-price {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    text-align: left;
  }
  .new-bundle__content__price__savings__saved {
    display: flex;
    /* background: rgba(160, 239, 129, 0.2); */
    color: #2EA257 !important;
    text-transform: capitalize;
  }
  .new-bundle__content__savings__saved__text {
    margin-right: 0.3rem;
  }

  @media only screen and (min-width: 769px) {
    .new-bundle__child__products__container {
      /* padding: 1rem 10rem; */
      padding: 28px 0px;
      gap: 24px;
    }
    .new-bundle__child__products__container.is-horizontal-scroll {
      margin-left: 40px;
      margin-right: 40px;
      margin-bottom: 124px;
    }
  }

  /* ===== Product Info Modal ===== */
  .product-info-modal {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2000;
  }

  .product-info-modal.active {
    display: flex;
    flex-direction: column;
  }

  .product-info-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    backdrop-filter: blur(2px);
  }

  .product-info-modal__content {
    position: relative;
    z-index: 10;
    background: white;
    margin-top: auto;
    border-radius: 1.2rem 1.2rem 0 0;
    max-height: 92vh;
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .product-info-modal__close {
    position: absolute;
    top: -1%;
    right: -1%;
    background: #f44336;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #fff;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .product-info-modal__carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    width: 400px;
    height: 400px;
    margin: 0 auto;
  }

  .product-info-modal__carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
  }

  .carousel-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    width: 400px;
    height: 400px;
    border-radius: 50%;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 100%;
  }

  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #555555CC;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.2s ease;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .carousel-nav:hover {
    /* background: white; */
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .carousel-nav--prev {
    left: 0.75rem;
  }

  .carousel-nav--next {
    right: 0.75rem;
  }

  .product-info-modal__title {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
  }

  .product-info-modal__title h2 {
    margin: 0;
    font-size: 1.1rem !important;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    font-family: 'Montserrat';
  }

  .product-info-modal__details {
    padding: 1.2rem 1.5rem;
    overflow-y: auto;
    max-height: 180px;
    border-top: 1px solid #f0f0f0;
  }

  .labels-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .labels {
    padding: 0.45rem 0.7rem;
    border-radius: 0.5rem;
    background: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    display: inline-block;
  }

  .product-info-modal__footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 1rem;
  }

  .product-info-modal__atc {
    flex: 1;
    background: #378fe9;
    color: white;
    border: none;
    padding: 0.9rem 1.2rem;
    border-radius: 0.4rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(55, 143, 233, 0.2);
  }

  .product-info-modal__atc:hover {
    background: #2a6bb8;
    box-shadow: 0 4px 12px rgba(55, 143, 233, 0.3);
    transform: translateY(-2px);
  }

  .product-info-modal__atc:active {
    transform: translateY(0);
  }

  .product-info-modal__atc:disabled {
    background: #c9d4e0;
    color: #ffffff;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 0.6;
  }

  .new-bundle__prepaid-wrapper {
    margin: 0 100px;
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    background: #255431;
    padding: 0;
    display: inline-block;
  }

  .new-bundle__prepaid-label {
    margin: 0 3px -10px;
    background: #2ea257;
    color: #ffffff;
    font-size: 11px;
    text-align: center;
    padding: 2px 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.25);
  }

  .new-bundle__prepaid-label::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 8px;
    height: 100%;
    z-index: 10;
    background: #2ea257;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 0 6%);
  }

  .new-bundle__prepaid-label::after {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 8px;
    height: 100%;
    z-index: 10;
    background: #2ea257;
    clip-path: polygon(0 0, 100% 0, 106% 60%, 100% 0%, 0 106%);
  }

  /* Mobile Optimizations */
  @media (max-width: 480px) {
    .product-info-modal__content {
      max-height: 95vh;
      border-radius: 1rem 1rem 0 0;
      padding: 20px 20px 0;
    }

    .product-info-modal__carousel-wrapper {
      width: 100%;
      height: auto;
    }

    .carousel-slide {
      width: 100%;
      height: auto;
    }

    .carousel-nav {
      width: 32px;
      height: 32px;
      font-size: 1.1rem;
    }

    .carousel-nav--prev {
      left: 0.5rem;
    }

    .carousel-nav--next {
      right: 0.5rem;
    }

    .product-info-modal__close {
      width: 24px;
      height: 24px;
      font-size: 1rem;
      top: -1%;
      right: 0;
      background: #f44336;
    }

    .product-info-modal__title {
      padding: 0.8rem 1rem;
    }

    .product-info-modal__title h2 {
      font-size: 0.95rem !important;
    }

    .product-info-modal__details {
      padding: 1rem 1.2rem;
      max-height: 150px;
    }

    .labels {
      padding: 0.4rem 0.6rem;
      font-size: 0.75rem;
    }

    .product-info-modal__footer {
      padding: 0.9rem 1.2rem;
    }

    .product-info-modal__atc {
      padding: 0.8rem 1rem;
      font-size: 0.9rem;
    }
  }

  /* Tablet Optimizations */
  @media (min-width: 481px) and (max-width: 768px) {
    .product-info-modal__carousel-wrapper {
      width: 400px;
      height: 400px;
    }

    .product-info-modal__title h2 {
      font-size: 1.05rem;
    }

    .product-info-modal__details {
      max-height: 160px;
    }
  }

  /* Desktop Optimizations */
  @media (min-width: 769px) {
    .product-info-modal {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      top: 0;
      z-index: 2000;
      align-items: center;
      justify-content: center;
    }

    .product-info-modal.active {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .product-info-modal__content {
      max-height: 95vh;
      margin-top: 0;
      margin-bottom: 0;
      border-radius: 1.2rem;
      width: 90%;
      max-width: 450px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .product-info-modal__carousel-wrapper {
      width: 400px;
      height: 400px;
    }

    .carousel-slide img {
      max-height: 100%;
    }

    .carousel-nav {
      width: 40px;
      height: 40px;
      font-size: 1.4rem;
    }

    .carousel-nav--prev {
      left: 1rem;
    }

    .carousel-nav--next {
      right: 1rem;
    }

    .product-info-modal__overlay {
      background: rgba(0, 0, 0, 0.5);
    }

    .product-info-modal__title {
      padding: 1.2rem 1.5rem;
    }

    .product-info-modal__title h2 {
      font-size: 1.15rem !important;
    }

    .product-info-modal__details {
      max-height: 200px;
      padding: 1.5rem;
    }

    .labels {
      padding: 0.5rem 0.75rem;
      font-size: 0.85rem;
    }

    .product-info-modal__footer {
      padding: 1.2rem 1.5rem;
    }

    .product-info-modal__atc {
      padding: 1rem 1.5rem;
      font-size: 1rem;
    }
  }

  @media screen and (min-width: 768px) {
    .new-bundle__container {
      padding: 60px 0 100px;
    }
    .new-bundle__content {
      width: 100%;
      max-width: 375px;
      right: 0;
      left: unset;
    }
    .new-bundle__content.expanded {
      min-height: 605px;
    }
    .new-bundle__content__price__buynow_cont {
      padding: 16px 12px;
    }
    .slot-product-title {
      font-size: 16px;
    }
    .slot-product-price {
      font-size: 18px;
    }
    .new-bundle__content__image img {
      max-width: 70px;
    }
    .new-bundle__content__price__summary {
      font-size: 18px;
    }
    .new-bundle__content__price__savings div {
      font-size: 14px !important;
    }
    .new-bundle__content__price__savings__cont {
      font-size: 14px;
    }
    .new-bundle__content__price__total {
      font-size: 18px;
    }
    .new-bundle__content__price__buynow_cont__text {
      font-size: 14px;
    }
    .bundle-tabbed-area .new-bundle__child__products__container {
      justify-content: left;
    }
    .new-bundle__child__title h3 {
      font-size: 32px;
    }
    .bundle-tab {
      background: #FFFFFF !important;
      font-size: 14px;
    }
    .new-bundle__prepaid-wrapper {
      margin: 0 80px;
    }
    .bundle-counter__dropdown-desktop {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      color: #1A1A1A;
    }
    .bundle-counter .no-product, .bundle-counter .product-text, .bundle-counter .dropdown-svg {
      display: none;
    }

    /* Collapsed-state compact pill (desktop only, when drawer is closed) */
    .new-bundle__content:not(.expanded) {
      width: auto;
      max-width: none;
      right: 96px;
      bottom: 20px;
      border-top-left-radius: 999px;
      border-top-right-radius: 999px;
      border-bottom-left-radius: 999px;
      border-bottom-right-radius: 999px;
      box-shadow: 1px -9px 20px 0px rgba(0, 0, 0, 0.25);
      overflow: visible;
    }
    .new-bundle__content:not(.expanded) .bundle-counter {
      background: #ffffff;
      border: 1px solid #D9D9D9;
      border-radius: 999px;
      padding: 20px 40px;
      color: #1A1A1A;
      font-size: 20px;
      font-weight: 600;
      line-height: 1;
      gap: 6px;
    }
    .new-bundle__content:not(.expanded) .bundle-counter__dropdown-desktop {
      display: none;
    }
    .new-bundle__content:not(.expanded) .bundle-counter .no-product,
    .new-bundle__content:not(.expanded) .bundle-counter .product-text {
      display: inline;
    }
    .new-bundle__content:not(.expanded) .bundle-counter .dropdown-svg {
      display: none;
    }
  }

/* ============================================================
   Custom Data Banner — a merchandising banner tile injected into
   the product grid at a configurable position, gated to
   /collections/kits-combo only (see the request.path check in
   scroll-tab-switch-v2.liquid). Moved here from an inline <style>
   block in that file (pure static CSS, no Liquid templating in it,
   so a straight relocation) for the same reason as the bundle
   builder styles above.
   ============================================================ */

.custom-banner-box {
  padding: 8px;
  border-radius: 12px;
  border: 1px solid #0000001A;
}
.custom-banner-width-1 {
  grid-column: span 1;
}

.custom-banner-width-2 {
  grid-column: span 2;
}
.custom-banner-width-3 {
  grid-column: span 3;
}
.custom-banner-width-4 {
  grid-column: span 3;
}
.custom-banner-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
@media screen and (max-width: 749px) {
  .custom-banner-mobile-width-1 {
    grid-column: span 1 !important;
  }

  .custom-banner-mobile-width-2 {
    grid-column: span 2 !important;
  }
}
