/* =========================================================
   CHILLZ HEMP — FULL STYLES.CSS (REPLACE ENTIRE FILE)
   Modern Glass • Seamless Gradients • Clean Mobile
   ========================================================= */

/* ---------- Fonts (Elegant + Bold headings) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---------- Root / Theme Tokens ---------- */
:root{
  /* Brand palette (wildcat-ish but premium) */
  --c-hot:    #ff3b8d;  /* hot pink */
  --c-pink:   #ff62b8;  /* soft pink */
  --c-violet: #b48cff;  /* violet */
  --c-deep:   #2a3355;  /* deep blue slate */
  --c-navy:   #0f1626;  /* deep navy */
  --c-yellow: #ffe35a;  /* warm yellow */
  --c-mint:   #39e6c5;  /* subtle accent */

  /* neutrals */
  --c-white: #ffffff;
  --c-ink:   #0d0f14;
  --c-text:  #101218;
  --c-muted: rgba(16,18,24,.70);
  --c-mutedW: rgba(255,255,255,.74);

  /* layout */
  --container: 1120px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* glass */
  --glass: rgba(255,255,255,.10);
  --glass2: rgba(255,255,255,.14);
  --glassBorder: rgba(255,255,255,.18);
  --shadow: 0 28px 70px rgba(0,0,0,.28);
}

/* ---------- Reset ---------- */
*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--c-text);
  background:
    radial-gradient(900px 500px at 10% 5%, rgba(255,59,141,.18), transparent 60%),
    radial-gradient(900px 520px at 85% 10%, rgba(180,140,255,.16), transparent 60%),
    radial-gradient(900px 520px at 60% 95%, rgba(255,227,90,.10), transparent 60%),
    linear-gradient(180deg, var(--c-navy), #141e33);
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }

/* ---------- Container ---------- */
.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* ---------- Topbar ---------- */
.topbar{
  background: linear-gradient(90deg, var(--c-hot), var(--c-violet));
  color:#fff;
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size:12px;
}
.topbar__inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
}
.topbar__right{ opacity:.95; }

/* ---------- Hero ---------- */
.hero{ position:relative; }
.hero__bg{
  position:relative;
  min-height: 360px;
  height: 58vh;
  max-height: 680px;
  overflow:hidden;
  background:#0b0f18;
}
.hero__bgImg{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position:center;
}

/* Mobile banner: FULL visible (no crop) */
@media (max-width:768px){
  .hero__bg{
    min-height: 260px;
    height: 44vh;
    max-height: 520px;
    background:
      radial-gradient(520px 280px at 50% 35%, rgba(255,255,255,.10), transparent 60%),
      linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.10)),
      #0b0f18;
  }
  .hero__bgImg{
    object-fit: contain; /* no cropping */
  }
}

/* ---------- Nav (Sticky Glass) ---------- */
.hero__content{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.navBar{
  position:sticky;
  top:0;
  width:100%;
  z-index:50;
  pointer-events:auto;

  background: rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.navBar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand__logo{ height:42px; width:auto; filter: drop-shadow(0 12px 26px rgba(0,0,0,.35)); }

.nav__links{
  display:flex;
  align-items:center;
  gap:38px;
  font-family:"Sora", sans-serif;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size:13px;
  color: rgba(255,255,255,.92);
}
.nav__links a{
  position:relative;
  opacity:.94;
}
.nav__links a::after{
  content:"";
  position:absolute;
  left:0; bottom:-8px;
  width:0;
  height:2px;
  background: linear-gradient(90deg, var(--c-hot), var(--c-violet));
  transition: width .2s ease;
  transform: skewX(-16deg);
}
.nav__links a:hover::after{ width:100%; }

.nav__toggle{
  display:none;
  width:44px; height:40px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor:pointer;
}
.nav__toggle span{
  display:block;
  width:18px; height:2px;
  background:#fff;
  margin:5px auto;
  border-radius:2px;
}

/* mobile nav */
@media (max-width: 900px){
  .nav__toggle{ display:block; }
  .nav__links{
    position:absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 64px;
    width: min(520px, calc(100% - 28px));
    padding: 14px;
    border-radius: 18px;
    background: rgba(0,0,0,.40);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 24px 64px rgba(0,0,0,.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    display:none;
    flex-direction:column;
    gap:14px;
    text-align:center;
  }
  .navBar.is-open .nav__links{ display:flex; }
}

/* ---------- Hero angled underline ---------- */
.hero__angle{
  height: 18px;
  background: linear-gradient(90deg, var(--c-hot), var(--c-violet));
  transform: skewY(-2deg);
  transform-origin:left;
}

/* ---------- Section base ---------- */
.section{ position:relative; padding: 64px 0; }
.section--white{ background: rgba(255,255,255,.92); }
.section__title{
  font-family:"Sora", sans-serif;
  font-weight:900;
  letter-spacing:1.2px;
  text-transform:uppercase;
  text-align:center;
  margin: 0 0 10px;
  font-size: 34px;
  color: #0e1118;
}
.section__title--small{ font-size: 26px; }
.section__subtitle{
  text-align:center;
  margin: 0 0 34px;
  font-weight:700;
  color: rgba(0,0,0,.55);
}

/* ---------- Seamless Gradients (pink/purple/yellow/red) ---------- */
.section--pink{
  color:#fff;
  background:
    radial-gradient(980px 520px at 15% 20%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(980px 520px at 85% 10%, rgba(0,0,0,.16), transparent 55%),
    linear-gradient(180deg, #ff3f9d 0%, #ff7ac7 50%, #ff58b7 100%);
}
.section--purple{
  color:#fff;
  background:
    radial-gradient(1000px 520px at 15% 20%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(980px 520px at 85% 10%, rgba(0,0,0,.16), transparent 55%),
    linear-gradient(180deg, #b68fff 0%, #9f74ff 60%, #b48cff 100%);
}
.section--yellow{
  color:#0e1118;
  background:
    radial-gradient(1000px 520px at 15% 20%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(980px 520px at 85% 10%, rgba(0,0,0,.10), transparent 55%),
    linear-gradient(180deg, #ffe35a 0%, #ffd33b 100%);
}
.section--red{
  color:#fff;
  background:
    radial-gradient(980px 520px at 15% 20%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(980px 520px at 85% 10%, rgba(0,0,0,.16), transparent 55%),
    linear-gradient(180deg, #ff2f86 0%, #ff4fae 100%);
}

/* subtle “glass haze” overlay for colored sections */
.section--pink::before,
.section--purple::before,
.section--red::before,
.section--yellow::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 35%, rgba(0,0,0,.06));
  mix-blend-mode: overlay;
  opacity:.9;
}

/* ---------- Angles between sections ---------- */
.angle{ height: 36px; transform: skewY(-2deg); transform-origin:left; }
.angle--pink{ background: linear-gradient(90deg, var(--c-hot), var(--c-pink)); }
.angle--purple{ background: linear-gradient(90deg, var(--c-violet), #9f74ff); }
.angle--yellow{ background: linear-gradient(90deg, #ffe35a, #ffd43b); }

/* ---------- Grid helpers ---------- */
.grid{ display:grid; gap: 22px; }
.grid--bestsellers{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid--two{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--new{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid--featured{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ---------- GLASS CARDS (core) ---------- */
.card,
.bigCard,
.showcard{
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  overflow:hidden;
  position:relative;
  transition: transform .18s ease, filter .18s ease;
}
.section--pink .card,
.section--purple .card,
.section--red .card,
.section--pink .bigCard,
.section--yellow .bigCard,
.section--purple .bigCard,
.section--pink .showcard,
.section--purple .showcard{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.card:hover,
.bigCard:hover,
.showcard:hover{
  transform: translateY(-4px);
  filter: brightness(1.03);
}

/* Card media */
.card__imgWrap,
.bigCard__img,
.showcard__media{
  margin:16px;
  border-radius: calc(var(--radius-xl) - 10px);
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 220px;
}
.section--white .card__imgWrap,
.section--white .bigCard__img{
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
}

.card__img,
.bigCard__img img,
.showcard__img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Card text */
.card__title{
  font-family:"Sora", sans-serif;
  text-align:center;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size:13px;
  margin: 0 14px 10px;
}
.card__meta{
  display:flex;
  justify-content:center;
  padding: 0 14px 16px;
  font-weight:800;
  opacity:.92;
}
.price{ font-weight:900; }

/* Text color logic fix (some must be black) */
.section--white .card__title,
.section--white .card__meta,
.section--yellow .card__title,
.section--yellow .card__meta{
  color: #111;
}
.section--pink .card__title,
.section--pink .card__meta,
.section--purple .card__title,
.section--purple .card__meta,
.section--red .card__title,
.section--red .card__meta{
  color: rgba(255,255,255,.94);
}

/* ---------- BEST SELLER section: make it “insane” ---------- */
.section--white{
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(255,59,141,.10), transparent 60%),
    radial-gradient(900px 520px at 85% 15%, rgba(180,140,255,.10), transparent 60%),
    rgba(255,255,255,.92);
}

/* Best seller cards: more premium */
.grid--bestsellers .card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 22px 55px rgba(0,0,0,.12);
}
.grid--bestsellers .card__imgWrap{
  min-height: 240px;
}

/* ---------- Promo (pink jar row) ---------- */
.promo__inner{
  display:grid;
  grid-template-columns: 0.8fr .8fr;
  align-items:center;
  gap: 28px;
}
.promo__imgRow{
  display:flex;
  gap: 16px;
  align-items:flex-end;
}
.promo__jar{
  width: 100%;
  max-width: 150px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  padding: 10px;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.promo__right .promo__label{
  font-family:"Sora", sans-serif;
  font-weight:900;
  letter-spacing:1.2px;
  text-transform:uppercase;
  opacity:.9;
}
.promo__headline{
  font-family:"Sora", sans-serif;
  font-weight:900;
  text-transform:uppercase;
  margin: 10px 0 10px;
  font-size: 30px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 22px;
  border-radius: 999px;
  font-family:"Sora", sans-serif;
  font-weight:900;
  letter-spacing:.8px;
  text-transform:uppercase;
}
.btn--white{
  background: rgba(255,255,255,.92);
  color:#0f1626;
  border: 1px solid rgba(255,255,255,.40);
}
.btn--white:hover{ filter: brightness(1.03); }
.btn--ghost{
  background: rgba(255,255,255,.10);
  color:#fff;
  border: 1px solid rgba(255,255,255,.18);
}

/* ---------- Purple feature section (text must be WHITE) ---------- */
.feature__inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items:center;
}
.feature__title{
  font-family:"Sora", sans-serif;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.2px;
  margin:0 0 10px;
  font-size: 30px;
  color:#fff;
}
.feature__desc{ color: rgba(255,255,255,.78); font-weight:700; }
.bulletList{
  list-style:none;
  padding:0;
  margin: 18px 0 0;
  display:grid;
  gap: 12px;
}
.bulletList li{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  color: rgba(255,255,255,.90);
  font-weight:800;
}
.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--c-hot), var(--c-yellow));
  margin-top: 6px;
  flex: 0 0 10px;
}
.feature__mediaWrap{
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  padding: 18px;
}
.feature__img{
  width:100%;
  height:auto;
  object-fit: contain;
}

/* Pins */
.pin{
  position:absolute;
  width:12px; height:12px;
  border-radius:999px;
  background: var(--c-hot);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.pin--1{ top: 18px; left: 22px; }
.pin--2{ top: 40%; left: 10%; }
.pin--3{ top: 38%; left: 70%; }

/* ---------- Yellow gummies strip ---------- */
.gummies__strip{
  background: rgba(0,0,0,.12);
  border-top: 1px solid rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(0,0,0,.18);
}
.gummies__stripInner{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  padding: 12px 0;
  font-family:"Sora", sans-serif;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size: 12px;
}
.kicker{
  font-family:"Sora", sans-serif;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.2px;
  opacity:.85;
  text-align:center;
  margin-top: 18px;
}
.gummies__title{
  text-align:center;
  font-family:"Sora", sans-serif;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.2px;
  margin: 10px 0 26px;
  font-size: 30px;
}

/* Big cards */
.bigCard{
  padding-bottom: 18px;
}
.bigCard__title{
  text-align:center;
  font-family:"Sora", sans-serif;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1px;
  margin: 0 18px 10px;
}
.bigCard .price{ text-align:center; font-weight:900; opacity:.9; }

/* ---------- Showcase (Candy products) ---------- */
.showcase{
  padding: 70px 0;
  background:
    radial-gradient(1000px 520px at 20% 10%, rgba(255,59,141,.12), transparent 60%),
    radial-gradient(1000px 520px at 85% 10%, rgba(180,140,255,.12), transparent 60%),
    rgba(255,255,255,.92);
}
.showcase__head{ text-align:center; margin-bottom: 28px; }
.showcase__kicker{
  display:inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-family:"Sora", sans-serif;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  background: rgba(0,0,0,.06);
}
.showcase__title{
  font-family:"Sora", sans-serif;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.2px;
  font-size: 36px;
  margin: 14px 0 6px;
}
.showcase__sub{ margin:0; color: rgba(0,0,0,.55); font-weight:700; }

.showcase__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.showcard{
background: #F0D9E4;
background: linear-gradient(212deg, rgba(240, 217, 228, 1) 0%, rgba(216, 112, 120, 0.82) 100%);
  border: 1px solid rgba(0,0,0,.06);
}
.showcard__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 14px 16px 0;
}
.showcard__badge{
  font-family:"Sora", sans-serif;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c-yellow), #fff1a3);
  color:#0e1118;
  border: 1px solid rgba(0,0,0,.06);
}
.showcard__chip{
  font-family:"Sora", sans-serif;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  color:#fff;
  border: 1px solid rgba(255,255,255,.14);
}
.showcard__body{ padding: 10px 18px 18px; }
.showcard__title{
  font-family:"Sora", sans-serif;
  font-weight:900;
  text-transform:uppercase;
  margin: 0 0 6px;
}
.showcard__desc{ margin:0 0 14px; color: rgba(0,0,0,.60); font-weight:700; }
.showcard__meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:900;
}
.showcard__rating{ color: rgba(0,0,0,.62); font-weight:900; }

/* ---------- Featured Red Donuts ---------- */
.featured__title{
  text-align:center;
  font-family:"Sora", sans-serif;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.2px;
  margin:0 0 26px;
  font-size: 30px;
}

/* ---------- GlassFeature (your extra glass section) ---------- */
.glassFeature{
  padding: 70px 0;
  background:
    radial-gradient(1000px 520px at 20% 15%, rgba(255,59,141,.16), transparent 60%),
    radial-gradient(1000px 520px at 85% 15%, rgba(180,140,255,.16), transparent 60%),
    linear-gradient(180deg, #0f1626, #141e33);
  color:#fff;
}
.glassFeature__inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items:center;
}
.glassFeature__kicker{
  display:inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-family:"Sora", sans-serif;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
}
.glassFeature__title{
  font-family:"Sora", sans-serif;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.2px;
  margin: 14px 0 8px;
  font-size: 36px;
}
.glassFeature__desc{ margin:0 0 18px; color: rgba(255,255,255,.78); font-weight:700; }
.glassFeature__list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 12px;
  font-weight:800;
  color: rgba(255,255,255,.92);
}
.gfDot{
  display:inline-block;
  width:10px; height:10px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--c-hot), var(--c-yellow));
  margin-right:10px;
  transform: translateY(-1px);
}
.glassFeature__frame{
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  padding: 18px;
}
.glassFeature__img{
  width:100%;
  height:auto;
  object-fit: contain;
}

/* ---------- Footer ---------- */
.footer{
  background: #0b0f18;
  color:#fff;
  padding: 56px 0 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 26px;
}
.footer__logo{ height: 44px; width:auto; }
.footer__small{ color: rgba(255,255,255,.70); font-weight:700; }
.footer__col h5{
  font-family:"Sora", sans-serif;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  margin:0 0 12px;
}
.footer__col a{
  display:block;
  padding: 6px 0;
  color: rgba(255,255,255,.74);
  font-weight:700;
}
.footer__form{
  display:flex;
  gap: 10px;
  margin-top: 12px;
}
.footer__form input{
  flex:1;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
  outline:none;
}
.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 26px;
  padding: 14px 0;
}
.footer__bottomInner{ display:flex; justify-content:center; color: rgba(255,255,255,.70); font-weight:700; }

/* =========================================================
   RESPONSIVE (clean + mobile not messy)
   ========================================================= */

/* tablet */
@media (max-width: 980px){
  .grid--bestsellers{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--new{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--featured{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo__inner{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; grid-template-columns: 1fr; }
  .feature__inner{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; grid-template-columns: 1fr; }
  .glassFeature__inner{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; grid-template-columns: 1fr; }
  .footer__grid{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; grid-template-columns: 1fr 1fr; }
}

/* mobile */
@media (max-width: 768px){
  .section{ padding: 40px 0; }

  .section__title{ font-size: 20px; }
  .section__subtitle{ font-size: 12px; margin-bottom: 22px; }

  .card__imgWrap,
  .bigCard__img,
  .showcard__media{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; min-height: 180px; }

  .showcase__grid{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; grid-template-columns: 1fr; }

  /* make the candy cards not huge */
  .showcard{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; border-radius: 22px; }

  .gummies__stripInner{
    touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch;
    flex-wrap: wrap;
    justify-content:center;
    text-align:center;
  }

  /* MOBILE: BEST SELLER becomes swipe carousel (clean) */
  .grid--bestsellers{
    touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch;
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    gap:14px;
    padding: 2px 6px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
   touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
  }
  .grid--bestsellers > .card{
    touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch;
    flex: 0 0 82%;
    min-width: 82%;
    max-width: 82%;
    scroll-snap-align: start;
  }
  .grid--bestsellers::-webkit-scrollbar{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; display:none; }
  .grid--bestsellers{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; scrollbar-width:none; }

  /* promo jar row becomes swipe on mobile */
  .promo__imgRow{
    touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch;
    overflow-x:auto;
    flex-wrap:nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }
  .promo__jar{ 
    touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch;
    flex: 0 0 72%;
    min-width: 72%;
    max-width: 72%;
    scroll-snap-align:start;
  }
  .promo__imgRow::-webkit-scrollbar{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; display:none; }
  .promo__imgRow{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; scrollbar-width:none; }

  /* NEW section becomes swipe carousel too (less mess) */
  .grid--new{
    touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch;
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    gap:14px;
    padding: 2px 6px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .grid--new > .card{
    touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch;
    flex: 0 0 82%;
    min-width: 82%;
    max-width: 82%;
    scroll-snap-align:start;
  }
  .grid--new::-webkit-scrollbar{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; display:none; }
  .grid--new{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; scrollbar-width:none; }

  /* featured donuts becomes swipe */
  .grid--featured{
    touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch;
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:14px;
    padding: 2px 6px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .grid--featured > .card{
    touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch;
    flex: 0 0 82%;
    min-width: 82%;
    max-width: 82%;
    scroll-snap-align:start;
  }
  .grid--featured::-webkit-scrollbar{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; display:none; }
  .grid--featured{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; scrollbar-width:none; }

  .footer__grid{ touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch; grid-template-columns: 1fr; }
}

/* super small */
@media (max-width: 420px){
  
  .grid--bestsellers > .card,
  .grid--new > .card,
  .grid--featured > .card{
    touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch;
    flex-basis: 88%;
    min-width: 88%;
    max-width: 88%;
  }
}

/* ===============================
   PATCH: Fix angled strips + hero banner (DESKTOP + MOBILE)
   Paste at END of styles.css
================================= */

:root{
  /* nicer seamless gradients for strips */
  --grad-pink: linear-gradient(90deg, #ff2fa6 0%, #ff5bb9 35%, #b66bff 70%, #4dd2ff 100%);
  --grad-purple: linear-gradient(90deg, #7a5cff 0%, #9b6bff 40%, #ff4fb3 100%);
  --grad-yellow: linear-gradient(90deg, #ffe36b 0%, #ffd24f 35%, #ff77c8 100%);

  /* hero background (behind image when using contain on mobile) */
  --hero-bg: radial-gradient(1200px 600px at 30% 40%, rgba(255,60,170,.28), transparent 55%),
             radial-gradient(1000px 600px at 75% 35%, rgba(110,90,255,.30), transparent 60%),
             linear-gradient(180deg, #0b1220 0%, #0a1426 100%);
}

/* ---------- HERO: make banner taller + consistent ---------- */
.hero{
  position: relative;
  overflow: hidden;
  /* bigger hero so it doesn't look “short” */
  min-height: clamp(520px, 82vh, 880px);
}

.hero__bg{
  position:absolute;
  inset:0;
  background: var(--hero-bg);
}

.hero__bgImg{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;           /* desktop = cinematic */
  object-position: center;
  transform: translateZ(0);
}

/* if your navbar overlays the hero, ensure it stays on top */
.navBar{
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* ---------- ANGLED STRIPS: perfect alignment + gradient ---------- */
/* important: remove gaps between sections */
.section{
  position: relative;
  overflow: hidden;
}

/* kill tiny white seams that can appear between stacked sections */
.section + .section,
.section + .showcase,
.showcase + .section{
  margin-top: -1px;
}

/* generic angled divider */
.angle{
  position: relative;
  height: 64px;         /* visible strip height */
  pointer-events: none;
  overflow: hidden;
  background: transparent;
}

/* the actual angled gradient bar */
.angle::before{
  content:"";
  position:absolute;
  left:-10%;
  width:120%;
  top:10px;
  height:44px;
  border-radius: 999px;
  transform: rotate(-2.2deg);
  box-shadow: 0 18px 40px rgba(0,0,0,.20);
  opacity: .98;
}

/* per-section gradients */
.angle--pink::before{ background: var(--grad-pink); }
.angle--purple::before{ background: var(--grad-purple); }
.angle--yellow::before{ background: var(--grad-yellow); }

/* if you have hero angled underline */
.hero__angle{
  position: relative;
  height: 58px;
  overflow: hidden;
}
.hero__angle::before{
  content:"";
  position:absolute;
  left:-10%;
  width:120%;
  top:6px;
  height:42px;
  border-radius: 999px;
  transform: rotate(-2.2deg);
  background: var(--grad-pink);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

/* ---------- MOBILE: banner should be FULL VISIBLE (no crop) ---------- */
@media (max-width: 768px){
  .hero{
    min-height: 66vh; /* still tall but not crazy */
  }

  /* Make image fully visible (no cropping) */
  .hero__bgImg{
    object-fit: contain;   /* IMPORTANT: shows full banner */
    object-position: center;
    padding: 14px 10px 10px;
  }

  /* a bit more space for content below nav */
  .hero__content{
    position: relative;
    z-index: 2;
  }

  /* angled strips slightly thinner on mobile */
  .angle{ height: 52px; }
  .angle::before{
    height: 34px;
    top: 10px;
    transform: rotate(-2deg);
  }

  .hero__angle{ height: 48px; }
  .hero__angle::before{
    height: 34px;
    top: 8px;
    transform: rotate(-2deg);
  }
}

/* extra-small phones (Infinix etc.) */
@media (max-width: 420px){
  .hero{
    min-height: 70vh; /* helps show full banner image + nav */
  }

  .hero__bgImg{
    padding: 18px 10px 12px;
  }

  .angle{ height: 46px; }
  .angle::before{ height: 30px; }

  .hero__angle{ height: 44px; }
  .hero__angle::before{ height: 30px; }
}


/* =========================
   PATCH: fix angled lines + hero banner
   Paste at END of styles.css
========================= */

/* 1) Make every section a safe stacking context so "angle" sits BEHIND content */
.section,
.hero,
.promo,
.feature,
.gummies,
.showcase,
.featured,
.glassFeature{
  position: relative;
  overflow: hidden;
  touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch;
}

/* Ensure your real content is always above the angled strips */
.section > .container,
.promo__inner,
.feature__inner,
.gummies .container,
.showcase .container,
.featured .container,
.glassFeature__inner{
  position: relative;
  z-index: 3;
  touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch;
}

/* 2) Angled strips: always behind, never overlap text */
.angle,
.hero__angle{
  position: absolute;
  left: -12%;
  right: -12%;
  height: 84px;                  /* smaller so it doesn't eat content */
  transform: rotate(-2.2deg);
  transform-origin: center;
  pointer-events: none;
  z-index: 1;                    /* behind content */
  filter: saturate(1.05);
}

/* Place the angle at the section bottom (not through the middle) */
.angle{ bottom: -44px; }
.hero__angle{ bottom: -44px; }

/* If you have multiple angle blocks stacked, keep spacing so it doesn't collide */
.section{ padding-block: clamp(48px, 6vw, 86px); }

/* 3) Smooth gradient looks for the angled strips (no harsh solid bands) */
.angle--pink{
  background: linear-gradient(90deg,
    rgba(255, 56, 166, 0.92),
    rgba(178, 92, 255, 0.92),
    rgba(79, 164, 255, 0.92)
  );
}

.angle--purple{
  background: linear-gradient(90deg,
    rgba(147, 85, 255, 0.90),
    rgba(255, 64, 168, 0.90),
    rgba(255, 203, 84, 0.85)
  );
}

.angle--yellow{
  background: linear-gradient(90deg,
    rgba(255, 214, 64, 0.92),
    rgba(255, 164, 80, 0.88),
    rgba(255, 64, 168, 0.82)
  );
}

/* Optional: soften the edge so it blends into the section */
.angle::after,
.hero__angle::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  mix-blend-mode: overlay;
  opacity: .45;
}

/* 4) HERO banner: make it taller AND show FULL image (no cropping) */
.hero__bg{
  width: 100%;
  /* big enough so it doesn't feel short */
  height: clamp(340px, 48vw, 640px);
  background: radial-gradient(1200px 520px at 50% 20%, rgba(255,56,166,.18), rgba(0,0,0,0) 60%),
              linear-gradient(180deg, rgba(10,12,24,1), rgba(10,12,24,.92));
  overflow: hidden;
}

.hero__bgImg{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;        /* IMPORTANT: full visible (no cut) */
  object-position: center;
  background: transparent;
}

/* If you want slightly less empty space on very wide screens */
@media (min-width: 1100px){
  .hero__bg{ height: clamp(420px, 36vw, 680px); }
}

/* Mobile: keep banner fully visible + avoid huge empty space */
@media (max-width: 640px){
  .hero__bg{
    height: auto;
    aspect-ratio: 16 / 9;     /* keeps it consistent across devices */
  }
  .hero__bgImg{
    object-fit: contain;      /* still no cropping on Infinix etc */
  }

  /* tighten angled strips on mobile so they never cover headings */
  .angle,
  .hero__angle{
    height: 58px;
    bottom: -34px;
    transform: rotate(-2deg);
  }

  .section{ padding-block: 44px; }
}

/* Extra safety: if any text still gets covered in a section, force padding-bottom */
.section--pink,
.section--purple,
.section--yellow{
  padding-bottom: clamp(74px, 8vw, 110px);
}

/* =========================================
   MOBILE FIX: HERO/BANNER + TOPBAR + ANGLES
   Paste at END of styles.css
   ========================================= */

@media (max-width: 768px){

  /* 1) Top bar should wrap & not squeeze */
  .topbar{
    padding: 8px 0;
  }
  .topbar__inner{
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .topbar__left,
  .topbar__right{
    font-size: 12px;
    line-height: 1.2;
    opacity: .95;
  }

  /* 2) HERO: remove extra dark empty area */
  .hero{
    min-height: auto !important;
    height: auto !important;
    padding-bottom: 0 !important;
  }

  .hero__bg{
    position: relative !important;
    height: auto !important;
    overflow: hidden;
  }

  /* 3) Banner: show full image (no cut) */
  .hero__bgImg{
    width: 100%;
    height: auto !important;          /* KEY: stop forcing fixed height */
    max-height: 320px;                /* adjust if you want taller */
    object-fit: contain !important;   /* FULL visibility */
    object-position: center;
    display: block;
    background: #000;                 /* if image has transparent/edges */
  }

  /* 4) Nav area compact */
  .navBar{
    position: absolute;
    left: 0; right: 0; top: 0;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(10px);
  }

  .brand__logo{
    height: 28px !important;
    width: auto !important;
  }

  .nav__toggle{
    transform: scale(.9);
  }

  /* 5) Kill the huge angle under hero on mobile (it causes the ugly blocks) */
  /* .hero__angle{
    display: none !important;
  } */

  /* 6) Also reduce section angles height (those lines you had) */
  /* .angle{
    height: 26px !important;
  } */
}


/* ===========================
   FORCE HERO FULL WIDTH FILL
   =========================== */

/* Remove any container width restriction */
.hero .container,
.hero__content .container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

/* Make hero full viewport height */
.hero {
  min-height: 100vh !important;
  height: 100vh !important;
  padding: 0 !important;
}

/* Remove side backgrounds */
.hero__bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

/* THIS is the important line */
.hero__bgImg {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;   /* FILL ENTIRE SCREEN */
  object-position: center center !important;
  display: block;
}

/* Remove that empty gradient block under image */
.hero__angle {
  display: none !important;
}

/* Mobile – still full fill */
@media (max-width: 768px) {
  .hero {
    height: 100vh !important;
    min-height: 100vh !important;
  }

  .hero__bgImg {
    object-fit: cover !important;
  }
}



/* =========================================
   FINAL HERO FIX (Desktop + Mobile Clean)
   ========================================= */

/* Reset hero so it doesn't force weird heights */
.hero {
  min-height: unset !important;
  height: auto !important;
  padding: 0 !important;
}

/* Make background wrapper natural */
.hero__bg {
  position: relative !important;
  height: auto !important;
  overflow: hidden;
}

/* DESKTOP: make banner fill nicely */
@media (min-width: 769px){
  .hero__bgImg{
    width: 100%;
    height: 75vh;             /* clean hero height */
    object-fit: cover;        /* fills full width */
    object-position: center;
    display:block;
  }
}

/* MOBILE: make banner strong and clean */
@media (max-width: 768px){

  .hero__bgImg{
    width: 100%;
    height: auto;             /* natural image height */
    max-height: 420px;        /* makes it visually strong */
    object-fit: cover;        /* fill screen properly */
    object-position: center;
    display:block;
  }

  /* Remove empty dark block */
  .hero::after,
  .hero__bg::after{
    display:none !important;
  }

  /* Remove angled stripe under hero on mobile */
  .hero__angle{
    display:none !important;
  }
}


/* Mobile Carousel Only */
@media (max-width: 768px) {

  .showcase__grid {
    touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch;
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 10px;
  }

  .showcase__grid::-webkit-scrollbar {
    touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch;
    display: none;
  }

  .showcard {
    touch-action: pan-y;         /* allow vertical scrolling */
  -webkit-overflow-scrolling: touch;
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

}

/* =========================
   GLOBAL MOBILE CAROUSEL SWIPE FIX
   Put this at the VERY END of your CSS
========================= */
@media (max-width: 768px) {

  /* 1) Stop images from "dragging" and blocking swipe */
  img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
  }

  /* 2) Make horizontal scroll containers prioritize pan-x */
  .showcase__grid,
  .grid--bestsellers,
  .grid--new,
  .grid--featured,
  .promo__imgRow {
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
  }

  /* 3) Prevent accidental image pointer-capture while still allowing taps */
  .showcase__grid img,
  .grid--bestsellers img,
  .grid--new img,
  .grid--featured img,
  .promo__imgRow img {
    pointer-events: auto; /* keep clicks/taps working */
  }
}


@media (max-width: 900px) {
  .navBar {
    z-index: 99999; /* ensure on top of hero */
  }

  .nav__links {
    z-index: 100000; /* ensure dropdown is on top */
  }

  .nav__toggle {
    display: block;
    position: relative;
    z-index: 100001; /* button always clickable */
  }
}

/* === MOBILE: FORCE NAVBAR TO SHOW ON TOP (PUT AT VERY END) === */
@media (max-width: 900px) {
  .navBar{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 999999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* give page space so navbar doesn't cover content */
  body{
    padding-top: 64px;
  }

  /* make sure hero/background can’t sit above navbar */
  .hero,
  .hero__bg,
  .hero__content{
    z-index: 0 !important;
  }
}




/* =======================
   BANNER / CAROUSEL
   ======================= */

.banner-carousel {
    padding: 0;
    margin: 0;
}

.banner-carousel .carousel-item {
    height: auto;              /* no fixed height – prevents white gap */
}

.banner-carousel .banner-img {
    width: 100%;
    height: auto;              /* keeps aspect ratio */
    object-fit: cover;
    display: block;
}
/* put this AFTER bootstrap.css */
#stonerBanner .carousel-indicators button {
  background-color: #fff !important;
  opacity: .6;
  border: 0 !important;

  /* BS sometimes uses borders/gradients that affect color */
  background-image: none !important;
  filter: none !important;
}

#stonerBanner .carousel-indicators button.active {
  background-color: #fff !important;
  opacity: 1;
}
.banner-carousel .carousel-indicators [data-bs-target] {
    background-color: #ffffff !important;
    opacity: 0.6;
}

.banner-carousel .carousel-indicators .active {
    background-color: #ffffff !important;
    opacity: 1;
}

.banner-carousel .carousel-control-prev-icon,
.banner-carousel .carousel-control-next-icon {
    color: #fff;
    filter: drop-shadow(0 0 4px rgb(255, 255, 255)) invert(1);
}



/* DESKTOP: show full banner (no cropping) */
@media (min-width: 992px) {
  .hero {
    height: 100vh;          /* keep full screen */
  }

  .hero__bgImg {
    height: 100%;
    width: 100%;
    object-fit: contain !important;   /* prevents cutting */
    object-position: center;
    background: #000;                 /* fills empty space */
  }
}

/* MOBILE BUTTON CAROUSEL */
.carouselWrap{
  position: relative;
}

.carouselBtn{
  position: absolute;
  top: -40px;
  right: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 20;
}

.carouselBtn.prevBtn{
  right: 40px;
}

.carouselBtn:hover{
  background: rgba(0,0,0,0.8);
}

@media (max-width:768px){

  /* disable swipe scrolling */
  .grid--bestsellers{
    overflow-x: hidden !important;
  }

}

.carouselWrap{
  position: relative;
}

.carouselBtn{
  display: none;
}

@media (max-width: 768px){

  .carouselWrap{
    position: relative;
    margin-top: 10px;
  }

  .carouselBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -52px;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #222;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    z-index: 30;
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
    transition: all .2s ease;
  }

  .carouselBtn:active{
    transform: scale(.96);
  }

  .prevBtn{
    right: 36px;
  }

  .nextBtn{
    right: 0;
  }

  .carouselBtn:hover{
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.14);
  }

  #bestSellerCarousel{
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-y !important;
    padding-top: 4px;
  }

  #bestSellerCarousel::-webkit-scrollbar{
    display: none;
  }
}

.carouselWrap{
  position: relative;
}

.carouselControls{
  display: none;
}

.carouselBtn{
  border: 0;
  outline: none;
  font-family: inherit;
}

@media (max-width: 768px){

  .carouselWrap{
    margin-top: 10px;
  }

  .carouselControls{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-right: 4px;
  }

  .carouselBtn{
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: #1a1a1a;

    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
      0 8px 20px rgba(0,0,0,.10),
      inset 0 1px 0 rgba(255,255,255,.35);

    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
    touch-action: manipulation;
  }

  .carouselBtn:hover{
    background: rgba(255,255,255,.52);
    box-shadow:
      0 10px 24px rgba(0,0,0,.12),
      inset 0 1px 0 rgba(255,255,255,.4);
  }

  .carouselBtn:active{
    transform: scale(.96);
  }

  #bestSellerCarousel{
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-y !important;
    overscroll-behavior-x: contain;
  }

  #bestSellerCarousel::-webkit-scrollbar{
    display: none;
  }

  #bestSellerCarousel > .card{
    flex: 0 0 82%;
    min-width: 82%;
    max-width: 82%;
  }

  .section__subtitle{
    padding-right: 0 !important;
  }
}
@media (max-width:768px){.grid--bestsellers{display:flex;flex-wrap:nowrap;touch-action: pan-x pan-y;overflow-y:hidden;gap:14px;padding:2px 6px 12px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;touch-action:pan-y!important;overscroll-behavior-x:contain;scrollbar-width:none}.grid--bestsellers::-webkit-scrollbar{display:none}.grid--bestsellers>.card{flex:0 0 82%;min-width:82%;max-width:82%;scroll-snap-align:start}.bestSellerCarouselWrap,.carouselWrap{position:relative;margin-top:10px}.bestSellerCarouselControlsRow,.carouselControlsRow{display:flex;justify-content:flex-end;width:100%;margin:0 0 14px}.bestSellerCarouselControls,.carouselControls{display:flex;align-items:center;gap:10px}.bestSellerCarouselBtn,.carouselBtn{width:42px;height:42px;border:1px solid rgba(255,255,255,.42);border-radius:999px;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;font-size:20px;font-weight:700;line-height:1;color:#1a1a1a;background:rgba(255,255,255,.45);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);box-shadow:0 8px 20px rgba(0,0,0,.10),inset 0 1px 0 rgba(255,255,255,.35);transition:transform .18s ease,box-shadow .18s ease,background .18s ease;-webkit-tap-highlight-color:transparent;touch-action:manipulation;outline:0}.bestSellerCarouselBtn:active,.carouselBtn:active{transform:scale(.96)}.bestSellerCarouselBtn:hover,.carouselBtn:hover{background:rgba(255,255,255,.55);box-shadow:0 10px 24px rgba(0,0,0,.12),inset 0 1px 0 rgba(255,255,255,.4)}#bestSellerCarousel{touch-action: pan-x pan-y;overflow-y:hidden!important;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;scrollbar-width:none;touch-action:pan-y!important;overscroll-behavior-x:contain}#bestSellerCarousel::-webkit-scrollbar{display:none}.section__subtitle{padding-right:0!important;margin-bottom:14px!important}}

@media (max-width:768px){

.carouselWrap{
  position:relative;
  padding-top:30px;
}

.carouselBtn{
  display:flex;
  align-items:center;
  justify-content:center;
  position:absolute;
  top:0;
  width:32px;
  height:32px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.92);
  color:#222;
  font-size:16px;
  font-weight:700;
  z-index:20;
}

.prevBtn{ right:40px; }
.nextBtn{ right:0; }

}

/* === CAROUSEL UI PATCH === */
.carouselWrap{position:relative}
.carouselControlsRow{display:none}
.carouselControls{display:flex;gap:10px}
.carouselBtn{
  border:0;
  outline:0;
  font-family:inherit;
  -webkit-tap-highlight-color:transparent;
}

@media (max-width:768px){
  .carouselControlsRow{
    display:flex !important;
    justify-content:flex-end;
    width:100%;
    margin:0 0 14px 0;
  }

  .carouselControls{
    display:flex;
    align-items:center;
    gap:10px;
  }

  .carouselBtn{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:999px;
    cursor:pointer;
    font-size:20px;
    font-weight:700;
    line-height:1;
    color:#1a1a1a;
    background:rgba(255,255,255,.45);
    border:1px solid rgba(255,255,255,.42);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    box-shadow:0 8px 20px rgba(0,0,0,.10), inset 0 1px 0 rgba(255,255,255,.35);
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
    position:static !important;
  }

  .carouselBtn:hover{
    background:rgba(255,255,255,.55);
    box-shadow:0 10px 24px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.4);
  }

  .carouselBtn:active{transform:scale(.96)}

  .section__subtitle{
    padding-right:0 !important;
    margin-bottom:14px !important;
  }
}

/* === MOBILE CAROUSEL BEHAVIOR PATCH === */
@media (max-width:768px){
  .grid--bestsellers,
  .grid--new,
  .grid--featured,
  .showcase__grid,
  .promo__imgRow,
  .carouselTrack{
    display:flex !important;
    flex-wrap:nowrap !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    gap:14px;
    padding:2px 6px 12px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-x:contain;
    scrollbar-width:none;
    touch-action:pan-x pan-y !important;
  }

  .grid--bestsellers::-webkit-scrollbar,
  .grid--new::-webkit-scrollbar,
  .grid--featured::-webkit-scrollbar,
  .showcase__grid::-webkit-scrollbar,
  .promo__imgRow::-webkit-scrollbar,
  .carouselTrack::-webkit-scrollbar{
    display:none;
  }

  .grid--bestsellers > .card,
  .grid--new > .card,
  .grid--featured > .card{
    flex:0 0 82%;
    min-width:82%;
    max-width:82%;
    scroll-snap-align:start;
  }

  .showcase__grid > .showcard{
    flex:0 0 85%;
    min-width:85%;
    max-width:85%;
    scroll-snap-align:start;
  }

  .promo__imgRow > .promo__jar{
    flex:0 0 72%;
    min-width:72%;
    max-width:72%;
    scroll-snap-align:start;
  }

  .grid--bestsellers img,
  .grid--new img,
  .grid--featured img,
  .showcase__grid img,
  .promo__imgRow img,
  .carouselTrack img{
    -webkit-user-drag:none;
    user-select:none;
    -webkit-user-select:none;
    -webkit-touch-callout:none;
    pointer-events:none;
  }
}

/* === OVERRIDE OLD CONFLICTING BUTTON RULES === */
.carouselBtn.prevBtn,
.carouselBtn.nextBtn{
  right:auto !important;
  top:auto !important;
}

@media (max-width:768px){
  #bestSellerCarousel,
  #newArrivalCarousel,
  #flowerCarousel,
  #featuredCarousel,
  #promoCarousel{
    overflow-x:auto !important;
    overflow-y:hidden !important;
    -webkit-overflow-scrolling:touch !important;
    scroll-behavior:smooth;
    scrollbar-width:none !important;
    touch-action:pan-y pinch-zoom !important;
    overscroll-behavior-x:contain !important;
  }

  #bestSellerCarousel::-webkit-scrollbar,
  #newArrivalCarousel::-webkit-scrollbar,
  #flowerCarousel::-webkit-scrollbar,
  #featuredCarousel::-webkit-scrollbar,
  #promoCarousel::-webkit-scrollbar{
    display:none !important;
  }
}
/* ==== DRAG UNDERLINE SCROLLBAR FOR CAROUSELS ==== */
.dragScroll{display:none}

@media (max-width:768px){
  .dragScroll{
    display:block;
    width:100%;
    margin:8px 0 4px;
    padding:0 6px;
  }

  .dragScroll__track{
    position:relative;
    width:100%;
    height:6px;
    border-radius:999px;
    background:rgba(0,0,0,.10);
    overflow:hidden;
  }

  .dragScroll__thumb{
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width:30%;
    min-width:56px;
    border-radius:999px;
    background:linear-gradient(90deg,#ff3b8d,#b48cff);
    box-shadow:0 2px 10px rgba(0,0,0,.12);
    cursor:grab;
    touch-action:none;
  }

  .dragScroll__thumb:active{
    cursor:grabbing;
  }

  /* keep carousels horizontal */
  #bestSellerCarousel,
  #promoCarousel,
  #newArrivalCarousel,
  #flowerCarousel,
  #featuredCarousel{
    overflow-x:auto !important;
    overflow-y:hidden !important;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }

  #bestSellerCarousel::-webkit-scrollbar,
  #promoCarousel::-webkit-scrollbar,
  #newArrivalCarousel::-webkit-scrollbar,
  #flowerCarousel::-webkit-scrollbar,
  #featuredCarousel::-webkit-scrollbar{
    display:none;
  }
}

/* ==== FORCE SHOW DRAG LINE ==== */
.dragScroll{display:block!important;width:100%!important;max-width:100%!important;margin:12px 0 6px!important;padding:0 6px!important;position:relative!important;z-index:5!important}
.dragScroll__track{display:block!important;position:relative!important;width:100%!important;height:6px!important;border-radius:999px!important;background:rgba(0,0,0,.12)!important;overflow:hidden!important}
.dragScroll__thumb{display:block!important;position:absolute!important;top:0!important;left:0!important;width:30%!important;min-width:56px!important;height:100%!important;border-radius:999px!important;background:linear-gradient(90deg,#ff3b8d,#b48cff)!important;box-shadow:0 2px 10px rgba(0,0,0,.12)!important;z-index:2!important}
@media (min-width:769px){.dragScroll{display:none!important}}