/* ==========================================================================
   Ironmongery Now — B2C storefront
   Design system built pixel-perfect from Figma (Archivo + Inter)
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Brand */
  --c-brand:        #4db8d8;   /* logo "now" accent */
  --c-accent:       #4db8d8;   /* primary cyan (links, search, CTAs) */
  --c-accent-d:     #3ca6c6;   /* pressed */
  --c-accent-l:     #6fc7e0;   /* light accent (on dark) */

  /* Ink / neutrals */
  --c-ink:          #1f2229;   /* primary text + dark buttons */
  --c-ink-2:        #6b6f7a;   /* secondary text */
  --c-ink-3:        #9aa0ab;   /* muted / placeholder */
  --c-line:         #e7e5e1;   /* hairline borders */
  --c-line-2:       #d7d5d0;   /* stronger border (secondary btn) */
  --c-surface:      #f7f6f3;   /* app background / inputs */
  --c-white:        #ffffff;

  /* Dark panels (warm charcoal) */
  --c-night:        #2a2c38;   /* header + footer + newsletter band */
  --c-night-2:      #2a2c38;   /* email signup band */
  --c-night-3:      #383b4c;   /* avatar / chips / nav row */
  --c-night-line:   #3a3d4c;
  --c-night-text:   #a9aeb8;   /* muted text on dark */
  --c-night-text-2: #d5d8de;
  --c-night-text-3: #7a7f8c;

  /* Status */
  --c-success-bg:   #eaf6ef;
  --c-success:      #1f7a45;
  --c-success-dot:  #22a45d;
  --c-tp-green:     #00b67a;   /* trustpilot */
  --c-sale:         #d64545;   /* sale price + badge */
  --c-star:         #f5a623;   /* rating stars */

  /* Accent tints */
  --c-accent-tint:  #e8f5fa;

  /* Type */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Archivo", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Radii */
  --r-xs: 6px;  --r-sm: 8px;  --r-md: 10px;  --r-lg: 12px;  --r-xl: 14px;  --r-pill: 999px;

  /* Shadows */
  --sh-card:  0 1px 2px rgba(31,34,41,.04);
  --sh-pop:   0 18px 50px -12px rgba(42,44,56,.30);
  --sh-soft:  0 10px 30px -14px rgba(31,34,41,.20);

  /* Layout */
  --maxw: 1440px;
  --gutter: 40px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }
body.chase {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--c-ink);
  background: var(--c-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv05" 1, "ss01" 1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4,h5,h6,p { margin: 0; }
/* Archivo for display headings — heavier, tighter than body Inter. */
h1, h2, h3, .hero h1, .hero__slide h1, .section-head h2, .pdp-summary h1,
.cart-page h1, .account-page h1, .shop-head h1, .dept-hero h1, .confirm-hero h1,
.signup-band h3, .help-hero h1, .auth h1, .auth__aside h2, .mega-feature h5 {
  font-family: var(--font-head);
}
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 2px; }

.wrap { max-width: var(--maxw); margin: 0 auto; }
.px { padding-left: var(--gutter); padding-right: var(--gutter); }

/* ---- Buttons ------------------------------------------------------------ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 15px; line-height: 1; border: 0; border-radius: var(--r-lg);
  padding: 16px 22px; transition: transform .25s var(--ease), background .2s, box-shadow .25s, border-color .2s;
  white-space: nowrap; cursor: pointer; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--dark { background: var(--c-ink); color: #fff; }
.btn--dark:hover { background: #000; box-shadow: 0 8px 22px -10px rgba(0,0,0,.5); }
.btn--blue { background: var(--c-accent); color: #fff; border-radius: var(--r-md); }
.btn--blue:hover { background: var(--c-accent-d); box-shadow: 0 10px 24px -12px rgba(77,184,216,.7); }
.btn--ghost { background: #fff; color: var(--c-ink); border: 1.5px solid var(--c-line-2); }
.btn--ghost:hover { border-color: var(--c-ink); background: #fff; }
.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); border-radius: var(--r-md); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn--full { width: 100%; }
.btn--sm { padding: 10px 16px; font-size: 13.5px; border-radius: var(--r-md); }

/* ---- Form fields -------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field > label, .field-label { font-weight: 600; font-size: 13px; color: var(--c-ink); }
.input, input[type=text].input, input[type=email].input, input[type=password].input,
input[type=tel].input, select.input, textarea.input {
  width: 100%; background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--r-lg); padding: 15px 16px; font-size: 15px; color: var(--c-ink);
  font-family: inherit; transition: border-color .2s, background .2s, box-shadow .2s; }
.input::placeholder { color: var(--c-ink-3); }
.input:focus { outline: 0; border-color: var(--c-accent); background: #fff; box-shadow: 0 0 0 4px rgba(77,184,216,.10); }

/* ---- Pills / badges ----------------------------------------------------- */
.pill { display: inline-flex; align-items: center; gap: 6px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 11.5px; padding: 5px 10px; }
.pill--stock { background: var(--c-success-bg); color: var(--c-success); }
.pill--stock .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--c-success-dot);
  box-shadow: 0 0 0 0 rgba(34,164,93,.5); animation: pulse 2.4s infinite; }
.pill--brand { background: #fff; border: 1px solid var(--c-line); color: var(--c-ink); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,164,93,.45); } 70% { box-shadow: 0 0 0 6px rgba(34,164,93,0); } 100% { box-shadow: 0 0 0 0 rgba(34,164,93,0); } }

.tag-badge { display: inline-flex; background: rgba(77,184,216,.16); border: 1px solid rgba(77,184,216,.45);
  color: var(--c-accent-l); font-weight: 600; font-size: 12px; letter-spacing: 1.4px;
  padding: 8px 14px; border-radius: var(--r-pill); }

/* ==========================================================================
   ENTRANCE ANIMATIONS
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  /* Deliberately restrained: a soft fade with only a hint of movement. */
  [data-anim] { opacity: 0; will-change: transform, opacity; }
  [data-anim="up"]    { transform: translateY(8px); }
  [data-anim="down"]  { transform: translateY(-8px); }
  [data-anim="left"]  { transform: translateX(10px); }
  [data-anim="right"] { transform: translateX(-10px); }
  [data-anim="fade"]  { transform: none; }
  [data-anim="scale"] { transform: scale(.99); }
  [data-anim].is-in {
    opacity: 1; transform: none;
    transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
    transition-delay: var(--d, 0ms);
  }
  /* Product page: fade only — no movement, no stagger, top to bottom. */
  body.single-product [data-anim] { transform: none; }
  body.single-product [data-anim].is-in {
    transition: opacity .4s var(--ease-out);
    transition-delay: 0ms;
  }
}
/* Reveal grouping — children stagger handled via inline --d in JS */

@keyframes floatIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes shimmer { 100% { transform: translateX(100%); } }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header { position: sticky; top: 0; z-index: 60; background: var(--c-night); }
.site-header .wrap { max-width: var(--maxw); margin: 0 auto; }
.site-header.is-stuck { box-shadow: 0 10px 30px -16px rgba(42,44,56,.6); }

/* Brand wordmark */
.imn-logo { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); line-height: 1; white-space: nowrap; }
.imn-logo__word { font-weight: 800; font-style: italic; font-size: 23px; letter-spacing: -.6px; text-transform: uppercase; }
.imn-logo--white .imn-logo__word { color: #fff; }
.imn-logo--dark .imn-logo__word { color: var(--c-ink); }
.imn-logo__now { font-weight: 700; font-style: italic; font-size: 15px; text-transform: lowercase; color: #fff; background: var(--c-accent); border-radius: 7px; padding: 4px 8px 5px; letter-spacing: -.2px; }

/* Trust bar */
.trust-bar { border-bottom: 1px solid rgba(255,255,255,.07); }
.trust-bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 9px var(--gutter); }
.trust-bar__items { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex: 1 1 auto; min-width: 0; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--c-night-text); }
.trust-item > svg { width: 21px; height: 21px; color: var(--c-night-text-2); flex-shrink: 0; }
.trust-item span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.trust-item b { font-size: 12.5px; font-weight: 700; color: #fff; }
.trust-item i { font-size: 11.5px; font-style: normal; color: var(--c-night-text); }
.trust-stars { display: inline-flex; gap: 1px; }
.trust-stars svg { width: 14px; height: 14px; color: var(--c-star); fill: var(--c-star); }
a.trust-item:hover b { color: var(--c-accent-l); }

/* VAT display switch — sets every price on the site to inc or ex VAT.
   Real links, so it still works with JavaScript off. */
.vat-toggle { display: flex; align-items: center; gap: 9px; flex: 0 0 auto; }
.vat-toggle__label { font-size: 11.5px; font-weight: 600; color: var(--c-night-text); white-space: nowrap; }
.vat-toggle__opts { display: flex; gap: 2px; padding: 2px; border-radius: 999px; background: var(--c-night-3); border: 1px solid var(--c-night-line); }
.vat-toggle__opt { display: block; padding: 4px 11px; border-radius: 999px; font-size: 11.5px; font-weight: 700; line-height: 1.55; color: var(--c-night-text); text-decoration: none; white-space: nowrap; transition: background .18s var(--ease), color .18s var(--ease); }
.vat-toggle__opt:hover { color: #fff; }
.vat-toggle__opt.is-on { background: var(--c-accent); color: var(--c-ink); }
.vat-toggle__opt.is-on:hover { color: var(--c-ink); }
.vat-toggle__opt:focus-visible { outline: 2px solid var(--c-accent-l); outline-offset: 2px; }

/* Main header row */
.header-row { transition: box-shadow .3s; }
.header-row .wrap { display: flex; align-items: center; gap: 18px; padding: 15px var(--gutter); }
.header-logo { flex-shrink: 0; }

.header-search { position: relative; flex: 1; display: flex; align-items: center; height: 50px;
  background: #fff; border-radius: var(--r-pill); padding: 0 6px 0 22px; }
.header-search input { flex: 1; min-width: 0; border: 0; background: transparent; font-size: 15px; color: var(--c-ink); padding: 0; }
.header-search input::placeholder { color: var(--c-ink-3); }
.header-search input:focus { outline: 0; }
.header-search .search-go { width: 40px; height: 40px; border-radius: 50%; background: var(--c-accent); color: #fff; border: 0;
  display: grid; place-items: center; flex-shrink: 0; transition: background .2s; }
.header-search .search-go:hover { background: var(--c-accent-d); }
.header-search .search-go svg { width: 19px; height: 19px; }

/* Predictive search dropdown */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }

.search-suggest { position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 120;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md);
  box-shadow: 0 26px 60px -18px rgba(31,34,41,.35); overflow: hidden auto; max-height: min(70vh, 560px);
  opacity: 0; transform: translateY(-6px); transition: opacity .16s ease, transform .16s ease; }
.search-suggest.is-open { opacity: 1; transform: translateY(0); }
.search-suggest.is-loading { cursor: progress; }
.search-suggest.is-loading::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent); animation: ss-load 1s linear infinite; }
@keyframes ss-load { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.ss-group { padding: 6px 0; }
.ss-group + .ss-group { border-top: 1px solid var(--c-line); }
.ss-group__label { display: block; padding: 8px 18px 4px; font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: var(--c-ink-3); }
.search-suggest mark { background: var(--c-accent-t, rgba(77,184,216,.22)); color: inherit; border-radius: 3px; padding: 0 1px; }

.ss-cat { display: flex; align-items: center; gap: 11px; padding: 9px 18px; color: var(--c-ink); font-size: 14px; font-weight: 600; }
.ss-cat svg { width: 17px; height: 17px; color: var(--c-ink-3); flex-shrink: 0; }
.ss-cat i { margin-left: auto; font-style: normal; font-size: 12px; font-weight: 600; color: var(--c-ink-3); }

.ss-row { display: flex; align-items: center; gap: 13px; padding: 10px 18px; color: var(--c-ink); }
.ss-row__img { width: 46px; height: 46px; flex-shrink: 0; border-radius: 9px; background: var(--c-surface);
  display: grid; place-items: center; overflow: hidden; }
.ss-row__img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.ss-row__body { min-width: 0; flex: 1; }
.ss-row__title { display: block; font-size: 14px; font-weight: 600; line-height: 1.35;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ss-row__meta { display: flex; gap: 8px; font-size: 12px; color: var(--c-ink-3); margin-top: 2px; }
.ss-row__meta b { font-weight: 600; color: var(--c-ink-2); }
.ss-row__meta i { font-style: normal; }
.ss-row__price { flex-shrink: 0; text-align: right; font-size: 14px; font-weight: 800; }
.ss-row__price em { display: block; font-style: normal; font-size: 11px; font-weight: 600; color: var(--c-sale); }
.ss-row__price del { display: none; }

.ss-cat:hover, .ss-cat.is-active, .ss-row:hover, .ss-row.is-active { background: var(--c-surface); }

.ss-all { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 18px;
  border-top: 1px solid var(--c-line); background: #fff; font-size: 14px; font-weight: 700; color: var(--c-accent);
  position: sticky; bottom: 0; }
.ss-all svg { width: 17px; height: 17px; }
.ss-all:hover, .ss-all.is-active { background: var(--c-surface); }

.ss-empty { padding: 22px 20px; }
.ss-empty p { font-size: 14px; font-weight: 700; color: var(--c-ink); margin: 0 0 4px; }
.ss-empty span { font-size: 13px; color: var(--c-ink-2); }

.expert-help { display: inline-flex; align-items: center; gap: 9px; background: #fff; color: var(--c-ink);
  border-radius: var(--r-md); padding: 12px 18px; font-size: 14px; font-weight: 700; flex-shrink: 0; transition: transform .2s, box-shadow .2s; }
.expert-help svg { width: 18px; height: 18px; color: var(--c-accent); }
.expert-help:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -10px rgba(0,0,0,.4); }

.tp-widget { display: inline-flex; align-items: center; gap: 9px; background: #fff; border-radius: var(--r-md); padding: 7px 12px; flex-shrink: 0; }
.tp-widget__star { width: 27px; height: 27px; border-radius: 4px; background: var(--c-tp-green); display: grid; place-items: center; flex-shrink: 0; }
.tp-widget__star svg { width: 17px; height: 17px; color: #fff; fill: #fff; }
.tp-widget__body { display: flex; flex-direction: column; gap: 2px; }
.tp-widget__stars { display: inline-flex; gap: 1px; }
.tp-widget__stars svg { width: 12px; height: 12px; color: var(--c-tp-green); fill: var(--c-tp-green); }
.tp-widget__meta { font-size: 11px; color: var(--c-ink-2); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.hicon { position: relative; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; transition: background .2s; }
.hicon:hover { background: rgba(255,255,255,.1); }
.hicon svg { width: 23px; height: 23px; }
.wish-count, .basket-btn .count { position: absolute; top: 4px; right: 2px; background: var(--c-accent); color: #fff; border-radius: var(--r-pill);
  min-width: 18px; height: 18px; padding: 0 5px; display: grid; place-items: center; font-size: 10.5px; font-weight: 700; line-height: 1; }
.wish-count:empty, .wish-count[data-wish-count="0"] { display: none; }
.basket-btn { position: relative; display: inline-flex; align-items: center; gap: 9px; color: #fff; padding: 10px 14px 10px 12px; border-radius: var(--r-pill); transition: background .2s; }
.basket-btn:hover { background: rgba(255,255,255,.1); }
.basket-btn svg { width: 23px; height: 23px; }
.basket-total { font-size: 14px; font-weight: 700; white-space: nowrap; }
.basket-btn .count { top: 2px; right: auto; left: 24px; }

/* Primary nav */
.main-nav { position: relative; background: var(--c-night); border-top: 1px solid rgba(255,255,255,.08); }
.main-nav .wrap { display: flex; align-items: center; justify-content: space-between; padding: 0 var(--gutter); }
.nav-list { display: flex; flex-wrap: wrap; align-items: center; gap: 2px 24px; list-style: none; margin: 0; padding: 0; }
.nav-list > li > a { display: block; padding: 15px 0; font-size: 14px; font-weight: 500; color: var(--c-night-text-2); position: relative; transition: color .2s; }
.nav-list > li > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2.5px;
  background: var(--c-accent); transform: scaleX(0); transform-origin: center; transition: transform .3s var(--ease); border-radius: 2px; }
.nav-list > li > a:hover::after, .nav-list > li.is-active > a::after { transform: scaleX(1); }
.nav-list > li > a:hover, .nav-list > li.is-active > a { color: #fff; }
.nav-all { display: inline-flex !important; align-items: center; gap: 8px; color: var(--c-accent-l) !important; font-weight: 700 !important; }
.nav-all svg { width: 18px; height: 18px; }
.has-mega:hover .nav-all, .has-mega:focus-within .nav-all { color: #fff !important; }
.nav-sale > a { color: var(--c-accent-l); font-weight: 700; }
.nav-secondary { display: flex; gap: 22px; }
/* Right side of the nav crossfades text links -> action icons when condensed.
   Both states occupy the same grid cell so nothing shifts. */
.nav-right { display: grid; align-items: center; }
.nav-right > * { grid-area: 1 / 1; justify-self: end; align-self: center;
  transition: opacity .22s var(--ease), visibility .22s, transform .22s var(--ease); }
.nav-actions { display: flex; align-items: center; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(4px); }
.nav-actions .hicon { width: 38px; height: 38px; }
.nav-actions .hicon svg { width: 20px; height: 20px; }
.nav-actions .basket-btn { padding: 7px 12px 7px 10px; gap: 7px; }
.nav-actions .basket-btn svg { width: 20px; height: 20px; }
.nav-actions .basket-total { font-size: 13px; }
.nav-actions .basket-btn .count { top: 0; left: 20px; }
.nav-actions .wish-count { top: 1px; right: 0; }
.site-header.is-condensed .nav-secondary { opacity: 0; visibility: hidden; transform: translateY(-4px); }
.site-header.is-condensed .nav-actions { opacity: 1; visibility: visible; transform: none; }

/* Condensed header: the trust bar + logo/search row scroll away, nav pins.
   Driven by a negative sticky `top` set in JS, so there is no layout jump. */
.site-header.is-condensed .main-nav { box-shadow: 0 10px 28px -14px rgba(0,0,0,.55); }
.site-header.is-condensed .trust-bar { opacity: 0; }
.trust-bar { transition: opacity .2s var(--ease); }
.nav-secondary a { font-size: 13px; font-weight: 500; color: var(--c-night-text); }
.nav-secondary a:hover { color: #fff; }

/* Full-width "All departments" mega */
.has-mega { position: static; }
.mega { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-top: 1px solid var(--c-line);
  box-shadow: var(--sh-pop); opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s; z-index: 50; }
.mega.is-open { opacity: 1; visibility: visible; transform: none; }
.mega--all .wrap { display: grid; grid-template-columns: 1fr 300px; gap: 34px; padding: 30px var(--gutter) 38px; align-items: start; }
.mega__eyebrow { grid-column: 1 / -1; font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--c-ink-3); }
.mega-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px 22px; }
.mega-col { display: flex; flex-direction: column; }
.mega-col__head { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--c-ink); margin-bottom: 9px; transition: color .15s; }
.mega-col__head:hover { color: var(--c-accent); }
.mega-col__link { font-size: 13px; color: var(--c-ink-2); padding: 4px 0; transition: color .15s, padding .15s; }
.mega-col__link:hover { color: var(--c-accent); padding-left: 3px; }
.mega-col__all { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: var(--c-accent); margin-top: 7px; }
.mega-col__all svg { width: 14px; height: 14px; }
.mega-feature-card { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 320px; display: flex; align-items: flex-end; }
.mega-feature-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.mega-feature-card:hover img { transform: scale(1.05); }
.mega-feature-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,44,56,.96) 18%, rgba(42,44,56,.55) 55%, rgba(42,44,56,.15)); }
.mega-feature-card__body { position: relative; padding: 22px; color: #fff; display: flex; flex-direction: column; gap: 6px; }
.mega-feature-card__eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--c-accent-l); }
.mega-feature-card__title { font-family: var(--font-head); font-size: 21px; font-weight: 800; }
.mega-feature-card__sub { font-size: 12.5px; color: var(--c-night-text-2); line-height: 1.5; }
.mega-feature-card__cta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--c-accent-l); margin-top: 4px; }
.mega-feature-card__cta svg { width: 15px; height: 15px; }

/* Burger button (mobile only) */
.nav-toggle { display: none; align-items: center; justify-content: center; width: 42px; height: 42px;
  border: 1px solid var(--c-line); background: #fff; border-radius: var(--r-md); color: var(--c-ink); flex-shrink: 0;
  transition: background .2s, border-color .2s; }
.nav-toggle:hover { background: var(--c-surface); }
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile drawer */
.drawer-overlay { position: fixed; inset: 0; background: rgba(42,44,56,.45); opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s; z-index: 90; }
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-drawer { position: fixed; top: 0; left: 0; height: 100%; width: 308px; max-width: 86vw; background: #fff;
  z-index: 100; transform: translateX(-100%); transition: transform .34s var(--ease-out); display: flex; flex-direction: column;
  box-shadow: var(--sh-pop); overflow-y: auto; }
.mobile-drawer.is-open { transform: none; }
.mobile-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--c-line); position: sticky; top: 0; background: #fff; }
.mobile-drawer__head .brand-logo { width: 120px; }
.drawer-close { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--c-line); background: #fff; border-radius: 50%; color: var(--c-ink); }
.drawer-close svg { width: 18px; height: 18px; }
.mobile-drawer__body { padding: 8px 12px 24px; }
.mobile-drawer__body h4 { font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--c-ink-3); font-weight: 700; padding: 18px 12px 6px; }
.mobile-drawer__body > a { display: block; padding: 12px; border-radius: var(--r-md); font-size: 15px; font-weight: 500; color: var(--c-ink); transition: background .15s; }
.mobile-drawer__body > a:hover, .mobile-drawer__body > a:active { background: var(--c-surface); color: var(--c-accent); }
.mobile-drawer__support { margin: 18px 12px 0; padding: 16px; background: var(--c-surface); border-radius: var(--r-lg); }
.mobile-drawer__support span { font-size: 12px; color: var(--c-ink-2); }
.mobile-drawer__support .phone { display: block; font-size: 20px; font-weight: 800; color: var(--c-accent); letter-spacing: -.3px; margin-top: 2px; }
body.drawer-open { overflow: hidden; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 620px; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(42,44,56,.94) 0%, rgba(42,44,56,.66) 42%, rgba(42,44,56,.12) 72%, rgba(42,44,56,0) 100%); }
.hero__inner { position: relative; z-index: 3; padding: 56px 0 56px; max-width: var(--maxw); margin: 0 auto; width: 100%; padding-left: 100px; padding-right: var(--gutter); }
.hero__eyebrow { display: inline-block; color: var(--c-accent-l); font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
.hero h1 { color: #fff; font-family: var(--font-head); font-size: 62px; font-weight: 900; letter-spacing: -1.5px; line-height: 1; max-width: 620px; margin: 18px 0 0; }
.hero p.sub { color: rgba(255,255,255,.86); font-size: 16px; line-height: 1.55; max-width: 480px; margin: 20px 0 0; }
.hero .hero__cta { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.hero__code { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.1); backdrop-filter: blur(4px);
  color: #fff; font-size: 14px; font-weight: 500; padding: 12px 16px; border-radius: var(--r-md); }
.hero__code b { color: var(--c-accent-l); font-weight: 700; letter-spacing: .5px; }
.hero__save { position: absolute; top: 46px; right: 56px; z-index: 4; background: var(--c-accent); color: var(--c-ink);
  font-family: var(--font-head); font-weight: 800; font-size: 18px; letter-spacing: -.2px; padding: 10px 18px; border-radius: var(--r-md);
  transform: rotate(0deg); box-shadow: 0 10px 24px -10px rgba(42,44,56,.5); }
.hero__tab { position: absolute; left: 0; top: 50%; transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl; z-index: 4;
  background: var(--c-accent); color: var(--c-ink); font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 8px; border-radius: 0 var(--r-sm) var(--r-sm) 0; }

/* ---- Hero slider ---- */
.hero--slider { display: block; overflow: hidden; position: relative; }
.hero__slides { position: relative; min-height: 620px; }
.hero__slide { position: absolute; inset: 0; min-height: 620px; display: flex; align-items: center; opacity: 0; visibility: hidden;
  transition: opacity .7s var(--ease-out), visibility .7s; }
.hero__slide.is-active { position: relative; opacity: 1; visibility: visible; }
.hero__slide.is-active .hero__eyebrow { animation: heroIn .6s var(--ease-out) .15s both; }
.hero__slide.is-active h1 { animation: heroIn .6s var(--ease-out) .25s both; }
.hero__slide.is-active .sub { animation: heroIn .6s var(--ease-out) .35s both; }
.hero__slide.is-active .hero__cta { animation: heroIn .6s var(--ease-out) .45s both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.hero__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 48px; height: 48px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(6px);
  transition: background .2s, transform .2s; }
.hero__arrow:hover { background: rgba(255,255,255,.28); }
.hero__arrow:active { transform: translateY(-50%) scale(.92); }
.hero__arrow svg { width: 22px; height: 22px; }
.hero__arrow--prev { left: 22px; }
.hero__arrow--next { right: 22px; }
.hero__dots { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 5; display: flex; align-items: center; gap: 8px; }
.hero__num { position: relative; width: 10px; height: 10px; border: 0; padding: 0; border-radius: var(--r-pill); background: rgba(255,255,255,.4);
  cursor: pointer; overflow: hidden; transition: width .3s var(--ease), background .3s; }
.hero__num.is-active { width: 30px; background: rgba(255,255,255,.4); }
.hero__ring { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; }
.hero__num.is-active .hero__ring { opacity: 1; }
.hero__ring-fg { display: none; }

/* ==========================================================================
   SECTIONS / GRIDS
   ========================================================================== */
main.app { background: var(--c-surface); overflow-x: clip; }
/* Prevent grid/flex 1fr (=minmax(auto,1fr)) items from forcing horizontal overflow. */
.prod-card, .cat-tile, .guide-card, .dept-card, .value-card, .tp-card, .review-card,
.insta__cell, .mega-col, .contact-card, .stat-card, .acct-tile, .topic-card { min-width: 0; }
.prod-scroller, .review-scroller { max-width: 100%; }
.section { padding: 64px var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.section--white { background: #fff; max-width: none; }
.section--white > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.eyebrow { display: block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--c-accent); margin-bottom: 10px; }
.eyebrow--light { color: var(--c-accent-l); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.section-head h2 { font-size: 32px; font-weight: 800; letter-spacing: -.6px; color: var(--c-ink); }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head--center .eyebrow { color: var(--c-accent); }
.section-sub { font-size: 15px; color: var(--c-ink-2); margin-top: 10px; }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; color: var(--c-ink); font-weight: 700; font-size: 14px; white-space: nowrap; transition: gap .2s, color .2s; }
.link-arrow svg { width: 16px; height: 16px; }
.link-arrow:hover { color: var(--c-accent); gap: 11px; }

/* Category tiles */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 20px; }
.cat-tile { display: flex; flex-direction: column; }
.cat-tile__img { aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden; background: #faf9f7; margin-bottom: 14px; }
.cat-tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.cat-tile:hover .cat-tile__img img { transform: scale(1.05); }
.cat-tile__name { font-size: 16px; font-weight: 700; color: var(--c-ink); transition: color .15s; }
.cat-tile:hover .cat-tile__name { color: var(--c-accent); }
.cat-tile__count { font-size: 13px; color: var(--c-ink-2); margin-top: 2px; }

/* Side-arrow carousel */
.carousel { position: relative; }
.carousel__arrow { position: absolute; top: 42%; transform: translateY(-50%); z-index: 4; width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--c-line); box-shadow: var(--sh-soft); color: var(--c-ink); display: grid; place-items: center; cursor: pointer;
  transition: transform .2s, box-shadow .2s; }
.carousel__arrow:hover { box-shadow: var(--sh-pop); }
.carousel__arrow svg { width: 20px; height: 20px; }
.carousel__arrow--prev { left: -20px; }
.carousel__arrow--next { right: -20px; }
.carousel .prod-scroller { grid-auto-columns: 288px; gap: 20px; }

/* Shop by finish band */
.finish-band { position: relative; overflow: hidden; }
.finish-band__bg { position: absolute; inset: 0; }
.finish-band__bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(2px); transform: scale(1.05); }
.finish-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(42,44,56,.95) 30%, rgba(42,44,56,.7)); }
.finish-band__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 60px var(--gutter); }
.finish-band__copy { max-width: 420px; }
.finish-band__copy h2 { color: #fff; font-size: 34px; font-weight: 800; letter-spacing: -.6px; }
.finish-band__copy p { color: var(--c-night-text-2); font-size: 15px; line-height: 1.55; margin: 14px 0 24px; }
.finish-band__swatches { display: flex; gap: 22px; }
.finish-swatch { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.finish-swatch__dot { width: 92px; height: 92px; border-radius: 50%; border: 3px solid rgba(255,255,255,.16); box-shadow: 0 8px 24px -8px rgba(0,0,0,.5); transition: transform .25s var(--ease), border-color .2s; }
.finish-swatch:hover .finish-swatch__dot { transform: translateY(-4px); border-color: var(--c-accent); }
.finish-swatch__name { font-size: 12.5px; font-weight: 600; color: var(--c-night-text-2); }
.finish-swatch:hover .finish-swatch__name { color: #fff; }

/* Brand promise band */
.promise-band { position: relative; overflow: hidden; text-align: center; }
.promise-band__bg { position: absolute; inset: 0; }
.promise-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.promise-band__bg::after { content: ""; position: absolute; inset: 0; background: rgba(42,44,56,.72); }
.promise-band__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 92px var(--gutter); }
.promise-band__inner h2 { color: #fff; font-family: var(--font-head); font-size: 46px; font-weight: 900; letter-spacing: -1px; line-height: 1.05; margin-top: 6px; }
.promise-band__inner p { color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.6; margin: 20px auto 28px; max-width: 620px; }

/* Advice / guide cards */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* The homepage advice row uses whatever real posts exist, so it has to sit
   comfortably at one or two cards as well as three. */
.guide-grid--2 { grid-template-columns: repeat(2, 1fr); }
.guide-grid--1 { grid-template-columns: minmax(0, 560px); }
.guide-card { display: flex; flex-direction: column; }
.guide-card__img { aspect-ratio: 16/10; border-radius: var(--r-lg); overflow: hidden; background: #faf9f7; margin-bottom: 16px; }
.guide-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.guide-card:hover .guide-card__img img { transform: scale(1.04); }
.guide-card__cat { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--c-accent); margin-bottom: 8px; }
.guide-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -.2px; line-height: 1.3; color: var(--c-ink); transition: color .15s; }
.guide-card:hover h3 { color: var(--c-accent); }
.guide-card p { font-size: 13.5px; color: var(--c-ink-2); line-height: 1.55; margin: 8px 0 12px; }
.guide-card__more { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--c-ink); margin-top: auto; }
.guide-card__more svg { width: 15px; height: 15px; }
.guide-card:hover .guide-card__more { color: var(--c-accent); }

/* Instagram */
.insta { background: #fff; padding: 56px var(--gutter) 64px; }
.insta__head { text-align: center; max-width: var(--maxw); margin: 0 auto 28px; }
.insta__head h2 { font-size: 30px; font-weight: 800; letter-spacing: -.5px; }
.insta__head p { font-size: 14.5px; color: var(--c-ink-2); margin-top: 8px; }
.insta__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; max-width: var(--maxw); margin: 0 auto; }
.insta__cell { position: relative; aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; }
.insta__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.insta__cell:hover img { transform: scale(1.08); }
.insta__ic { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(42,44,56,.35); color: #fff; opacity: 0; transition: opacity .25s; }
.insta__cell:hover .insta__ic { opacity: 1; }
.insta__ic svg { width: 26px; height: 26px; }

/* Third-party embed slots (Chase Admin → Home Embeds) */
.embed-slot { max-width: var(--maxw); margin: 0 auto; }
.embed-slot img, .embed-slot iframe { max-width: 100%; }

/* Quick action tiles */
.quick-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; padding: 28px var(--gutter) 0; max-width: var(--maxw); margin: 0 auto; }
.qtile { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-lg); padding: 13px 14px; transition: transform .25s var(--ease), box-shadow .25s, border-color .2s; }
.qtile:hover { transform: translateY(-3px); box-shadow: var(--sh-soft); border-color: #dfe3e0; }
.qtile .ico { width: 34px; height: 34px; border-radius: 9px; background: var(--c-accent-tint); color: var(--c-accent);
  display: grid; place-items: center; flex-shrink: 0; }
.qtile .ico svg { width: 17px; height: 17px; }
.qtile .t { font-size: 13.5px; font-weight: 600; color: var(--c-ink); }
.qtile .s { font-size: 11.5px; color: var(--c-ink-2); }

/* Department cards */
.dept-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* Product cards */
.prod-scroller { display: grid; grid-auto-flow: column; grid-auto-columns: 300px; gap: 16px; overflow-x: auto;
  scroll-snap-type: x proximity; scroll-padding-left: 0; padding-bottom: 4px; scrollbar-width: none; }
.prod-scroller::-webkit-scrollbar { display: none; }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.prod-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); overflow: hidden;
  position: relative; display: flex; flex-direction: column; scroll-snap-align: start;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .2s; }
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--sh-soft); border-color: #dcdad4; }
.prod-card__media { display: block; position: relative; }
.prod-card__img { aspect-ratio: 1; overflow: hidden; background: #faf9f7; }
.prod-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.prod-card:hover .prod-card__img img { transform: scale(1.04); }
.card-sale { position: absolute; top: 12px; left: 12px; background: var(--c-sale); color: #fff; border-radius: var(--r-sm);
  padding: 5px 10px; font-size: 11px; font-weight: 700; letter-spacing: .3px; text-transform: uppercase; z-index: 2; }
.wish-btn { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%; background: #fff;
  border: 0; box-shadow: 0 2px 8px rgba(31,34,41,.14); display: grid; place-items: center; color: var(--c-ink-2); cursor: pointer; z-index: 3;
  transition: transform .2s, color .2s, background .2s; }
.wish-btn svg { width: 19px; height: 19px; }
.wish-btn:hover { transform: scale(1.08); color: var(--c-sale); }
.wish-btn.is-active { color: var(--c-sale); }
.wish-btn.is-active svg { fill: var(--c-sale); }
.prod-card__body { padding: 15px 16px 16px; display: flex; flex-direction: column; gap: 8px; }
.prod-card__cat { font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--c-ink-3); }
.prod-card__title { font-size: 14.5px; font-weight: 600; line-height: 1.3; color: var(--c-ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; transition: color .15s; }
.prod-card__title:hover { color: var(--c-accent); }
.prod-card__rating { display: flex; align-items: center; gap: 7px; }
.stars { display: inline-flex; gap: 1px; }
.stars .star svg { width: 14px; height: 14px; color: #d9d7d1; fill: #d9d7d1; }
.stars .star.is-on svg { color: var(--c-star); fill: var(--c-star); }
.prod-card__rating .rc { font-size: 12px; color: var(--c-ink-3); }
.finish-dots { display: inline-flex; gap: 5px; }
.finish-dots .fd { width: 15px; height: 15px; border-radius: 50%; border: 1.5px solid #fff; box-shadow: 0 0 0 1px var(--c-line); }
.prod-card__price { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; margin-top: 2px; }
.prod-card__price .amt { font-size: 19px; font-weight: 800; letter-spacing: -.4px; color: var(--c-ink); }
.prod-card__price .amt .woocommerce-Price-amount { font-weight: 800; }
.prod-card__price .amt--sale, .prod-card__price .amt--sale .woocommerce-Price-amount { color: var(--c-sale); }
.prod-card__price .amt-was { font-size: 13px; color: var(--c-ink-3); text-decoration: line-through; }
.prod-card__price .unit { font-size: 11px; color: var(--c-ink-2); }
.prod-card__add { width: 100%; background: var(--c-ink); color: #fff; border: 0; border-radius: var(--r-md);
  padding: 13px; font-size: 14px; font-weight: 700; margin-top: 6px; cursor: pointer; transition: background .2s, transform .15s; }
.prod-card__add:hover { background: #000; }
.prod-card__add:active { transform: scale(.99); }
.prod-card__add.is-added { background: var(--c-success); }

.carousel-nav { display: flex; gap: 8px; }
.carousel-nav button { width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 1px solid var(--c-line);
  display: grid; place-items: center; transition: background .2s, border-color .2s, transform .2s; }
.carousel-nav button:hover { border-color: var(--c-ink); transform: translateY(-1px); }
.carousel-nav button svg { width: 18px; height: 18px; }

/* ==========================================================================
   TRUSTPILOT
   ========================================================================== */
.reviews-band { background: var(--c-surface); padding: 66px var(--gutter); }
.reviews-band__head { max-width: var(--maxw); margin: 0 auto 34px; text-align: center; }
.reviews-band__head h2 { font-size: 32px; font-weight: 800; letter-spacing: -.6px; }
.tp-summary { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; justify-content: center; font-size: 14px; color: var(--c-ink-2); }
.tp-summary > b { font-size: 15px; color: var(--c-ink); }
.tp-summary__stars { display: inline-flex; gap: 2px; }
.tps { width: 22px; height: 22px; border-radius: 3px; background: var(--c-tp-green); display: inline-grid; place-items: center; }
.tps.off { background: #d7d5d0; }
.tps svg { width: 15px; height: 15px; color: #fff; fill: #fff; }
.tp-summary__score b { color: var(--c-ink); }
.tp-summary__logo { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--c-ink); }
.tp-summary__logo .tps { width: 18px; height: 18px; }
.tp-summary__logo .tps svg { width: 12px; height: 12px; }
.tp-summary__count { color: var(--c-ink-3); }
.reviews-band__carousel { max-width: var(--maxw); margin: 0 auto; }
.review-scroller { grid-auto-columns: 380px; gap: 20px; }
.review-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 22px; display: flex; flex-direction: column; gap: 12px; scroll-snap-align: start; }
.review-card__top { display: flex; align-items: center; justify-content: space-between; }
.review-card__stars { display: inline-flex; gap: 2px; }
.review-card__stars .tps { width: 20px; height: 20px; }
.review-card__stars .tps svg { width: 13px; height: 13px; }
.review-card__date { font-size: 12px; color: var(--c-ink-3); }
.review-card h3 { font-size: 15.5px; font-weight: 700; color: var(--c-ink); }
.review-card__q { font-size: 13.5px; line-height: 1.55; color: var(--c-ink-2); flex: 1; }
.review-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.review-card__who { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--c-ink); }
.review-card__who .av { width: 30px; height: 30px; border-radius: 50%; background: var(--c-night); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.review-card__verified { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: var(--c-success); }
.review-card__verified svg { width: 15px; height: 15px; }

/* ==========================================================================
   EMAIL SIGNUP BAND
   ========================================================================== */
.signup-band { background: var(--c-night-2); }
.signup-band .wrap { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; padding: 66px var(--gutter); }
.signup-band__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--c-accent-l); margin-bottom: 12px; }
.signup-band h3 { font-size: 34px; font-weight: 800; color: #fff; letter-spacing: -.8px; }
.signup-band p { font-size: 15px; color: var(--c-night-text); margin-top: 12px; }
.signup-band form { display: flex; gap: 12px; margin-top: 26px; width: 100%; max-width: 520px; }
.signup-band input { flex: 1; height: 54px; border: 0; border-radius: var(--r-md); padding: 0 18px; font-size: 15px; font-family: inherit; }
.signup-band input::placeholder { color: var(--c-ink-3); }
.signup-band .btn { height: 54px; padding: 0 26px; }
.signup-band__fine { font-size: 12px; color: var(--c-night-text-3); margin-top: 16px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--c-night); color: var(--c-night-text); }
.site-footer .main { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; padding: 56px var(--gutter) 48px; max-width: var(--maxw); margin: 0 auto; }
.footer-about { max-width: 320px; display: flex; flex-direction: column; gap: 18px; }
.footer-about p { font-size: 13.5px; line-height: 1.55; color: var(--c-night-text); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--c-accent); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-cols { display: flex; gap: 72px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; font-size: 13.5px; color: var(--c-night-text-2); padding: 5.5px 0; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-col .phone { font-size: 22px; font-weight: 800; color: var(--c-accent); letter-spacing: -.3px; padding: 4px 0; }
.footer-col .email { font-size: 13.5px; font-weight: 600; color: var(--c-accent); }
.footer-bar { border-top: 1px solid var(--c-night-line); display: flex; align-items: center; justify-content: space-between; padding: 18px var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.footer-bar .copy { font-size: 12px; color: var(--c-night-text-3); }
.footer-bar .pays { display: flex; align-items: center; gap: 14px; }
.footer-bar .pays .terms { font-size: 12px; font-weight: 500; color: var(--c-night-text); }
.pay-badge { width: 46px; height: 30px; border-radius: 5px; display: grid; place-items: center; font-size: 13px; font-weight: 800; }
.pay-visa { background: #fff; border: 1px solid #e3e3e3; color: #1a1f71; }
.pay-mc { background: #fff; border: 1px solid #e3e3e3; position: relative; }
.pay-mc .c1, .pay-mc .c2 { width: 16px; height: 16px; border-radius: 50%; position: absolute; top: 7px; }
.pay-mc .c1 { background: #eb001b; left: 9px; }
.pay-mc .c2 { background: #f79e1b; right: 9px; mix-blend-mode: multiply; }
.pay-amex { background: #1f72cf; color: #fff; font-size: 9.5px; letter-spacing: .4px; }
.pay-pp { background: #fff; border: 1px solid #e3e3e3; color: #003087; font-size: 9px; font-style: italic; }
.pay-apple { background: #fff; border: 1px solid #e3e3e3; color: #111; font-size: 11px; }
.footer-bar .pays { gap: 8px; }

/* ==========================================================================
   AUTH (Login / Register split screen)
   ========================================================================== */
.auth { display: flex; min-height: 100vh; background: #fff; }
.auth__form { width: 620px; max-width: 48%; display: flex; flex-direction: column; justify-content: space-between; padding: 64px 96px 48px; }
.auth--wide .auth__form { width: 700px; }
.auth__form .alogo { width: 166px; }
.auth__center { display: flex; flex-direction: column; gap: 20px; width: 100%; max-width: 508px; }
.auth h1 { font-size: 34px; font-weight: 800; letter-spacing: -.8px; color: var(--c-ink); }
.auth .lead { font-size: 15px; color: var(--c-ink-2); margin-top: 8px; }
.auth__copy { font-size: 12px; color: var(--c-ink-3); }
.auth__aside { flex: 1; position: relative; display: flex; flex-direction: column; justify-content: space-between;
  padding: 80px 64px; overflow: hidden; }
.auth__aside .bg { position: absolute; inset: 0; }
.auth__aside .bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(11px); transform: scale(1.06); }
.auth__aside .bg::after { content:""; position:absolute; inset:0; background: linear-gradient(137deg, rgba(42,44,56,.9) 14%, rgba(33,41,60,.82) 85%); }
.auth__aside > * { position: relative; }
.auth__aside h2 { color: #fff; font-size: 40px; font-weight: 800; letter-spacing: -1px; line-height: 1.12; }
.auth__aside .a-sub { color: var(--c-night-text); font-size: 16px; line-height: 1.55; max-width: 560px; margin-top: 24px; }
.auth__feats { display: flex; flex-direction: column; gap: 18px; }
.auth__feat { display: flex; gap: 14px; align-items: center; }
.auth__feat .tick { width: 38px; height: 38px; border-radius: 50%; background: rgba(77,184,216,.18); color: var(--c-accent-l);
  display: grid; place-items: center; flex-shrink: 0; }
.auth__feat .tick svg { width: 16px; height: 16px; }
.auth__feat .ft { color: #fff; font-size: 16px; font-weight: 600; }
.auth__feat .fs { color: var(--c-night-text); font-size: 13px; }
.auth__divider { display: flex; align-items: center; gap: 14px; }
.auth__divider::before, .auth__divider::after { content:""; flex: 1; height: 1px; background: var(--c-line); }
.auth__divider span { font-size: 13px; color: var(--c-ink-3); }
.remember-row { display: flex; align-items: center; justify-content: space-between; }
.remember-row label { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--c-ink-2); cursor: pointer; }
.remember-row .link { font-size: 14px; font-weight: 600; color: var(--c-accent); }
.cbx { width: 20px; height: 20px; border-radius: var(--r-xs); border: 1.5px solid var(--c-line-2); background: #fff;
  display: grid; place-items: center; appearance: none; cursor: pointer; transition: background .15s, border-color .15s; }
.cbx:checked { background: var(--c-ink); border-color: var(--c-ink); }
.cbx:checked::after { content: "✓"; color: #fff; font-size: 11px; font-weight: 700; }

@media (max-width: 980px) {
  .auth__aside { display: none; }
  .auth__form { width: 100%; max-width: 100%; padding: 40px 24px; }
}

/* ==========================================================================
   BREADCRUMB / PAGE HEAD
   ========================================================================== */
.breadcrumb { padding: 18px var(--gutter) 0; max-width: var(--maxw); margin: 0 auto; font-size: 12.5px; color: var(--c-ink-2); display: flex; gap: 8px; flex-wrap: wrap; }
/* More breathing room on department/category pages where a hero follows */
.breadcrumb:has(+ .dept-hero) { padding: 22px var(--gutter) 22px; }
.breadcrumb + .dept-hero { margin-top: 4px; }
.breadcrumb a { color: var(--c-ink-2); }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb .sep { color: var(--c-ink-3); }
.breadcrumb .current { color: var(--c-ink); font-weight: 500; }

.shop-head { padding: 8px var(--gutter) 0; max-width: var(--maxw); margin: 0 auto; }
.shop-head h1 { font-size: 34px; font-weight: 800; letter-spacing: -.8px; color: var(--c-ink); }
.shop-head .count { font-size: 13.5px; color: var(--c-ink-2); margin-top: 4px; }
.shop-head .lede { font-size: 15px; color: var(--c-ink-2); margin-top: 8px; max-width: 720px; line-height: 1.5; }
.filter-opt--link { justify-content: flex-start; color: var(--c-ink-2); text-decoration: none; }
/* Mobile filter sheet chrome — hidden on desktop */
.filters__bar, .filters__apply, .filter-toggle, .filters-overlay { display: none; }
/* Grid items must be allowed to shrink or a wide child (e.g. a <select> sized
   to its longest option) blows the column out past the viewport. */
.pdp-summary, .pdp-gallery { min-width: 0; }
.grouped-select { max-width: 100%; }
.filter-opt--link:hover { color: var(--c-accent); }
.filter-opt--link .c { margin-left: auto; }

/* ==========================================================================
   SHOP LAYOUT (category listing)
   ========================================================================== */
.shop-layout { display: grid; grid-template-columns: 248px 1fr; gap: 28px; padding: 22px var(--gutter) 0; max-width: var(--maxw); margin: 0 auto; align-items: start; }
.filters { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 20px; position: sticky; top: 174px; }
.filters__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.filters__head h3 { font-size: 15px; font-weight: 700; }
.filters__head .clear { font-size: 12.5px; color: var(--c-accent); font-weight: 600; cursor: pointer; }
.filter-group { padding: 16px 0; border-top: 1px solid var(--c-line); }
.filter-group:first-of-type { border-top: 0; }
.filter-group h4 { font-size: 12px; letter-spacing: .8px; text-transform: uppercase; color: var(--c-ink-2); font-weight: 700; margin-bottom: 12px; }
.filter-opt { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: 13.5px; color: var(--c-ink); cursor: pointer; }
.filter-opt input { accent-color: var(--c-accent); width: 16px; height: 16px; }
.filter-opt .c { margin-left: auto; color: var(--c-ink-3); font-size: 12px; }

.shop-main__bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.shop-main__bar .res { font-size: 13px; color: var(--c-ink-2); }
.sort-select { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-md); padding: 9px 14px; font-size: 13px; font-weight: 500; color: var(--c-ink); }
.sort-select select { border: 0; background: transparent; font: inherit; color: inherit; font-weight: 600; }
.sort-select select:focus { outline: 0; }

.prod-grid--3 { grid-template-columns: repeat(3, 1fr); }
.prod-card__sku { font-size: 11px; color: var(--c-ink-3); letter-spacing: .2px; margin-top: -2px; }

/* Pagination */
.chase-pagination { display: flex; justify-content: center; gap: 8px; padding: 32px 0 8px; }
.chase-pagination a, .chase-pagination span { min-width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: var(--r-md); border: 1px solid var(--c-line); background: #fff; font-size: 13.5px; font-weight: 600; color: var(--c-ink); padding: 0 8px; }
.chase-pagination a:hover { border-color: var(--c-ink); }
.chase-pagination .current { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }

/* Guest gate banner (screens 07 & 10) */

/* ==========================================================================
   PRODUCT DETAIL
   ========================================================================== */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 22px var(--gutter) 0; max-width: var(--maxw); margin: 0 auto; align-items: start; }
.pdp-gallery { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 174px; }
.pdp-stage { border: 1px solid var(--c-line); border-radius: var(--r-xl); overflow: hidden; background: #faf9f7; aspect-ratio: 1; }
.pdp-stage img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: flex; gap: 10px; }
.pdp-thumbs button { width: 84px; height: 84px; border: 1.5px solid var(--c-line); border-radius: var(--r-md); overflow: hidden; background: #faf9f7; padding: 0; cursor: pointer; transition: border-color .2s; }
.pdp-thumbs button.is-active { border-color: var(--c-ink); }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pdp-summary .brandline { font-size: 11.5px; font-weight: 700; color: var(--c-accent); letter-spacing: 1.2px; text-transform: uppercase; }
.pdp-summary h1 { font-size: 32px; font-weight: 800; letter-spacing: -.6px; margin: 10px 0; line-height: 1.12; }
.pdp-rating { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; color: var(--c-ink-2); }
.pdp-rating .stars .star svg { width: 16px; height: 16px; }
.pdp-rating__val { font-weight: 700; color: var(--c-ink); }
.pdp-rating__sku { margin-left: 6px; color: var(--c-ink-3); }
.pdp-price { display: flex; align-items: baseline; gap: 10px; margin: 20px 0 14px; flex-wrap: wrap; }
.pdp-price .amt { font-size: 34px; font-weight: 800; letter-spacing: -.8px; }
.pdp-price .amt--sale, .pdp-price .amt--sale .woocommerce-Price-amount { color: var(--c-sale); }
.pdp-price .amt-was { font-size: 20px; color: var(--c-ink-3); text-decoration: line-through; }
.pdp-price .unit { font-size: 13px; color: var(--c-ink-2); }
.pdp-lead { font-size: 14.5px; line-height: 1.6; color: var(--c-ink-2); margin-bottom: 20px; }
.pdp-finish { margin: 6px 0 22px; }
.pdp-finish__label { font-size: 14px; color: var(--c-ink-2); margin-bottom: 12px; }
.pdp-finish__label b { color: var(--c-ink); }
.finish-swatches { display: flex; gap: 12px; flex-wrap: wrap; }
.finish-swatch-dot { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 2px solid transparent; cursor: pointer; transition: border-color .2s, transform .15s; }
.finish-swatch-dot span { width: 34px; height: 34px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); display: block; }
.finish-swatch-dot:hover { border-color: var(--c-line-2); }
.finish-swatch-dot.is-active { border-color: var(--c-ink); }
.pdp-buy { display: flex; align-items: stretch; gap: 12px; margin-bottom: 16px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--c-line); border-radius: var(--r-md); overflow: hidden; flex-shrink: 0; }
.qty button { width: 44px; height: 52px; border: 0; background: #fff; display: grid; place-items: center; color: var(--c-ink); cursor: pointer; }
.qty button:hover { background: var(--c-surface); }
.qty button svg { width: 16px; height: 16px; }
.qty input { width: 48px; height: 52px; border: 0; border-left: 1px solid var(--c-line); border-right: 1px solid var(--c-line); text-align: center; font-size: 15px; font-weight: 600; }
.qty input:focus { outline: 0; }
.pdp-add { flex: 1; height: 52px; border-radius: var(--r-md); font-size: 15px; }
.pdp-wish { width: 52px; height: 52px; border-radius: var(--r-md); border: 1px solid var(--c-line); background: #fff; display: grid; place-items: center; color: var(--c-ink-2); cursor: pointer; flex-shrink: 0; transition: border-color .2s, color .2s; }
.pdp-wish svg { width: 22px; height: 22px; }
.pdp-wish:hover { border-color: var(--c-ink); color: var(--c-sale); }
.pdp-wish.is-active { color: var(--c-sale); border-color: var(--c-sale); }
.pdp-wish.is-active svg { fill: var(--c-sale); }
/* Card CTA variants (grouped / unavailable products) */
.prod-card__add--link { display: block; text-align: center; text-decoration: none; }
.prod-card__add--disabled { display: block; text-align: center; background: var(--c-surface); color: var(--c-ink-3); cursor: not-allowed; }
.btn.is-disabled { opacity: .55; pointer-events: none; }

/* Grouped product buy box (PDP) — dropdown of child options */
.grouped-buy { margin-bottom: 20px; }
.grouped-buy__label { display: block; font-size: 14px; font-weight: 600; color: var(--c-ink); margin-bottom: 10px; }
.grouped-select-wrap { position: relative; margin-bottom: 14px; }
.grouped-select { width: 100%; height: 52px; appearance: none; -webkit-appearance: none; background: #fff;
  border: 1.5px solid var(--c-line); border-radius: var(--r-md); padding: 0 44px 0 16px; font-family: inherit;
  font-size: 14.5px; font-weight: 600; color: var(--c-ink); cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.grouped-select:hover { border-color: var(--c-line-2); }
.grouped-select:focus { outline: 0; border-color: var(--c-accent); box-shadow: 0 0 0 4px rgba(77,184,216,.12); }
.grouped-select__chev { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--c-ink-2); display: grid; }
.grouped-select__chev svg { width: 18px; height: 18px; }

.pdp-stock { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--c-success); margin-bottom: 20px; }
.pdp-stock .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-success-dot); }
.pdp-stock .dot--out { background: var(--c-sale); }
.pdp-benefits { list-style: none; margin: 0; padding: 20px; display: flex; flex-direction: column; gap: 12px; background: var(--c-surface); border-radius: var(--r-lg); }
.pdp-benefits li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--c-ink); }
.pdp-benefits li svg { width: 18px; height: 18px; color: var(--c-success); flex-shrink: 0; }

.pdp-info { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 48px var(--gutter) 0; max-width: var(--maxw); margin: 0 auto; align-items: start; }
.pdp-about { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 26px; }
.spec-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); overflow: hidden; }
.pdp-about h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.spec-table tr { border-bottom: 1px solid var(--c-line); }
.spec-table tr:last-child { border-bottom: 0; }
.spec-table td { padding: 15px 20px; font-size: 13.5px; }
.spec-table td:first-child { color: var(--c-ink-2); width: 45%; }
.spec-table td:last-child { color: var(--c-ink); font-weight: 600; }
.pdp-about p { font-size: 14px; line-height: 1.65; color: var(--c-ink-2); margin-bottom: 12px; }
.pdp-checklist { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pdp-checklist li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--c-ink); }
.pdp-checklist li svg { width: 17px; height: 17px; color: var(--c-success); flex-shrink: 0; }

/* PDP reviews */
.reviews-summary { display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 26px 30px; margin-bottom: 24px; }
.reviews-summary__score { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.reviews-summary__score .big { font-family: var(--font-head); font-size: 46px; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.reviews-summary__score .stars .star svg { width: 18px; height: 18px; }
.reviews-summary__tp { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--c-ink-2); }
.reviews-summary__tp .tps { width: 16px; height: 16px; border-radius: 3px; background: var(--c-tp-green); display: inline-grid; place-items: center; }
.reviews-summary__tp .tps svg { width: 11px; height: 11px; color: #fff; fill: #fff; }
.reviews-summary__bars { display: flex; flex-direction: column; gap: 6px; }
.rbar { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--c-ink-2); }
.rbar__n { width: 26px; }
.rbar__track { flex: 1; height: 8px; background: var(--c-surface); border-radius: var(--r-pill); overflow: hidden; }
.rbar__track span { display: block; height: 100%; background: var(--c-tp-green); border-radius: var(--r-pill); }
.rbar__pct { width: 34px; text-align: right; }
.reviews-list { display: flex; flex-direction: column; }
.review-row { display: grid; grid-template-columns: 180px 1fr; gap: 24px; padding: 22px 0; border-top: 1px solid var(--c-line); }
.review-row:first-child { border-top: 0; }
.review-row__who { display: flex; gap: 12px; align-items: flex-start; }
.review-row__who .av { width: 34px; height: 34px; border-radius: 50%; background: var(--c-night); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.review-row__who > span { display: flex; flex-direction: column; gap: 2px; }
.review-row__who b { font-size: 13.5px; }
.review-row__who i { font-style: normal; font-size: 12px; color: var(--c-ink-3); }
.review-row__who .verified { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; font-weight: 600; color: var(--c-success); margin-top: 3px; }
.review-row__who .verified svg { width: 13px; height: 13px; }
.review-row__top { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.review-row__top .stars .star svg { width: 15px; height: 15px; }
.review-row__date { font-size: 12px; color: var(--c-ink-3); }
.review-row__body h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.review-row__body p { font-size: 13.5px; line-height: 1.55; color: var(--c-ink-2); }
.reviews-more { margin-top: 24px; }

/* ==========================================================================
   CART
   ========================================================================== */
.cart-page { padding: 8px var(--gutter) 64px; max-width: var(--maxw); margin: 0 auto; }
.cart-page h1 { font-size: 34px; font-weight: 800; letter-spacing: -.8px; }
.cart-page .subcount { font-size: 14px; color: var(--c-ink-2); margin: 6px 0 26px; }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.cart-items { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); overflow: hidden; }
.cart-line { display: grid; grid-template-columns: 84px 1fr auto auto; gap: 20px; align-items: center; padding: 22px 24px; }
.cart-line + .cart-line { border-top: 1px solid var(--c-line); }
.cart-line__img { width: 84px; height: 84px; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--c-line); background: #faf9f7; }
.cart-line__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__meta .name { font-size: 15.5px; font-weight: 700; color: var(--c-ink); }
.cart-line__meta .brand { font-size: 12.5px; color: var(--c-ink-2); margin: 3px 0 8px; }
.cart-line__links { display: flex; gap: 16px; }
.cart-line__links a { font-size: 12.5px; color: var(--c-ink-2); }
.cart-line__links a:first-child:hover { color: var(--c-sale); }
.cart-line__links a.save:hover { color: var(--c-accent); }
.cart-line__total { font-size: 17px; font-weight: 800; white-space: nowrap; }
.cart-line .qty button { width: 38px; height: 40px; }
.cart-line .qty input { width: 42px; height: 40px; }
.cart-continue { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--c-ink-2); }
.cart-continue svg { width: 16px; height: 16px; }
.cart-continue:hover { color: var(--c-accent); }
.cart-empty { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); text-align: center; padding: 70px 20px; }
.cart-empty__ic { width: 64px; height: 64px; border-radius: 50%; background: var(--c-surface); color: var(--c-ink-3); display: inline-grid; place-items: center; margin-bottom: 18px; }
.cart-empty__ic svg { width: 30px; height: 30px; }
.cart-empty__t { font-size: 18px; font-weight: 700; }
.cart-empty__s { font-size: 14px; color: var(--c-ink-2); margin: 6px 0 20px; }
.cart-coupon { display: flex; gap: 8px; margin: 14px 0; }
.cart-coupon input { flex: 1; min-width: 0; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-md); padding: 0 14px; height: 46px; font-size: 14px; font-family: inherit; }
.cart-coupon input:focus { outline: 0; border-color: var(--c-accent); background: #fff; }
.cart-coupon .btn { height: 46px; padding: 0 20px; }
.cart-orcontinue { display: block; text-align: center; font-size: 13.5px; font-weight: 600; color: var(--c-accent); margin-top: 14px; }
.cart-orcontinue:hover { text-decoration: underline; }
.os-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--c-line); }
.os-trust span { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--c-ink-2); }
.os-trust svg { width: 13px; height: 13px; color: var(--c-success); }

.cart-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.delivery-opt { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1.5px solid var(--c-line);
  border-radius: var(--r-lg); padding: 16px; cursor: pointer; transition: border-color .2s, background .2s; }
.delivery-opt.is-active { border-color: var(--c-accent); background: rgba(77,184,216,.04); }
.delivery-opt input { accent-color: var(--c-accent); margin-top: 2px; width: 18px; height: 18px; }
.delivery-opt > span { display: flex; flex-direction: column; gap: 2px; }
.delivery-opt .t { display: block; font-size: 14px; font-weight: 600; }
.delivery-opt .s { display: block; font-size: 12.5px; color: var(--c-ink-2); }
.po-ref { margin-top: 14px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 16px; }
.po-ref label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 8px; }

.order-summary { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 22px; position: sticky; top: 174px; }
.order-summary h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.os-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 7px 0; color: var(--c-ink-2); }
.os-row .v { color: var(--c-ink); font-weight: 600; }
.os-row .free { color: var(--c-success); font-weight: 700; }
.os-total { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0 4px; margin-top: 8px; border-top: 1px solid var(--c-line); }
.os-total .l { font-size: 15px; font-weight: 700; }
.os-total .v { font-size: 22px; font-weight: 800; letter-spacing: -.4px; }
.os-terms { display: flex; align-items: center; gap: 8px; background: var(--c-success-bg); color: var(--c-success);
  border-radius: var(--r-md); padding: 10px 12px; font-size: 12.5px; font-weight: 600; margin: 14px 0; }
.os-terms svg { width: 15px; height: 15px; }
.order-summary .hint { font-size: 12px; color: var(--c-ink-2); margin-top: 12px; line-height: 1.5; }
.order-summary .hint a { color: var(--c-accent); font-weight: 600; }

/* ==========================================================================
   CHECKOUT
   ========================================================================== */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 24px; padding: 14px var(--gutter) 0; max-width: var(--maxw); margin: 0 auto; align-items: start; }
.checkout-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 24px; margin-bottom: 16px; }
.checkout-card > h3, .checkout-summary__title { font-size: 16px; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.checkout-card > h3 .n, .checkout-summary__title .n { width: 24px; height: 24px; border-radius: 50%; background: var(--c-ink); color: #fff; display: grid; place-items: center; font-size: 12px; flex-shrink: 0; }
.checkout-summary { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 24px; position: sticky; top: 174px; }

/* ---- WooCommerce checkout field styling ---- */
.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 { font-size: 13px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--c-ink-2); margin: 4px 0 14px; }
.woocommerce-checkout .woocommerce-additional-fields { margin-top: 8px; }
.woocommerce-checkout .col2-set, .woocommerce-checkout .col-1, .woocommerce-checkout .col-2 { width: 100%; float: none; }

.woocommerce form .form-row { margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; }
.woocommerce form .form-row label { font-size: 13px; font-weight: 600; color: var(--c-ink); margin-bottom: 6px; line-height: 1.3; }
.woocommerce form .form-row label .required { color: var(--c-accent); text-decoration: none; border: 0; }
.woocommerce form .form-row label .optional { color: var(--c-ink-3); font-weight: 400; }
.woocommerce form .form-row .woocommerce-input-wrapper { width: 100%; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-checkout select,
.woocommerce form .form-row .select2-container { width: 100%; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-checkout select {
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-lg);
  height: 50px; padding: 0 15px; font-size: 14px; font-family: inherit; color: var(--c-ink);
  transition: border-color .2s, background .2s, box-shadow .2s; }
.woocommerce form .form-row textarea { height: auto; min-height: 92px; padding: 13px 15px; line-height: 1.5; resize: vertical; }
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce-checkout select:focus { outline: 0; border-color: var(--c-accent); background: #fff; box-shadow: 0 0 0 4px rgba(77,184,216,.1); }
.woocommerce form .form-row input.input-text::placeholder, .woocommerce form .form-row textarea::placeholder { color: var(--c-ink-3); }

/* Two-up name row on wider screens */
@media (min-width: 560px) {
  .woocommerce-billing-fields__field-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
  .woocommerce-billing-fields__field-wrapper .form-row-first { grid-column: 1; }
  .woocommerce-billing-fields__field-wrapper .form-row-last { grid-column: 2; }
  .woocommerce-billing-fields__field-wrapper .form-row-wide,
  .woocommerce-billing-fields__field-wrapper #billing_country_field,
  .woocommerce-billing-fields__field-wrapper #billing_address_1_field,
  .woocommerce-billing-fields__field-wrapper #billing_address_2_field { grid-column: 1 / -1; }
}

/* Select2 (country) */
.select2-container--default .select2-selection--single { height: 50px; border: 1px solid var(--c-line) !important; background: var(--c-surface); border-radius: var(--r-lg); }
.select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 48px; padding-left: 15px; color: var(--c-ink); font-size: 14px; }
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 48px; right: 10px; }
.select2-container--default.select2-container--open .select2-selection--single { border-color: var(--c-accent) !important; }
.select2-dropdown { border-color: var(--c-line); border-radius: var(--r-md); overflow: hidden; }
.select2-container--default .select2-results__option--highlighted[aria-selected] { background: var(--c-accent); }
.select2-container--default .select2-search--dropdown .select2-search__field { border-radius: var(--r-sm); border-color: var(--c-line); }

/* "Ship to a different address" + checkboxes */
.woocommerce-shipping-fields h3 label { font-size: 14px; font-weight: 600; text-transform: none; letter-spacing: 0; color: var(--c-ink); display: inline-flex; align-items: center; gap: 10px; }
.woocommerce form .form-row.woocommerce-validated input.input-text { border-color: var(--c-line); }
.woocommerce form .form-row.woocommerce-invalid input.input-text { border-color: #e2574c; }
input#ship-to-different-address-checkbox, .woocommerce-form__input-checkbox { width: 18px; height: 18px; accent-color: var(--c-accent); }

.checkout-po { margin-top: 6px; }
.checkout-po label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }

/* ---- Order review table ---- */
.checkout-summary .shop_table { width: 100%; border-collapse: collapse; margin-bottom: 6px; }
.checkout-summary .shop_table thead th { text-align: left; font-size: 11px; letter-spacing: .5px; text-transform: uppercase; color: var(--c-ink-3); font-weight: 700; padding: 0 0 10px; border-bottom: 1px solid var(--c-line); }
.checkout-summary .shop_table thead th.product-total { text-align: right; }
.checkout-summary .shop_table td, .checkout-summary .shop_table tbody th { padding: 13px 0; font-size: 13.5px; vertical-align: top; border-bottom: 1px solid var(--c-line); }
.checkout-summary .shop_table .cart_item .product-name { color: var(--c-ink); font-weight: 600; line-height: 1.35; }
.checkout-summary .shop_table .cart_item .product-name .product-quantity { display: block; color: var(--c-ink-2); font-weight: 400; font-size: 12.5px; margin-top: 2px; }
.checkout-summary .shop_table .cart_item .product-total { text-align: right; font-weight: 700; white-space: nowrap; }
.checkout-summary .shop_table tfoot th { text-align: left; font-weight: 500; color: var(--c-ink-2); font-size: 13.5px; padding: 9px 0; border: 0; }
.checkout-summary .shop_table tfoot td { text-align: right; font-weight: 600; color: var(--c-ink); font-size: 13.5px; padding: 9px 0; border: 0; }
.checkout-summary .shop_table tfoot tr.cart-subtotal th, .checkout-summary .shop_table tfoot tr.cart-subtotal td { padding-top: 14px; }
.checkout-summary .shop_table tfoot tr.order-total { border-top: 1px solid var(--c-line); }
.checkout-summary .shop_table tfoot tr.order-total th { font-size: 15px; font-weight: 700; color: var(--c-ink); padding-top: 14px; }
.checkout-summary .shop_table tfoot tr.order-total td { font-size: 22px; font-weight: 800; letter-spacing: -.4px; color: var(--c-ink); padding-top: 14px; }
.checkout-summary .shop_table tfoot tr.order-total .includes_tax, .checkout-summary small.includes_tax { color: var(--c-ink-3); font-weight: 400; font-size: 11px; }

/* "(ex. VAT)" / "(incl. VAT)" captions beside a price. The order total's
   "(includes £x VAT)" note drops to its own line; inline captions stay inline. */
.tax_label { font-weight: 400; font-size: 11px; color: var(--c-ink-3); white-space: nowrap; }
.os-row .v .tax_label, .os-row .free .tax_label { margin-left: 4px; }
.checkout-summary .shop_table tfoot .tax_label { margin-left: 4px; }
.checkout-summary .shop_table tfoot tr.order-total .includes_tax { display: block; margin-top: 2px; }
.basket-total .tax_label { color: var(--c-night-text); font-size: 10.5px; margin-left: 3px; }

/* Shipping methods inside review — stack label on top, methods full-width below */
.checkout-summary .shop_table tfoot tr.woocommerce-shipping-totals { display: block; padding: 12px 0; border-bottom: 1px solid var(--c-line); }
.checkout-summary .shop_table tfoot tr.woocommerce-shipping-totals th { display: block; padding: 0 0 10px; font-size: 11px; letter-spacing: .5px; text-transform: uppercase; color: var(--c-ink-3); font-weight: 700; }
.checkout-summary .shop_table tfoot tr.woocommerce-shipping-totals td { display: block; text-align: left; padding: 0; }
.checkout-summary #shipping_method, .woocommerce-shipping-totals ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.checkout-summary #shipping_method li, .woocommerce-shipping-totals ul li { display: flex; align-items: center; gap: 10px; margin: 0; padding: 12px 14px; background: #fff; border: 1.5px solid var(--c-line); border-radius: var(--r-md); font-size: 13.5px; transition: border-color .2s, background .2s; }
.checkout-summary #shipping_method li:has(input:checked), .woocommerce-shipping-totals ul li:has(input:checked) { border-color: var(--c-accent); background: rgba(77,184,216,.04); }
.checkout-summary #shipping_method li input, .woocommerce-shipping-totals ul li input { accent-color: var(--c-accent); width: 16px; height: 16px; flex-shrink: 0; margin: 0; }
.checkout-summary #shipping_method li label, .woocommerce-shipping-totals ul li label { margin: 0; font-weight: 600; font-size: 13.5px; color: var(--c-ink); cursor: pointer; }
.checkout-summary #shipping_method li .woocommerce-Price-amount { font-weight: 700; }

/* ---- Payment ---- */
.woocommerce-checkout #payment { background: transparent; border-radius: 0; margin-top: 18px; }
.woocommerce-checkout #payment > .form-row { padding: 0; }
.woocommerce-checkout #payment ul.wc_payment_methods { list-style: none; margin: 0 0 16px; padding: 0; border: 0; display: flex; flex-direction: column; gap: 8px; }
.woocommerce-checkout #payment ul.wc_payment_methods li { background: #fff; border: 1.5px solid var(--c-line); border-radius: var(--r-lg); padding: 14px 16px; transition: border-color .2s, background .2s; }
.woocommerce-checkout #payment ul.wc_payment_methods li:has(input:checked) { border-color: var(--c-accent); background: rgba(77,184,216,.04); }
.woocommerce-checkout #payment ul.wc_payment_methods li label { display: inline; font-size: 14px; font-weight: 600; color: var(--c-ink); margin: 0; cursor: pointer; }
.woocommerce-checkout #payment ul.wc_payment_methods li input[type=radio] { accent-color: var(--c-accent); margin-right: 10px; width: 16px; height: 16px; vertical-align: -2px; }
.woocommerce-checkout #payment .payment_box { background: var(--c-surface); border-radius: var(--r-md); padding: 12px 14px; font-size: 12.5px; line-height: 1.5; color: var(--c-ink-2); margin-top: 12px; }
.woocommerce-checkout #payment .payment_box::before { display: none; }
.woocommerce-checkout #payment .payment_box p { margin: 0; }

/* Place order */
.woocommerce-checkout #payment .form-row.place-order { padding: 0; margin: 4px 0 0; }
.checkout-head { display: flex; align-items: center; gap: 14px; padding: 8px 0 22px; }
.checkout-head h1 { font-size: 34px; font-weight: 800; letter-spacing: -.8px; }
.secure-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--c-success); }
.secure-badge svg { width: 15px; height: 15px; }
.checkout-trust { display: flex; justify-content: center; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--c-line); }
.woocommerce-checkout #place_order { width: 100%; background: var(--c-accent); color: #fff; border: 0; border-radius: var(--r-md);
  padding: 16px; font-size: 15px; font-weight: 600; min-height: 54px; height: auto; cursor: pointer; float: none; transition: background .2s, transform .15s; }
.woocommerce-checkout #place_order:hover { background: var(--c-accent-d); }
.woocommerce-checkout #place_order:active { transform: translateY(1px); }
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper { margin-bottom: 12px; }
.woocommerce-privacy-policy-text { font-size: 11.5px; color: var(--c-ink-3); line-height: 1.5; margin: 4px 0 12px; }
.woocommerce-privacy-policy-text a { color: var(--c-accent); }

/* Notices on checkout */
.woocommerce-checkout .woocommerce-error, .woocommerce-checkout .woocommerce-message, .woocommerce-checkout .woocommerce-info {
  list-style: none; background: var(--c-surface); border: 1px solid var(--c-line); border-left: 3px solid var(--c-accent);
  border-radius: var(--r-md); padding: 12px 16px; font-size: 13px; margin: 0 0 16px; }

/* Global WooCommerce notices (cart/account/shop) */
.woocommerce-notices-wrapper { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  list-style: none; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; background: #fff; border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-accent); border-radius: var(--r-md); padding: 14px 18px; font-size: 13.5px; margin: 16px auto; max-width: var(--maxw); }
.woocommerce-error { border-left-color: var(--c-sale); }
.wc-fullwidth .woocommerce-message, .wc-fullwidth .woocommerce-info, .wc-fullwidth .woocommerce-error { margin-left: var(--gutter); margin-right: var(--gutter); }
.woocommerce-message .button, .woocommerce-info .button { margin-left: auto; padding: 8px 16px; font-size: 13px; }

/* ==========================================================================
   MY ACCOUNT
   ========================================================================== */
.account-page { padding: 8px var(--gutter) 64px; max-width: var(--maxw); margin: 0 auto; }
.account-page h1 { font-size: 34px; font-weight: 800; letter-spacing: -.8px; }
.account-lede { font-size: 15px; color: var(--c-ink-2); margin: 8px 0 26px; }
.account-grid { display: grid; grid-template-columns: 250px 1fr; gap: 28px; align-items: start; }
.account-nav { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 12px; position: sticky; top: 174px; }
/* Dashboard welcome banner */
.acct-welcome { background: var(--c-night); color: #fff; border-radius: var(--r-xl); padding: 26px 28px; margin-bottom: 18px; }
.acct-welcome h2 { font-size: 22px; font-weight: 800; letter-spacing: -.4px; }
.acct-welcome p { font-size: 13.5px; color: var(--c-night-text); margin-top: 6px; }
/* Dashboard tiles */
.acct-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 18px; }
.acct-tile { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 20px; display: flex; flex-direction: column; }
.acct-tile__lbl { font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--c-ink-3); }
.acct-tile__val { font-size: 20px; font-weight: 800; letter-spacing: -.4px; margin: 10px 0 4px; }
.acct-tile__sub { font-size: 12.5px; color: var(--c-ink-2); margin-bottom: 14px; }
.acct-tile__link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; color: var(--c-accent); margin-top: auto; }
.acct-tile__link svg { width: 14px; height: 14px; }
.account-nav__user { display: flex; align-items: center; gap: 12px; padding: 12px; border-bottom: 1px solid var(--c-line); margin-bottom: 8px; }
.account-nav__user .av { width: 38px; height: 38px; border-radius: 50%; background: var(--c-night-3); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 700; }
.account-nav__user .nm { font-size: 13.5px; font-weight: 700; }
.account-nav__user .ac { font-size: 11.5px; color: var(--c-ink-2); }
.account-nav ul { list-style: none; margin: 0; padding: 0; }
.account-nav li a { display: block; padding: 10px 12px; border-radius: var(--r-md); font-size: 13.5px; font-weight: 500; color: var(--c-ink); transition: background .15s, color .15s; }
.account-nav li a:hover { background: var(--c-surface); }
.account-nav li.is-active a, .woocommerce-MyAccount-navigation-link--dashboard.is-active a { background: var(--c-accent-tint); color: var(--c-accent); font-weight: 600; }
.account-nav li.woocommerce-MyAccount-navigation-link--customer-logout a { color: var(--c-ink-2); }

.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }
.stat-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 18px; }
.stat-card .lbl { font-size: 12px; color: var(--c-ink-2); font-weight: 600; }
.stat-card .val { font-size: 26px; font-weight: 800; letter-spacing: -.6px; margin: 8px 0 4px; }
.stat-card .val.blue { color: var(--c-accent); }
.stat-card .sub { font-size: 11.5px; color: var(--c-ink-3); }

.acct-block { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 22px; }
.acct-block__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.acct-block__head h2 { font-size: 16px; font-weight: 700; }
.acct-block__head a { font-size: 13px; color: var(--c-accent); font-weight: 600; }
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th { text-align: left; font-size: 11px; letter-spacing: .6px; text-transform: uppercase; color: var(--c-ink-3); font-weight: 700; padding: 8px 10px; border-bottom: 1px solid var(--c-line); }
.orders-table td { padding: 14px 10px; border-bottom: 1px solid var(--c-line); font-size: 13.5px; vertical-align: middle; }
.orders-table tr:last-child td { border-bottom: 0; }
.orders-table .ord-no { font-weight: 700; }
.orders-table .ord-po { font-size: 11.5px; color: var(--c-ink-3); }
.orders-table td.total { font-weight: 700; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill); }
.status-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-processing { background: #fff5e6; color: #b56a00; }
.status-on-hold { background: #fff5e6; color: #b56a00; }
.status-completed, .status-delivered { background: var(--c-success-bg); color: var(--c-success); }
.status-dispatched, .status-shipped { background: #e6f0fb; color: #1f6fb2; }
.status-cancelled, .status-failed { background: #fdeceb; color: #b3261e; }
.status-pending { background: var(--c-surface); color: var(--c-ink-2); }

/* Account content header (sub-pages) */
.acct-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.acct-head h2 { font-size: 20px; font-weight: 800; letter-spacing: -.4px; }
.acct-head p { font-size: 13.5px; color: var(--c-ink-2); margin-top: 3px; max-width: 480px; }
.acct-toolbar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.chip { border: 1px solid var(--c-line); background: #fff; border-radius: var(--r-pill); padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--c-ink-2); cursor: pointer; transition: all .2s; }
.chip:hover { border-color: var(--c-ink-2); }
.chip.is-active { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.chip--select { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--c-ink); }
.chip--select select { border: 0; background: transparent; font: inherit; font-weight: 600; }
.orders-table .reorder { color: var(--c-accent); font-weight: 600; font-size: 13px; }
.orders-table td.actions { text-align: right; }

/* Order detail */
.order-detail-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 20px 22px; margin-bottom: 16px; }
.order-detail-head h2 { font-size: 20px; font-weight: 800; display: inline-flex; align-items: center; gap: 12px; }
.order-detail-head .meta { font-size: 13px; color: var(--c-ink-2); margin-top: 6px; }
.order-detail-head .acts { display: flex; gap: 10px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--c-ink-2); font-weight: 500; margin-bottom: 14px; }
.back-link:hover { color: var(--c-accent); }
.order-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 16px; align-items: start; }
.order-lines { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 20px; }
.order-lines h3, .order-side h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.order-line { display: grid; grid-template-columns: 48px 1fr auto auto; gap: 14px; align-items: center; padding: 12px 0; border-top: 1px solid var(--c-line); }
.order-line:first-of-type { border-top: 0; }
.order-line img { width: 48px; height: 48px; border-radius: var(--r-sm); object-fit: cover; border: 1px solid var(--c-line); }
.order-line .brand { font-size: 11px; color: var(--c-ink-3); }
.order-line .nm { font-size: 13.5px; font-weight: 600; }
.order-line .q { font-size: 12.5px; color: var(--c-ink-2); white-space: nowrap; }
.order-line .lt { font-size: 14px; font-weight: 700; white-space: nowrap; }
.order-side .card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 20px; margin-bottom: 16px; }
.order-side address { font-style: normal; font-size: 13px; line-height: 1.6; color: var(--c-ink-2); }

/* Saved lists */

/* Quote requests */

/* WooCommerce form niceties inside account */
.woocommerce-MyAccount-content { font-size: 14px; }
.woocommerce form .form-row { margin-bottom: 14px; }
.woocommerce .button, .woocommerce-Button { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--c-ink); color: #fff; border: 0; border-radius: var(--r-md); padding: 13px 20px; font-size: 14px; font-weight: 600; cursor: pointer; }
.woocommerce .button:hover { background: #000; }

/* ==========================================================================
   ORDER CONFIRMATION (thank you)
   ========================================================================== */
.confirm-page { max-width: 900px; }
.confirm-hero { text-align: center; padding: 20px 0 26px; }
.confirm-hero .tick-big { width: 60px; height: 60px; border-radius: 50%; background: var(--c-success-dot); color: #fff; display: grid; place-items: center; margin: 0 auto 20px; }
.confirm-hero .tick-big svg { width: 30px; height: 30px; stroke-width: 2.4; }
.confirm-hero h1 { font-size: 34px; font-weight: 800; letter-spacing: -.8px; }
.confirm-hero p { font-size: 15px; color: var(--c-ink-2); margin: 12px auto 0; max-width: 520px; }
.confirm-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 22px 26px; margin-bottom: 16px; }
.confirm-meta > div { display: flex; flex-direction: column; gap: 5px; }
.confirm-meta .l { font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--c-ink-3); }
.confirm-meta .v { font-size: 15px; font-weight: 700; color: var(--c-ink); }
.confirm-items { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 24px 26px; margin-bottom: 16px; }
.confirm-items h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.confirm-totals { border-top: 1px solid var(--c-line); margin-top: 14px; padding-top: 8px; }
.confirm-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.confirm-eta { font-size: 13px; font-weight: 600; color: var(--c-accent); margin-top: 12px; }
.confirm-acts { display: flex; gap: 12px; justify-content: center; margin-top: 24px; }
.next-step { display: flex; align-items: center; gap: 12px; padding: 9px 0; }
.next-step .n { width: 26px; height: 26px; border-radius: 50%; background: var(--c-surface); color: var(--c-ink-2); display: grid; place-items: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.next-step.is-done .n { background: var(--c-success-dot); color: #fff; }
.next-step.is-done .n svg { width: 15px; height: 15px; }
.next-step .t { font-size: 14px; font-weight: 600; }

/* ==========================================================================
   FAQ / HELP CENTRE
   ========================================================================== */
.help-hero { background: linear-gradient(136deg, #2a2c38 14%, #383b4c 85%); padding: 56px var(--gutter); text-align: center; }
.help-hero h1 { color: #fff; font-size: 30px; font-weight: 800; letter-spacing: -.6px; }
.help-hero p { color: var(--c-night-text); font-size: 14px; margin: 10px 0 22px; }
.help-search { max-width: 520px; margin: 0 auto; display: flex; gap: 0; background: #fff; border-radius: var(--r-lg); overflow: hidden; height: 50px; }
.help-search svg { width: 18px; height: 18px; color: var(--c-ink-3); align-self: center; margin-left: 16px; }
.help-search input { flex: 1; border: 0; padding: 0 14px; font-size: 14px; }
.help-search input:focus { outline: 0; }
.help-search button { background: var(--c-accent); color: #fff; border: 0; padding: 0 22px; font-weight: 600; font-size: 14px; }
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.topic-card { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 16px 18px; transition: transform .25s var(--ease), box-shadow .25s; }
.topic-card:hover { transform: translateY(-3px); box-shadow: var(--sh-soft); }
.topic-card .ico { width: 36px; height: 36px; border-radius: 9px; background: var(--c-accent-tint); color: var(--c-accent); display: grid; place-items: center; flex-shrink: 0; }
.topic-card .ico svg { width: 18px; height: 18px; }
.topic-card .t { font-size: 14px; font-weight: 600; }
.topic-card .s { font-size: 12px; color: var(--c-ink-2); }
/* Topic heading above each accordion, once questions are grouped by topic.
   scroll-margin keeps the sticky header off the target when a topic card jumps here. */
.faq-group { font-size: 15px; font-weight: 700; color: var(--c-ink); margin: 26px 0 10px; scroll-margin-top: 120px; }
.faq-group:first-of-type { margin-top: 0; }
.faq-accordion + .faq-group { margin-top: 30px; }
.faq-accordion { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); overflow: hidden; }
.faq-item { border-top: 1px solid var(--c-line); }
.faq-item:first-child { border-top: 0; }
.faq-q { width: 100%; text-align: left; background: #fff; border: 0; padding: 18px 22px; font-size: 14.5px; font-weight: 600; color: var(--c-ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; }
.faq-q svg { width: 18px; height: 18px; color: var(--c-ink-3); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.is-open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item.is-open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 22px 20px; font-size: 13.5px; line-height: 1.6; color: var(--c-ink-2); }
.help-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--c-night); color: #fff; border-radius: var(--r-xl); padding: 22px 26px; }
.help-cta h3 { font-size: 16px; font-weight: 700; }
.help-cta p { font-size: 13px; color: var(--c-night-text); margin-top: 3px; }
.help-cta .acts { display: flex; gap: 10px; }

/* ==========================================================================
   DEPARTMENT HERO (top-level category landing)
   ========================================================================== */

/* ==========================================================================
   CONTENT PAGES (About / Contact / Journal / Post / T&Cs)
   ========================================================================== */
.content-page { max-width: var(--maxw); margin: 0 auto; padding: 40px var(--gutter) 72px; }
.content-head { max-width: 620px; margin-bottom: 40px; }
.content-head h1 { font-size: 40px; font-weight: 800; letter-spacing: -1px; font-family: var(--font-head); }
.content-head p { font-size: 16px; color: var(--c-ink-2); margin-top: 12px; line-height: 1.55; }
.content-head--center { margin: 0 auto 40px; text-align: center; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 28px; }
.contact-form h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form .field { margin-bottom: 16px; }
.contact-form textarea.input { min-height: 120px; resize: vertical; padding-top: 13px; }
.contact-form .btn { margin-top: 4px; }
.contact-side { display: flex; flex-direction: column; gap: 14px; }
.contact-card { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 20px; }
.contact-card .ico { width: 42px; height: 42px; border-radius: var(--r-md); background: var(--c-accent-tint); color: var(--c-accent); display: grid; place-items: center; flex-shrink: 0; }
.contact-card .ico svg { width: 20px; height: 20px; }
.contact-card > div { display: flex; flex-direction: column; gap: 2px; }
.contact-card b { font-size: 14.5px; }
.contact-card span { font-size: 13.5px; color: var(--c-ink); }
.contact-card .sub { font-size: 12.5px; color: var(--c-ink-2); }
.contact-card a.sub.link, .contact-card .link { color: var(--c-accent); font-weight: 600; }
.contact-card--dark { flex-direction: column; gap: 8px; background: var(--c-night); border-color: var(--c-night); color: #fff; }
.contact-card--dark b { color: #fff; }
.contact-card--dark p { font-size: 13px; color: var(--c-night-text); line-height: 1.5; }
.contact-card--dark .link-light { display: inline-flex; align-items: center; gap: 6px; color: var(--c-accent-l); font-weight: 600; font-size: 13.5px; margin-top: 4px; }
.contact-card--dark .link-light svg { width: 15px; height: 15px; }

/* About */
.about-hero { position: relative; min-height: 380px; display: flex; align-items: center; overflow: hidden; }
.about-hero__bg { position: absolute; inset: 0; }
.about-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(42,44,56,.92), rgba(42,44,56,.6)); }
.about-hero__inner { position: relative; z-index: 2; max-width: 640px; padding: 0 var(--gutter); margin: 0 auto; width: 100%; max-width: var(--maxw); }
.about-hero h1 { color: #fff; font-family: var(--font-head); font-size: 48px; font-weight: 900; letter-spacing: -1.2px; }
.about-hero p { color: rgba(255,255,255,.85); font-size: 16px; line-height: 1.6; max-width: 560px; margin-top: 14px; }
.about-intro { display: grid; grid-template-columns: 1fr 460px; gap: 48px; align-items: center; }
.about-intro__copy h2 { font-size: 32px; font-weight: 800; letter-spacing: -.6px; margin: 6px 0 16px; }
.about-intro__copy p { font-size: 15px; line-height: 1.7; color: var(--c-ink-2); margin-bottom: 14px; }
.about-intro__img { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; }
.about-intro__img img { width: 100%; height: 100%; object-fit: cover; }
.stats-band { background: var(--c-night); display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 44px var(--gutter); max-width: var(--maxw); margin: 0 auto; border-radius: var(--r-xl); }
.stat-fig { text-align: center; }
.stat-fig__v { display: block; font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--c-accent-l); letter-spacing: -1px; }
.stat-fig__l { display: block; font-size: 13px; color: var(--c-night-text); margin-top: 4px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 24px; }
.value-card__ic { width: 40px; height: 40px; border-radius: 50%; background: var(--c-success-bg); color: var(--c-success); display: grid; place-items: center; margin-bottom: 16px; }
.value-card__ic svg { width: 20px; height: 20px; }
.value-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--c-ink-2); line-height: 1.55; }
.cat-grid--5 { grid-template-columns: repeat(5, 1fr); }

/* Journal / blog */
.journal-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.journal-filters .chip { text-decoration: none; }
.journal-featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); overflow: hidden; margin-bottom: 32px; }
/* The image needs its own aspect ratio: `height: 100%` against an auto-height
   parent resolves to auto, so without this the block grows to the full natural
   height of whatever photo is uploaded. Same ratio as .guide-card__img. */
.journal-featured__img { overflow: hidden; aspect-ratio: 16 / 10; }
.journal-featured__img img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.journal-featured:hover .journal-featured__img img { transform: scale(1.04); }
.journal-featured__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.journal-featured__body h2 { font-size: 28px; font-weight: 800; letter-spacing: -.5px; line-height: 1.2; margin: 8px 0 12px; }
.journal-featured__body p { font-size: 14.5px; color: var(--c-ink-2); line-height: 1.6; margin-bottom: 14px; }
.journal-featured__meta { font-size: 12.5px; color: var(--c-ink-3); margin-bottom: 20px; }

/* Single post */
.post-single { max-width: 760px; margin: 0 auto; padding: 8px var(--gutter) 40px; }
.post-single__head { margin-bottom: 24px; }
.post-single__head h1 { font-size: 40px; font-weight: 800; letter-spacing: -1px; font-family: var(--font-head); line-height: 1.1; margin: 10px 0; }
.post-single__meta { font-size: 13.5px; color: var(--c-ink-2); }
.post-single__cover { border-radius: var(--r-xl); overflow: hidden; margin-bottom: 32px; aspect-ratio: 16/9; }
.post-single__cover img { width: 100%; height: 100%; object-fit: cover; }
.post-single__body { font-size: 16px; line-height: 1.75; color: var(--c-ink); }
.post-single__body > * { margin-bottom: 20px; }
.post-single__body h2 { font-size: 24px; font-weight: 800; letter-spacing: -.4px; margin: 32px 0 12px; }
.post-single__body h3 { font-size: 19px; font-weight: 700; margin: 24px 0 10px; }
.post-single__body a { color: var(--c-accent); font-weight: 600; }
.post-single__body img { border-radius: var(--r-lg); }
.post-single__body ul, .post-single__body ol { padding-left: 22px; }
.post-single__body li { margin-bottom: 8px; }
.post-single__foot { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--c-line); }

/* Generic page (T&Cs, privacy) */
.page-generic { max-width: 820px; margin: 0 auto; padding: 40px var(--gutter) 72px; }
.page-generic h1 { font-size: 40px; font-weight: 800; letter-spacing: -1px; font-family: var(--font-head); margin-bottom: 24px; }
.page-generic .entry { font-size: 15.5px; line-height: 1.75; color: var(--c-ink); }
.page-generic .entry > * { margin-bottom: 18px; }
.page-generic .entry h2 { font-size: 22px; font-weight: 800; margin: 30px 0 10px; }
.page-generic .entry h3 { font-size: 18px; font-weight: 700; margin: 22px 0 8px; }
.page-generic .entry a { color: var(--c-accent); font-weight: 600; }
.page-generic .entry ul, .page-generic .entry ol { padding-left: 22px; }

/* Utilities */
.muted { color: var(--c-ink-2); }
.center { text-align: center; }
.hidden { display: none !important; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  .dept-grid, .tp-cards, .prod-grid, .prod-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .quick-row { grid-template-columns: repeat(3, 1fr); }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
  /* ---- PLP filters become a slide-in sheet behind a button ---- */
  .filter-toggle { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--c-line);
    border-radius: var(--r-md); padding: 11px 16px; font-family: inherit; font-size: 14px; font-weight: 700; color: var(--c-ink); cursor: pointer; }
  .filter-toggle svg { width: 17px; height: 17px; }
  .filter-toggle .c { background: var(--c-accent); color: #fff; border-radius: var(--r-pill); min-width: 20px; height: 20px;
    display: grid; place-items: center; font-size: 11.5px; font-weight: 700; padding: 0 6px; }
  .filters-overlay { display: block; position: fixed; inset: 0; background: rgba(42,44,56,.5); opacity: 0; visibility: hidden;
    transition: opacity .28s var(--ease), visibility .28s; z-index: 110; }
  .filters-overlay.is-open { opacity: 1; visibility: visible; }
  .filters { position: fixed; top: 0; right: 0; height: 100%; width: 360px; max-width: 90vw; z-index: 120;
    border-radius: 0; border: 0; margin: 0; padding: 0 20px 120px; overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateX(100%); transition: transform .34s var(--ease-out); box-shadow: var(--sh-pop); }
  .filters.is-open { transform: none; }
  .filters__head { display: none; }                 /* desktop heading */
  .filters__bar { display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 2;
    background: #fff; padding: 18px 0 14px; border-bottom: 1px solid var(--c-line); margin-bottom: 4px; }
  .filters__bar h3 { font-size: 18px; font-weight: 800; letter-spacing: -.3px; }
  .filters__close { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--c-line);
    background: #fff; border-radius: 50%; color: var(--c-ink); cursor: pointer; }
  .filters__close svg { width: 18px; height: 18px; }
  .filters__apply { display: flex; gap: 10px; position: fixed; bottom: 0; right: 0; width: 360px; max-width: 90vw;
    background: #fff; border-top: 1px solid var(--c-line); padding: 14px 20px calc(14px + env(safe-area-inset-bottom)); }
  .filters__apply .btn { flex: 1; justify-content: center; }
  .filters__apply .btn--ghost { flex: 0 0 auto; }
  /* Bigger tap targets inside the sheet */
  .filters .filter-opt { padding: 11px 0; font-size: 15px; }
  .filters .filter-opt input { width: 20px; height: 20px; }
  .filters .filter-group h4 { font-size: 12.5px; }
  body.filters-open { overflow: hidden; }
  /* Toolbar: Filters + Sort on one row, count underneath */
  .shop-main__bar { flex-wrap: wrap; gap: 10px 12px; }
  .shop-main__bar .filter-toggle { order: 1; }
  .shop-main__bar .sort-select { order: 2; margin-left: auto; }
  .shop-main__bar .res { order: 3; flex: 1 1 100%; font-size: 12.5px; }
  :root { --gutter: 20px; }
  html, body.chase { overflow-x: hidden; }          /* kill accidental h-scroll */
  /* Header: burger + logo (left), actions (right) on row 1; search on row 2. */
  .header-row .wrap { flex-wrap: wrap; row-gap: 14px; column-gap: 12px; justify-content: space-between; }
  .nav-toggle { display: inline-flex; order: 0; }
  .header-logo { order: 1; }
  .expert-help, .tp-widget { display: none; }       /* declutter on tablet/mobile */
  .header-actions { order: 2; }
  .header-search { order: 4; flex: 1 0 100%; width: 100%; min-width: 0; }
  .search-suggest { max-height: 62vh; }
  .ss-row__img { width: 40px; height: 40px; }
  .ss-row__price { font-size: 13px; }
  .header-search input { min-width: 0; }
  .main-nav { display: none; }                      /* replaced by burger drawer */
  .mega { display: none !important; }
  .cart-layout, .checkout-layout, .account-grid, .shop-layout, .pdp, .pdp-info,
  .signup-band .wrap, .site-footer .main, .order-detail-grid, .confirm-grid,
  .contact-grid, .about-intro, .journal-featured, .confirm-cards { grid-template-columns: 1fr; }
  .dept-grid, .tp-cards, .prod-grid, .prod-grid--3, .cat-grid, .cat-grid--5, .guide-grid, .values-grid,
  .mega-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band, .confirm-meta, .acct-tiles { grid-template-columns: repeat(2, 1fr); }
  .reviews-summary { grid-template-columns: 1fr; gap: 20px; }
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
  .review-row { grid-template-columns: 1fr; gap: 10px; }
  .finish-band__inner { grid-template-columns: 1fr; }
  .finish-band__swatches { flex-wrap: wrap; }
  .about-intro__img { order: -1; }
  .order-summary, .checkout-summary, .account-nav, .pdp-gallery { position: static; }  /* .filters becomes a fixed sheet on mobile */
  .carousel__arrow { display: none; }
  .site-footer .main { flex-direction: column; gap: 32px; }
  .footer-cols { flex-wrap: wrap; gap: 28px 40px; }
  .signup-band .wrap { flex-direction: column; align-items: flex-start; gap: 18px; }
  .signup-band form { flex-direction: column; align-items: stretch; width: 100%; }
  .signup-band input { width: 100%; }
  .order-detail-head, .acct-head, .help-cta, .quote-feature { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (max-width: 640px) {
  html, body.chase { overflow-x: hidden; }
  .quick-row, .dept-grid, .tp-cards, .prod-grid, .prod-grid--3, .stat-cards, .cart-options,
  .topic-grid, .cat-grid, .cat-grid--5, .guide-grid, .values-grid, .contact-form__row, .stats-band,
  .confirm-meta, .acct-tiles, .saved-grid, .form-row, .pdp-meta, .mega-grid { grid-template-columns: 1fr; }
  /* Hero */
  .hero, .hero--slider, .hero__slides, .hero__slide { min-height: 500px; }
  .hero h1, .dept-hero h1, .about-hero h1 { font-size: 32px; }
  .hero__inner { padding-left: var(--gutter); padding-right: var(--gutter); }
  .hero p.sub { font-size: 14px; }
  .hero__save { top: 16px; right: 16px; font-size: 14px; padding: 8px 12px; }
  .hero__tab { display: none; }
  .hero__cta { flex-wrap: wrap; }
  .content-head h1, .post-single__head h1, .page-generic h1 { font-size: 30px; }
  .section { padding: 40px var(--gutter); }
  .journal-featured__body { padding: 24px; }
  /* Header fit */
  .trust-bar .trust-item:not(:last-child) { display: none; } /* keep only Trustpilot badge */
  .trust-bar .wrap { gap: 12px; }
  .trust-bar__items { justify-content: flex-start; }
  .trust-item i { display: none; }
  .vat-toggle__label { display: none; }              /* the switch labels itself */
  .vat-toggle__opt { padding: 4px 9px; }
  .header-row .wrap { gap: 8px; }
  .basket-total { display: none; }                  /* bag + count only */
  .basket-btn { padding: 8px; }
  .basket-btn .count { left: auto; right: 2px; }
  .header-actions { gap: 0; }
  .hicon { width: 40px; height: 40px; }
  .hicon svg { width: 22px; height: 22px; }
  .hicon--wish { display: none; }                   /* wishlist via account/menu on mobile */
  .imn-logo__word { font-size: 18px; }
  .imn-logo__now { font-size: 12px; padding: 3px 6px; }
  .nav-toggle { width: 40px; height: 40px; }
  .main-nav .wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .nav-list { flex-wrap: nowrap; }
  .nav-list > li > a { white-space: nowrap; }
  /* Cart line → stack (flex): row1 image+meta, row2 qty / unit / total */
  .cart-line { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px; }
  .cart-line__img { flex: 0 0 56px; }
  .cart-line__meta { flex: 1 1 calc(100% - 68px); }
  .cart-line .qty { order: 3; }
  .cart-line__unit { order: 4; margin-left: auto; }
  .cart-line__total { order: 5; }
  .header-search .search-go { padding: 11px 16px; }
  .order-line { grid-template-columns: 44px 1fr auto; }
  .order-line .q { display: none; }
  .pdp-thumbs { flex-direction: row; flex-wrap: wrap; }
  .pdp-summary h1, .pdp-price .amt { font-size: 24px; }
}
.cart-line.is-busy { opacity: .55; pointer-events: none; transition: opacity .15s; }

/* --- Added-to-basket confirmation modal ------------------------------- */
.atc-modal { position: fixed; inset: 0; z-index: 130; display: none; align-items: center; justify-content: center; padding: 20px; }
.atc-modal.is-open { display: flex; }
.atc-modal__overlay { position: absolute; inset: 0; background: rgba(42,44,56,.5); animation: floatIn .2s ease; }
.atc-modal__panel { position: relative; width: 100%; max-width: 440px; background: #fff; border-radius: var(--r-xl);
  box-shadow: var(--sh-pop); padding: 22px; animation: modalPop .3s var(--ease-out); max-height: 90vh; overflow-y: auto; }
.atc-modal.is-busy .atc-modal__panel { opacity: .75; }
.atc-modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.atc-modal__tick { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 800; letter-spacing: -.2px; color: var(--c-ink); }
.atc-modal__tick .ic { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center;
  background: var(--c-success-bg); color: var(--c-success); }
.atc-modal__tick .ic svg { width: 15px; height: 15px; stroke-width: 2.4; }
.atc-modal__x { width: 34px; height: 34px; flex-shrink: 0; display: grid; place-items: center; border: 1px solid var(--c-line); background: #fff; border-radius: 50%; color: var(--c-ink); cursor: pointer; }
.atc-modal__x svg { width: 15px; height: 15px; }
.atc-modal__x:hover { border-color: var(--c-ink); }

.atc-modal__item { display: grid; grid-template-columns: 72px 1fr; gap: 14px; align-items: center;
  margin: 18px 0 0; padding: 14px; border: 1px solid var(--c-line); border-radius: var(--r-lg); background: var(--c-surface); }
.atc-modal__thumb { width: 72px; height: 72px; border-radius: var(--r-md); overflow: hidden; background: #fff; display: block; }
.atc-modal__thumb img { width: 100%; height: 100%; object-fit: contain; }
.atc-modal__meta .nm { display: block; font-size: 14px; font-weight: 700; color: var(--c-ink); line-height: 1.35; }
.atc-modal__meta .nm:hover { color: var(--c-accent-d); }
.atc-modal__meta .sku { font-size: 12px; color: var(--c-ink-2); margin-top: 3px; }
.atc-modal__meta .price { font-size: 13px; color: var(--c-ink-2); margin-top: 4px; }
.atc-modal__meta .price span { font-size: 12px; }
.atc-modal__line { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-top: 1px solid var(--c-line); padding-top: 12px; }
.atc-modal__line .lt { font-size: 15px; font-weight: 800; color: var(--c-ink); }

.atc-qty { display: inline-flex; align-items: center; border: 1px solid var(--c-line); border-radius: var(--r-md); background: #fff; overflow: hidden; }
.atc-qty button { width: 36px; height: 40px; border: 0; background: #fff; font-size: 17px; font-weight: 700; color: var(--c-ink); cursor: pointer; }
.atc-qty button:hover { background: var(--c-surface); color: var(--c-accent-d); }
.atc-qty input { width: 46px; height: 40px; border: 0; border-left: 1px solid var(--c-line); border-right: 1px solid var(--c-line);
  text-align: center; font-family: inherit; font-size: 14px; font-weight: 700; color: var(--c-ink); -moz-appearance: textfield; }
.atc-qty input::-webkit-outer-spin-button, .atc-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.atc-qty input:focus { outline: 0; }

.atc-modal__totals { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 2px 2px; font-size: 14px; color: var(--c-ink-2); }
.atc-modal__totals .ct { font-size: 13px; }
.atc-modal__totals strong { font-size: 18px; font-weight: 800; color: var(--c-ink); }
.atc-modal__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.atc-modal__actions .btn { width: 100%; padding: 15px 16px; }
.atc-modal__checkout { display: block; text-align: center; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--c-ink-2); }
.atc-modal__checkout:hover { color: var(--c-accent-d); }

@media (max-width: 480px) {
  .atc-modal { padding: 0; align-items: flex-end; }
  .atc-modal__panel { max-width: none; border-radius: var(--r-xl) var(--r-xl) 0 0; padding: 20px 18px calc(20px + env(safe-area-inset-bottom)); }
  .atc-modal__actions { grid-template-columns: 1fr; }
}
