/* ==========================================================================
   SaleOnSports — Design System  ("Pitch & Willow")
   --------------------------------------------------------------------------
   Hand-written CSS, single committed file, served directly from /public.
   NO Node / Vite / Tailwind build step (see CLAUDE.md + DECISIONS.md).

   Identity: SaleOnSports is a premium multi-BRAND cricket retailer. Its own
   palette — NOT teamsg navy, NOT heega red:
      - Pitch Green   : the cricket field / premium anchor  (headers, nav, ink)
      - Willow Gold   : the bat willow / warm accent        (CTAs, badges, sale)
      - Warm paper     : soft off-white ground for whitespace-led layouts

   Design bar = shop.teamsg.in (bold hierarchy, generous whitespace, uniform
   cards, sticky search header, tabbed bestsellers). Light theme only — retail.
   ========================================================================== */

/* ---------------------------------------------------------------- TOKENS  */
:root {
  color-scheme: light;

  /* --- Brand: Pitch Green scale --- */
  --green-950: #071c15;
  --green-900: #0b2b20;   /* header / footer ground, display ink */
  --green-800: #0f3a2c;
  --green-700: #14503b;   /* primary brand */
  --green-600: #1a6a4c;
  --green-500: #23855f;   /* interactive green */
  --green-300: #7db79f;
  --green-100: #dcebe3;
  --green-50:  #eef6f1;

  /* --- Accent: Willow Gold scale --- */
  --gold-700: #a9780f;
  --gold-600: #c8901a;    /* accent hover */
  --gold-500: #e3a417;    /* primary accent — CTAs, badges */
  --gold-400: #f0c04c;
  --gold-100: #fbeecd;
  --gold-50:  #fdf7e8;

  /* --- Warm neutrals --- */
  --ink:        #16211c;  /* headings */
  --body:       #333f3a;  /* body copy */
  --muted:      #6a7772;  /* secondary text */
  --faint:      #97a19c;  /* meta, placeholders */
  --line:       #e4e8e4;  /* borders / dividers */
  --line-soft:  #eef0ec;
  --surface:    #ffffff;  /* cards */
  --bg:         #f6f7f3;  /* page ground (warm paper) */
  --bg-sunk:    #eef0ea;

  /* --- Semantic --- */
  --sale:       #d1481f;  /* warm terracotta for SALE flags (distinct from heega red) */
  --success:    #1a7a52;
  --star:       #e3a417;
  --danger:     #b23b1e;

  /* --- Role aliases (use these in components) --- */
  --primary:        var(--green-700);
  --primary-strong: var(--green-900);
  --accent:         var(--gold-500);
  --accent-ink:     #3a2a05;      /* readable text ON gold */

  /* --- Type --- */
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter Tight", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --fs-2xs: .6875rem;   /* 11 */
  --fs-xs:  .75rem;     /* 12 */
  --fs-sm:  .8125rem;   /* 13 */
  --fs-base:.9375rem;   /* 15 — body */
  --fs-md:  1rem;       /* 16 */
  --fs-lg:  1.125rem;   /* 18 */
  --fs-xl:  1.375rem;   /* 22 */
  --fs-2xl: 1.75rem;    /* 28 */
  --fs-3xl: 2.25rem;    /* 36 */
  --fs-4xl: clamp(2.25rem, 1.4rem + 3.4vw, 3.4rem);

  --lh-tight: 1.15;
  --lh-snug:  1.35;
  --lh-body:  1.6;

  /* --- Spacing (4pt) --- */
  --s1: .25rem;  --s2: .5rem;  --s3: .75rem;  --s4: 1rem;
  --s5: 1.5rem;  --s6: 2rem;   --s7: 3rem;    --s8: 4rem;   --s9: 6rem;

  /* --- Radius --- */
  --r-xs: 5px;  --r-sm: 8px;  --r: 12px;  --r-lg: 18px;  --r-pill: 999px;

  /* --- Shadow --- */
  --sh-xs: 0 1px 2px rgba(11,43,32,.06);
  --sh-sm: 0 2px 6px rgba(11,43,32,.07);
  --sh:    0 8px 22px -8px rgba(11,43,32,.16);
  --sh-lg: 0 20px 45px -18px rgba(11,43,32,.28);

  /* --- Layout --- */
  --container: 1280px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --header-h: 116px;      /* two-tier header height, desktop */

  --ease: cubic-bezier(.2, 0, .1, 1);
  --dur: .2s;
}

/* ----------------------------------------------------------------- RESET  */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;               /* no horizontal scroll, ever */
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: var(--lh-tight); font-weight: 700; letter-spacing: -.01em; }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 2px; border-radius: var(--r-xs); }
::selection { background: var(--gold-100); color: var(--ink); }

/* skip link for keyboard users */
.skip-link {
  position: absolute; left: var(--s4); top: -60px; z-index: 200;
  background: var(--primary-strong); color: #fff; padding: .6rem 1rem;
  border-radius: var(--r-sm); transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--s4); }

/* -------------------------------------------------------------- LAYOUT    */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section--tight { padding-block: clamp(1.75rem, 3vw, 2.75rem); }
.stack > * + * { margin-top: var(--s4); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s4); margin-bottom: var(--s5); flex-wrap: wrap; }
.section-head__eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-600); }
.section-head__eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-title { font-size: var(--fs-2xl); font-family: var(--font-display); }
.section-head__link { font-size: var(--fs-sm); font-weight: 600; color: var(--green-700); display: inline-flex; align-items: center; gap: .35rem; white-space: nowrap; }
.section-head__link:hover { color: var(--gold-600); }
.section-head__link svg { width: 14px; height: 14px; }

/* generic responsive grid */
.grid { display: grid; gap: var(--s4); }
.grid--cards { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: clamp(.75rem, 1.5vw, 1.5rem); }

/* -------------------------------------------------------------- BUTTONS   */
.btn {
  --btn-bg: var(--primary); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm);
  line-height: 1; padding: .8rem 1.35rem; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid var(--btn-bd);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; }
.btn--primary:hover { background: var(--green-800); box-shadow: var(--sh); }
.btn--gold { --btn-bg: var(--accent); --btn-fg: var(--accent-ink); }
.btn--gold:hover { background: var(--gold-600); box-shadow: 0 10px 24px -10px rgba(200,144,26,.7); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--primary); --btn-bd: var(--green-700); }
.btn--outline:hover { --btn-fg: #fff; background: var(--primary); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn--ghost:hover { --btn-bd: var(--green-500); color: var(--green-700); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--primary-strong); --btn-bd: transparent; }
.btn--light:hover { box-shadow: var(--sh); }
.btn--block { width: 100%; }
.btn--lg { padding: 1rem 1.75rem; font-size: var(--fs-md); }
.btn--sm { padding: .55rem .9rem; font-size: var(--fs-xs); }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--green-700); }
.link-arrow:hover { gap: .65rem; color: var(--gold-600); }

/* -------------------------------------------------------------- BADGES    */
.badge { display: inline-flex; align-items: center; gap: .3rem; font-size: var(--fs-2xs); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .3rem .5rem; border-radius: var(--r-xs); line-height: 1; }
.badge--sale { background: var(--sale); color: #fff; }
.badge--discount { background: var(--gold-100); color: var(--gold-700); }
.badge--new { background: var(--green-100); color: var(--green-700); }
.badge--soldout { background: var(--bg-sunk); color: var(--muted); }
.badge--brand { background: var(--green-900); color: #fff; letter-spacing: .06em; }

.pill { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--fs-xs); font-weight: 600; color: var(--body); background: var(--surface); border: 1px solid var(--line); padding: .4rem .75rem; border-radius: var(--r-pill); }

/* -------------------------------------------------------------- PRICE     */
.price { display: inline-flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.price__now { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-lg); color: var(--ink); }
.price__mrp { font-size: var(--fs-sm); color: var(--faint); text-decoration: line-through; }
.price__off { font-size: var(--fs-xs); font-weight: 700; color: var(--sale); }

/* ============================================================== HEADER    */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--surface); box-shadow: var(--sh-xs); }

/* tier 0 — announcement */
.topbar { background: var(--primary-strong); color: #d8e6de; font-size: var(--fs-xs); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); min-height: 34px; }
.topbar__msg { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; }
.topbar__msg svg { width: 15px; height: 15px; flex-shrink: 0; }
.topbar__msg strong { color: var(--gold-400); }
.topbar__links { display: flex; gap: var(--s4); }
.topbar__links a:hover { color: #fff; }

/* tier 1 — logo + search + actions */
.headbar { border-bottom: 1px solid var(--line-soft); }
.headbar__inner { display: flex; align-items: center; gap: var(--s5); min-height: 74px; }
.brand-logo { display: inline-flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand-logo__img { height: 48px; width: auto; max-width: 210px; display: block; object-fit: contain; }
.brand-logo__mark { width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(150deg, var(--green-700), var(--green-900)); display: grid; place-items: center; color: var(--gold-400); box-shadow: var(--sh-sm); }
.brand-logo__mark svg { width: 24px; height: 24px; }
.brand-logo__text { line-height: 1; }
.brand-logo__name { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--ink); letter-spacing: -.02em; }
.brand-logo__name b { color: var(--green-700); }
.brand-logo__tag { display: block; font-size: var(--fs-2xs); letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

/* search */
.search { flex: 1; max-width: 620px; position: relative; }
.search__form { display: flex; align-items: stretch; border: 1.5px solid var(--line); border-radius: var(--r-pill); background: var(--bg); overflow: hidden; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.search__form:focus-within { border-color: var(--green-500); background: #fff; box-shadow: 0 0 0 4px var(--green-50); }
.search__select { border: 0; background: transparent; padding: 0 .5rem 0 1rem; font-size: var(--fs-sm); color: var(--muted); border-right: 1px solid var(--line); max-width: 130px; }
.search__input { flex: 1; border: 0; background: transparent; padding: .75rem 1rem; font-size: var(--fs-sm); outline: none; min-width: 0; }
.search__btn { flex-shrink: 0; background: var(--primary); color: #fff; padding-inline: 1.1rem; display: grid; place-items: center; border-radius: 0; }
.search__btn:hover { background: var(--green-800); }
.search__btn svg { width: 18px; height: 18px; }

/* header actions */
.head-actions { display: flex; align-items: center; gap: var(--s2); flex-shrink: 0; }
.icon-btn { position: relative; display: inline-flex; flex-direction: column; align-items: center; gap: 2px; padding: .4rem .55rem; border-radius: var(--r-sm); color: var(--ink); font-size: var(--fs-2xs); font-weight: 600; transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.icon-btn:hover { background: var(--green-50); color: var(--green-700); }
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn__label { display: none; }
.icon-btn__count { position: absolute; top: 0; right: 2px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: var(--r-pill); background: var(--accent); color: var(--accent-ink); font-size: 10px; font-weight: 800; display: grid; place-items: center; line-height: 1; }

/* tier 2 — primary nav */
.mainnav { background: var(--surface); border-bottom: 1px solid var(--line-soft); }
.mainnav__inner { display: flex; align-items: center; gap: var(--s2); }
.mainnav__list { display: flex; align-items: center; gap: 2px; flex: 1; }
.mainnav__link { display: inline-flex; align-items: center; gap: .35rem; padding: .95rem .85rem; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); color: var(--ink); position: relative; }
.mainnav__link svg { width: 13px; height: 13px; opacity: .6; }
.mainnav__link::after { content: ""; position: absolute; left: .85rem; right: .85rem; bottom: 8px; height: 2px; background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease); }
.mainnav__item:hover .mainnav__link::after,
.mainnav__link[aria-current="page"]::after { transform: scaleX(1); }
.mainnav__link--hot { color: var(--sale); }
.mainnav__phone { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--green-700); font-size: var(--fs-sm); white-space: nowrap; }
.mainnav__phone svg { width: 18px; height: 18px; }

/* mega / brand dropdown */
.mainnav__item { position: relative; }
.mega {
  position: absolute; left: 0; top: 100%; z-index: 90;
  min-width: 560px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--sh-lg); padding: var(--s5);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.mainnav__item:hover .mega, .mainnav__item:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega--right { left: auto; right: 0; }
.mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.mega__col h4 { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--green-600); margin-bottom: var(--s3); }
.mega__col a { display: block; padding: .3rem 0; font-size: var(--fs-sm); color: var(--body); }
.mega__col a:hover { color: var(--green-700); padding-left: 4px; }
.mega__promo { grid-column: span 1; background: linear-gradient(160deg, var(--green-800), var(--green-900)); color: #fff; border-radius: var(--r-sm); padding: var(--s4); display: flex; flex-direction: column; justify-content: flex-end; min-height: 150px; }
.mega__promo span { font-size: var(--fs-2xs); text-transform: uppercase; letter-spacing: .1em; color: var(--gold-400); }
.mega__promo strong { font-family: var(--font-display); font-size: var(--fs-lg); margin: .25rem 0 .5rem; }

/* brand row inside mega */
.brand-chips { display: flex; flex-wrap: wrap; gap: var(--s2); }
.brand-chip { display: inline-flex; align-items: center; padding: .5rem .9rem; border: 1px solid var(--line); border-radius: var(--r-sm); font-family: var(--font-display); font-weight: 700; font-size: var(--fs-sm); color: var(--ink); background: var(--surface); transition: all var(--dur) var(--ease); }
.brand-chip:hover { border-color: var(--green-500); color: var(--green-700); background: var(--green-50); }

/* mobile menu toggle */
.nav-toggle { display: none; }

/* ============================================================== HERO      */
.hero { position: relative; }
.hero__viewport { overflow: hidden; border-radius: var(--r-lg); }
.hero__track { display: flex; scroll-snap-type: x mandatory; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; }
.hero__track::-webkit-scrollbar { display: none; }
.hero__slide { position: relative; flex: 0 0 100%; scroll-snap-align: start; min-height: clamp(320px, 42vw, 520px); display: flex; align-items: center; overflow: hidden; }
/* slots reuse owner banners later via --hero-img; gradient fallback now */
.hero__slide { background: var(--slide-bg, linear-gradient(120deg, var(--green-900), var(--green-700))); }
.hero__slide img.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,28,21,.78) 0%, rgba(7,28,21,.35) 55%, transparent 100%); z-index: 1; }
.hero__content { position: relative; z-index: 2; max-width: 560px; padding: clamp(1.5rem, 4vw, 3.5rem); color: #fff; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-400); margin-bottom: var(--s3); }
.hero__title { font-family: var(--font-display); font-size: var(--fs-4xl); font-weight: 800; color: #fff; letter-spacing: -.02em; margin-bottom: var(--s3); }
.hero__title em { color: var(--gold-400); font-style: normal; }
.hero__sub { font-size: var(--fs-md); color: #d8e6de; margin-bottom: var(--s5); max-width: 44ch; }
.hero__cta { display: flex; gap: var(--s3); flex-wrap: wrap; }

.hero__dots { position: absolute; bottom: var(--s4); left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: .5rem; }
.hero__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.45); border: 0; transition: all var(--dur) var(--ease); }
.hero__dot[aria-selected="true"] { background: var(--gold-400); width: 26px; border-radius: var(--r-pill); }
.hero__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink); display: grid; place-items: center; box-shadow: var(--sh); }
.hero__arrow:hover { background: #fff; }
.hero__arrow--prev { left: var(--s4); }
.hero__arrow--next { right: var(--s4); }
.hero__arrow svg { width: 20px; height: 20px; }

/* -------------------------------------------------------------- USP STRIP */
.usp { border-block: 1px solid var(--line); background: var(--surface); }
.usp__row { display: grid; grid-template-columns: repeat(4, 1fr); }
.usp__item { display: flex; align-items: center; gap: var(--s3); padding: var(--s4) var(--s4); }
.usp__item + .usp__item { border-left: 1px solid var(--line-soft); }
.usp__ic { width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; }
.usp__ic svg { width: 22px; height: 22px; }
.usp__t { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-sm); color: var(--ink); }
.usp__d { font-size: var(--fs-xs); color: var(--muted); }

/* ============================================================== CATEGORY  */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.75rem, 1.5vw, 1.5rem); }
.cat-card { position: relative; display: flex; flex-direction: column; border-radius: var(--r); overflow: hidden; background: var(--surface); border: 1px solid var(--line); min-height: 230px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: transparent; }
.cat-card__media { flex: 1; background: var(--cat-bg, linear-gradient(160deg, var(--green-50), var(--green-100))); position: relative; display: grid; place-items: center; overflow: hidden; }
.cat-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat-card__glyph { color: var(--green-600); opacity: .5; }
.cat-card__glyph svg { width: 62px; height: 62px; }
.cat-card__body { padding: var(--s4); display: flex; align-items: center; justify-content: space-between; gap: var(--s2); }
.cat-card__name { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-md); color: var(--ink); }
.cat-card__count { font-size: var(--fs-xs); color: var(--muted); }
.cat-card__arrow { width: 32px; height: 32px; border-radius: 50%; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; flex-shrink: 0; transition: all var(--dur) var(--ease); }
.cat-card:hover .cat-card__arrow { background: var(--accent); color: var(--accent-ink); }
.cat-card__arrow svg { width: 16px; height: 16px; }

/* ============================================================== TABS      */
.tabs__nav { display: flex; gap: var(--s2); flex-wrap: wrap; margin-bottom: var(--s5); border-bottom: 1px solid var(--line); }
.tabs__btn { padding: .7rem .25rem; margin-bottom: -1px; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); color: var(--muted); border-bottom: 2.5px solid transparent; transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.tabs__btn:hover { color: var(--ink); }
.tabs__btn[aria-selected="true"] { color: var(--green-800); border-color: var(--accent); }
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; animation: fade .35s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ============================================================== PRODUCT CARD */
.product-card { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: transparent; }
.product-card__media { position: relative; aspect-ratio: 1 / 1; background: var(--bg-sunk); overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__ph { width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(160deg, var(--green-50), var(--green-100)); color: var(--green-600); }
.product-card__ph svg { width: 54px; height: 54px; opacity: .55; }
.product-card__flags { position: absolute; top: var(--s3); left: var(--s3); display: flex; flex-direction: column; gap: .35rem; z-index: 2; }
.product-card__wish { position: absolute; top: var(--s3); right: var(--s3); z-index: 2; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--muted); display: grid; place-items: center; box-shadow: var(--sh-xs); transition: color var(--dur) var(--ease), background var(--dur) var(--ease); }
.product-card__wish:hover { color: var(--sale); background: #fff; }
.product-card__wish svg { width: 17px; height: 17px; }
.product-card__wish.is-active { color: var(--sale); }
.product-card__body { display: flex; flex-direction: column; gap: .4rem; padding: var(--s4); flex: 1; }
.product-card__brand { font-size: var(--fs-2xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green-600); }
.product-card__title { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); line-height: var(--lh-snug); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.4em; }
.product-card__title a:hover { color: var(--green-700); }
.product-card__rating { display: inline-flex; align-items: center; gap: .3rem; font-size: var(--fs-xs); color: var(--muted); }
.product-card__rating svg { width: 13px; height: 13px; color: var(--star); }
.product-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: var(--s2); padding-top: var(--s2); }
.product-card__add { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; transition: all var(--dur) var(--ease); }
.product-card__add:hover { background: var(--primary); color: #fff; }
.product-card__add svg { width: 19px; height: 19px; }
.product-card--wide .product-card__add { width: auto; border-radius: var(--r-pill); padding-inline: 1rem; gap: .4rem; font-size: var(--fs-xs); font-weight: 700; }

/* horizontal scroll rail for carousels */
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr); gap: clamp(.75rem, 1.5vw, 1.5rem); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: var(--s3); scrollbar-width: thin; }
.rail > * { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: var(--r-pill); }

/* ============================================================== BRAND STRIP */
.brandstrip { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s5); }
.brandstrip__row { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--s3); align-items: stretch; }
.brandstrip__item { display: grid; place-items: center; text-align: center; gap: .4rem; padding: var(--s4) var(--s2); border-radius: var(--r-sm); border: 1px solid var(--line-soft); transition: all var(--dur) var(--ease); }
.brandstrip__item:hover { border-color: var(--green-500); background: var(--green-50); transform: translateY(-3px); }
.brandstrip__logo { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-md); color: var(--ink); letter-spacing: -.01em; }
.brandstrip__count { font-size: var(--fs-2xs); color: var(--muted); }

/* ============================================================== PROMO BAND */
.promo-band { position: relative; overflow: hidden; border-radius: var(--r-lg); background: linear-gradient(120deg, var(--green-900), var(--green-700)); color: #fff; padding: clamp(2rem, 5vw, 3.5rem); display: flex; align-items: center; justify-content: space-between; gap: var(--s5); flex-wrap: wrap; }
.promo-band::before { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(240,192,76,.35), transparent 70%); }
.promo-band__c { position: relative; z-index: 1; max-width: 620px; }
.promo-band__eyebrow { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-400); }
.promo-band__title { font-family: var(--font-display); font-size: var(--fs-3xl); color: #fff; margin: .5rem 0; }
.promo-band__title em { color: var(--gold-400); font-style: normal; }
.promo-band__sub { color: #d8e6de; }

/* ============================================================== BREADCRUMB */
.breadcrumb { padding-block: var(--s4); }
.breadcrumb__list { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; font-size: var(--fs-xs); color: var(--muted); }
.breadcrumb__list li { display: inline-flex; align-items: center; gap: .4rem; }
.breadcrumb__list a:hover { color: var(--green-700); }
.breadcrumb__sep { color: var(--faint); }
.breadcrumb__list [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ============================================================== PLP        */
.plp { display: grid; grid-template-columns: 264px 1fr; gap: var(--s6); align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + var(--s4)); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s5); }
.filters__group + .filters__group { margin-top: var(--s5); padding-top: var(--s5); border-top: 1px solid var(--line-soft); }
.filters__title { font-family: var(--font-display); font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .06em; color: var(--ink); margin-bottom: var(--s3); display: flex; align-items: center; justify-content: space-between; }
.filters__opt { display: flex; align-items: center; gap: .6rem; padding: .35rem 0; font-size: var(--fs-sm); color: var(--body); cursor: pointer; }
.filters__opt input { width: 17px; height: 17px; accent-color: var(--green-700); flex-shrink: 0; }
.filters__opt .c { margin-left: auto; font-size: var(--fs-xs); color: var(--faint); }
.filters__swatches { display: flex; flex-wrap: wrap; gap: .5rem; }
.swatch { width: 26px; height: 26px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line); cursor: pointer; }
.swatch:hover { box-shadow: 0 0 0 2px var(--green-500); }

.plp-toolbar { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); margin-bottom: var(--s4); flex-wrap: wrap; }
.plp-toolbar__count { font-size: var(--fs-sm); color: var(--muted); }
.plp-toolbar__count b { color: var(--ink); }
.plp-toolbar__right { display: flex; align-items: center; gap: var(--s3); }
.select { appearance: none; border: 1px solid var(--line); background: var(--surface); border-radius: var(--r-sm); padding: .55rem 2.2rem .55rem .9rem; font-size: var(--fs-sm); color: var(--ink); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236a7772' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .6rem center; background-size: 16px; cursor: pointer; }
.select:focus { border-color: var(--green-500); outline: none; box-shadow: 0 0 0 3px var(--green-50); }
.filters-toggle { display: none; }

/* active filter chips */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: var(--s4); }
.chip-x { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--fs-xs); font-weight: 600; background: var(--green-50); color: var(--green-800); border: 1px solid var(--green-100); padding: .35rem .65rem; border-radius: var(--r-pill); }
.chip-x button { display: grid; place-items: center; color: var(--green-600); }
.chip-x svg { width: 13px; height: 13px; }

/* pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: .35rem; margin-top: var(--s7); }
.pagination a, .pagination span { min-width: 40px; height: 40px; display: grid; place-items: center; border-radius: var(--r-sm); border: 1px solid var(--line); font-size: var(--fs-sm); font-weight: 600; color: var(--body); padding-inline: .5rem; }
.pagination a:hover { border-color: var(--green-500); color: var(--green-700); }
.pagination .is-current { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination .is-disabled { color: var(--faint); pointer-events: none; }

/* ============================================================== PDP        */
.pdp { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.gallery__main { position: relative; aspect-ratio: 1 / 1; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: grid; place-items: center; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__ph { color: var(--green-600); opacity: .5; }
.gallery__ph svg { width: 96px; height: 96px; }
.gallery__thumbs { display: flex; gap: var(--s3); margin-top: var(--s3); flex-wrap: wrap; }
.gallery__thumb { width: 74px; height: 74px; border-radius: var(--r-sm); overflow: hidden; border: 2px solid var(--line); background: var(--bg-sunk); cursor: pointer; display: grid; place-items: center; }
.gallery__thumb[aria-selected="true"] { border-color: var(--green-600); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp__brand { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green-600); }
.pdp__title { font-size: var(--fs-3xl); margin: .4rem 0 var(--s3); }
.pdp__meta { display: flex; align-items: center; gap: var(--s4); flex-wrap: wrap; margin-bottom: var(--s4); font-size: var(--fs-sm); color: var(--muted); }
.pdp__stars { display: inline-flex; gap: 2px; color: var(--star); }
.pdp__stars svg { width: 16px; height: 16px; }
.pdp__price { display: flex; align-items: baseline; gap: var(--s3); flex-wrap: wrap; padding: var(--s4) 0; border-block: 1px solid var(--line-soft); margin-bottom: var(--s5); }
.pdp__price .now { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-2xl); color: var(--ink); }
.pdp__price .mrp { font-size: var(--fs-md); color: var(--faint); text-decoration: line-through; }
.pdp__price .save { font-size: var(--fs-sm); font-weight: 700; color: var(--sale); }
.pdp__tax { display: block; font-size: var(--fs-xs); color: var(--muted); margin-top: .25rem; }

.opt-group { margin-bottom: var(--s5); }
.opt-group__label { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); margin-bottom: var(--s2); display: flex; gap: .5rem; }
.opt-group__label span { color: var(--muted); font-weight: 400; }
.opt-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.opt { min-width: 46px; padding: .55rem .85rem; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--surface); font-size: var(--fs-sm); font-weight: 600; color: var(--ink); cursor: pointer; text-align: center; transition: all var(--dur) var(--ease); }
.opt:hover { border-color: var(--green-500); }
.opt[aria-pressed="true"] { border-color: var(--green-700); background: var(--green-700); color: #fff; }
.opt:disabled { color: var(--faint); background: var(--bg-sunk); cursor: not-allowed; text-decoration: line-through; }

.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--r-pill); overflow: hidden; }
.qty button { width: 42px; height: 46px; display: grid; place-items: center; color: var(--ink); font-size: 1.1rem; }
.qty button:hover { background: var(--green-50); color: var(--green-700); }
.qty input { width: 44px; text-align: center; border: 0; font-weight: 700; font-size: var(--fs-md); -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.pdp__buy { display: flex; gap: var(--s3); flex-wrap: wrap; align-items: center; margin: var(--s5) 0; }
.pdp__assur { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s3); padding: var(--s4); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); }
.pdp__assur li { display: flex; align-items: center; gap: .6rem; font-size: var(--fs-sm); color: var(--body); }
.pdp__assur svg { width: 20px; height: 20px; color: var(--green-600); flex-shrink: 0; }

/* PDP info tabs */
.pdp-tabs { margin-top: var(--s7); }
.prose { font-size: var(--fs-base); color: var(--body); line-height: var(--lh-body); max-width: 70ch; }
.prose p + p { margin-top: var(--s4); }
.prose h3 { margin: var(--s5) 0 var(--s2); font-size: var(--fs-lg); }
.prose ul { list-style: disc; padding-left: 1.25rem; }
.prose ul li { margin: .3rem 0; }
.spec-table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.spec-table th, .spec-table td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--line); }
.spec-table th { width: 220px; color: var(--muted); font-weight: 600; background: var(--bg); }

/* ============================================================== CART       */
.cart { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: var(--s6); align-items: start; }
.cart-list { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.cart-row { display: grid; grid-template-columns: 92px 1fr auto; gap: var(--s4); padding: var(--s4); align-items: center; }
.cart-row + .cart-row { border-top: 1px solid var(--line-soft); }
.cart-row__media { width: 92px; height: 92px; border-radius: var(--r-sm); overflow: hidden; background: var(--bg-sunk); display: grid; place-items: center; }
.cart-row__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-row__ph svg { width: 34px; height: 34px; color: var(--green-600); opacity: .5; }
.cart-row__brand { font-size: var(--fs-2xs); text-transform: uppercase; letter-spacing: .05em; color: var(--green-600); font-weight: 700; }
.cart-row__name { font-weight: 600; color: var(--ink); font-size: var(--fs-sm); }
.cart-row__var { font-size: var(--fs-xs); color: var(--muted); margin-top: .2rem; }
.cart-row__remove { font-size: var(--fs-xs); color: var(--muted); display: inline-flex; align-items: center; gap: .3rem; margin-top: .4rem; }
.cart-row__remove:hover { color: var(--danger); }
.cart-row__remove svg { width: 13px; height: 13px; }
.cart-row__end { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: var(--s3); }
.cart-row__price { font-family: var(--font-display); font-weight: 700; color: var(--ink); }

.summary { position: sticky; top: calc(var(--header-h) + var(--s4)); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s5); }
.summary__title { font-family: var(--font-display); font-size: var(--fs-lg); margin-bottom: var(--s4); }
.summary__row { display: flex; justify-content: space-between; align-items: center; font-size: var(--fs-sm); padding: .45rem 0; color: var(--body); }
.summary__row--total { border-top: 1px solid var(--line); margin-top: var(--s3); padding-top: var(--s4); font-family: var(--font-display); font-weight: 800; font-size: var(--fs-lg); color: var(--ink); }
.summary__free { color: var(--success); font-weight: 600; }
.coupon { display: flex; gap: .5rem; margin: var(--s4) 0; }
.coupon input { flex: 1; border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: .6rem .8rem; font-size: var(--fs-sm); min-width: 0; }
.coupon input:focus { outline: none; border-color: var(--green-500); }

/* ============================================================== FORMS      */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.5rem, 4vw, 2.5rem); }
.field { margin-bottom: var(--s4); }
.field__label { display: block; font-size: var(--fs-sm); font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.field__label .req { color: var(--sale); }
.field__hint { font-size: var(--fs-xs); color: var(--muted); margin-top: .3rem; }
.input, .textarea, .field select {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); padding: .75rem .9rem; font-size: var(--fs-sm); color: var(--ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.input:focus, .textarea:focus, .field select:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px var(--green-50); }
.input::placeholder, .textarea::placeholder { color: var(--faint); }
.textarea { min-height: 130px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.form-grid--full { grid-template-columns: 1fr; }

/* ============================================================== FOOTER     */
.site-footer { background: var(--primary-strong); color: #b9cbc2; margin-top: var(--s9); }
.footer-cta { background: linear-gradient(120deg, var(--green-800), var(--green-900)); border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s5); padding-block: var(--s6); flex-wrap: wrap; }
.footer-cta__t { color: #fff; font-family: var(--font-display); font-size: var(--fs-xl); }
.footer-cta__t em { color: var(--gold-400); font-style: normal; }
.newsletter { display: flex; gap: .5rem; min-width: min(360px, 100%); }
.newsletter input { flex: 1; border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; border-radius: var(--r-pill); padding: .8rem 1.1rem; font-size: var(--fs-sm); min-width: 0; }
.newsletter input::placeholder { color: #8fa89c; }
.newsletter input:focus { outline: none; border-color: var(--gold-400); }

.footer-main { padding-block: var(--s7); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s6); }
.footer-col h4 { color: #fff; font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--s4); }
.footer-col a { display: block; padding: .3rem 0; font-size: var(--fs-sm); color: #b9cbc2; }
.footer-col a:hover { color: var(--gold-400); }
.footer-about__logo { margin-bottom: var(--s4); }
.footer-about p { font-size: var(--fs-sm); color: #9db3a8; max-width: 34ch; }
.footer-contact { margin-top: var(--s4); font-size: var(--fs-sm); }
.footer-contact li { display: flex; gap: .6rem; padding: .3rem 0; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold-400); flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: .6rem; margin-top: var(--s4); }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cfe0d7; transition: all var(--dur) var(--ease); }
.footer-social a:hover { background: var(--accent); color: var(--accent-ink); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: var(--s4); }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; font-size: var(--fs-xs); color: #8fa89c; }
.footer-bottom__pay { display: flex; gap: .5rem; align-items: center; }
.pay-chip { font-size: var(--fs-2xs); font-weight: 700; letter-spacing: .04em; color: #cfe0d7; background: rgba(255,255,255,.08); padding: .3rem .55rem; border-radius: var(--r-xs); }

/* ============================================================== PAGE HEAD  */
.page-hero { background: linear-gradient(120deg, var(--green-900), var(--green-700)); color: #fff; }
.page-hero__inner { padding-block: clamp(2rem, 5vw, 3.25rem); }
.page-hero__title { font-family: var(--font-display); font-size: var(--fs-3xl); color: #fff; }
.page-hero__sub { color: #d8e6de; margin-top: .5rem; max-width: 60ch; }

/* brand page banner */
.brand-hero { display: flex; align-items: center; gap: var(--s5); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.75rem); flex-wrap: wrap; }
.brand-hero__mark { width: 96px; height: 96px; border-radius: var(--r); background: linear-gradient(150deg, var(--green-700), var(--green-900)); color: var(--gold-400); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 2rem; flex-shrink: 0; }
.brand-hero__body { flex: 1; min-width: 260px; }
.brand-hero__name { font-family: var(--font-display); font-size: var(--fs-2xl); color: var(--ink); }
.brand-hero__desc { color: var(--muted); margin-top: .35rem; max-width: 62ch; }
.brand-hero__stats { display: flex; gap: var(--s5); margin-top: var(--s4); }
.brand-hero__stat b { font-family: var(--font-display); font-size: var(--fs-lg); color: var(--green-700); display: block; }
.brand-hero__stat span { font-size: var(--fs-xs); color: var(--muted); }

/* ============================================================== HELPERS    */
.u-center { text-align: center; }
.u-mt-6 { margin-top: var(--s6); }
.u-mt-5 { margin-top: var(--s5); }
.u-hide { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.muted { color: var(--muted); }
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--s6); }

/* ============================================================== RESPONSIVE */
@media (max-width: 1024px) {
  :root { --header-h: 108px; }
  .plp { grid-template-columns: 1fr; }
  .filters { position: fixed; inset: 0 auto 0 0; width: min(340px, 88vw); z-index: 130; border-radius: 0; transform: translateX(-105%); transition: transform var(--dur) var(--ease); overflow-y: auto; }
  .filters.is-open { transform: none; }
  .filters-toggle { display: inline-flex; }
  .cart { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s5); }
  .pdp { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .brandstrip__row { grid-template-columns: repeat(4, 1fr); }
  .mega { min-width: 460px; }
}
@media (max-width: 860px) {
  .icon-btn__label { display: none; }
  .mainnav { display: none; }               /* nav collapses into drawer */
  .mainnav.is-open { display: block; position: fixed; inset: var(--header-h) 0 0 0; z-index: 120; overflow-y: auto; border-top: 1px solid var(--line); }
  .mainnav.is-open .mainnav__inner { flex-direction: column; align-items: stretch; padding-block: var(--s3); }
  .mainnav.is-open .mainnav__list { flex-direction: column; align-items: stretch; }
  .mainnav.is-open .mainnav__link { padding: .9rem var(--gutter); border-bottom: 1px solid var(--line-soft); }
  .mainnav.is-open .mainnav__link::after { display: none; }
  .mainnav.is-open .mega { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-bottom: 1px solid var(--line-soft); min-width: 0; padding: var(--s3) var(--gutter); }
  .mainnav.is-open .mega__grid { grid-template-columns: 1fr; gap: var(--s3); }
  .mainnav.is-open .mega__promo { display: none; }
  .nav-toggle { display: inline-flex; }
  .usp__row { grid-template-columns: 1fr 1fr; }
  .usp__item:nth-child(2) { border-left: 0; }
  .usp__item:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-cta__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .headbar__inner { flex-wrap: wrap; gap: var(--s3); min-height: 0; padding-block: var(--s3); }
  .search { order: 3; flex-basis: 100%; max-width: none; }
  .search__select { display: none; }
  .grid--cards { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brandstrip__row { grid-template-columns: repeat(3, 1fr); }
  .usp__row { grid-template-columns: 1fr; }
  .usp__item + .usp__item { border-left: 0; border-top: 1px solid var(--line-soft); }
  .cart-row { grid-template-columns: 72px 1fr; }
  .cart-row__end { grid-column: 2; align-items: flex-start; text-align: left; }
  .section-title { font-size: var(--fs-xl); }
  .pdp__assur { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .grid--cards, .cat-grid { grid-template-columns: 1fr; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* print */
@media print {
  .site-header, .site-footer, .hero__arrow, .hero__dots, .product-card__wish { display: none !important; }
  body { background: #fff; }
}
