/* All West Softwash — design system, v2.

   Three voices, never mixed within one element:
     display  Baikal, condensed italic caps — headlines and big numbers
     body     Barlow — anything you read
     data     JetBrains Mono — SKUs, specs, counts, codes

   One action colour (--blue). Navy carries weight, bright blue carries
   accent, everything else is neutral, so the eye always lands on the
   thing to press. Motion is short, eased, and removed entirely under
   prefers-reduced-motion. */

:root {
  --ink: #071729;
  --navy: #0B2545;
  --navy-2: #123560;
  --blue: #1B5CA8;
  --blue-dk: #134A8C;
  --bright: #2F86E8;
  --sky: #86BDF6;
  --mist: #EDF4FD;
  --mist-2: #D7E7FB;
  --paper: #F5F7FA;
  --white: #FFFFFF;
  --text: #13202F;
  --body: #475467;
  --muted: #7B8898;
  --line: #DCE2EA;
  --hair: #EBEFF4;
  --ok: #15875A;
  --ok-bg: #E6F5EE;
  --warn: #B4541A;
  --warn-bg: #FDF1E8;
  --err: #B42318;
  --err-bg: #FDECEA;

  /* Older names still referenced by inline styles and the tool scripts. */
  --brand: var(--blue);
  --brand-dark: var(--blue-dk);
  --light-blue: var(--sky);
  --tint: var(--mist);
  --tint-border: var(--mist-2);
  --tint-hover: var(--mist-2);
  --charcoal: #2A2F36;
  --ink-soft: var(--body);
  --bg: var(--paper);
  --card: var(--white);
  --accent: var(--sky);

  --font-display: 'Baikal', 'Barlow Condensed', system-ui, sans-serif;
  --font-body: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --r-s: 3px;
  --r: 4px;
  --r-l: 6px;
  --radius: var(--r);
  --shadow-1: 0 1px 2px rgba(7,23,41,.06), 0 1px 1px rgba(7,23,41,.03);
  --shadow-2: 0 2px 6px rgba(7,23,41,.05), 0 16px 32px -14px rgba(7,23,41,.24);
  --shadow-3: 0 30px 70px -24px rgba(7,23,41,.42), 0 8px 18px -8px rgba(7,23,41,.14);
  --shadow: var(--shadow-2);

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --spring: cubic-bezier(.34,1.5,.64,1);

  --maxw: 1320px;
  --gutter: clamp(18px, 4vw, 56px);
  --header-h: 80px;
}

@font-face {
  font-family: 'Baikal';
  src: url('/assets/fonts/Baikal-VF.woff2') format('woff2');
  font-weight: 1 950; font-stretch: 1% 200%; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'Baikal';
  src: url('/assets/fonts/Baikal-VF.woff2') format('woff2');
  font-weight: 1 950; font-stretch: 1% 200%; font-style: italic; font-display: block;
}

/* ------------------------------------------------------------------ base */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0; background: var(--white); color: var(--body);
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
::selection { background: var(--bright); color: #fff; }
a { color: var(--blue); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--blue-dk); }
img { max-width: 100%; display: block; }
button { font: inherit; }
input::placeholder, textarea::placeholder { color: var(--muted); opacity: 1; }
:focus-visible { outline: 2px solid var(--bright); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

h1, h2, h3 { color: var(--navy); margin: 0; line-height: 1.05; }
h1, h2 { font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-weight: 700; font-style: italic; text-transform: uppercase; letter-spacing: -.005em; }
h3 { font-family: var(--font-body); font-weight: 700; font-size: 17px; letter-spacing: -.01em; }

.display {
  font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7;
  font-weight: 700; font-style: italic; text-transform: uppercase; color: var(--navy); line-height: .95;
}
.label, .eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue);
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 14px; }
.eyebrow::before { content: ''; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow.on-dark { color: var(--sky); }
.mono, .sku { font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: .02em; color: var(--muted); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.pad { padding-top: clamp(56px, 7vw, 104px); padding-bottom: clamp(56px, 7vw, 104px); }
.pad-t { padding-top: clamp(56px, 7vw, 104px); }
.pad-b { padding-bottom: clamp(56px, 7vw, 104px); }
.band { background: var(--paper); }

.page-title { font-size: clamp(32px, 4vw, 54px); line-height: .95; }
.section-note { max-width: 62ch; margin: 16px 0 0; font-size: 17px; line-height: 1.6; color: var(--body); }
.page-head { padding-top: clamp(36px, 5vw, 64px); padding-bottom: clamp(24px, 3vw, 36px); }
.page-head .crumbs { margin-bottom: 18px; }

/* ------------------------------------------------------------------ announcement */

.announce {
  background: var(--ink); color: #fff; height: 38px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; gap: 18px; padding: 0 16px;
}
.announce .t { font-weight: 600; font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: #D9E4F2; white-space: nowrap; }
.announce .t.alt { color: var(--sky); }
.announce .tick { width: 4px; height: 12px; background: var(--bright); transform: skewX(-9deg); border-radius: 1px; }
@media (max-width: 640px) { .announce .hide-sm { display: none; } }

/* ------------------------------------------------------------------ header */

/* The header condenses on scroll, but its footprint on the page never
   changes: as the bar shrinks, transparent padding below it grows by the
   same amount. If the page below moved, the browser would correct the
   scroll position, un-condense the header, and loop — a visible shake. */
header.site {
  --bar-s: 64px;
  position: sticky; top: 0; z-index: 60; pointer-events: none;
  transition: padding-bottom .35s var(--ease-out);
  /* The bar's full-width backdrop is 100vw, which includes the vertical
     scrollbar where one takes up space; clip it so it can't widen the page. */
  overflow-x: clip;
}
header.site > * { pointer-events: auto; }
header.site.scrolled { padding-bottom: calc(var(--header-h) - var(--bar-s)); }
header.site .bar {
  position: relative; isolation: isolate; max-width: 1600px; margin: 0 auto; padding: 0 var(--gutter);
  height: var(--header-h); display: flex; align-items: center; gap: clamp(12px, 2vw, 30px);
  transition: height .35s var(--ease-out);
}
/* The bar's backdrop spans the full window width even though the bar is capped. */
header.site .bar::before {
  content: ''; position: absolute; z-index: -1; top: 0; bottom: 0; left: 50%; width: 100vw; transform: translateX(-50%);
  background: rgba(255,255,255,.88); -webkit-backdrop-filter: saturate(170%) blur(16px); backdrop-filter: saturate(170%) blur(16px);
  border-bottom: 1px solid transparent; pointer-events: none;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
header.site.scrolled .bar::before { border-color: var(--hair); box-shadow: 0 10px 30px -18px rgba(7,23,41,.28); background: rgba(255,255,255,.94); }
header.site.scrolled .bar { height: var(--bar-s); }
.logo { display: block; flex: 0 0 auto; height: 50px; transition: height .35s var(--ease-out), transform .25s var(--ease); }
.logo img { height: 100%; width: auto; }
a.logo:hover { transform: rotate(-2deg) scale(1.03); }
header.site.scrolled .logo { height: 40px; }

nav.site { display: flex; align-items: stretch; align-self: stretch; gap: clamp(14px, 1.7vw, 26px); }
nav.site > a, .nav-dd > a {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 13px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--navy); white-space: nowrap;
}
nav.site > a::after, .nav-dd > a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 18px; height: 2px; border-radius: 2px; background: var(--bright);
  transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-out);
}
header.site.scrolled nav.site > a::after, header.site.scrolled .nav-dd > a::after { bottom: 12px; }
nav.site > a:hover::after, .nav-dd:hover > a::after, .nav-dd.open > a::after, nav.site > a.active::after { transform: scaleX(1); transform-origin: left; }
nav.site > a:hover, nav.site > a.active { color: var(--blue); }
nav.site .soon {
  font-size: 9px; letter-spacing: 1px; padding: 3px 6px 2px; border-radius: 4px; background: var(--mist); color: var(--blue); line-height: 1;
}
@media (max-width: 1180px) { nav.site .soon { display: none; } }
@media (max-width: 900px) { nav.site { display: none; } }

.nav-dd { display: flex; align-items: stretch; }
.nav-dd .chev {
  width: 7px; height: 7px; margin: -3px 0 0 2px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); transition: transform .3s var(--ease-out), margin .3s var(--ease-out);
}
.nav-dd:hover .chev, .nav-dd.open .chev { transform: rotate(-135deg); margin-top: 4px; }

/* Mega menu: the full width of the bar, every top-level category a column. */
.nav-dd .menu {
  position: absolute; top: 100%; left: var(--gutter); right: var(--gutter); z-index: 70;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 26px 34px;
  padding: 28px 32px 32px; background: #fff; border: 1px solid var(--hair); border-radius: 0 0 var(--r-l) var(--r-l);
  box-shadow: var(--shadow-3);
  opacity: 0; visibility: hidden; transform: translateY(-10px); pointer-events: none;
  transition: opacity .22s var(--ease), transform .3s var(--ease-out), visibility 0s linear .3s;
}
.nav-dd .menu::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--bright) 60%, var(--sky)); border-radius: 0; }
.nav-dd:hover .menu, .nav-dd.open .menu, .nav-dd:focus-within .menu {
  opacity: 1; visibility: visible; transform: none; pointer-events: auto; transition-delay: 0s;
}
.nav-dd .menu:empty { display: none; }
.nav-dd .menu .grp { display: flex; flex-direction: column; gap: 3px; opacity: 0; transform: translateY(6px); transition: opacity .3s var(--ease), transform .4s var(--ease-out); }
.nav-dd:hover .menu .grp, .nav-dd.open .menu .grp, .nav-dd:focus-within .menu .grp { opacity: 1; transform: none; }
.nav-dd .menu .grp:nth-child(2) { transition-delay: .03s; } .nav-dd .menu .grp:nth-child(3) { transition-delay: .06s; }
.nav-dd .menu .grp:nth-child(4) { transition-delay: .09s; } .nav-dd .menu .grp:nth-child(5) { transition-delay: .12s; }
.nav-dd .menu .grp:nth-child(n+6) { transition-delay: .15s; }
nav.site .nav-dd .menu a { font-size: 14px; font-weight: 500; color: var(--body); padding: 4px 0; display: flex; align-items: center; gap: 8px; transition: color .15s, transform .25s var(--ease-out); }
nav.site .nav-dd .menu a:hover { color: var(--blue); transform: translateX(4px); }
nav.site .nav-dd .menu a.h {
  font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-style: italic;
  font-size: 16px; text-transform: uppercase; color: var(--navy); padding: 0 0 8px; margin-bottom: 4px; border-bottom: 1px solid var(--hair);
}
nav.site .nav-dd .menu a.h:hover { transform: none; color: var(--blue); }
nav.site .nav-dd .menu a.all { font-weight: 700; font-size: 13px; color: var(--blue); }
nav.site .nav-dd .menu a.all span { transition: transform .25s var(--ease-out); }
nav.site .nav-dd .menu a.all:hover span { transform: translateX(4px); }

/* Search */
.hsearch { position: relative; flex: 1 1 240px; max-width: 400px; min-width: 180px; margin-left: auto; }
.hsearch input[type=search] {
  width: 100%; height: 44px; padding: 0 76px 0 42px; border: 1.5px solid transparent; border-radius: 4px;
  background: var(--paper); font-family: var(--font-body); font-size: 14.5px; color: var(--text);
  -webkit-appearance: none; appearance: none; outline: none;
  transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .25s var(--ease);
}
.hsearch input[type=search]:hover { background: var(--mist); }
.hsearch input[type=search]:focus { border-color: var(--bright); background: #fff; box-shadow: 0 0 0 4px rgba(47,134,232,.14); }
.hsearch input::-webkit-search-cancel-button { -webkit-appearance: none; }
.hsearch button[type=submit] {
  position: absolute; top: 0; left: 4px; height: 44px; width: 38px; border: 0; background: none; color: var(--navy);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.hsearch kbd {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%); pointer-events: none;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted); border: 1px solid var(--line); border-bottom-width: 2px;
  border-radius: 5px; padding: 1px 6px; background: #fff; transition: opacity .2s;
}
.hsearch:focus-within kbd { opacity: 0; }
@media (max-width: 1180px) { .hsearch { max-width: 260px; } .hsearch kbd { display: none; } .hsearch input[type=search] { padding-right: 16px; } }

.header-phone {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--navy); white-space: nowrap;
}
.header-phone svg { color: var(--blue); }
@media (max-width: 1680px) { .header-phone { display: none; } }

.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px; height: 44px; padding: 0 18px 0 16px;
  border: 0; border-radius: 4px; background: var(--navy); color: #fff; cursor: pointer; white-space: nowrap;
  font-weight: 700; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.cart-btn:hover { background: var(--blue); }
.cart-btn:active { transform: scale(.96); }
.cart-btn b, .icon-btn .badge {
  display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 4px;
  background: var(--bright); color: #fff; font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; letter-spacing: 0;
}
.bump { animation: awBump .5s var(--spring); }
@keyframes awBump { 0% { transform: scale(1); } 35% { transform: scale(1.45); } 100% { transform: scale(1); } }

.icon-btn {
  display: none; position: relative; width: 44px; height: 44px; border: 0; background: none; color: var(--navy);
  border-radius: 4px; align-items: center; justify-content: center; cursor: pointer; transition: background-color .2s;
}
.icon-btn:hover, .icon-btn[aria-expanded="true"] { background: var(--mist); }
.icon-btn .badge { position: absolute; top: 3px; right: 1px; min-width: 18px; height: 18px; font-size: 10px; padding: 0 4px; }
@media (max-width: 900px) {
  :root { --header-h: 66px; }
  header.site { --bar-s: 58px; }
  header.site .bar { gap: 2px; }
  .logo { height: 46px; }
  header.site.scrolled .logo { height: 38px; }
  header.site .bar > a.logo { margin-right: auto; }
  .hsearch, .cart-btn, .header-phone { display: none; }
  .icon-btn { display: flex; }
}

.msearch { border-top: 1px solid var(--hair); background: #fff; padding: 10px var(--gutter) 12px; animation: awDrop .3s var(--ease-out); }
.msearch form { position: relative; display: flex; gap: 8px; }
.msearch input[type=search] {
  flex: 1; min-width: 0; height: 46px; padding: 0 16px; border: 1.5px solid var(--line); border-radius: 4px; background: var(--paper);
  font-family: var(--font-body); font-size: 16px; color: var(--text); -webkit-appearance: none; appearance: none; outline: none;
}
.msearch input[type=search]:focus { border-color: var(--bright); background: #fff; }
.msearch button { height: 46px; padding: 0 18px; border: 0; border-radius: 4px; background: var(--navy); color: #fff; font-weight: 700; font-size: 12.5px; letter-spacing: 1.4px; text-transform: uppercase; cursor: pointer; }
@keyframes awDrop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* Search suggestions: a panel the width of the header, placed by script. */
.sugg {
  position: fixed; left: var(--gutter); right: var(--gutter); max-width: 1488px; margin: 0 auto; z-index: 80; text-align: left;
  background: #fff; border: 1px solid var(--hair); border-radius: var(--r-l); box-shadow: var(--shadow-3);
  max-height: min(74vh, 640px); overflow-y: auto; padding: 10px 12px 14px;
  animation: awDrop .28s var(--ease-out);
}
.sugg .cols2 { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 8px 26px; align-items: start; }
.sugg .cols2 > div { min-width: 0; }
.sugg .side { order: -1; border-right: 1px solid var(--hair); padding-right: 16px; }
.sugg .prods { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2px; }
.sugg .grp-h { padding: 12px 14px 6px; font-weight: 700; font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); }
.sugg a {
  display: flex; align-items: center; gap: 14px; padding: 8px 12px; border-radius: 4px; cursor: pointer; min-width: 0;
  font-size: 14px; color: var(--text); animation: awRowIn .35s var(--ease-out) both;
}
.sugg .prods a:nth-child(2) { animation-delay: .02s; } .sugg .prods a:nth-child(3) { animation-delay: .04s; }
.sugg .prods a:nth-child(4) { animation-delay: .06s; } .sugg .prods a:nth-child(n+5) { animation-delay: .08s; }
@keyframes awRowIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.sugg a:hover, .sugg a[aria-selected="true"] { background: var(--mist); color: var(--navy); }
.sugg a[aria-selected="true"] { box-shadow: inset 3px 0 0 var(--bright); }
.sugg .th { flex: 0 0 56px; height: 48px; position: relative; border: 1px solid var(--hair); border-radius: 4px; overflow: hidden; background: #fff; }
.sugg .th .slot img { padding: 3px; }
.sugg .th .ph { font-size: 6.5px; padding: 3px; }
.sugg .nm { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.3; }
.sugg .nm b { font-weight: 700; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sugg .nm b mark { background: none; color: var(--blue); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; text-decoration-color: var(--mist-2); }
.sugg .nm small { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.sugg .pr { flex: 0 0 auto; font-weight: 700; font-size: 14px; color: var(--navy); font-variant-numeric: tabular-nums; }
.sugg .more {
  justify-content: space-between; margin-top: 8px; padding: 12px; border-radius: 4px; background: var(--navy); color: #fff !important;
  font-weight: 700; font-size: 12px; letter-spacing: 1.3px; text-transform: uppercase;
}
.sugg .more:hover, .sugg .more[aria-selected="true"] { background: var(--blue); }
.sugg .none { padding: 14px; font-size: 14px; color: var(--muted); }
@media (max-width: 900px) {
  .sugg { left: 10px; right: 10px; padding: 6px 6px 10px; }
  .sugg .cols2 { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .sugg .side { order: 1; border-right: 0; border-top: 1px solid var(--hair); padding: 6px 0 0; }
}

/* ------------------------------------------------------------------ buttons */

.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 26px; border: 1.5px solid transparent; border-radius: 4px; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 13.5px; letter-spacing: 1.4px; text-transform: uppercase;
  text-align: center; line-height: 1.2; white-space: nowrap;
  transition: background-color .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .18s var(--ease), box-shadow .3s var(--ease);
}
.btn:active { transform: scale(.97); }
.btn .arr { display: inline-block; transition: transform .3s var(--ease-out); }
.btn:hover .arr { transform: translateX(5px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 22px -12px rgba(27,92,168,.9); }
.btn-primary::before {
  content: ''; position: absolute; inset: 0; z-index: -1; transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent);
  transition: transform .7s var(--ease-out);
}
.btn-primary:hover { background: var(--navy); color: #fff; box-shadow: 0 16px 30px -14px rgba(11,37,69,.9); }
.btn-primary:hover::before { transform: translateX(120%) skewX(-18deg); }
.btn-primary:disabled { background: #A9BCD3; box-shadow: none; cursor: not-allowed; transform: none; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.34); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--sky); color: var(--ink); }
.btn-block { display: flex; width: 100%; }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: 12px; border-radius: 4px; }
.ripple { position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; background: rgba(255,255,255,.35); transform: scale(0); animation: awRipple .65s var(--ease-out) forwards; }
.btn-outline .ripple { background: rgba(27,92,168,.18); }
@keyframes awRipple { to { transform: scale(1); opacity: 0; } }

.link-quiet {
  display: block; margin: 14px auto 0; padding: 6px 4px; border: 0; background: none; cursor: pointer;
  font-weight: 600; font-size: 14px; color: var(--muted); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--line);
}
.link-quiet:hover { color: var(--navy); text-decoration-color: currentColor; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* ------------------------------------------------------------------ section heads */

.sec-head { display: flex; align-items: flex-end; gap: 18px; margin-bottom: 28px; }
.sec-head .idx { font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--blue); padding-bottom: 8px; }
.sec-head .t {
  font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: clamp(24px, 2.4vw, 34px); line-height: .95; color: var(--navy);
}
.sec-head .rule { position: relative; flex: 1; height: 1px; margin-bottom: 10px; background: var(--line); overflow: hidden; }
.sec-head .rule::after { content: ''; position: absolute; inset: 0; background: var(--bright); transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease-out) .2s; }
.sec-head.in .rule::after { transform: scaleX(.22); }
.sec-head .more {
  display: inline-flex; align-items: center; gap: 8px; padding-bottom: 6px; white-space: nowrap;
  font-weight: 700; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--blue);
}
.sec-head .more span { transition: transform .3s var(--ease-out); }
.sec-head .more:hover span { transform: translateX(5px); }
.sec-head.on-dark .t { color: #fff; }
.sec-head.on-dark .rule { background: rgba(255,255,255,.18); }
.sec-head.on-dark .idx { color: var(--sky); }

/* ------------------------------------------------------------------ image slots */

.slot { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #fff; }
.slot.dark { background: var(--navy); }
.slot img { width: 100%; height: 100%; object-fit: contain; }
.slot.cover img { object-fit: cover; }
.slot .ph {
  display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; padding: 16px; text-align: center;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; line-height: 1.5; color: var(--muted);
  background: repeating-linear-gradient(-45deg, var(--paper) 0 10px, #fff 10px 20px);
}
.slot.dark .ph { color: rgba(255,255,255,.5); background: repeating-linear-gradient(-45deg, var(--navy) 0 10px, var(--navy-2) 10px 20px); }

/* ------------------------------------------------------------------ grids */

.grid5 { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 18px; }
.grid4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.grid6 { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 16px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(240px,100%),1fr)); gap: 18px; }
@media (max-width: 1180px) { .grid5 { grid-template-columns: repeat(4, minmax(0,1fr)); } }
@media (max-width: 900px) { .grid5, .grid4 { grid-template-columns: repeat(3, minmax(0,1fr)); } .grid6 { grid-template-columns: repeat(4, minmax(0,1fr)); } }
@media (max-width: 680px) { .grid5, .grid4 { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; } .grid6 { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.grid5:empty, .grid4:empty { min-height: 520px; }

/* ------------------------------------------------------------------ product card */

.pcard {
  position: relative; display: flex; flex-direction: column; min-width: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden;
  transition: border-color .16s ease, box-shadow .25s ease;
}
.pcard:hover { border-color: var(--blue); }
.pcard .shot { position: relative; display: block; aspect-ratio: 4 / 3; background: #fff; overflow: hidden; }
.pcard .shot .slot img { transition: transform .5s var(--ease-out); }
.pcard:hover .shot .slot img { transform: scale(1.04); }
.pcard .flag {
  position: absolute; top: 10px; left: 10px; z-index: 2; pointer-events: none;
  padding: 4px 10px; background: var(--bright); color: #fff; transform: skewX(-9deg); border-radius: 2px;
  font-weight: 700; font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase;
}
.pcard .flag > span { display: inline-block; transform: skewX(9deg); }
.pcard .flag.new { background: var(--bright); }
.pcard .body { display: flex; flex-direction: column; gap: 8px; padding: 14px 16px 12px; flex: 1; }
.pcard .name {
  display: block; font-weight: 700; font-size: 13px; letter-spacing: 1px; line-height: 1.25;
  color: var(--navy); text-transform: uppercase;
}
.pcard .name:hover { color: var(--blue); }
.pcard .blurb { margin: 0; font-size: 14px; line-height: 1.5; color: var(--body); }
.pcard .price { margin-top: auto; padding-top: 4px; font-weight: 700; font-size: 18px; color: var(--blue); font-variant-numeric: tabular-nums; }
.pcard .price small { font-size: 12px; font-weight: 600; }
.pcard .price.enquire { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.pcard .lowstock { font-weight: 700; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--warn); }
.stock { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--ok); white-space: nowrap; }
.stock::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.stock.low { color: var(--warn); }
.stock.out { color: var(--muted); }
.pcard .foot {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%;
  padding: 10px 16px; border: 0; border-top: 1px solid var(--tint-border); background: var(--mist); cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue);
  transition: background-color .16s ease, color .16s ease;
}
.pcard .foot > span:last-child { transition: transform .25s var(--ease-out); }
.pcard .foot:hover { background: var(--mist-2); }
.pcard .foot:hover > span:last-child { transform: translateX(4px); }
.pcard .foot:active { background: var(--sky); color: #fff; }
.pcard .foot.added, .pcard .foot.added:hover { background: var(--ok); color: #fff; }
.pcard .foot.added > span:last-child { transform: none; }
.pcard .foot .ok-tick { stroke-dasharray: 20; stroke-dashoffset: 20; animation: awTick .45s var(--ease-out) .05s forwards; }
@keyframes awTick { to { stroke-dashoffset: 0; } }

/* Skeletons hold the grid's height while products load. */
.pcard.skel { pointer-events: none; }
.pcard.skel .shot, .pcard.skel .bar { background: linear-gradient(100deg, var(--paper) 30%, var(--mist) 50%, var(--paper) 70%); background-size: 300% 100%; animation: awShimmer 1.4s linear infinite; }
.pcard.skel .bar { display: block; height: 12px; border-radius: 4px; }
.pcard.skel .bar.w70 { width: 70%; }
.pcard.skel .bar.w40 { width: 40%; height: 18px; margin-top: auto; }
.pcard.skel .foot { color: transparent; }
@keyframes awShimmer { from { background-position: 100% 0; } to { background-position: -50% 0; } }

/* List view on the shop page. */
.grid5.list { grid-template-columns: minmax(0, 1fr); gap: 10px; }
.grid5.list .pcard { flex-direction: row; align-items: stretch; }
.grid5.list .pcard:hover { transform: translateX(4px); }
.grid5.list .pcard .shot { flex: 0 0 132px; aspect-ratio: auto; min-height: 112px; }
.grid5.list .pcard .body { border-left: 1px solid var(--hair); justify-content: center; padding: 14px 20px; }
.grid5.list .pcard .price { margin-top: 0; }
.grid5.list .pcard .name { -webkit-line-clamp: 1; font-size: 16px; }
.grid5.list .pcard .foot { flex: 0 0 200px; width: auto; border-top: 0; border-left: 1px solid var(--tint-border); }
@media (max-width: 680px) {
  .pcard .body { padding: 12px 12px 10px; }
  .pcard .name { font-size: 12px; }
  .pcard .price { font-size: 17px; }
  .pcard .foot { padding: 10px 12px; font-size: 11px; letter-spacing: .8px; white-space: nowrap; }
  .grid5.list .pcard .shot { flex-basis: 92px; min-height: 92px; }
  .grid5.list .pcard .foot { flex-basis: 64px; justify-content: center; }
  .grid5.list .pcard .foot > span:first-child { display: none; }
}

/* Flying dot from an add button to the cart. */
.fly-dot {
  position: fixed; z-index: 200; width: 16px; height: 16px; margin: -8px 0 0 -8px; border-radius: 50%;
  background: var(--bright); box-shadow: 0 0 0 4px rgba(47,134,232,.25); pointer-events: none;
}

/* ------------------------------------------------------------------ home: hero */

.hero {
  position: relative; overflow: hidden; isolation: isolate; color: #fff;
  background: radial-gradient(120% 90% at 85% 10%, #164275 0%, var(--navy) 42%, var(--ink) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(rgba(134,189,246,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(134,189,246,.07) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: linear-gradient(180deg, #000 0%, transparent 85%); -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}
.hero-media {
  position: absolute; top: 0; right: 0; bottom: 0; width: 54%; z-index: -1;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  transform: translate3d(0, calc(var(--hs, 0) * .18px), 0) ;
}
.hero-media img { color: transparent; width: 100%; height: 100%; object-fit: cover; object-position: 55% 45%; animation: awHeroZoom 2.2s var(--ease-out) both; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy) 0%, rgba(11,37,69,.55) 28%, rgba(11,37,69,.1) 70%), linear-gradient(0deg, rgba(7,23,41,.65), transparent 45%); }
@keyframes awHeroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }

.hero-inner { position: relative; padding-top: clamp(64px, 9vw, 132px); padding-bottom: clamp(48px, 6vw, 84px); }
.hero-title { color: #fff; font-size: clamp(38px, 5.2vw, 80px); line-height: .9; }
.hero-title .ln { display: block; overflow: hidden; padding-bottom: .04em; }
.hero-title .ln > span { display: inline-block; animation: awLineUp .95s var(--ease-out) both; }
.hero-title .ln:nth-child(2) > span { animation-delay: .09s; }
.hero-title .ln:nth-child(3) > span { animation-delay: .18s; }
.hero-title .hl { color: var(--sky); position: relative; }
.hero-title .hl::after {
  content: ''; position: absolute; left: .04em; right: -.06em; bottom: .02em; height: .1em; background: var(--bright); z-index: -1;
  transform: skewX(-9deg) scaleX(0); transform-origin: left; animation: awUnder .8s var(--ease-out) .75s forwards;
}
@keyframes awLineUp { from { transform: translateY(105%) skewY(4deg); } to { transform: none; } }
@keyframes awUnder { to { transform: skewX(-9deg) scaleX(1); } }
.hero-lede { max-width: 50ch; margin: 26px 0 0; font-size: clamp(16px, 1.35vw, 19px); line-height: 1.6; color: rgba(226,236,248,.86); animation: awFadeUp .8s var(--ease-out) .3s both; }
.hero .cta-row { animation: awFadeUp .8s var(--ease-out) .4s both; }
.hero-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; max-width: 640px; min-height: 36px; }
.chip-link {
  display: inline-flex; align-items: center; gap: 8px; height: 36px; padding: 0 14px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.05); color: #E6EEF8;
  font-weight: 600; font-size: 13px; animation: awChipIn .6s var(--ease-out) both;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s, transform .25s var(--ease-out);
}
.chip-link b { font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: var(--sky); }
.chip-link:hover { background: #fff; border-color: #fff; color: var(--navy); transform: translateY(-2px); }
.chip-link:hover b { color: var(--blue); }
@keyframes awFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes awChipIn { from { opacity: 0; transform: skewX(-9deg) translateY(18px); } to { opacity: 1; transform: skewX(-9deg); } }

.open-dot { display: inline-flex; align-items: center; gap: 8px; }
.open-dot::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: #9AA6B4; }
.open-dot.is-open::before { background: #34D399; box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: awPulse 2s infinite; }
@keyframes awPulse { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,.55); } 70% { box-shadow: 0 0 0 10px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }
@media (max-width: 900px) {
  .hero-media { width: 100%; clip-path: none; opacity: .38; }
  .hero-media::after { background: linear-gradient(0deg, var(--ink), rgba(11,37,69,.45)); }
}

/* ------------------------------------------------------------------ home: product rail */

.rail-wrap { position: relative; }
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(250px, 1fr); gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; overscroll-behavior-x: contain;
  padding: 6px 2px 26px; margin: -6px -2px 0; scrollbar-width: none; cursor: grab;
}
.rail::-webkit-scrollbar { display: none; }
.rail.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.rail.dragging a { pointer-events: none; }
.rail > * { scroll-snap-align: start; }
@media (min-width: 1181px) { .rail { grid-auto-columns: calc((100% - 72px) / 5); } }
@media (max-width: 680px) { .rail { grid-auto-columns: 72%; } }
.rail-ctl { display: flex; align-items: center; gap: 14px; margin-top: 4px; }
.rail-track { flex: 1; height: 3px; border-radius: 3px; background: var(--hair); overflow: hidden; }
.rail-track i { display: block; height: 100%; width: 20%; background: var(--navy); border-radius: 3px; transition: transform .15s linear; transform-origin: left; }
.round-btn {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--navy); cursor: pointer; font-size: 18px;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s var(--ease);
}
.round-btn:hover:not(:disabled) { background: var(--navy); border-color: var(--navy); color: #fff; }
.round-btn:active:not(:disabled) { transform: scale(.92); }
.round-btn:disabled { opacity: .35; cursor: default; }

/* ------------------------------------------------------------------ home: tools band */

.dark-band { position: relative; overflow: hidden; background: var(--ink); color: #D6E2F0; isolation: isolate; }
.dark-band::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 80% at 100% 0%, rgba(47,134,232,.28), transparent 60%), radial-gradient(50% 70% at 0% 100%, rgba(27,92,168,.35), transparent 60%);
}
.tools-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 24px; align-items: stretch; }
@media (max-width: 980px) { .tools-grid { grid-template-columns: 1fr; } }
.finder {
  position: relative; border-radius: var(--r-l); padding: clamp(24px, 3vw, 36px);
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.12);
}
.finder h3 { color: #fff; font-size: 18px; margin-bottom: 6px; }
.finder > p { margin: 0 0 22px; color: rgba(214,226,240,.75); font-size: 15px; }
.finder-grid { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 14px; align-items: end; }
@media (max-width: 680px) { .finder-grid { grid-template-columns: 1fr 1fr; } .finder-grid .out { grid-column: 1 / -1; } }
.finder label { color: rgba(214,226,240,.8); }
.finder .unit input[type=number], .finder select { background-color: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); color: #fff; }
.finder select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%2386BDF6' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.finder .unit input[type=number]:focus, .finder select:focus { background: rgba(255,255,255,.12); border-color: var(--sky); box-shadow: 0 0 0 4px rgba(134,189,246,.18); }
.finder select option { color: var(--text); }
.finder .unit { position: relative; }
.finder .unit input { padding-right: 58px; }
.finder .unit span { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-family: var(--font-mono); font-size: 12px; color: var(--sky); pointer-events: none; }
.finder .out { border-radius: var(--r); padding: 12px 18px; background: var(--bright); color: #fff; min-height: 76px; display: flex; flex-direction: column; justify-content: center; }
.finder .out .k { font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; opacity: .85; }
.finder .out .v { font-family: var(--font-display); font-variation-settings: 'wght' 800, 'wdth' 25, 'ital' 7; font-style: italic; font-size: 40px; line-height: 1; display: inline-block; }
.finder .out .v.flip { animation: awFlip .4s var(--ease-out); }
@keyframes awFlip { from { opacity: 0; transform: translateY(40%); } to { opacity: 1; transform: none; } }
.finder .foot-note { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; font-size: 14px; color: rgba(214,226,240,.72); }
.finder .foot-note a { color: #fff; font-weight: 700; }
.finder .foot-note a:hover { color: var(--sky); }
.tool-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: var(--r-l); background: #fff; color: var(--body);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.tool-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); color: var(--body); }
.tool-card .art { aspect-ratio: 16 / 9; overflow: hidden; background: linear-gradient(135deg, #EEF2F7, #DCE6F3); }
.tool-card .art img { width: 100%; height: 100%; object-fit: contain; transition: transform .8s var(--ease-out); }
.tool-card:hover .art img { transform: scale(1.05); }
.tool-card .txt { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tool-card .txt h3 { font-size: 17px; }
.tool-card .txt p { margin: 0; font-size: 15px; }
.tool-card .go { margin-top: auto; padding-top: 10px; font-weight: 700; font-size: 13px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--blue); display: inline-flex; gap: 8px; }
.tool-card .go span { transition: transform .3s var(--ease-out); }
.tool-card:hover .go span { transform: translateX(5px); }

/* ------------------------------------------------------------------ home: value props */

.values { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0; border-top: 1px solid var(--line); }
.value { padding: 30px 26px 8px 0; }
.value + .value { padding-left: 26px; border-left: 1px solid var(--line); }
.value .ic {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 4px; margin-bottom: 18px;
  background: var(--mist); color: var(--blue); transition: transform .45s var(--spring), background-color .3s, color .3s;
}
.value:hover .ic { transform: rotate(-8deg) scale(1.08); background: var(--blue); color: #fff; }
.value h3 { margin-bottom: 8px; }
.value p { margin: 0; font-size: 15px; }
@media (max-width: 980px) { .values { grid-template-columns: 1fr 1fr; } .value:nth-child(3) { padding-left: 0; border-left: 0; } .value:nth-child(n+3) { border-top: 1px solid var(--line); } }
@media (max-width: 560px) { .values { grid-template-columns: 1fr; } .value, .value + .value { padding: 24px 0 8px; border-left: 0; } .value + .value { border-top: 1px solid var(--line); } }

/* ------------------------------------------------------------------ home: warehouse */

.warehouse-card {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  border-radius: var(--r-l); background: var(--navy); color: #D6E2F0;
}
.warehouse-card .txt { padding: clamp(28px, 4vw, 56px); }
.warehouse-card h2 { color: #fff; font-size: clamp(28px, 3vw, 42px); line-height: .95; }
.warehouse-card p { color: rgba(214,226,240,.8); }
.warehouse-card .rows { margin-top: 26px; display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.12); }
.warehouse-card .rows div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 15px; }
.warehouse-card .rows .k { color: rgba(214,226,240,.62); font-size: 12.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.warehouse-card .rows .v { color: #fff; font-weight: 600; text-align: right; }
.warehouse-card .map {
  position: relative; min-height: 320px; overflow: hidden;
  background:
    radial-gradient(circle at 62% 48%, rgba(47,134,232,.5) 0 6px, transparent 7px),
    linear-gradient(rgba(134,189,246,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(134,189,246,.12) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy-2), var(--ink));
  background-size: auto, 34px 34px, 34px 34px, auto;
}
.warehouse-card .map .pin { position: absolute; left: 62%; top: 48%; width: 18px; height: 18px; margin: -9px 0 0 -9px; border-radius: 50%; background: var(--bright); box-shadow: 0 0 0 0 rgba(47,134,232,.6); animation: awPing 2.2s var(--ease-out) infinite; }
@keyframes awPing { 0% { box-shadow: 0 0 0 0 rgba(47,134,232,.6); } 100% { box-shadow: 0 0 0 38px rgba(47,134,232,0); } }
.warehouse-card .map .road { position: absolute; background: rgba(214,226,240,.18); }
.warehouse-card .map .tag {
  position: absolute; left: calc(62% + 18px); top: calc(48% - 18px); padding: 8px 12px; border-radius: 4px; background: #fff; color: var(--navy);
  font-weight: 700; font-size: 13px; box-shadow: var(--shadow-2); white-space: nowrap;
}
.warehouse-card .map .tag small { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 10.5px; color: var(--muted); }
@media (max-width: 900px) { .warehouse-card { grid-template-columns: 1fr; } .warehouse-card .map { min-height: 220px; } .warehouse-card .map .tag { left: auto; right: 18px; } }

/* ------------------------------------------------------------------ trust strip (inner pages) */

.trust { background: var(--navy); }
.trust .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 34px; padding-top: 14px; padding-bottom: 14px; }
.trust .wrap > div { display: flex; align-items: center; gap: 10px; }
.trust i { width: 4px; height: 12px; background: var(--bright); transform: skewX(-9deg); border-radius: 1px; }
.trust span { font-weight: 700; font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: #E2EAF4; }

/* ------------------------------------------------------------------ shop */

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--blue); }
.crumbs .sep { color: var(--line); }
.shop-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px 32px; }
.shop-head .result-count { margin: 0 0 8px; }
.shop-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 32px; align-items: start; }
.catnav { position: sticky; top: calc(var(--header-h) + 18px); max-height: calc(100vh - var(--header-h) - 36px); overflow-y: auto; scrollbar-width: thin; padding-right: 6px; }
.catnav-toggle { display: none; }
.catnav-list { display: flex; flex-direction: column; }
.catnav-list > a, .catnav-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 12px; border-radius: 4px;
  font-weight: 700; font-size: 16px; line-height: 1.3; color: var(--navy); cursor: pointer; list-style: none;
  transition: background-color .18s var(--ease), color .18s, padding-left .25s var(--ease-out);
}
.catnav-list summary::-webkit-details-marker { display: none; }
.catnav-list > a:hover, .catnav-list summary:hover { background: var(--paper); padding-left: 16px; }
.catnav-list a.on, .catnav-list summary.on { background: var(--mist); color: var(--blue); }
.catnav-list > a.all { font-size: 13.5px; letter-spacing: 1.4px; text-transform: uppercase; }
.catnav-list .n { font-family: var(--font-mono); font-weight: 500; font-size: 12.5px; color: var(--muted); }
.catnav-list summary::after { content: ''; width: 7px; height: 7px; margin-left: 4px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .3s var(--ease-out); flex: 0 0 auto; }
.catnav-list details[open] > summary::after { transform: rotate(-135deg); }
.catnav-list summary .n { margin-left: auto; }
.catnav-list .sub { display: flex; flex-direction: column; margin: 2px 0 8px 12px; padding-left: 10px; border-left: 2px solid var(--hair); animation: awDrop .3s var(--ease-out); }
.catnav-list .sub a { display: flex; justify-content: space-between; gap: 8px; padding: 8px 10px; border-radius: 4px; font-size: 15px; line-height: 1.3; font-weight: 500; color: var(--body); transition: background-color .15s, color .15s; }
.catnav-list .sub a:hover { background: var(--paper); color: var(--navy); }
.catnav-list .sub a.group { font-weight: 700; color: var(--blue); }
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; gap: 18px; }
  .catnav { position: static; max-height: none; overflow: visible; padding: 0; border: 1px solid var(--line); border-radius: var(--r); }
  .catnav-toggle { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 14px 16px; border: 0; background: none; cursor: pointer; font-weight: 700; font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--navy); }
  .catnav-toggle .chev { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .3s var(--ease-out); }
  .catnav.open .catnav-toggle .chev { transform: rotate(-135deg); }
  .catnav-list { display: none; padding: 0 8px 10px; }
  .catnav.open .catnav-list { display: flex; animation: awDrop .3s var(--ease-out); }
}
.toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 14px; }
.toolbar .search-field { position: relative; flex: 1 1 260px; }
.toolbar .search-field svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.toolbar .search-field input { padding-left: 42px; }
.toolbar select { flex: 0 0 auto; width: auto; min-width: 190px; }
.toggle { position: relative; display: inline-flex; align-items: center; gap: 10px; height: 48px; margin: 0; padding: 0 14px; border: 1.5px solid var(--line); border-radius: 4px; cursor: pointer; user-select: none; font-weight: 600; font-size: 14px; letter-spacing: 0; text-transform: none; color: var(--navy); background: #fff; transition: border-color .2s; }
.wrap.wide { max-width: 1600px; }
/* Products per row, chosen in the toolbar (default 4). Narrower screens step
   down so cards never get too small: at most 4 up to 1280px, then 3, then 2. */
.shop-main .grid5 { --cols: 4; grid-template-columns: repeat(var(--cols), minmax(0,1fr)); gap: 16px; }
.shop-main .grid5[data-cols="3"] { --cols: 3; }
.shop-main .grid5[data-cols="5"] { --cols: 5; }
.shop-main .grid5[data-cols="6"] { --cols: 6; }
@media (max-width: 1280px) { .shop-main .grid5[data-cols="5"], .shop-main .grid5[data-cols="6"] { --cols: 4; } }
@media (max-width: 1060px) { .shop-main .grid5 { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 680px) { .shop-main .grid5 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.shop-main .grid5.list { grid-template-columns: minmax(0,1fr); }
.shop-head .page-title { font-size: clamp(30px, 3.6vw, 48px); }
.toggle:hover { border-color: var(--mist-2); }
.toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle .sw { position: relative; width: 36px; height: 20px; border-radius: 4px; background: var(--line); transition: background-color .25s var(--ease); }
.toggle .sw::after { content: ''; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: transform .3s var(--spring); }
.toggle input:checked + .sw { background: var(--ok); }
.toggle input:checked + .sw::after { transform: translateX(16px); }
.toggle input:focus-visible + .sw { outline: 2px solid var(--bright); outline-offset: 2px; }
.viewsw { display: inline-flex; padding: 3px; gap: 2px; height: 48px; border: 1.5px solid var(--line); border-radius: 4px; background: #fff; }
.viewsw button { width: 40px; border: 0; border-radius: 3px; background: none; color: var(--muted); cursor: pointer; display: grid; place-items: center; transition: background-color .2s, color .2s; }
.viewsw button[aria-pressed="true"] { background: var(--navy); color: #fff; }
.colsw { display: inline-flex; align-items: center; padding: 3px; gap: 2px; height: 48px; border: 1.5px solid var(--line); border-radius: 4px; background: #fff; }
.colsw .k { padding: 0 8px 0 9px; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.colsw button { width: 34px; height: 100%; border: 0; border-radius: 3px; background: none; color: var(--muted); cursor: pointer; font-weight: 700; font-size: 14px; font-variant-numeric: tabular-nums; transition: background-color .2s, color .2s; }
.colsw button:hover { color: var(--navy); }
.colsw button[aria-pressed="true"] { background: var(--navy); color: #fff; }
/* Only meaningful for the grid on wide screens. */
.colsw[hidden] { display: none; }
@media (max-width: 1280px) {
  .colsw [data-cols="5"], .colsw [data-cols="6"] { display: none; }
  /* Keep the toolbar on one line with the extra control. */
  .toolbar .search-field { flex-basis: 180px; }
  .toolbar select { min-width: 160px; }
}
@media (max-width: 1060px) { .colsw { display: none; } }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.chips:empty { display: none; }
.chip { display: inline-flex; align-items: center; gap: 8px; height: 32px; padding: 0 6px 0 12px; border-radius: 4px; background: var(--mist); color: var(--navy); font-weight: 600; font-size: 13px; animation: awPop .3s var(--spring); }
.chip button, .chip a.x { display: grid; place-items: center; width: 22px; height: 22px; border: 0; border-radius: 50%; background: rgba(11,37,69,.08); color: var(--navy); cursor: pointer; font-size: 14px; line-height: 1; transition: background-color .15s, transform .2s; }
.chip button:hover, .chip a.x:hover { background: var(--navy); color: #fff; transform: rotate(90deg); }
.chip.clear { background: none; color: var(--blue); padding: 0 10px; }
@keyframes awPop { from { transform: scale(.8); opacity: 0; } to { transform: none; opacity: 1; } }
.result-count { margin: 0 0 18px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.empty-state { grid-column: 1 / -1; padding: clamp(40px, 6vw, 80px) 24px; text-align: center; border: 1.5px dashed var(--line); border-radius: var(--r-l); background: var(--paper); }
.empty-state .t { font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-style: italic; text-transform: uppercase; font-size: clamp(22px, 2.2vw, 30px); color: var(--navy); line-height: 1; }
.empty-state p { max-width: 46ch; margin: 12px auto 22px; }

/* ------------------------------------------------------------------ product page */

.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 26px 0 22px; font-size: 13px; font-weight: 600; }
.crumb a.b { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px 6px 10px; border-radius: 4px; background: var(--paper); color: var(--navy); transition: background-color .2s, transform .25s var(--ease-out); }
.crumb a.b:hover { background: var(--mist); transform: translateX(-3px); }
.crumb .sep { color: var(--line); }
.crumb .c { color: var(--muted); }
.crumb a.c:hover { color: var(--blue); }
.pdp { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(28px, 4.5vw, 64px); align-items: start; }
.pdp > div:last-child { min-width: 0; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } }
.gallery { position: sticky; top: calc(var(--header-h) + 18px); display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 900px) { .gallery { position: static; } }
.stage { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--r-l); border: 1px solid var(--hair); background: #fff; }
.stage .slot img { padding: 28px; cursor: zoom-in; transition: opacity .2s var(--ease), transform .5s var(--ease-out); }
.stage:hover .slot img { transform: scale(1.03); }
.stage .nav {
  position: absolute; top: 50%; z-index: 2; width: 44px; height: 44px; margin-top: -22px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.92); color: var(--navy); font-size: 22px; cursor: pointer; box-shadow: var(--shadow-2);
  opacity: 0; transition: opacity .25s, transform .25s var(--ease-out), background-color .2s, color .2s;
}
.stage .nav.prev { left: 14px; transform: translateX(-6px); } .stage .nav.next { right: 14px; transform: translateX(6px); }
.stage:hover .nav, .stage:focus-within .nav { opacity: 1; transform: none; }
.stage .nav:hover { background: var(--navy); color: #fff; }
@media (hover: none) { .stage .nav { opacity: 1; transform: none; } }
.stage .counter { position: absolute; right: 14px; bottom: 14px; z-index: 2; padding: 4px 10px; border-radius: 4px; background: rgba(11,37,69,.78); color: #fff; font-family: var(--font-mono); font-size: 11px; }
.thumbs { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 10px; }
.thumbs button, .thumbs .empty { position: relative; aspect-ratio: 1 / 1; padding: 0; border: 1.5px solid var(--hair); border-radius: 4px; background: #fff; overflow: hidden; cursor: pointer; transition: border-color .2s, transform .25s var(--ease-out); }
.thumbs button:hover { transform: translateY(-2px); border-color: var(--mist-2); }
.thumbs button.on { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,92,168,.14); }
.thumbs .slot img { padding: 6px; }
.thumbs .empty { cursor: default; opacity: .5; }
.thumbs .empty .ph { font-size: 12px; }

.pdp .eyebrow { margin-bottom: 12px; }
.pdp h1 { font-size: clamp(26px, 2.8vw, 38px); line-height: 1; }
.pdp .sku-line { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 14px; }
.variant-name { margin-top: 10px; font-weight: 600; color: var(--body); }
.price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 12px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--hair); }
.price-row .p { font-weight: 800; font-size: clamp(34px, 3.4vw, 44px); line-height: 1; letter-spacing: -.02em; color: var(--navy); font-variant-numeric: tabular-nums; }
.price-row .g { font-size: 14px; color: var(--muted); }
.stock-row { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; padding: 7px 14px 7px 12px; border-radius: 4px; background: var(--ok-bg); color: var(--ok); font-weight: 700; font-size: 13px; }
.stock-row i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; animation: awPulseGreen 2s infinite; }
.stock-row.out { background: var(--paper); color: var(--muted); }
.stock-row.out i { animation: none; }
@keyframes awPulseGreen { 0% { box-shadow: 0 0 0 0 rgba(21,135,90,.45); } 70% { box-shadow: 0 0 0 8px rgba(21,135,90,0); } 100% { box-shadow: 0 0 0 0 rgba(21,135,90,0); } }
.blurb { margin: 22px 0 0; font-size: 16px; line-height: 1.7; color: var(--body); }
.blurb.desc > :first-child { margin-top: 0; }
.blurb.desc p { margin: 0 0 12px; }
.blurb.desc h2, .blurb.desc h3, .blurb.desc h4 { font-family: var(--font-body); font-style: normal; text-transform: none; font-weight: 700; font-size: 15px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--navy); margin: 22px 0 8px; }
.blurb.desc ul { margin: 0 0 14px; padding: 0; list-style: none; }
.blurb.desc li { position: relative; padding: 7px 0 7px 22px; border-bottom: 1px solid var(--hair); }
.blurb.desc li::before { content: ''; position: absolute; left: 2px; top: 16px; width: 8px; height: 2px; background: var(--bright); }
.blurb.desc strong { color: var(--navy); }
.variants { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.vgroup .k { display: block; margin-bottom: 10px; font-weight: 700; font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--navy); }
.opts { display: flex; flex-wrap: wrap; gap: 8px; }
.opt {
  position: relative; min-height: 44px; padding: 0 16px; border: 1.5px solid var(--line); border-radius: 4px; background: #fff; cursor: pointer;
  font-weight: 600; font-size: 14px; color: var(--navy); transition: border-color .2s, background-color .2s, color .2s, transform .2s var(--ease);
}
.opt:hover { border-color: var(--navy); }
.opt:active { transform: scale(.96); }
.opt.on { border-color: var(--blue); background: var(--mist); color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
.opt.out { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(123,136,152,.6); }
.opt:disabled { opacity: .45; cursor: not-allowed; }
.qty-add { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.qty { display: flex; align-items: stretch; height: 52px; border: 1.5px solid var(--line); border-radius: 4px; overflow: hidden; flex: 0 0 auto; background: #fff; }
.qty button { width: 48px; border: 0; background: none; color: var(--navy); cursor: pointer; font-size: 20px; transition: background-color .15s; }
.qty button:hover { background: var(--paper); }
.qty .n { display: grid; place-items: center; min-width: 52px; font-weight: 800; font-size: 17px; color: var(--navy); font-variant-numeric: tabular-nums; }
.qty .n.tick { animation: awFlip .3s var(--ease-out); }
.qty-add .btn { min-height: 52px; }
#add.added { background: var(--ok); box-shadow: 0 10px 22px -12px rgba(21,135,90,.9); }
.deliver-note { margin-top: 14px; font-size: 14px; color: var(--muted); }
.perks { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 22px; }
.perk { display: flex; flex-direction: column; gap: 6px; padding: 14px; border-radius: 4px; background: var(--paper); font-size: 13px; line-height: 1.35; color: var(--body); }
.perk svg { color: var(--blue); }
.perk b { color: var(--navy); font-size: 13.5px; }
@media (max-width: 560px) { .perks { grid-template-columns: 1fr; } .perk { flex-direction: row; align-items: center; gap: 12px; } }
.specs { margin-top: 26px; border-top: 1px solid var(--hair); }
.specs > div { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--hair); font-size: 14px; }
.specs .k { font-weight: 700; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); }
.specs .v { font-family: var(--font-mono); font-size: 13px; color: var(--navy); text-align: right; }

/* Sticky buy bar once the main add button scrolls away. */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-top: 1px solid var(--hair); box-shadow: 0 -12px 30px -20px rgba(7,23,41,.35);
  transform: translateY(110%); transition: transform .45s var(--ease-out);
}
.buybar.show { transform: none; }
.buybar .wrap { display: flex; align-items: center; gap: 16px; padding-top: 12px; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
.buybar .th { position: relative; flex: 0 0 48px; height: 48px; border-radius: 4px; border: 1px solid var(--hair); overflow: hidden; }
.buybar .th .slot img { padding: 3px; }
.buybar .nm { flex: 1; min-width: 0; }
.buybar .nm b { display: block; color: var(--navy); font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.buybar .nm span { font-weight: 800; color: var(--navy); font-variant-numeric: tabular-nums; }
.buybar .btn { min-height: 46px; }
.qty.qty-sm { height: 46px; }
.qty.qty-sm button { width: 40px; }
.qty.qty-sm .n { min-width: 38px; font-size: 16px; }
/* Keep the end of the page clear of the bar. */
body.has-buybar { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
@media (max-width: 760px) {
  .buybar .wrap { gap: 10px; padding-top: 10px; padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
  .buybar .th { display: none; }
  .buybar .nm b { font-size: 13px; }
  .buybar .nm span { font-size: 16px; }
  .buybar .btn { flex: 0 0 auto; padding: 0 16px; }
}
@media (max-width: 380px) { .buybar .nm b { display: none; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; background: rgba(7,23,41,.94); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility 0s linear .3s; }
.lightbox.open { opacity: 1; visibility: visible; transition-delay: 0s; }
.lb-frame { margin: 0; max-width: min(92vw, 1200px); max-height: 86vh; }
.lb-frame img { max-width: 100%; max-height: 86vh; object-fit: contain; border-radius: 4px; background: #fff; transform: scale(.94); transition: transform .45s var(--ease-out); }
.lightbox.open .lb-frame img { transform: none; }
.lb-close, .lb-nav { position: absolute; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: #fff; font-size: 26px; cursor: pointer; transition: background-color .2s, color .2s, transform .2s; }
.lb-close:hover, .lb-nav:hover { background: #fff; color: var(--navy); }
.lb-close { top: 20px; right: 20px; }
.lb-nav.prev { left: 20px; top: 50%; margin-top: -25px; } .lb-nav.next { right: 20px; top: 50%; margin-top: -25px; }
.lb-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,.75); }

/* ------------------------------------------------------------------ forms & panels */

label { display: block; margin-bottom: 7px; font-weight: 700; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--navy); }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
input[type=number], input[type=text], input[type=email], input[type=tel], input[type=search], select, textarea {
  width: 100%; min-height: 48px; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 4px; background: #fff;
  font-family: var(--font-body); font-size: 16px; color: var(--text); outline: none;
  transition: border-color .2s var(--ease), box-shadow .25s var(--ease), background-color .2s;
}
input:hover, select:hover, textarea:hover { border-color: #C4CEDA; }
input:focus, select:focus, textarea:focus { border-color: var(--bright); box-shadow: 0 0 0 4px rgba(47,134,232,.14); }
input[readonly] { background: var(--paper); color: var(--muted); }
textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
select {
  -webkit-appearance: none; appearance: none; cursor: pointer; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%230B2545' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
/* Checkout address search: one field, suggestions below, then the parts. */
.combo { position: relative; }
.combo-icon { position: absolute; left: 14px; top: 15px; color: var(--muted); pointer-events: none; }
.combo input { padding-left: 42px; padding-right: 42px; }
.combo-busy { position: absolute; right: 14px; top: 15px; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--line); border-top-color: var(--bright); opacity: 0; transition: opacity .15s; animation: awSpin .7s linear infinite; }
.combo.busy .combo-busy { opacity: 1; }
@keyframes awSpin { to { transform: rotate(360deg); } }
.combo-pop { position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 6px); background: #fff; border: 1px solid var(--hair); border-radius: var(--r-l); box-shadow: var(--shadow-3); overflow: hidden; animation: awDrop .18s var(--ease-out); }
.combo-list { list-style: none; margin: 0; padding: 6px; max-height: 320px; overflow-y: auto; }
.combo-list li[role=option] { display: flex; flex-direction: column; gap: 1px; padding: 10px 12px; border-radius: var(--r); cursor: pointer; }
.combo-list li[role=option] strong { font-weight: 700; color: var(--navy); font-size: 15px; }
.combo-list li[role=option] strong mark { background: none; color: var(--blue); }
.combo-list li[role=option] span { font-size: 13px; color: var(--muted); }
.combo-list li[aria-selected=true], .combo-list li[role=option]:hover { background: var(--mist); }
.combo-msg { padding: 12px; font-size: 14px; color: var(--muted); }
.combo-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px; border-top: 1px solid var(--hair); background: var(--paper); }
.combo-foot img { flex: 0 0 auto; }
.combo-foot .link-quiet { font-size: 13px; }
.addr-hint { margin-top: 8px; }
.addr-back { margin: -4px 0 16px; }
.opt-tag { margin-left: 6px; font-weight: 600; letter-spacing: .6px; color: var(--muted); font-size: 10.5px; }
.addr-fields.addr-in > * { animation: awFadeUp .45s var(--ease-out) both; }
.addr-fields.addr-in > *:nth-child(2) { animation-delay: .04s; }
.addr-fields.addr-in > *:nth-child(3) { animation-delay: .08s; }
.addr-fields.addr-in > *:nth-child(4) { animation-delay: .12s; }
input.prefilled, select.prefilled { animation: awPrefill 1.4s var(--ease-out); }
@keyframes awPrefill { 0%, 30% { background-color: var(--mist); border-color: var(--bright); } 100% { background-color: #fff; } }
@media (max-width: 620px) { .combo-foot { flex-direction: column; align-items: flex-start; } }

.panel { position: relative; background: #fff; border: 1px solid var(--hair); border-radius: var(--r-l); padding: clamp(20px, 2.6vw, 30px); box-shadow: var(--shadow-1); }
.panel + .panel { margin-top: 18px; }
.panel h3 { margin: 0 0 18px; font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-style: italic; font-weight: 700; font-size: 20px; text-transform: uppercase; color: var(--navy); letter-spacing: 0; }
.cols { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 26px; align-items: start; }
@media (max-width: 980px) { .cols { grid-template-columns: minmax(0, 1fr); } }
.blurb-lg { font-size: 16px; line-height: 1.65; }

.msg { font-size: 14.5px; line-height: 1.5; }
.msg:empty { display: none !important; } /* beats .msg.error etc., declared below */
.msg.error, .msg.warn, .msg.info, .msg.ok { display: flex; gap: 10px; align-items: flex-start; padding: 13px 16px; border-radius: 4px; margin: 0 0 16px; animation: awDrop .3s var(--ease-out); }
.msg.error { background: var(--err-bg); color: var(--err); --c: var(--err); }
.msg.warn { background: var(--warn-bg); color: var(--warn); --c: var(--warn); }
.msg.info { background: var(--mist); color: var(--navy); --c: var(--blue); }
.msg.ok { background: var(--ok-bg); color: var(--ok); --c: var(--ok); }
.msg.error::before, .msg.warn::before, .msg.info::before, .msg.ok::before { content: '!'; flex: 0 0 20px; height: 20px; margin-top: 1px; display: grid; place-items: center; border-radius: 50%; background: var(--c); color: #fff; font-weight: 800; font-size: 12px; }
.msg.ok::before { content: '✓'; }
.msg.info::before { content: 'i'; font-style: italic; font-family: Georgia, serif; }
.spinner { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 14.5px; }
.spinner::before { content: ''; width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid var(--mist-2); border-top-color: var(--blue); animation: awSpin .8s linear infinite; }
@keyframes awSpin { to { transform: rotate(360deg); } }

/* Contact / warehouse specs */
.panel .specs { margin-top: 18px; }
.panel .specs .v { font-family: var(--font-body); font-weight: 600; font-size: 14.5px; }

/* ------------------------------------------------------------------ checkout */

/* Two columns: the steps, and a navy summary card that stays in view. */
.co { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: clamp(24px, 3vw, 40px); align-items: start; }
.co-main { min-width: 0; }
.co-main > .msg { margin-bottom: 18px; }

/* Each step is a section headed like the rest of the site: mono index,
   display title, a rule. Finished steps fold to a recap; later ones wait. */
.co-sec { padding: clamp(22px, 2.6vw, 30px); background: #fff; border: 1px solid var(--hair); border-radius: var(--r-l); box-shadow: var(--shadow-1); transition: box-shadow .3s var(--ease), border-color .3s; }
.co-sec + .co-sec { margin-top: 14px; }
.co-sec.is-open { border-color: var(--mist-2); box-shadow: var(--shadow-2); }
.co-sec.is-next { background: var(--paper); box-shadow: none; }
.co-sec-head { display: flex; align-items: center; gap: 14px; }
.co-sec-head .idx {
  flex: 0 0 auto; display: grid; place-items: center; width: 34px; height: 34px; border-radius: var(--r);
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500; color: var(--blue); background: var(--mist);
  transition: background-color .3s, color .3s;
}
.co-sec-head .t {
  margin: 0; font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-style: italic; font-weight: 700;
  text-transform: uppercase; font-size: clamp(20px, 1.9vw, 24px); line-height: 1; color: var(--navy);
}
.co-sec-head .rule { flex: 1; height: 1px; background: var(--hair); }
.co-sec.is-open .co-sec-head .idx { background: var(--blue); color: #fff; }
.co-sec.is-done .co-sec-head .idx { background: var(--ok-bg); color: var(--ok); font-size: 0; }
.co-sec.is-done .co-sec-head .idx::before { content: '✓'; font-family: var(--font-body); font-size: 15px; font-weight: 800; }
.co-sec.is-next .co-sec-head .idx { background: #fff; color: var(--muted); border: 1px solid var(--line); }
.co-sec.is-next .co-sec-head .t { color: var(--muted); }
.co-edit { border: 0; background: none; padding: 4px 0; font: inherit; font-weight: 700; font-size: 12.5px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--blue); cursor: pointer; }
.co-edit:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 4px; }
.co-body { margin-top: 22px; }
.co-body:not([hidden]) { animation: awFadeUp .4s var(--ease-out) both; }
.co-recap { display: grid; gap: 6px; margin: 14px 0 0 48px; font-size: 15px; }
.co-recap > div { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 12px; }
.co-recap .k { font-weight: 700; font-size: 11.5px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); padding-top: 2px; }
.co-recap .v { color: var(--text); overflow-wrap: anywhere; }
.co-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 8px; }
.co-actions .link-quiet, .co-body > .link-quiet { margin: 0; }
.co-body > .link-quiet { display: block; margin: 0 auto; }
/* Short pairs (names, suburb/state, postcode/country) stay side by side on phones. */
@media (max-width: 620px) { .co .field-row.pair { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* Express wallets above the form, then "or enter your details". */
.co-express-lbl { margin: 0 0 10px; font-weight: 700; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--navy); }
.co-or { display: flex; align-items: center; gap: 14px; margin: 22px 0 20px; font-size: 13px; color: var(--muted); }
.co-or::before, .co-or::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.express-empty { margin: 0; font-size: 14px; color: var(--muted); }

/* Delivery options. */
#rates { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
label.opt {
  display: flex; align-items: center; gap: 14px; min-height: 64px; padding: 14px 18px; margin: 0; border: 1.5px solid var(--line); border-radius: var(--r); cursor: pointer;
  text-transform: none; letter-spacing: 0; font-size: 16px; color: var(--text); text-decoration: none; background: #fff;
  transition: border-color .2s, background-color .2s, box-shadow .2s, transform .2s var(--ease);
}
label.opt:hover { border-color: var(--navy); }
label.opt:active { transform: scale(.99); }
label.opt.on { border-color: var(--blue); background: var(--mist); box-shadow: inset 0 0 0 1px var(--blue); }
label.opt input { width: 20px; height: 20px; min-height: 0; margin: 0; accent-color: var(--blue); flex: 0 0 auto; }
label.opt .l { flex: 1; display: flex; flex-direction: column; gap: 3px; }
label.opt .l strong { color: var(--navy); font-weight: 700; font-size: 16px; }
label.opt .l small { color: var(--muted); font-weight: 500; font-size: 13.5px; }
label.opt .amt { font-weight: 800; font-size: 17px; color: var(--navy); font-variant-numeric: tabular-nums; }
label.opt.on .amt { color: var(--blue); }

/* Payment. */
#payment-element { min-height: 120px; margin-bottom: 20px; }
.co-pay { min-height: 56px; font-size: 15px; }
.co-pay .lbl { gap: 10px; }
.co-secure { margin: 12px 0 16px; font-size: 13.5px; color: var(--muted); text-align: center; }

.summary-lines { display: flex; flex-direction: column; }
.sl { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--hair); font-size: 14.5px; }
.sl .n { color: var(--navy); font-weight: 600; }
.sl .n small { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 11.5px; color: var(--muted); }
.sl .a { font-weight: 700; color: var(--navy); font-variant-numeric: tabular-nums; white-space: nowrap; }
.totals { display: flex; flex-direction: column; gap: 8px; padding-top: 14px; font-size: 14.5px; }
.totals > div { display: flex; justify-content: space-between; gap: 14px; }
.totals .grand { margin-top: 8px; padding-top: 14px; border-top: 2px solid var(--navy); align-items: baseline; }
.totals .grand .k { font-weight: 800; font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--navy); }
.totals .grand .v { font-weight: 800; font-size: 28px; color: var(--navy); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.totals .muted { color: var(--muted); font-size: 13px; }
/* Totals shown from the quote while the server confirms them. */
/* The summary card: navy, like the site's dark panels. */
.co-side { position: sticky; top: calc(var(--header-h) + 18px); border-radius: var(--r-l); background: var(--navy); color: #D6E2F0; box-shadow: var(--shadow-3); overflow: hidden; }
.co-side::before { content: ''; display: block; height: 4px; background: linear-gradient(90deg, var(--bright), var(--sky)); }
.co-side-body { padding: clamp(22px, 2.4vw, 28px); }
.co-side-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.co-side-edit { border: 0; background: none; padding: 4px 0; cursor: pointer; font: inherit; font-weight: 700; font-size: 12.5px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--sky); }
.co-side-edit:hover, .co-side-edit[aria-pressed=true] { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.sl-edit { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.qty.qty-xs { height: 32px; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.qty.qty-xs button { width: 30px; font-size: 16px; color: #fff; }
.qty.qty-xs button:hover { background: rgba(255,255,255,.1); }
.qty.qty-xs button:disabled { opacity: .35; cursor: not-allowed; }
.qty.qty-xs .n { min-width: 34px; font-size: 14px; color: #fff; }
.sl-rm { border: 0; background: none; padding: 2px 0; cursor: pointer; font: inherit; font-size: 13px; color: rgba(214,226,240,.7); text-decoration: underline; text-underline-offset: 3px; }
.sl-rm:hover { color: #fff; }
.co-side-title { margin: 0; font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-style: italic; font-weight: 700; text-transform: uppercase; font-size: 22px; line-height: 1; color: #fff; }
.co-side .sl { display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 15px; }
.co-side .sl .th { position: relative; width: 56px; height: 56px; border-radius: var(--r); background: #fff; }
.co-side .sl .th .slot { border-radius: var(--r); }
.co-side .sl .th .slot img { padding: 5px; }
.co-side .sl .th b {
  position: absolute; top: -7px; right: -7px; min-width: 22px; height: 22px; padding: 0 6px; display: grid; place-items: center;
  border-radius: 999px; background: var(--bright); color: #fff; font-family: var(--font-mono); font-weight: 500; font-size: 11px; box-shadow: 0 0 0 2px var(--navy);
}
.co-side .sl .n { color: #fff; font-weight: 600; line-height: 1.3; }
.co-side .sl .n small { margin-top: 3px; color: rgba(214,226,240,.55); }
.co-side .sl .a { color: #fff; }
.co-side .totals { padding-top: 16px; font-size: 15px; }
.co-side .totals > div > span:last-child { color: #fff; font-variant-numeric: tabular-nums; }
.co-side .totals .grand { border-top-color: rgba(255,255,255,.18); border-top-width: 1px; }
.co-side .totals .grand .k { color: var(--sky); }
.co-side .totals .grand .v { font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-style: italic; font-weight: 700; font-size: 40px; letter-spacing: 0; color: #fff; }
.co-side .totals .muted, .co-side .totals .muted span:last-child { color: rgba(214,226,240,.6); }
.totals { transition: opacity .2s var(--ease); }
.totals.pending { opacity: .6; }
.co-assure { list-style: none; margin: 22px 0 0; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,.1); display: grid; gap: 9px; font-size: 13.5px; color: rgba(214,226,240,.78); }
.co-assure li { display: flex; align-items: center; gap: 10px; }
.co-assure li::before { content: ''; flex: 0 0 auto; width: 16px; height: 16px; border-radius: 50%; background: rgba(134,189,246,.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5.2 4.1 7.3 8 3' fill='none' stroke='%2386BDF6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat; }

/* Phones and tablets: summary becomes a bar at the top that opens. */
.co-side-toggle { display: none; }
@media (max-width: 980px) {
  .co { grid-template-columns: minmax(0, 1fr); }
  .co-side { position: static; order: -1; }
  .co-side-toggle {
    display: flex; align-items: center; gap: 12px; width: 100%; padding: 16px 20px; border: 0; background: none; cursor: pointer; text-align: left;
    font: inherit; font-weight: 700; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--sky);
  }
  .co-side-toggle .v { margin-left: auto; font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-style: italic; font-size: 24px; letter-spacing: 0; text-transform: none; color: #fff; }
  .co-side-toggle .chev { width: 9px; height: 9px; border-right: 2px solid var(--sky); border-bottom: 2px solid var(--sky); transform: rotate(45deg) translateY(-3px); transition: transform .3s var(--ease-out); }
  .co-side.open .co-side-toggle .chev { transform: rotate(-135deg) translateY(-2px); }
  .co-side-body { display: none; padding-top: 0; }
  .co-side.open .co-side-body { display: block; animation: awFadeUp .35s var(--ease-out) both; }
  .co-side-title { visibility: hidden; }
}
@media (max-width: 560px) {
  .co-recap { margin-left: 0; }
  .co-recap > div { grid-template-columns: 1fr; gap: 1px; }
  .co-actions .btn { width: 100%; }
}

/* ------------------------------------------------------------------ success */

.confirm { max-width: 760px; margin: 0 auto; }
.hero-panel {
  position: relative; overflow: hidden; padding: clamp(32px, 5vw, 56px); border-radius: var(--r-l); color: #fff; text-align: center;
  background: radial-gradient(90% 120% at 50% 0%, #1A4A84, var(--navy) 55%, var(--ink));
}
.hero-panel .check { width: 84px; height: 84px; margin: 0 auto 22px; }
.hero-panel .check circle { stroke-dasharray: 240; stroke-dashoffset: 240; animation: awDraw .8s var(--ease-out) .1s forwards; }
.hero-panel .check path { stroke-dasharray: 60; stroke-dashoffset: 60; animation: awDraw .5s var(--ease-out) .7s forwards; }
@keyframes awDraw { to { stroke-dashoffset: 0; } }
.hero-panel .ord { font-family: var(--font-mono); font-size: 13px; color: var(--sky); }
.hero-panel .big { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 .25em; margin-top: 10px; font-family: var(--font-display); font-variation-settings: 'wght' 800, 'wdth' 25, 'ital' 7; font-style: italic; text-transform: uppercase; font-size: clamp(36px, 5.6vw, 68px); line-height: .92; }
.hero-panel .big span { display: inline-block; animation: awLineUp .8s var(--ease-out) both; }
.hero-panel .big span:nth-child(2) { animation-delay: .1s; } .hero-panel .big span:nth-child(3) { animation-delay: .2s; }
.hero-panel .big .lit { color: var(--sky); }
.hero-panel p { max-width: 48ch; margin: 18px auto 0; color: rgba(214,226,240,.85); }
.hero-panel .drops { position: absolute; inset: 0; pointer-events: none; }
.hero-panel .drops i { position: absolute; top: 40%; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--sky); opacity: 0; animation: awBurst 1.4s var(--ease-out) .6s forwards; }
@keyframes awBurst { 0% { opacity: 1; transform: translate(0,0) scale(1); } 100% { opacity: 0; transform: translate(var(--x), var(--y)) scale(.4); } }

/* Order confirmation: light header, order facts, the order itself. */
.confirm { max-width: 760px; margin: 0 auto; }
.confirm #detail { display: grid; gap: clamp(24px, 3.4vw, 36px); }
.conf-head { text-align: left; }
.conf-head .check { display: block; width: 56px; height: 56px; margin: 0 0 18px; }
.conf-head .check circle { stroke-dasharray: 240; stroke-dashoffset: 240; animation: awDraw .8s var(--ease-out) .1s forwards; }
.conf-head .check path { stroke-dasharray: 60; stroke-dashoffset: 60; animation: awDraw .5s var(--ease-out) .6s forwards; }
.conf-head .eyebrow { color: var(--ok); }
.conf-head .page-title { font-size: clamp(38px, 5vw, 60px); }
.conf-lede { margin: 14px 0 0; max-width: 60ch; font-size: 17px; line-height: 1.6; color: var(--body); }
.conf-lede strong { color: var(--text); overflow-wrap: anywhere; }
.conf-meta { margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); background: var(--mist); border-radius: var(--r-l); }
.conf-meta div { padding: 14px 18px; border-right: 1px solid var(--mist-2); }
.conf-meta div:last-child { border-right: 0; text-align: right; }
.conf-meta dt { font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); }
.conf-meta dd { margin: 2px 0 0; font-weight: 700; font-size: 17px; color: var(--navy); font-variant-numeric: tabular-nums; white-space: nowrap; }
.conf-meta .conf-wait { font-weight: 600; font-size: 14px; color: var(--muted); }
@media (max-width: 480px) { .conf-meta div { padding: 12px; } .conf-meta dd { font-size: 15px; } }
.conf-order { border: 1px solid var(--line); border-radius: var(--r-l); padding: clamp(18px, 3vw, 26px); }
.conf-order h2 { font-size: 24px; margin-bottom: 6px; }
.conf-line { display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--hair); }
.conf-line .th { position: relative; width: 56px; height: 56px; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; }
.conf-line .th img { width: 100%; height: 100%; object-fit: contain; }
.conf-line .nm b { display: block; color: var(--text); font-weight: 700; line-height: 1.35; }
.conf-line .nm small { display: block; margin-top: 2px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.conf-line .am { font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; white-space: nowrap; }
.conf-totals { margin: 12px 0 0; display: grid; gap: 6px; }
.conf-totals div { display: flex; justify-content: space-between; gap: 16px; color: var(--body); font-variant-numeric: tabular-nums; }
.conf-totals dd { margin: 0; }
.conf-totals .grand { margin-top: 6px; padding-top: 12px; border-top: 2px solid var(--navy); color: var(--navy); font-weight: 700; font-size: 18px; }
.conf-totals .gst { font-size: 13px; color: var(--muted); }
.conf-help { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.conf-help p { margin: 0; max-width: 52ch; color: var(--body); }

/* ------------------------------------------------------------------ drawer & mobile menu */

.backdrop, .mmenu-backdrop {
  position: fixed; inset: 0; z-index: 90; border: 0; padding: 0; cursor: pointer;
  background: rgba(7,23,41,.42); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); animation: awFade .3s var(--ease) both;
}
@keyframes awFade { from { opacity: 0; } to { opacity: 1; } }
.drawer {
  position: fixed; top: 8px; right: 8px; bottom: 8px; z-index: 100; width: min(460px, calc(100vw - 16px));
  display: flex; flex-direction: column; background: #fff; border-radius: var(--r-l); box-shadow: var(--shadow-3); overflow: hidden;
  animation: awDrawer .5s var(--ease-out) both;
}
@keyframes awDrawer { from { transform: translateX(calc(100% + 16px)); } to { transform: none; } }
.dhead { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px 18px; border-bottom: 1px solid var(--hair); }
.dhead .t { font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-style: italic; text-transform: uppercase; font-size: 24px; line-height: 1; color: var(--navy); }
.dhead .t em { font-style: italic; color: var(--bright); }
.close {
  display: inline-flex; align-items: center; gap: 6px; height: 38px; padding: 0 14px; border-radius: 4px; border: 1px solid var(--line); background: #fff; cursor: pointer;
  font-weight: 700; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--navy); transition: background-color .2s, color .2s, border-color .2s;
}
.close:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.dlines { flex: 1; overflow-y: auto; }
.dline { display: flex; gap: 14px; padding: 16px 22px; border-bottom: 1px solid var(--hair); animation: awRowIn .4s var(--ease-out) both; }
.dline:nth-child(2) { animation-delay: .04s; } .dline:nth-child(3) { animation-delay: .08s; } .dline:nth-child(n+4) { animation-delay: .12s; }
.dline .thumb { position: relative; display: block; flex: 0 0 76px; height: 76px; border: 1px solid var(--hair); border-radius: 4px; overflow: hidden; background: #fff; transition: border-color .2s, transform .25s var(--ease-out); }
.dline .thumb:hover { border-color: var(--bright); transform: scale(1.04); }
.dline .thumb .slot img { padding: 5px; }
.dline .thumb .ph { font-size: 7px; }
.dline .info { flex: 1; min-width: 0; }
.dline .nm { font-weight: 700; font-size: 14.5px; line-height: 1.3; color: var(--navy); }
.dline .cat { margin: 3px 0 10px; font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.dline .amt { flex: 0 0 auto; font-weight: 800; font-size: 15px; color: var(--navy); font-variant-numeric: tabular-nums; }
.stepper { display: inline-flex; align-items: center; height: 34px; border: 1.5px solid var(--line); border-radius: 4px; overflow: hidden; }
.stepper button { width: 32px; height: 100%; border: 0; background: none; color: var(--navy); cursor: pointer; font-size: 16px; transition: background-color .15s; }
.stepper button:hover:not(:disabled) { background: var(--paper); }
.stepper button:disabled { color: var(--line); cursor: not-allowed; }
.stepper .q { min-width: 30px; text-align: center; font-weight: 800; font-size: 14px; color: var(--navy); font-variant-numeric: tabular-nums; }
.remove { border: 0; background: none; padding: 4px; cursor: pointer; font-weight: 600; font-size: 12.5px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line); }
.remove:hover { color: var(--err); text-decoration-color: currentColor; }
.dfoot { padding: 18px 22px 20px; border-top: 1px solid var(--hair); background: var(--paper); }
.ship-msg { font-weight: 600; font-size: 13.5px; color: var(--navy); margin-bottom: 8px; }
.ship-msg.on { color: var(--ok); }
.ship-track { height: 6px; border-radius: 6px; background: var(--hair); overflow: hidden; margin-bottom: 16px; }
.ship-track i { display: block; height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--blue), var(--bright)); transition: width .6s var(--ease-out); }
.sub-row { display: flex; align-items: baseline; justify-content: space-between; }
.sub-row .k { font-weight: 800; font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--navy); }
.sub-row .v { font-weight: 800; font-size: 26px; color: var(--navy); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.gst-note { margin: 2px 0 16px; font-size: 13px; color: var(--muted); }
.drawer-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; height: 100%; padding: 40px 24px; text-align: center; }
.drawer-empty::before {
  content: ''; width: 92px; height: 92px; border-radius: 50%; background: var(--mist) center / 42px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B5CA8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 4h2l2.4 11.2a1 1 0 0 0 1 .8h9.6a1 1 0 0 0 1-.8L21 8H7'/%3E%3Ccircle cx='9.5' cy='20' r='1.4'/%3E%3Ccircle cx='17.5' cy='20' r='1.4'/%3E%3C/svg%3E");
  animation: awFloat 3s var(--ease) infinite;
}
@keyframes awFloat { 50% { transform: translateY(-6px); } }

.mmenu {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 100; width: min(360px, 88vw); display: flex; flex-direction: column;
  background: #fff; box-shadow: var(--shadow-3); overflow-y: auto; animation: awSlideIn .45s var(--ease-out) both;
}
@keyframes awSlideIn { from { transform: translateX(-100%); } to { transform: none; } }
.mmenu .mhead { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--hair); }
.mmenu .mhead .logo { height: 40px; }
.mmenu nav { display: flex; flex-direction: column; padding: 8px 10px 14px; }
.mmenu nav > a, .mmenu nav summary {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 12px; border-radius: 4px; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 15px; color: var(--navy); animation: awRowIn .4s var(--ease-out) both;
}
.mmenu nav > *:nth-child(2) { animation-delay: .03s; } .mmenu nav > *:nth-child(3) { animation-delay: .06s; } .mmenu nav > *:nth-child(n+4) { animation-delay: .09s; }
.mmenu nav summary { animation: none; }
.mmenu nav details { animation: awRowIn .4s var(--ease-out) .06s both; }
.mmenu nav summary::-webkit-details-marker { display: none; }
.mmenu nav > a:hover, .mmenu nav summary:hover { background: var(--paper); }
.mmenu nav > a.active { color: var(--blue); background: var(--mist); }
.mmenu nav summary::after { content: ''; width: 7px; height: 7px; margin-right: 4px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .3s var(--ease-out); }
.mmenu nav details[open] summary::after { transform: rotate(-135deg); }
.mmenu nav > a .soon { margin-left: auto; padding: 3px 7px 2px; border-radius: 4px; background: var(--mist); color: var(--blue); font-size: 9.5px; letter-spacing: 1px; text-transform: uppercase; }
.mmenu nav .sub { display: flex; flex-direction: column; margin: 0 0 6px 14px; padding-left: 10px; border-left: 2px solid var(--hair); animation: awDrop .3s var(--ease-out); }
.mmenu nav .sub a { padding: 9px 10px; border-radius: 4px; font-weight: 500; font-size: 14.5px; color: var(--body); }
.mmenu nav .sub a:hover { background: var(--paper); color: var(--navy); }
.mmenu nav .sub a.all { font-weight: 700; color: var(--blue); }
.mmenu .mfoot { margin-top: auto; padding: 18px 22px 24px; background: var(--paper); font-size: 14px; color: var(--body); line-height: 1.6; }
.mmenu .mfoot .tel { display: inline-flex; margin-bottom: 8px; font-weight: 800; font-size: 20px; color: var(--navy); }

/* ------------------------------------------------------------------ footer */

footer.site { position: relative; overflow: hidden; background: var(--ink); color: rgba(214,226,240,.72); isolation: isolate; }
.foot-cta { border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-cta .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px 40px; padding-top: clamp(40px, 5vw, 64px); padding-bottom: clamp(40px, 5vw, 64px); }
.foot-cta h2 { color: #fff; font-size: clamp(26px, 2.8vw, 40px); line-height: .95; max-width: 18ch; }
.foot-cta h2 em { color: var(--sky); font-style: italic; }
.foot-cta .acts { display: flex; flex-wrap: wrap; gap: 12px; }
footer.site .cols-f { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; max-width: var(--maxw); margin: 0 auto; padding: clamp(40px, 5vw, 60px) var(--gutter) 40px; }
@media (max-width: 900px) { footer.site .cols-f { grid-template-columns: 1fr 1fr; } footer.site .about { grid-column: 1 / -1; } }
@media (max-width: 520px) { footer.site .cols-f { grid-template-columns: 1fr; } }
footer.site .about .logo { height: 50px; margin-bottom: 16px; }
footer.site .about p { max-width: 34ch; margin: 0; font-size: 15px; }
footer.site .h { margin-bottom: 14px; font-weight: 700; font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--sky); }
footer.site .links { display: flex; flex-direction: column; gap: 9px; }
footer.site .links a { position: relative; width: fit-content; font-size: 15px; color: rgba(226,236,248,.84); transition: color .2s, transform .25s var(--ease-out); }
footer.site .links a:hover { color: #fff; transform: translateX(4px); }
footer.site .warehouse { font-size: 15px; line-height: 1.7; color: rgba(226,236,248,.84); }
footer.site .warehouse a { color: #fff; font-weight: 700; }
footer.site .warehouse .open-dot { margin-top: 10px; font-size: 13px; font-weight: 600; color: #fff; }
footer.site .legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; max-width: var(--maxw); margin: 0 auto; padding: 18px var(--gutter) 26px; position: relative; }
footer.site .legal::before { content: ''; position: absolute; top: 0; left: var(--gutter); right: var(--gutter); height: 1px; background: rgba(255,255,255,.08); }
footer.site .legal span, footer.site .legal a { font-size: 12.5px; letter-spacing: .6px; color: rgba(214,226,240,.5); }
footer.site .legal a:hover { color: #fff; }
footer.site .legal .lk { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.wordmark {
  display: block; margin: 0 auto -0.2em; padding: 0 var(--gutter); max-width: var(--maxw); text-align: center; pointer-events: none; user-select: none;
  font-family: var(--font-display); font-variation-settings: 'wght' 900, 'wdth' 25, 'ital' 7; font-style: italic; text-transform: uppercase;
  font-size: clamp(80px, 19vw, 300px); line-height: .8; color: transparent; -webkit-text-stroke: 1px rgba(134,189,246,.16);
  background: linear-gradient(90deg, rgba(134,189,246,.0) 0%, rgba(134,189,246,.14) 50%, rgba(134,189,246,0) 100%); -webkit-background-clip: text; background-clip: text;
  background-size: 200% 100%; animation: awSheen 9s linear infinite;
}
@keyframes awSheen { from { background-position: 150% 0; } to { background-position: -50% 0; } }
footer.site .stripe { height: 5px; background: linear-gradient(90deg, var(--blue), var(--bright), var(--sky)); }

/* Back to top, with the scroll position as a ring. */
.totop {
  position: fixed; right: 18px; bottom: 18px; z-index: 50; width: 50px; height: 50px; border: 0; border-radius: 50%; padding: 0; cursor: pointer;
  background: #fff; color: var(--navy); box-shadow: var(--shadow-2); display: grid; place-items: center;
  opacity: 0; transform: translateY(14px) scale(.9); pointer-events: none; transition: opacity .3s var(--ease), transform .4s var(--ease-out), background-color .2s, color .2s;
}
.totop.show { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { background: var(--navy); color: #fff; }
.totop svg.ring { position: absolute; inset: 0; transform: rotate(-90deg); }
.totop svg.ring circle { fill: none; stroke: var(--bright); stroke-width: 3; stroke-linecap: round; }
body.has-buybar .totop { bottom: 88px; }

/* ------------------------------------------------------------------ reveal on scroll */

.reveal { opacity: 0; transform: translateY(22px); filter: blur(3px); transition: opacity .8s var(--ease-out), transform .9s var(--ease-out), filter .8s var(--ease-out); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.pcard.reveal.in { transition-property: opacity, transform, filter, box-shadow, border-color; transition-duration: .8s, .35s, .8s, .35s, .25s; }
.pcard.reveal.in:hover { transition-delay: 0s; }

/* ------------------------------------------------------------------ resources & tool cards */

.tools-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr)); gap: 20px; }
.tools-list .tool-card { border: 1px solid var(--hair); }
.tools-list .tool-card:hover { box-shadow: var(--shadow-2); }
.explainer { max-width: 70ch; }
.explainer h3 { margin: 0 0 12px; font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-style: italic; font-weight: 700; font-size: 21px; text-transform: uppercase; color: var(--navy); }
.explainer p { margin: 0 0 14px; font-size: 16px; line-height: 1.7; color: var(--body); }
.explainer p:last-child { margin-bottom: 0; }
.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } }
.info-card { padding: clamp(22px, 3vw, 32px); border-radius: var(--r-l); background: var(--paper); }
.info-card h3 { font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-style: italic; text-transform: uppercase; font-size: 21px; margin-bottom: 12px; }
.info-card p { margin: 0 0 12px; font-size: 15.5px; line-height: 1.65; }
.info-card a.more { display: inline-flex; gap: 8px; margin-top: 6px; font-weight: 700; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; }
.info-card a.more span { transition: transform .3s var(--ease-out); }
.info-card a.more:hover span { transform: translateX(5px); }

/* ------------------------------------------------------------------ calculators */

#flow-unit:empty { min-height: 44px; min-width: 120px; }
#psi-unit:empty { min-height: 44px; min-width: 96px; }
#target-mode:empty { min-height: 44px; }
#tips:empty { min-height: 96px; }
#angles:empty { min-height: 52px; }
#setup:empty { min-height: 44px; min-width: 220px; }
#result:empty { min-height: 420px; }
#chart:empty { display: block; min-height: 260px; }
.hint { font-size: 13px; line-height: 1.5; color: var(--muted); margin: 7px 0 0; }
.hint:empty { display: none; }
.seg { display: inline-flex; gap: 2px; padding: 3px; background: var(--paper); border: 1.5px solid var(--line); border-radius: 4px; }
.seg.block { display: flex; width: 100%; margin-bottom: 10px; }
.seg.block button { flex: 1; }
.seg button { border: 0; background: transparent; color: var(--body); font-weight: 700; font-size: 12.5px; padding: 9px 12px; border-radius: 3px; white-space: nowrap; cursor: pointer; transition: background-color .2s, color .2s, box-shadow .2s; }
.seg button[aria-pressed="true"] { background: #fff; color: var(--navy); box-shadow: 0 1px 3px rgba(7,23,41,.14); }
.seg button:hover[aria-pressed="false"] { color: var(--blue); }
.flow-row { display: flex; gap: 8px; align-items: stretch; }
.flow-row input { flex: 1 1 auto; min-width: 0; }
.flow-row .seg { flex: 0 0 auto; }
.setup-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: stretch; }
.tip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 8px; }
.angle-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.tip-grid button {
  display: flex; align-items: center; gap: 9px; text-align: left; cursor: pointer; min-height: 46px; padding: 10px 12px;
  background: #fff; border: 1.5px solid var(--line); color: var(--navy); border-radius: 4px; font-weight: 700; font-size: 13.5px;
  transition: border-color .2s, background-color .2s, transform .2s var(--ease);
}
.tip-grid button:hover { border-color: var(--navy); transform: translateY(-1px); }
.tip-grid button[aria-pressed="true"] { border-color: var(--blue); background: var(--mist); color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
.swatch { width: 16px; height: 16px; flex: 0 0 16px; border-radius: 50%; border: 1px solid rgba(0,0,0,.15); display: inline-block; }

.result { position: sticky; top: calc(var(--header-h) + 18px); overflow: hidden; border-radius: var(--r-l); background: #fff; border: 1px solid var(--hair); box-shadow: var(--shadow-2); }
.result-hero { position: relative; overflow: hidden; padding: 24px; color: #fff; background: radial-gradient(120% 140% at 100% 0%, #1A4A84, var(--navy) 55%, var(--ink)); }
.result-label { margin: 0; font-weight: 700; font-size: 11.5px; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(214,226,240,.7); }
.result-big { margin: 8px 0 0; font-family: var(--font-display); font-variation-settings: 'wght' 800, 'wdth' 25, 'ital' 7; font-style: italic; font-size: 56px; line-height: .95; letter-spacing: -.01em; animation: awFlip .45s var(--ease-out); }
.result-big span { font-size: 22px; color: var(--sky); margin-left: 6px; }
.result-sub { margin: 10px 0 0; font-size: 14px; line-height: 1.5; color: rgba(214,226,240,.85); }
.result-reason { margin: 10px 0 0; font-size: 15px; color: rgba(226,236,248,.9); }
.readout { margin: 0; }
.readout > div { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 13px 24px; border-bottom: 1px solid var(--hair); }
.readout > div:last-child { border-bottom: 0; }
.readout dt { font-size: 14.5px; color: var(--text); font-weight: 600; }
.readout dt small { display: block; font-size: 12.5px; font-weight: 500; color: var(--muted); }
.readout dd { margin: 0; font-family: var(--font-mono); font-weight: 500; font-size: 14.5px; white-space: nowrap; color: var(--navy); }
.result-notes { border-top: 1px solid var(--hair); background: var(--paper); padding: 14px 24px; }
.result-notes .note { margin: 0 0 8px; font-size: 13px; line-height: 1.5; color: var(--body); }
.result-notes .note:last-child { margin-bottom: 0; }
.result-notes .note.warn { color: var(--warn); font-weight: 600; }
.result-notes .note.warn::before { content: "\26A0  "; }
.result-links { list-style: none; margin: 0; padding: 14px 24px; border-top: 1px solid var(--hair); display: grid; gap: 8px; }
.result-links .stock {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; border-radius: 4px; background: var(--mist); color: var(--blue);
  font-weight: 700; font-size: 12.5px; letter-spacing: 1.2px; text-transform: uppercase; transition: background-color .2s, transform .25s var(--ease-out);
}
.result-links .stock::before { display: none; }
.result-links .stock:hover { background: var(--mist-2); transform: translateX(3px); }
.result-links .nostock { display: block; font-size: 13px; color: var(--muted); padding: 2px 0; }
@media (max-width: 980px) { .result { position: static; } .result-big { font-size: 46px; } }

.chart-section { margin-top: 56px; }
.chart-section h3, .explainer h3 { margin: 0 0 8px; font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-weight: 700; font-style: italic; font-size: 22px; color: var(--navy); text-transform: uppercase; line-height: 1; }
.chart-section > .hint { font-size: 14.5px; margin: 0 0 16px; }
.chart-section .panel + .hint { margin-top: 12px; font-size: 13px; }
.chart-section .panel { padding: 0; margin-top: 0; overflow: hidden; }
.chart-scroll { overflow-x: auto; }
table.chart { border-collapse: collapse; width: 100%; min-width: 580px; font-size: 14px; }
table.chart th, table.chart td { padding: 10px 14px; text-align: right; }
table.chart thead th { position: sticky; top: 0; background: var(--paper); font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line); }
table.chart thead th small { display: block; font-size: 10.5px; letter-spacing: 0; text-transform: none; font-weight: 500; font-family: var(--font-mono); }
table.chart th:first-child { text-align: left; }
table.chart tbody th { font-weight: 700; text-align: left; color: var(--navy); font-family: var(--font-mono); font-size: 13.5px; }
table.chart tbody th .swatch { margin-right: 8px; vertical-align: -3px; }
table.chart tbody tr { border-bottom: 1px solid var(--hair); cursor: pointer; transition: background-color .15s; }
table.chart tbody tr:last-child { border-bottom: 0; }
table.chart tbody tr:hover { background: var(--paper); }
table.chart tbody tr.active { background: var(--mist); }
table.chart tbody tr.pick { box-shadow: inset 4px 0 0 var(--blue); }
table.chart td { font-family: var(--font-mono); font-size: 13px; color: var(--body); font-variant-numeric: tabular-nums; }
table.chart .lit { background: rgba(47,134,232,.07); color: var(--text); }
table.chart tbody tr.active .read { font-weight: 700; color: #fff; background: var(--blue); border-radius: 6px; }
table.chart tbody th .dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--bright); margin-left: 8px; vertical-align: 1px; }
table.chart tbody th em { display: inline-block; margin-left: 8px; font-style: normal; font-family: var(--font-body); font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase; color: #fff; background: var(--blue); border-radius: 4px; padding: 3px 7px 2px; vertical-align: 1px; }

/* ------------------------------------------------------------------ policy pages */

.policy-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 56px; align-items: start; }
.policy-layout > * { min-width: 0; }
@media (max-width: 900px) { .policy-layout { grid-template-columns: minmax(0, 1fr); gap: 20px; } }
.policy { max-width: 76ch; font-size: 16px; line-height: 1.75; color: var(--body); overflow-wrap: break-word; }
.policy a { overflow-wrap: anywhere; }
.policy .meta { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin: 0 0 28px; }
.policy h2 { margin: 44px 0 12px; font-size: 22px; line-height: 1.05; scroll-margin-top: calc(var(--header-h) + 24px); }
.policy h2:first-of-type { margin-top: 0; }
.policy h3 { margin: 24px 0 8px; font-size: 16px; }
.policy p { margin: 0 0 14px; }
.policy ul, .policy ol { margin: 0 0 16px; padding-left: 22px; }
.policy li { margin-bottom: 8px; }
.policy li::marker { color: var(--blue); font-weight: 700; }
.policy a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--mist-2); }
.policy a:hover { text-decoration-color: currentColor; }
.policy strong { color: var(--navy); }
.policy .box { background: var(--mist); border-left: 4px solid var(--blue); border-radius: 0 var(--r) var(--r) 0; padding: 18px 20px; margin: 18px 0 24px; }
.policy .box p:last-child { margin-bottom: 0; }
.policy .toc { display: none; }
.policy dl.contact { margin: 0 0 16px; display: grid; grid-template-columns: max-content minmax(0, 1fr); gap: 8px 20px; }
@media (max-width: 520px) { .policy dl.contact { grid-template-columns: minmax(0, 1fr); gap: 2px; } .policy dl.contact dd { margin-bottom: 10px; } }
.policy dl.contact dt { font-weight: 700; color: var(--navy); }
.policy dl.contact dd { margin: 0; }
.policy-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.policy-links .btn { text-decoration: none; }
.toc-side { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; gap: 2px; max-height: calc(100vh - var(--header-h) - 48px); overflow-y: auto; border-left: 2px solid var(--hair); }
.toc-side .h { margin: 0 0 8px 16px; font-weight: 700; font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); }
.toc-side a { position: relative; margin-left: -2px; padding: 6px 12px 6px 16px; border-left: 2px solid transparent; font-size: 14px; font-weight: 500; color: var(--body); transition: color .2s, border-color .2s, background-color .2s; }
.toc-side a:hover { color: var(--navy); background: var(--paper); }
.toc-side a.on { color: var(--blue); border-left-color: var(--blue); font-weight: 700; }
@media (max-width: 900px) { .toc-side { position: static; flex-direction: row; flex-wrap: wrap; gap: 6px; border-left: 0; max-height: none; } .toc-side .h { width: 100%; margin-left: 0; } .toc-side a { margin: 0; padding: 6px 12px; border: 1px solid var(--line); border-radius: 4px; font-size: 13px; } .toc-side a.on { border-color: var(--blue); } }

/* ------------------------------------------------------------------ hire */

.soon-hero { position: relative; overflow: hidden; border-radius: var(--r-l); padding: clamp(32px, 6vw, 80px); color: #D6E2F0; background: radial-gradient(90% 120% at 100% 0%, #1A4A84, var(--navy) 55%, var(--ink)); isolation: isolate; }
.soon-hero::after { content: 'HIRE'; position: absolute; right: -0.05em; bottom: -0.18em; z-index: -1; font-family: var(--font-display); font-variation-settings: 'wght' 900, 'wdth' 25, 'ital' 7; font-style: italic; font-size: clamp(140px, 26vw, 360px); line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(134,189,246,.2); }
.soon-hero h1, .soon-hero h2 { color: #fff; font-size: clamp(30px, 3.6vw, 52px); line-height: .95; max-width: 14ch; }
.soon-hero p { max-width: 56ch; font-size: 17px; line-height: 1.65; color: rgba(214,226,240,.85); }
.soon-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; }
.soon-list li { padding: 8px 14px; border-radius: 4px; border: 1px solid rgba(255,255,255,.2); color: #fff; font-weight: 600; font-size: 14px; }

/* ------------------------------------------------------------------ motion preferences */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

.specs:empty { display: none; }
.thumbs:empty { display: none; }
.grid5.list .pcard .flag { top: 8px; left: 8px; padding: 4px 8px 3px; font-size: 9px; letter-spacing: 1px; }

/* Mid-width header (small laptops, tablets landscape): keep everything on one line. */
@media (max-width: 1320px) and (min-width: 901px) {
  header.site .bar { gap: 14px; }
  nav.site { gap: 16px; }
  nav.site > a, .nav-dd > a { font-size: 12px; letter-spacing: 1px; }
  .hsearch { min-width: 150px; }
  .cart-btn { padding: 0 14px; }
  .cart-btn > span { display: none; }
}
/* With Custom builds in the nav, the logo does the Home link's job at these widths. */
@media (max-width: 1440px) and (min-width: 901px) {
  nav.site > a[href="/"] { display: none; }
  nav.site { gap: 16px; }
}
@media (max-width: 980px) and (min-width: 901px) {
  header.site .bar { gap: 10px; }
  nav.site > a, .nav-dd > a { letter-spacing: .4px; }
}
@media (max-width: 1060px) and (min-width: 901px) {
  nav.site { gap: 12px; }
  nav.site > a[href="/hire"] { display: none; }
}
@media (max-width: 1100px) and (min-width: 901px) {
  .hsearch { display: none; }
  .icon-btn.m-search { display: flex; margin-left: auto; order: 1; }
  .cart-btn { order: 2; }
  .msearch:not([hidden]) { display: block; }
}

/* ------------------------------------------------------------------ home: shop by category (tiles) */

.cats-in > * { animation: awFadeUp .55s var(--ease-out) both; }
.cgrid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.cgrid:empty { min-height: 436px; }
.cg { display: flex; flex-direction: column; border: 1px solid var(--hair); border-radius: var(--r-l); overflow: hidden; background: #fff; transition: box-shadow .35s var(--ease-out), transform .35s var(--ease-out), border-color .25s; }
.cg:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--mist-2); }
.cg-img { position: relative; display: block; aspect-ratio: 16 / 11; background: var(--paper); overflow: hidden; }
.cg-img img { width: 100%; height: 100%; object-fit: contain; padding: 18px; mix-blend-mode: multiply; transition: transform .6s var(--ease-out); }
.cg:hover .cg-img img { transform: scale(1.06); }
.cg-img .ph { display: grid; place-items: center; height: 100%; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; color: var(--muted); }
.cg-body { display: flex; flex-direction: column; gap: 6px; padding: 18px 20px 18px; flex: 1; }
.cg-nm { font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-style: italic; text-transform: uppercase; font-size: 21px; line-height: 1; color: var(--navy); }
.cg-nm:hover { color: var(--blue); }
.cg ul { list-style: none; margin: 8px 0 4px; padding: 0; display: flex; flex-direction: column; gap: 1px; }
.cg li a { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 14px; color: var(--body); transition: color .15s, transform .25s var(--ease-out); }
.cg li a::before { content: ''; width: 8px; height: 2px; background: var(--line); transition: width .25s var(--ease-out), background-color .2s; }
.cg li a:hover { color: var(--blue); transform: translateX(3px); }
.cg li a:hover::before { width: 14px; background: var(--bright); }
.cg-more { margin-top: auto; padding-top: 8px; display: inline-flex; gap: 8px; font-weight: 700; font-size: 12.5px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--blue); }
.cg-more span { transition: transform .3s var(--ease-out); }
.cg:hover .cg-more span { transform: translateX(5px); }
@media (max-width: 1100px) { .cgrid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 760px) { .cgrid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; } .cg-body { padding: 14px; } .cg ul { display: none; } .cg-nm { font-size: 18px; } }

/* ------------------------------------------------------------------ corners & the 9-degree slant */

/* Round on purpose: count bubbles, switches, progress tracks. */
.cart-btn b, .icon-btn .badge, .toggle .sw, .ship-track, .ship-track i, .rail-track, .rail-track i { border-radius: 999px; }

/* The brand slant, as on the original cart button: the control itself leans
   9 degrees with small rounded corners, and its label (wrapped in .lbl by
   fx.js) leans back so the text stays upright. */
.btn, .cart-btn, .chip-link { transform: skewX(-9deg); border-radius: var(--r); }
.btn .lbl, .cart-btn .lbl, .chip-link .lbl { display: inline-flex; align-items: center; justify-content: center; gap: inherit; transform: skewX(9deg); }
.btn-block .lbl { width: 100%; }
.btn:active { transform: skewX(-9deg) scale(.97); }
.cart-btn:hover { transform: skewX(-9deg) scale(1.04); }
.cart-btn:active { transform: skewX(-9deg) scale(.96); }
.chip-link:hover { transform: skewX(-9deg) translateY(-2px); }
.btn-outline { border-width: 2px; }


/* ------------------------------------------------------------------ custom builds */

.build-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 32px); }
.build-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) { .build-grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .build-grid, .build-grid.three { grid-template-columns: minmax(0, 1fr); } }
.build-card { display: grid; gap: 6px; align-content: start; color: var(--body); }
.build-card .shot { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--r-l); background: var(--ink); margin-bottom: 8px; }
.build-card .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.build-card:hover .shot img { transform: scale(1.04); }
.build-card .nm { font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-weight: 700; font-style: italic; text-transform: uppercase; color: var(--navy); font-size: clamp(22px, 2.2vw, 28px); line-height: 1; }
.build-grid.three .build-card .nm { font-size: 20px; }
.build-card:hover .nm { color: var(--blue); }
.build-card .sub { font-size: 15px; line-height: 1.55; max-width: 60ch; }
.build-card .len, .yt .len { position: absolute; right: 10px; bottom: 10px; background: rgba(7,23,41,.82); color: #fff; padding: 4px 8px; border-radius: var(--r-s); font-size: 11.5px; }

.build-top { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr); gap: clamp(20px, 3vw, 40px); align-items: start; }
@media (max-width: 900px) { .build-top { grid-template-columns: minmax(0, 1fr); } }
.yt { position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-l); overflow: hidden; background: var(--ink); box-shadow: var(--shadow-2); }
.yt button { all: unset; cursor: pointer; position: absolute; inset: 0; display: block; }
.yt button:focus-visible { outline: 3px solid var(--bright); outline-offset: -3px; }
.yt img { width: 100%; height: 100%; object-fit: cover; }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt .play { position: absolute; left: 50%; top: 50%; width: 78px; height: 78px; margin: -39px 0 0 -39px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: #fff; box-shadow: 0 14px 30px -10px rgba(7,23,41,.7); transition: transform .25s var(--spring), background .2s; }
.yt button:hover .play { transform: scale(1.08); background: var(--navy); }

.build-spec { border: 1px solid var(--line); border-top: 4px solid var(--navy); border-radius: var(--r); background: var(--white); padding: 18px 20px 20px; display: grid; gap: 14px; }
.build-spec .h, .build-parts .h { font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); }
.build-spec dl { margin: 0; display: grid; }
.build-spec dl div { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--hair); }
.build-spec dt { font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); padding-top: 2px; }
.build-spec dd { margin: 0; font-family: var(--font-mono); font-size: 13px; color: var(--text); line-height: 1.5; }
.build-spec .btn { justify-self: start; }
.build-spec .call { font-weight: 700; font-size: 14px; color: var(--navy); }

.build-body { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr); gap: clamp(20px, 3vw, 40px); padding-top: clamp(36px, 4vw, 56px); }
@media (max-width: 900px) { .build-body { grid-template-columns: minmax(0, 1fr); } }
.build-secs { display: grid; gap: 26px; }
.build-sec h2 { font-size: clamp(22px, 2.2vw, 28px); margin-bottom: 8px; }
.build-sec p { margin: 0; max-width: 64ch; font-size: 16.5px; line-height: 1.7; }
.build-parts { align-self: start; background: var(--paper); border-radius: var(--r); padding: 18px 20px; }
.build-parts p { margin: 8px 0 14px; font-size: 15px; }
.build-parts .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.part-chip { display: inline-flex; padding: 7px 12px; border: 1.5px solid var(--line); border-radius: var(--r); background: var(--white); font-weight: 600; font-size: 14px; color: var(--navy); transition: border-color .2s, color .2s; }
.part-chip:hover { border-color: var(--blue); color: var(--blue); }

.build-more { padding-top: clamp(48px, 6vw, 88px); }
.build-more .h2row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.build-more .h2row h2 { font-size: clamp(26px, 3vw, 38px); }
.build-more .h2row a { font-weight: 700; font-size: 14px; }

.build-cta { margin-top: clamp(40px, 5vw, 72px); display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: 24px 40px; align-items: center; background: var(--mist); border-radius: var(--r-l); padding: clamp(22px, 3vw, 36px); }
@media (max-width: 820px) { .build-cta { grid-template-columns: minmax(0, 1fr); } }
.build-cta h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 8px; }
.build-cta p { margin: 0; max-width: 62ch; }
.build-cta .acts { display: flex; flex-wrap: wrap; gap: 12px; }

/* ------------------------------------------------------------------ category intro, questions, server-rendered lists */

.cat-intro { max-width: 78ch; margin-top: 14px; font-size: 16px; line-height: 1.7; color: var(--body); }
.cat-intro p { margin: 0 0 10px; }
.cat-intro p:last-child { margin-bottom: 0; }

.faq { margin-top: clamp(40px, 5vw, 72px); max-width: 880px; }
.faq h2 { font-size: clamp(24px, 2.6vw, 34px); margin-bottom: 14px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 2px; font-weight: 700; font-size: 16.5px; color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--font-mono); font-size: 20px; color: var(--blue); transition: transform .2s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 2px 18px; max-width: 72ch; line-height: 1.7; }

/* Written by the server for crawlers; the page script replaces it within moments. */
.ssr-list { grid-column: 1 / -1; list-style: none; margin: 0; padding: 0; columns: 2 280px; column-gap: 32px; }
.ssr-list li { break-inside: avoid; display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px solid var(--hair); font-size: 14.5px; }
.ssr-list li span { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.pdp .ssr-list { columns: 1; margin-top: 18px; }

/* ------------------------------------------------------------------ guides (mix ratios, Perth) */

.guide-body { display: grid; gap: clamp(36px, 4vw, 56px); }
.guide-body > * { min-width: 0; }
.answer { max-width: 78ch; border-left: 4px solid var(--blue); background: var(--mist); border-radius: 0 var(--r) var(--r) 0; padding: 16px 20px; }
.answer p { margin: 0; font-size: 17px; line-height: 1.65; color: var(--text); }
.mix-calc { max-width: 880px; }
.mix-calc h2, .guide-sec h2, .perth-card h2, .perth-points h2, .chart-section h2.h3like {
  font-size: clamp(22px, 2.4vw, 30px); margin: 0 0 10px;
}
.chart-section h2.h3like { font-size: 22px; line-height: 1; }
.mix-out { margin: 12px 0 0; font-size: 18px; color: var(--text); }
.mix-out strong { color: var(--blue); font-family: var(--font-mono); }
.guide-sec p { max-width: 72ch; line-height: 1.7; }
.guide-sec .panel { margin-top: 14px; padding: 0; overflow: hidden; }
.guide-sec .hint { font-size: 13.5px; color: var(--muted); margin-top: 10px; }
table.chart.static tbody tr { cursor: default; }
table.chart.static td b { color: var(--navy); }
.plain-list { margin: 8px 0 0; padding-left: 20px; display: grid; gap: 8px; max-width: 72ch; line-height: 1.6; }
.guide .related .chips, .guide-sec .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

.perth-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: clamp(20px, 3vw, 40px); align-items: start; }
@media (max-width: 860px) { .perth-grid { grid-template-columns: minmax(0, 1fr); } }
.perth-card .kv { margin: 0 0 18px; display: grid; }
.perth-card .kv div { display: grid; grid-template-columns: 90px minmax(0, 1fr); gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--hair); }
.perth-card dt { font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); padding-top: 2px; }
.perth-card dd { margin: 0; color: var(--text); line-height: 1.55; }
.perth-card .acts { display: flex; flex-wrap: wrap; gap: 10px; }
.stock-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; margin-top: 14px; }
.stock-grid a { display: grid; gap: 4px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); color: var(--body); transition: border-color .2s; }
.stock-grid a:hover { border-color: var(--blue); }
.stock-grid b { color: var(--navy); font-size: 16px; }
.stock-grid span { font-size: 14px; line-height: 1.5; }

/* Contact form */
.contact-form .hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-form .turnstile { margin: 4px 0 16px; min-height: 65px; }
.contact-form .turnstile:empty { min-height: 0; margin: 0; }
.contact-form .form-note { margin: 14px 0 0; font-size: 13.5px; color: var(--muted); }
.contact-form .form-note a { color: inherit; text-decoration: underline; }

/* Coming soon: out of stock with a purchase order on its way in. A navy band
   across the foot of the product photo, and a panel on the product page. */
.soon-band {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; pointer-events: none;
  display: flex; align-items: center; gap: 10px; padding: 7px 12px;
  background: var(--navy); color: #fff;
  font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-style: italic; font-weight: 700;
  font-size: 15px; line-height: 1; letter-spacing: .06em; text-transform: uppercase;
}
.soon-band i, .soon-panel > i {
  flex: 0 0 auto; width: 28px; height: 12px; border-radius: 2px;
  background: repeating-linear-gradient(-45deg, var(--bright) 0 5px, var(--navy-2) 5px 10px);
}
.stage .soon-band { font-size: 19px; padding: 10px 16px; }
.stage .soon-band i { width: 36px; height: 14px; }
.pcard .lowstock.soon { color: var(--blue); }
.stock-row.soon { background: var(--mist); color: var(--blue); }
.stock-row.soon i { animation: none; }
.soon-panel {
  display: flex; gap: 14px; align-items: flex-start; margin-top: 22px; padding: 16px 18px;
  background: var(--navy); color: rgba(255,255,255,.85); border-radius: var(--r-l); font-size: 14.5px; line-height: 1.5;
}
.soon-panel > i { width: 34px; height: 14px; margin-top: 5px; }
.soon-panel strong {
  display: block; margin-bottom: 4px; color: #fff;
  font-family: var(--font-display); font-variation-settings: 'wght' 760, 'wdth' 25, 'ital' 7; font-style: italic;
  font-size: 22px; line-height: 1; letter-spacing: .02em; text-transform: uppercase;
}
.stage:has(.soon-band) .counter { bottom: 52px; }
/* Server-rendered links in the shop grid: there for crawlers, hidden from view
   while the placeholder cards stand in for the real grid. */
#grid .ssr-links { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
