/* build: 20260816b */
/* ============================================================
   Anmol Natural — styles
   Palette: honey gold / amber, cocoa, cream, olive accent
   ============================================================ */
:root {
  --gold: #E0A526;
  --amber: #C8860D;
  --amber-dark: #A56C07;
  --cocoa: #3E2723;
  --cocoa-soft: #5d463f;
  --cream: #FFF8EC;
  --cream-2: #FBEFD8;
  --olive: #6B8E23;
  --white: #ffffff;
  --card: #ffffff;
  --line: #ecdfc6;
  --shadow: 0 10px 30px rgba(62, 39, 35, 0.10);
  --shadow-sm: 0 4px 14px rgba(62, 39, 35, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1160px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--cocoa);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .logo__text { font-family: 'Fraunces', Georgia, serif; line-height: 1.1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--amber); margin-bottom: .6rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: .98rem; padding: .8rem 1.5rem; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s var(--ease), box-shadow .2s, background .2s;
  font-family: inherit;
}
.btn--primary { background: linear-gradient(135deg, var(--gold), var(--amber)); color: #fff; box-shadow: 0 8px 20px rgba(200,134,13,.32); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(200,134,13,.4); }
.btn--primary:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn--ghost { background: transparent; border-color: var(--amber); color: var(--amber-dark); }
.btn--ghost:hover { background: var(--cream-2); }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,248,236,.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 70px; }
.logo { display: flex; align-items: center; gap: .55rem; }
.logo__img {
  flex: none;
  height: 52px; width: 52px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(62,39,35,.12);
  box-shadow: 0 3px 10px rgba(62,39,35,.16);
  transition: transform .18s var(--ease);
}
.logo:hover .logo__img { transform: translateY(-1px) scale(1.02); }
.logo__img--footer {
  height: 76px; width: 76px;
  border-radius: 16px;
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.nav { display: flex; gap: 1.8rem; }
.nav__link { font-weight: 500; color: var(--cocoa-soft); position: relative; }
.nav__link::after { content:""; position:absolute; left:0; bottom:-4px; width:0; height:2px; background: var(--amber); transition: width .25s var(--ease); }
.nav__link:hover { color: var(--cocoa); }
.nav__link:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: .6rem; }

.cart-btn { position: relative; background: var(--cream-2); border: 1px solid var(--line); color: var(--cocoa); width: 44px; height: 44px; border-radius: 50%; display:grid; place-items:center; cursor:pointer; transition: background .2s; }
.cart-btn:hover { background: var(--gold); color: #fff; }
.cart-btn__badge { position: absolute; top: -4px; right: -4px; background: var(--olive); color: #fff; font-size: .7rem; font-weight: 700; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; display: grid; place-items: center; }
.cart-btn__badge[hidden] { display: none; }       /* keep badge hidden when empty */
.cart-btn__badge.bump { animation: badgeBump .4s var(--ease); }
@keyframes badgeBump { 0%{transform:scale(1)} 40%{transform:scale(1.45)} 100%{transform:scale(1)} }
body.no-scroll { overflow: hidden; }              /* lock page behind cart/modal */

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--cocoa); border-radius: 2px; transition: .25s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { background: radial-gradient(1200px 500px at 80% -10%, var(--cream-2), transparent), var(--cream); padding: 3.5rem 0 4rem; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: center; }
.hero__copy h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; margin: .2rem 0 1rem; }
.hero__copy p { font-size: 1.08rem; color: var(--cocoa-soft); max-width: 46ch; }
.hero__cta { display: flex; gap: .8rem; margin: 1.6rem 0; flex-wrap: wrap; }
.hero__badges { list-style: none; display: flex; gap: 1.2rem; flex-wrap: wrap; font-weight: 600; color: var(--cocoa-soft); font-size: .92rem; }
.hero__art { position: relative; }
.hero__art img { border-radius: 28px; box-shadow: var(--shadow); aspect-ratio: 4/4.4; object-fit: cover; rotate: 2deg; }

/* hero slideshow */
.hero__slides {
  position: relative;
  border-radius: 28px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/4.4;
  overflow: hidden;
  rotate: 2deg;
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .9s ease-in-out;
  border-radius: 0;
  box-shadow: none;
  rotate: 0deg;
}
.hero__slide.active { opacity: 1; }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section--alt { background: var(--cream-2); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 2.6rem; }
.section__head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section__sub { color: var(--cocoa-soft); margin-top: .4rem; }

/* ---------- Products ---------- */
.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__tag { position: absolute; top: 10px; left: 10px; background: rgba(255,248,236,.92); color: var(--amber-dark); font-size: .72rem; font-weight: 700; padding: .25rem .6rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }
.card__body { padding: 1.1rem 1.1rem 1.3rem; display: flex; flex-direction: column; flex: 1; gap: .55rem; }
.card__name { font-size: 1.2rem; font-weight: 600; }
.card__desc { font-size: .88rem; color: var(--cocoa-soft); flex: 1; }
.card__price { font-size: 1.45rem; font-weight: 700; color: var(--amber-dark); font-family: 'Fraunces', serif; }
.card__price small { font-size: .8rem; color: var(--cocoa-soft); font-weight: 500; font-family: 'Inter'; }
.card__was { font-size: .95rem; font-weight: 500; color: var(--cocoa-soft); text-decoration: line-through; font-family: 'Inter'; }
.card__was:empty { display: none; }
.card__controls { display: flex; gap: .5rem; margin-top: .3rem; }
.select { flex: 1; appearance: none; background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%233E2723' viewBox='0 0 16 16'%3E%3Cpath d='M8 11 3 6h10z'/%3E%3C/svg%3E") no-repeat right .8rem center; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .6rem .8rem; font-family: inherit; font-size: .9rem; color: var(--cocoa); cursor: pointer; }
.card .btn { width: 100%; margin-top: .2rem; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.3rem; }
.feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.feature__icon { font-size: 2rem; margin-bottom: .6rem; }
.feature h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.feature p { font-size: .9rem; color: var(--cocoa-soft); }

/* ---------- Footer ---------- */
.footer { background: var(--cocoa); color: #f3e7d8; margin-top: 2rem; }
.footer__inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding: 3rem 0 2rem; }
.footer .logo__text { color: #fff; }
.footer .logo__text span { color: var(--gold); }
.footer__tag { color: #cbb6a4; max-width: 40ch; margin-top: .6rem; font-size: .92rem; }
.footer__contact h4 { font-family: 'Inter'; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: .7rem; }
.footer__contact a { display: inline-block; font-weight: 600; margin-bottom: .5rem; }
.footer__contact a:hover { color: var(--gold); }
.footer__contact p { font-size: .88rem; color: #cbb6a4; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 1rem 0; font-size: .85rem; color: #b8a392; }

/* ---------- Cart drawer ---------- */
.overlay { position: fixed; inset: 0; background: rgba(62,39,35,.45); z-index: 60; opacity: 0; transition: opacity .25s; }
.overlay.show { opacity: 1; }
.cart {
  position: fixed; top: 0; right: 0; height: 100vh; height: 100dvh; width: min(420px, 100%); background: var(--cream);
  z-index: 70; display: flex; flex-direction: column; transform: translateX(100%);
  transition: transform .35s var(--ease); box-shadow: -10px 0 40px rgba(62,39,35,.18);
}
.cart.open { transform: translateX(0); }
.cart__head { flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.3rem; border-bottom: 1px solid var(--line); }
.cart__head h3 { font-size: 1.3rem; }
.icon-btn { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--cocoa-soft); width: 36px; height: 36px; border-radius: 50%; transition: background .2s; }
.icon-btn:hover { background: var(--cream-2); }
/* min-height:0 is what actually lets this shrink and scroll inside the flex
   column — without it a long cart pushes the total & checkout off screen. */
.cart__body {
  flex: 1 1 auto; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 1rem 1.3rem; display: flex; flex-direction: column; gap: .9rem;
  scrollbar-width: thin; scrollbar-color: var(--amber) var(--cream-2);
}
.cart__body::-webkit-scrollbar { width: 8px; }
.cart__body::-webkit-scrollbar-track { background: var(--cream-2); border-radius: 999px; }
.cart__body::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 999px; border: 2px solid var(--cream-2); }
.cart__body::-webkit-scrollbar-thumb:hover { background: var(--amber-dark); }
.cart__empty { text-align: center; color: var(--cocoa-soft); margin: auto 0; }
.cart__empty span { font-size: 2.5rem; display: block; margin-bottom: .5rem; }

.line { display: grid; grid-template-columns: 64px 1fr auto; gap: .8rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .6rem; align-items: center; }
.line__img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; }
.line__name { font-weight: 600; font-size: .95rem; }
.line__variant { font-size: .8rem; color: var(--cocoa-soft); }
.line__price { font-size: .85rem; color: var(--amber-dark); font-weight: 600; margin-top: .2rem; display: flex; flex-wrap: wrap; gap: 0 .35rem; }
.line__was { color: var(--cocoa-soft); font-weight: 500; text-decoration: line-through; white-space: nowrap; }
.line__save { font-size: .78rem; color: #2e7d52; font-weight: 600; margin-top: .15rem; }
.line__right { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: var(--cream); }
.qty button { width: 26px; height: 26px; border: none; background: none; cursor: pointer; font-size: 1rem; color: var(--cocoa); }
.qty button:hover { background: var(--cream-2); }
.qty span { min-width: 24px; text-align: center; font-size: .9rem; font-weight: 600; }
.line__remove { background: none; border: none; color: #b14a3a; font-size: .78rem; cursor: pointer; }
.line__remove:hover { text-decoration: underline; }

.cart__foot { flex: 0 0 auto; padding: 1.2rem 1.3rem; border-top: 1px solid var(--line); background: var(--cream-2); }
.cart__saving { margin-bottom: .7rem; padding-bottom: .7rem; border-bottom: 1px dashed var(--line); }
.cart__saving[hidden] { display: none; }
.cart__wasrow, .cart__saverow { display: flex; justify-content: space-between; align-items: baseline; font-size: .88rem; }
.cart__wasrow { color: var(--cocoa-soft); }
.cart__saverow { margin-top: .25rem; color: #2e7d52; }
.cart__saverow strong { font-size: 1rem; font-weight: 700; }
.cart__lines { margin-bottom: .55rem; }
.cart__row { display: flex; justify-content: space-between; align-items: baseline; font-size: .9rem; color: var(--cocoa-soft); padding: .12rem 0; }
.cart__row small { font-size: .78rem; opacity: .8; }
.cart__row #cartShipping.is-free { color: #2e7d52; font-weight: 700; letter-spacing: .02em; }

.ship-note { font-size: .82rem; font-weight: 600; text-align: center; padding: .5rem .6rem; border-radius: var(--radius-sm); margin-bottom: .7rem; background: var(--cream); border: 1px dashed var(--amber); color: var(--amber-dark); }
.ship-note--won { background: #e9f5ee; border: 1px solid #2e7d52; color: #2e7d52; }
.ship-note[hidden] { display: none; }

/* free-delivery celebration — decorative only, never blocks clicks */
.confetti { position: fixed; inset: 0; pointer-events: none; z-index: 200; overflow: hidden; }
.confetti span { position: absolute; top: -3rem; line-height: 1; animation-name: confettiFall; animation-timing-function: linear; animation-fill-mode: forwards; will-change: transform, opacity; }
@keyframes confettiFall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(105vh) rotate(var(--spin, 360deg)); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .confetti { display: none; } }

.cart__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .9rem; font-size: 1rem; }
.cart__total strong { font-size: 1.5rem; font-family: 'Fraunces', serif; color: var(--cocoa); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 1.2rem; background: rgba(62,39,35,.5); }
.modal.open { display: flex; }
.modal__card { background: var(--cream); border-radius: var(--radius); width: min(520px, 100%); max-height: 92dvh; overflow-y: auto; padding: 1.8rem; position: relative; box-shadow: var(--shadow); animation: pop .25s var(--ease); }
@keyframes pop { from { transform: translateY(14px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal__close { position: absolute; top: 12px; right: 12px; }
.modal__card h3 { font-size: 1.6rem; }
.modal__sub { color: var(--cocoa-soft); font-size: .92rem; margin: .3rem 0 1.2rem; }
.field { margin-bottom: .9rem; display: flex; flex-direction: column; }
.field label { font-size: .85rem; font-weight: 600; margin-bottom: .35rem; }
.field input, .field textarea { font-family: inherit; font-size: .95rem; padding: .7rem .85rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); color: var(--cocoa); resize: vertical; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--gold); outline-offset: 0; border-color: var(--gold); }
.field input.invalid, .field textarea.invalid { border-color: #d65a45; }
.field .err { color: #d65a45; font-size: .78rem; min-height: 1em; margin-top: .2rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }

.order-summary { background: var(--cream-2); border: 1px dashed var(--line); border-radius: var(--radius-sm); padding: .9rem 1rem; margin: .4rem 0 1.1rem; font-size: .9rem; }
/* item rows: name above "size × qty", amount pinned right and never wrapped */
.order-summary .os-line { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: .3rem 0; }
.order-summary .os-item { display: flex; flex-direction: column; min-width: 0; }
.order-summary .os-item__name { font-weight: 600; }
.order-summary .os-item small { color: var(--cocoa-soft); font-size: .8rem; margin-top: .1rem; }
.order-summary .os-amt { white-space: nowrap; font-weight: 600; }

.order-summary .os-rows { border-top: 1px dashed var(--line); margin-top: .55rem; padding-top: .55rem; }
.order-summary .os-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .15rem 0; color: var(--cocoa-soft); }
.order-summary .os-row small { font-size: .78rem; opacity: .85; }
.order-summary .os-was .os-amt { color: var(--cocoa-soft); font-weight: 500; }
.order-summary .os-save { color: #2e7d52; }
.order-summary .os-save .os-amt { color: #2e7d52; font-weight: 700; }
.order-summary .os-free { color: #2e7d52; font-weight: 700; }

.order-summary .os-total { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-weight: 700; border-top: 1px solid var(--line); margin-top: .5rem; padding-top: .5rem; font-size: 1.05rem; }

.success { text-align: center; padding: 1rem 0; }
.success__check { width: 64px; height: 64px; border-radius: 50%; background: var(--olive); color: #fff; font-size: 2rem; display: grid; place-items: center; margin: 0 auto 1rem; }
.success h3 { margin-bottom: .5rem; }
.success p { color: var(--cocoa-soft); margin-bottom: 1.2rem; }
.success .btn { margin-bottom: .6rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 420px; }

  .hamburger { display: flex; }

  /* slide-down mobile menu */
  .nav {
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column; gap: 0;
    padding: .4rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(62,39,35,.16);
    z-index: 45;
    transform: translateY(-150%);
    opacity: 0; visibility: hidden;
    transition: transform .32s var(--ease), opacity .25s var(--ease), visibility .32s;
  }
  .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__link {
    display: block; width: 100%;
    padding: .95rem .6rem; border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem; font-weight: 600;
  }
  .nav__link:last-child { border-bottom: 0; }
  .nav__link::after { display: none; }
  .nav__link:active, .nav__link:hover { background: var(--cream-2); }
}
/* ---------- Toast (add-to-cart feedback) ---------- */
/* Rounded rect, not a full pill: once the text wraps to two lines a 999px
   radius balloons into a blob on narrow phones. */
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 140%);
  background: var(--cocoa); color: #fff; padding: .7rem 1rem; border-radius: 12px;
  font-weight: 600; font-size: .92rem; line-height: 1.35; box-shadow: var(--shadow); z-index: 90;
  display: flex; align-items: center; gap: .45rem; opacity: 0; pointer-events: none;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
  width: max-content; max-width: min(88vw, 380px);
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast .toast__check { color: #9ccc4f; font-weight: 800; flex: 0 0 auto; }
.toast .toast__msg { min-width: 0; }
.toast--action { pointer-events: auto; }   /* only tappable when it has a button */
.toast .toast__btn {
  flex: 0 0 auto; margin-left: .3rem; padding: .4rem .85rem; border: none; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--amber)); color: #fff;
  font-family: inherit; font-size: .82rem; font-weight: 700; cursor: pointer; white-space: nowrap;
}
.toast .toast__btn:hover { filter: brightness(1.08); }
@media (max-width: 480px) {
  .toast { bottom: 16px; font-size: .85rem; padding: .6rem .85rem; max-width: 90vw; }
}

@media (max-width: 480px) {
  .header__inner { height: 62px; }
  .nav { top: 62px; }
  .logo__img { width: 44px; height: 44px; border-radius: 12px; }
  .logo__img--footer { width: 64px; height: 64px; }
  .cart-btn { width: 40px; height: 40px; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 2.2rem 0 3rem; }
  .hero__badges { gap: .7rem; font-size: .85rem; }
  .section { padding: 3rem 0; }

  /* taller portrait image on product cards for mobile */
  .card__media { aspect-ratio: 3/4; }
}

/* ---------- Honey image slider (Big Bee Honey card) ---------- */
.slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.slider img.active {
  opacity: 1;
  pointer-events: auto;
}

/* nav arrows */
.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 248, 236, 0.85);
  border: none;
  color: var(--cocoa);
  font-size: 1.6rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 5;
  opacity: 0;
  transition: opacity .2s, background .2s;
}
.slider:hover .slider__btn,
.slider:focus-within .slider__btn { opacity: 1; }
.slider__btn:hover { background: var(--gold); color: #fff; }
.slider__btn--prev { left: 8px; }
.slider__btn--next { right: 8px; }

/* dot indicators */
.slider__dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 5;
}
.slider__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 248, 236, 0.55);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.slider__dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================================
   HERO BANNER (preview — replaces the old slider hero)
   Live HTML version of the exported banner, so the text stays
   crisp and it reflows on phones instead of being a flat image.
   ============================================================ */
.hero-banner{
  position:relative; overflow:hidden; color:#fff;
  background:
    radial-gradient(120% 130% at 50% 118%, rgba(224,165,38,.42) 0%, rgba(224,165,38,.10) 38%, rgba(0,0,0,0) 62%),
    radial-gradient(80% 90% at 12% 0%, rgba(224,165,38,.16) 0%, rgba(0,0,0,0) 55%),
    linear-gradient(160deg, #3a231c 0%, #241410 45%, #120a08 100%);
}
.hero-banner::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image:radial-gradient(rgba(224,165,38,.10) 1.5px, transparent 1.6px);
  background-size:26px 26px; opacity:.5;
}
.hb__floor{ position:absolute; left:0; right:0; bottom:0; height:34%; pointer-events:none;
  background:linear-gradient(to top, rgba(224,165,38,.20), rgba(224,165,38,0)); }
.hb__inner{ position:relative; max-width:var(--maxw); margin:0 auto; padding:2.2rem 1.2rem 1.6rem; }

.hb__top{ display:flex; align-items:center; justify-content:space-between; gap:2rem; }
.hb__brand{ text-align:center; flex:0 0 auto; }
/* the logo file has a solid black background — screen blend drops it out */
.hb__logo{ height:clamp(96px,13vw,190px); width:auto; display:block; margin:0 auto; mix-blend-mode:screen; }
.hb__cta{ text-align:center; margin-top:1.5rem; }
.hb__shop{
  display:inline-block; padding:.7rem 1.9rem; border-radius:999px;
  background:linear-gradient(135deg,#E0A526,#A56C07); color:#fff; text-decoration:none;
  font-weight:800; letter-spacing:.14em; font-size:.9rem;
  box-shadow:0 10px 26px rgba(224,165,38,.42), inset 0 1px 0 rgba(255,255,255,.35);
  transition:transform .2s var(--ease), box-shadow .2s var(--ease);
}
.hb__shop:hover{ transform:translateY(-2px); box-shadow:0 14px 32px rgba(224,165,38,.55); }

.hb__copy{ text-align:right; }
.hb__eyebrow{ display:block; letter-spacing:.4em; font-size:clamp(.62rem,1.1vw,.85rem); font-weight:700;
  color:#E0A526; text-transform:uppercase; margin-bottom:.6rem; }
.hb__head{ font-family:'Fraunces',Georgia,serif; font-weight:700; line-height:1.05;
  font-size:clamp(1.65rem,4.2vw,3.4rem); letter-spacing:-.5px; color:#fff; }
.hb__head span{ color:#E0A526; }
.hb__sub{ color:#f0dcc0; margin-top:.6rem; font-size:clamp(.78rem,1.4vw,1.1rem); }

/* flex + center so a leftover item on the last row sits in the middle
   instead of hugging the left edge (7 items never fill 4 or 3 columns) */
.hb__row{ display:flex; flex-wrap:wrap; justify-content:center; gap:1.1rem; margin-top:1.6rem; }
.hb__item{ text-align:center; text-decoration:none; display:block; flex:0 0 calc((100% - 6 * 1.1rem) / 7); }
.hb__shot{
  display:block; aspect-ratio:1; border-radius:50%; overflow:hidden; background:#000;
  border:3px solid rgba(224,165,38,.95);
  box-shadow:0 16px 34px rgba(0,0,0,.55), 0 0 0 8px rgba(224,165,38,.12);
  transition:transform .25s var(--ease);
}
.hb__item:hover .hb__shot{ transform:translateY(-4px) scale(1.03); }
.hb__shot img{ width:100%; height:100%; object-fit:cover; display:block; }
.hb__cap{ display:block; margin-top:.6rem; font-weight:700; color:#fff; font-size:clamp(.7rem,1.05vw,.95rem); }

.hb__foot{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:.7rem 1.4rem;
  margin-top:1.3rem; color:#f0dcc0; font-size:clamp(.72rem,1.1vw,1rem); }
.hb__dot{ width:5px; height:5px; border-radius:50%; background:#E0A526; display:inline-block; }

@media (max-width:900px){
  /* the info strip is desktop-only — on phones it just eats vertical space */
  .hb__foot{ display:none; }
  .hb__top{ flex-direction:column; gap:1rem; }
  .hb__copy{ text-align:center; }
  .hb__row{ gap:1.1rem .9rem; }
  .hb__item{ flex-basis:calc((100% - 3 * 0.9rem) / 4); }
}
@media (max-width:560px){
  .hb__inner{ padding:1.6rem 1rem 1.3rem; }
  .hb__item{ flex-basis:calc((100% - 2 * 0.9rem) / 3); }
  .hb__foot{ flex-direction:column; gap:.35rem; }
  .hb__foot .hb__dot{ display:none; }
}

/* landing on a product from the banner: clear the sticky header, then
   glow briefly so it's obvious which card was opened */
.card { scroll-margin-top: 96px; }
.card:target {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(224,165,38,.35), var(--shadow);
  animation: cardLand 1.6s var(--ease) 1;
}
@keyframes cardLand {
  0%   { box-shadow: 0 0 0 0 rgba(224,165,38,.55), var(--shadow); }
  55%  { box-shadow: 0 0 0 12px rgba(224,165,38,0), var(--shadow); }
  100% { box-shadow: 0 0 0 3px rgba(224,165,38,.35), var(--shadow); }
}

/* ---------- In-card quantity stepper ----------
   Replaces "Add to Cart" once that size is in the cart, so quantity is set on
   the card itself and the cart panel never has to open mid-shop. */
.card__cart { margin-top: .2rem; }
.card__qty {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  width: 100%; padding: .35rem .4rem; border-radius: 999px;
  background: var(--cream-2); border: 2px solid var(--amber);
}
.card__qty button {
  width: 36px; height: 36px; flex: 0 0 auto; border: none; border-radius: 50%; cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--amber)); color: #fff;
  font-size: 1.15rem; line-height: 1; font-family: inherit;
  transition: transform .15s var(--ease), filter .15s;
}
.card__qty button:hover { filter: brightness(1.08); transform: translateY(-1px); }
.card__qty span { font-size: .9rem; color: var(--amber-dark); font-weight: 600; }
.card__qty b { font-weight: 800; }

/* ---------- Persistent cart bar (phones) ---------- */
.cartbar {
  position: fixed; left: 50%; bottom: 12px; transform: translate(-50%, 130%);
  /* below the overlay (60) / drawer (70) / modal (80), above the sticky header */
  width: min(100% - 1.6rem, 520px); z-index: 55;
  display: none; align-items: center; gap: .8rem; text-align: left;
  padding: .7rem .8rem; border: none; border-radius: 16px; cursor: pointer;
  background: var(--cocoa); color: #fff; font-family: inherit;
  box-shadow: 0 14px 34px rgba(62,39,35,.4);
  transition: transform .35s var(--ease);
}
.cartbar:not([hidden]) { display: flex; transform: translate(-50%, 0); }
.cartbar__count {
  flex: 0 0 auto; min-width: 34px; height: 34px; padding: 0 .5rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  display: grid; place-items: center; font-weight: 800; font-size: .95rem;
}
.cartbar__mid { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.25; }
.cartbar__total { font-weight: 800; font-size: 1.02rem; }
.cartbar__note { font-size: .74rem; color: #e9d6b6; }
.cartbar__note.is-free { color: #9ccc4f; font-weight: 700; }
.cartbar__cta {
  flex: 0 0 auto; padding: .5rem 1rem; border-radius: 999px; font-weight: 700; font-size: .85rem;
  background: linear-gradient(135deg, var(--gold), var(--amber)); color: #fff; white-space: nowrap;
}
/* keep the bar from covering the footer / last card */
body.has-cartbar { padding-bottom: 76px; }

/* Once the drawer or checkout modal is open the bar has done its job, so slide
   it away — left up it sits over the drawer's Checkout button on phones and
   swallows the tap. body.no-scroll is exactly "a panel is open". */
body.no-scroll .cartbar:not([hidden]) {
  transform: translate(-50%, 130%);
  pointer-events: none;   /* taps fall through even mid slide */
  visibility: hidden;     /* and it is gone outright if transform is unsupported */
}

/* desktop already has the cart button in the sticky header */
@media (min-width: 901px) {
  .cartbar { display: none !important; }
  body.has-cartbar { padding-bottom: 0; }
}

/* ============================================================
   AZADI SALE (14 August) — hero skin + sale badges
   Pakistan green over the usual cocoa, so the brand still reads.
   Turn the whole thing off with CONFIG.sale.active in script.js and
   drop the --azadi class from the hero.
   ============================================================ */
.hero-banner--azadi{
  background:
    radial-gradient(120% 130% at 50% 118%, rgba(224,165,38,.30) 0%, rgba(224,165,38,.08) 38%, rgba(0,0,0,0) 62%),
    radial-gradient(90% 100% at 88% 0%, rgba(1,110,58,.55) 0%, rgba(0,0,0,0) 60%),
    linear-gradient(160deg, #06331f 0%, #10251a 46%, #120a08 100%);
}
/* crescent + star corner motif */
.hb__flag{
  position:absolute; right:-2%; top:-18%; width:min(46vw,420px); aspect-ratio:1; pointer-events:none;
  background:
    radial-gradient(circle at 62% 50%, transparent 33%, rgba(255,255,255,.09) 33.4% 36%, transparent 36.4%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.09) 30%, transparent 30.4%);
  opacity:.85;
}
.hero-banner--azadi .hb__eyebrow{ color:#7fe0a6; }
.hero-banner--azadi .hb__head span{
  color:#fff; background:linear-gradient(135deg,#1e9e5a,#0c6b3a);
  padding:0 .35em; border-radius:12px; display:inline-block; line-height:1.18;
  box-shadow:0 10px 26px rgba(12,107,58,.45);
}
.hb__saleline{
  margin-top:.7rem; display:inline-flex; align-items:center; gap:.5rem;
  padding:.45rem 1rem; border-radius:999px;
  background:rgba(255,255,255,.07); border:1px solid rgba(127,224,166,.45);
  color:#eaf7ee; font-size:clamp(.72rem,1.3vw,.9rem); font-weight:600;
}
.hb__moon{ color:#7fe0a6; font-size:1.05em; }
.hero-banner--azadi .hb__foot b{ color:#7fe0a6; font-weight:800; }
.hero-banner--azadi .hb__shot{ border-color:rgba(224,165,38,.9); }

/* "14% OFF" flash on each product card */
.card__sale{
  position:absolute; top:10px; right:10px; z-index:2;
  background:linear-gradient(135deg,#1e9e5a,#0c6b3a); color:#fff;
  font-size:.72rem; font-weight:800; letter-spacing:.04em;
  padding:.28rem .6rem; border-radius:999px;
  box-shadow:0 6px 16px rgba(12,107,58,.45);
}

@media (max-width:900px){
  .hb__flag{ width:min(70vw,320px); top:-10%; right:-12%; }
  .hb__saleline{ margin-inline:auto; }
}

/* --- Azadi: take the amber out of the hero entirely, green + white only --- */
.hero-banner--azadi::before{                     /* speckle */
  background-image:radial-gradient(rgba(255,255,255,.10) 1.5px, transparent 1.6px);
}
.hero-banner--azadi .hb__floor{                  /* glow the products stand on */
  background:linear-gradient(to top, rgba(30,158,90,.32), rgba(30,158,90,0));
}
.hero-banner--azadi .hb__shot{                   /* product rings */
  border-color:rgba(255,255,255,.92);
  box-shadow:0 16px 34px rgba(0,0,0,.5), 0 0 0 8px rgba(30,158,90,.22);
}
.hero-banner--azadi .hb__shop{                   /* SHOP NOW */
  background:linear-gradient(135deg,#22b365,#0c6b3a);
  box-shadow:0 10px 26px rgba(12,107,58,.5), inset 0 1px 0 rgba(255,255,255,.32);
}
.hero-banner--azadi .hb__shop:hover{ box-shadow:0 14px 32px rgba(12,107,58,.62); }
.hero-banner--azadi .hb__dot{ background:#7fe0a6; }
.hero-banner--azadi .hb__sub,
.hero-banner--azadi .hb__foot{ color:#dff2e6; }

/* --- Azadi: carry the theme onto every product card --- */
.card--sale{
  border-color:rgba(30,158,90,.42);
  box-shadow:0 4px 14px rgba(12,107,58,.14);
}
.card--sale:hover{ box-shadow:0 12px 30px rgba(12,107,58,.22); }
/* green + white flag stripe along the top edge */
.card--sale::before{
  content:""; position:absolute; top:0; left:0; right:0; height:4px; z-index:3;
  background:linear-gradient(90deg,#0c6b3a 0 68%, #ffffff 68% 100%);
}
.card--sale{ position:relative; }
.card--sale .card__body{
  background:linear-gradient(180deg, rgba(30,158,90,.07), rgba(30,158,90,0) 42%);
}
/* the saving line */
.card__save{
  display:flex; align-items:center; gap:.4rem; flex-wrap:wrap;
  font-size:.78rem; font-weight:700; color:#0c6b3a; margin-top:-.15rem;
}
.card__save[hidden]{ display:none; }
.card__save-tag{
  background:linear-gradient(135deg,#22b365,#0c6b3a); color:#fff;
  padding:.16rem .5rem; border-radius:999px; font-size:.68rem; letter-spacing:.03em;
}
/* buttons pick up the sale colour so the card reads as one piece */
.card--sale .btn--primary{
  background:linear-gradient(135deg,#22b365,#0c6b3a);
  box-shadow:0 8px 20px rgba(12,107,58,.32);
}
.card--sale .btn--primary:hover{ box-shadow:0 12px 26px rgba(12,107,58,.42); }
.card--sale .card__qty{ background:#eaf7ee; border-color:#22b365; }
.card--sale .card__qty button{ background:linear-gradient(135deg,#22b365,#0c6b3a); }
.card--sale .card__qty span{ color:#0c6b3a; }
.card--sale .card__tag{ color:#0c6b3a; }
