/* ==========================================================================
   The Watch Quarter — main stylesheet (v2)
   Direction: the balance of BQ Watches (Titillium Web display, teal-green
   #028565 accent, trust-led) and Watchfinder (white, monochrome #111,
   hairline borders, flat editorial restraint). Light, sharp, modern.
   ========================================================================== */

:root {
  --ink: #111111;
  --ink-2: #16181c;
  --body: #33373d;
  --muted: #6c757d;
  --faint: #999;
  --line: #e5e5e5;
  --line-strong: #d4d4d4;
  --surface: #f6f6f4;
  --surface-2: #efefec;
  --white: #ffffff;

  --green: #028565;
  --green-dark: #026e54;
  --green-deep: #1a7a5e;
  --green-tint: #e6f2ee;
  --green-band-1: #0d3529;   /* deep band gradient start */
  --green-band-2: #0a2820;   /* deep band gradient end */
  --green-ink: #0c1f19;      /* footer green-black */
  --green-bright: #4cc9a6;   /* accents on dark green */
  --green-pale: #a8c5bb;     /* body text on dark green */

  --display: "Titillium Web", "Segoe UI", Arial, sans-serif;
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --radius: 10px;
  --radius-sm: 4px;
  --shadow-lift: 0 12px 32px rgba(17, 17, 17, .10), 0 2px 6px rgba(17, 17, 17, .05);
  --container: 1280px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.08; margin: 0 0 .45em; color: var(--ink); }
p { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--green); color: #fff; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display); font-size: .74rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--green);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--green); }

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-head { max-width: 660px; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -.01em; }
.section-head p { color: var(--muted); font-size: 1.02rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .82rem 1.9rem; border-radius: var(--radius-sm);
  font-family: var(--display); font-size: .88rem; font-weight: 700; letter-spacing: .05em;
  text-decoration: none; border: 1px solid transparent; line-height: 1.2;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); box-shadow: 0 6px 18px rgba(2, 133, 101, .28); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.on-dark .btn-outline { color: #fff; border-color: rgba(255,255,255,.7); }
.on-dark .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-block { width: 100%; }
.btn-ghost { background: transparent; color: var(--green); border-color: transparent; padding-inline: .4rem; }
.btn-ghost:hover { color: var(--green-dark); }

/* ---------- announcement / USP bar (BQ-style icon strip) ---------- */
.announce {
  background: var(--green-dark); color: #e6f4ee;
  font-family: var(--display); font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .5rem var(--gutter);
}
.announce-row {
  display: flex; justify-content: center; align-items: center;
  gap: clamp(1.1rem, 3.5vw, 2.6rem);
  overflow-x: auto; scrollbar-width: none;
}
.announce-row::-webkit-scrollbar { display: none; }
.usp { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }
.usp svg { width: 15px; height: 15px; flex: none; color: #7fd0b4; }
.usp-link { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 1px; }
.usp-link:hover { border-bottom-color: #fff; }
@media (max-width: 600px) { .announce { font-size: .6rem; } .announce-row { justify-content: flex-start; } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
/* logo left, nav truly centred, search on the right */
.header-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 1.4rem; height: 84px;
}

/* typographic wordmark, BQ-style: bold uppercase with interpunct separators
   and a letterspaced strapline underneath */
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-word { font-family: var(--display); line-height: 1; display: inline-block; }
.logo-word .l1 {
  display: inline-block; font-size: 1.5rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink); white-space: nowrap;
}
.logo-word .l1 i { font-style: normal; color: var(--green); padding-inline: .05em; }
.logo-word .l2 {
  /* letter-spacing is auto-fitted by JS so the strapline spans the wordmark
     exactly, flush both ends; the .5em is only the pre-JS fallback */
  display: block; font-size: .62rem; font-weight: 600; letter-spacing: .5em;
  text-transform: uppercase; color: var(--muted); margin-top: .38em; white-space: nowrap;
}
@media (max-width: 560px) {
  .logo-word .l1 { font-size: 1.25rem; }
  .logo-word .l2 { letter-spacing: .34em; }
  .header-inner { height: 76px; }
}

.main-nav { display: flex; gap: 1.8rem; align-self: stretch; align-items: stretch; justify-self: center; }
.nav-cta { padding: .5rem 1.15rem !important; font-size: .76rem !important; margin-left: .3rem; align-self: center; color: #fff !important; }
.nav-cta::after { display: none !important; }

/* header search */
.header-search { position: relative; justify-self: end; width: clamp(235px, 23vw, 310px); }
.hs-field { width: 100%; margin: 0; }
.hs-field input { width: 100%; font-size: .82rem; }
.header-search .suggest { left: auto; right: 0; width: 350px; max-width: 88vw; }
@media (max-width: 1120px) { .header-search { width: 215px; } }
@media (max-width: 920px) { .header-search { display: none; } }
.main-nav a {
  display: inline-flex; align-items: center;
  font-family: var(--display); font-size: .86rem; font-weight: 600; letter-spacing: .06em;
  text-decoration: none; color: var(--ink-2); position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav > a.active { color: var(--green); }
.main-nav > a.active::after { transform: scaleX(1); }
.mega-trigger.active { color: var(--green); }
.mega-trigger.active::after { transform: scaleX(1); }
.header-cta { flex: none; display: flex; gap: .6rem; }
.header-cta .btn { padding: .6rem 1.3rem; font-size: .8rem; }

.nav-toggle { display: none; background: none; border: 0; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ---------- mega menu (BQ-style full-width panel) ---------- */
/* the trigger fills the full header height so the hover zone is contiguous
   with the panel below — no dead gap for the pointer to fall through */
.nav-mega { display: flex; align-items: stretch; }
.mega-trigger {
  display: inline-flex; align-items: center; gap: .4rem; height: 100%;
  font-family: var(--display); font-size: .84rem; font-weight: 600; letter-spacing: .06em;
  text-decoration: none; color: var(--ink-2); position: relative;
}
.mega-trigger .caret { transition: rotate .25s ease; }
.nav-mega:hover .mega-trigger .caret, .nav-mega:focus-within .mega-trigger .caret { rotate: 180deg; }
.mega-trigger::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-mega:hover .mega-trigger::after, .nav-mega:focus-within .mega-trigger::after { transform: scaleX(1); }

.mega-panel {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(17, 17, 17, .12);
  opacity: 0; visibility: hidden; translate: 0 8px;
  /* the .12s delay before hiding forgives brief pointer excursions */
  transition: opacity .18s ease .12s, translate .18s ease .12s, visibility .18s .12s;
  pointer-events: none;
}
.nav-mega:hover .mega-panel, .nav-mega:focus-within .mega-panel, .nav-mega.open .mega-panel {
  opacity: 1; visibility: visible; translate: 0 0; pointer-events: auto;
  transition-delay: 0s;
}
.mega-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; padding-block: 2.2rem 2.4rem;
  max-height: calc(100vh - 140px); overflow-y: auto;
}
.mega-col { padding-inline: 2rem; border-left: 1px solid var(--line); }
.mega-col:first-child { border-left: 0; padding-left: 0; }
.mega-col h3 {
  font-family: var(--display); font-size: .8rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  margin: 0 0 .5rem; padding-bottom: .6rem; border-bottom: 1px solid var(--line);
}
.mega-col .mega-sub { margin-top: 1.4rem; }
.mega-col ul { list-style: none; margin: 0; padding: .4rem 0 0; display: grid; gap: 0; }
.mega-col li a {
  display: block; padding: .42rem 0;
  font-family: var(--display); font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: var(--body);
  transition: color .15s ease, padding-left .15s ease;
}
.mega-col li a:hover { color: var(--green); padding-left: .3rem; }
.mega-all {
  display: inline-block; margin-top: .9rem;
  font-family: var(--display); font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); text-decoration: none;
}
.mega-all:hover { color: var(--green-dark); text-decoration: underline; }

@media (max-width: 920px) {
  .mega-panel { display: none; }
  .mega-trigger .caret { display: none; }
  .nav-mega { display: block; }
  .nav-mega .mega-trigger { display: block; padding: .95rem var(--gutter); border-top: 1px solid var(--line); width: 100%; }
  .nav-mega .mega-trigger::after { display: none; }
}

@media (max-width: 920px) {
  /* centred logo, hamburger pinned to the right edge */
  .header-inner { display: flex; justify-content: center; position: relative; }
  .logo { justify-self: auto; }
  .nav-toggle {
    display: block;
    position: absolute; right: 0; top: 50%; translate: 0 -50%;
    padding: .6rem;
  }
  .header-cta { display: none; }

  /* the menu opens as a full-width sheet under the header */
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; width: auto;
    justify-self: auto; align-self: auto; margin: 0;
    display: flex; flex-direction: column; gap: 0; align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(17, 17, 17, .10);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 480px; }
  .main-nav a {
    display: flex; width: 100%;
    padding: 1rem var(--gutter); border-top: 1px solid var(--line);
    font-size: .95rem;
  }
  .main-nav a::after { display: none; }
  .nav-cta {
    width: auto !important; margin: .9rem var(--gutter) 1.1rem !important;
    justify-content: center; border-top: 0 !important;
    padding: .8rem 1.2rem !important; font-size: .84rem !important;
  }
}

/* ---------- hero: copy left, real stock photography right ---------- */
.hero { position: relative; background: var(--white); border-bottom: 1px solid var(--line); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(2.5rem, 6vw, 5rem);
}
.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  font-weight: 700; letter-spacing: -.018em; margin-bottom: .35em;
}
.hero-sub { font-size: clamp(.98rem, 1.4vw, 1.1rem); color: var(--muted); max-width: 520px; margin-bottom: 1.9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero-actions .btn { padding: .92rem 2rem; font-size: .92rem; }
/* spec bar: three linked proof points with icon roundels and dividers */
.hero-meta {
  list-style: none; margin: 2.2rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden;
}
.hero-meta li + li { border-left: 1px solid var(--line); }
.hero-meta a {
  display: flex; align-items: center; gap: .7rem;
  padding: .95rem 1rem; text-decoration: none; height: 100%;
  transition: background .2s ease;
}
.hero-meta a:hover { background: var(--green-tint); }
.hm-ico {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--green);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.hero-meta a:hover .hm-ico { background: var(--green); color: #fff; border-color: var(--green); }
.hm-ico svg { width: 19px; height: 19px; }
.hm-txt { display: grid; gap: .1rem; min-width: 0; }
.hm-txt b { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: var(--ink); line-height: 1; white-space: nowrap; }
.hm-txt span { font-size: .68rem; color: var(--muted); letter-spacing: .03em; line-height: 1.3; }
@media (max-width: 560px) {
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta li + li { border-left: 0; border-top: 1px solid var(--line); }
  .hero-meta a { padding: .8rem 1rem; }
}

/* ---------- the living dial ----------
   A watch face with a real sweeping second hand; the three featured
   watches sit like chronograph subdials at 12, 8 and 4. Sized against
   viewport height so it always fits above the fold. */
.hero-show {
  position: relative;
  aspect-ratio: 1;
  /* explicit width: all children are absolutely positioned, so the
     container has no intrinsic size to fall back on */
  width: min(100%, 64vh, 540px);
  margin-left: auto;
  margin-right: clamp(0px, 2vw, 2rem);
}
@media (max-height: 820px) and (min-width: 861px) {
  .hero-grid { padding-block: 1.8rem 2.2rem; }
}
/* ambient glow lifting the dial off the page */
.hero-show::before {
  content: ""; position: absolute; inset: -7%;
  border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(2, 133, 101, .10) 0%, rgba(2, 133, 101, .04) 55%, transparent 72%);
}
.dial-face {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(17, 17, 17, .014) 0deg 2deg, transparent 2deg 4deg),
    radial-gradient(circle at 36% 30%, #ffffff 0%, #f8f7f3 52%, #eceff0 100%);
  border: 1px solid var(--line);
  box-shadow:
    0 30px 70px rgba(17, 17, 17, .13),
    0 4px 14px rgba(17, 17, 17, .06),
    inset 0 0 0 8px #ffffff,
    inset 0 0 0 9px var(--line),
    inset 0 0 0 30px rgba(255, 255, 255, .65),
    inset 0 2px 18px rgba(17, 17, 17, .05);
}
.dial-svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* chronometer-style lollipop seconds hand; it sweeps OVER the cards,
   the way real chronograph hands cross their subdials */
.dial-hand {
  position: absolute; left: calc(50% - 1px); bottom: 50%; width: 2px; height: 47%;
  background: linear-gradient(to top, var(--green-dark), var(--green));
  border-radius: 2px;
  transform-origin: 50% 100%;
  animation: dialSweep 60s linear infinite;
  z-index: 3;
  filter: drop-shadow(0 2px 3px rgba(17, 17, 17, .28));
  pointer-events: none;
}
/* lollipop ring near the tip */
.dial-hand::before {
  content: ""; position: absolute; left: 50%; top: 5%; translate: -50% 0;
  width: 9px; height: 9px; border-radius: 50%;
  border: 2.5px solid var(--green); background: rgba(255, 255, 255, .35);
}
/* counterweight */
.dial-hand::after {
  content: ""; position: absolute; left: 50%; bottom: -13px; translate: -50% 0;
  width: 3px; height: 14px; border-radius: 2px;
  background: var(--green-dark);
}
@keyframes dialSweep { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* subdial cards at 12, 8 and 4 o'clock; the side cards sit at a slight
   tilt for life (rotate composes with the hover/tilt transform) */
.show-card.p12 { top: -3%; left: 50%; translate: -50% 0; width: 35%; z-index: 2; }
.show-card.p8  { bottom: -1%; left: -4%; width: 33%; z-index: 2; rotate: -2.5deg; }
.show-card.p4  { bottom: -1%; right: -4%; width: 33%; z-index: 2; rotate: 2.5deg; }
.show-card.p8:hover, .show-card.p4:hover { rotate: 0deg; }
.show-card { position: absolute; transition: rotate .3s ease; }

/* minute turnover animation */
.show-card { transition: transform .3s ease, opacity .3s ease, box-shadow .3s ease; }
.show-card.swap-out { transform: scale(.8); opacity: 0; }
.show-card.swap-in { animation: swapIn .5s cubic-bezier(.2, .7, .3, 1.18); }
@keyframes swapIn { from { transform: scale(.8); opacity: 0; } }
.show-card {
  text-decoration: none;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow-lift);
  display: flex; flex-direction: column;
  user-select: none; -webkit-user-drag: none;
}
.show-card:hover { transform: translateY(-4px) scale(1.015); box-shadow: 0 20px 48px rgba(17,17,17,.18); z-index: 5; }

.sc-shuffle {
  position: absolute; top: .55rem; right: .55rem; z-index: 3;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .94);
  color: var(--muted); display: grid; place-items: center;
  cursor: pointer; opacity: 0;
  transition: opacity .2s ease, color .2s ease, border-color .2s ease, rotate .35s ease;
}
.sc-shuffle svg { width: 15px; height: 15px; }
.show-card:hover .sc-shuffle, .sc-shuffle:focus-visible { opacity: 1; }
.sc-shuffle:hover { color: var(--green); border-color: var(--green); rotate: 180deg; }
@media (max-width: 860px), (pointer: coarse) { .sc-shuffle { opacity: 1; } }
.show-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: var(--surface); }
.sc-info { padding: .7rem .95rem .85rem; display: grid; gap: .1rem; margin-top: auto; }
.sc-brand { font-family: var(--display); font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--green); }
.sc-name { font-family: var(--display); font-size: .88rem; font-weight: 600; color: var(--ink); line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-price { font-size: .86rem; font-weight: 700; color: var(--ink); }
.show-card .sc-info { padding: .55rem .8rem .7rem; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  /* the dial showcase is desktop-only; mobile goes straight to content */
  .hero-show { display: none; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
}

/* ---------- shop-by-brand tiles (real stock imagery) ---------- */
.brand-shop { padding-block: clamp(3rem, 6vw, 5rem); }
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.8rem, 1.6vw, 1.2rem); }
@media (max-width: 980px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
.tile {
  display: flex; flex-direction: column; text-decoration: none;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.tile:hover { border-color: #9fccbc; box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.tile-media { aspect-ratio: 4 / 3; background: var(--surface); overflow: hidden; }
.tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.tile:hover .tile-media img { transform: scale(1.05); }
.tile-info {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  padding: .85rem 1.05rem .95rem;
}
.tile-name { font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--ink); }
.tile-count { font-size: .72rem; color: var(--muted); }
.tile-arrow { font-size: 1rem; color: var(--green); transition: translate .25s ease; }
.tile:hover .tile-arrow { translate: 4px 0; }

/* ---------- brand marquee ---------- */
.marquee { border-block: 1px solid var(--line); background: var(--white); overflow: hidden; }
.marquee-track {
  display: flex; gap: 4.5rem; width: max-content;
  padding-block: 1.05rem; animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span, .marquee-track a {
  font-family: var(--display); font-size: .95rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: #b9bcc0; white-space: nowrap;
  text-decoration: none; transition: color .2s ease;
}
.marquee-track a:hover { color: var(--green); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- trust strip ---------- */
.trust { background: #cde4da; border-bottom: 1px solid #cde4da; }
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.trust-item {
  background: var(--green-tint);
  padding: 1.45rem 1.5rem; display: flex; gap: .9rem; align-items: center;
}
.trust-item span { color: #5f7d72; }
@media (max-width: 920px) {
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 1.05rem 1.1rem; }
  .trust-item svg { width: 24px; height: 24px; }
  .trust-item b { font-size: .8rem; }
  .trust-item span { font-size: .7rem; }
}
.trust-item svg { flex: none; width: 30px; height: 30px; stroke: var(--green); }
.trust-item b { display: block; font-family: var(--display); font-size: .9rem; font-weight: 700; color: var(--ink); }
.trust-item span { font-size: .78rem; color: var(--muted); }

/* ---------- collection ---------- */
.collection-bar { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.bar-row { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; }
.bar-row .spacer { flex: 1; }

.field {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--white); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: .58rem .9rem; transition: border-color .2s;
}
.field:focus-within { border-color: var(--ink); }
.field svg { width: 15px; height: 15px; stroke: var(--faint); flex: none; }
.field input, .field select { border: 0; background: none; font: inherit; font-size: .9rem; color: var(--ink); outline: none; }
.field input { width: 190px; }
.field input::placeholder { color: var(--faint); }
.field select { cursor: pointer; padding-right: .15rem; font-weight: 500; }

.field .field-label { font-size: .82rem; color: var(--muted); font-weight: 500; }

.btn-refine { padding: .62rem 1.4rem; font-size: .84rem; gap: .5rem; }
.btn-refine svg { flex: none; }
.refine-count {
  display: inline-grid; place-items: center; min-width: 20px; height: 20px;
  padding-inline: .3rem; border-radius: 100px;
  background: #fff; color: var(--green); font-size: .7rem; font-weight: 700;
}

.active-filters { display: flex; flex-wrap: wrap; gap: .5rem; }
.active-filters:empty { display: none; }
.filter-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--display); font-size: .76rem; font-weight: 600; letter-spacing: .03em;
  padding: .34rem .5rem .34rem .85rem; border-radius: 100px;
  background: var(--green-tint); color: var(--green-dark);
  border: 1px solid #cfe6de; cursor: pointer; transition: background .15s;
}
.filter-pill:hover { background: #d9ece5; }
.filter-pill .x { font-size: 1rem; line-height: 1; font-weight: 400; color: var(--green-dark); }

/* ---------- refine drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(17, 17, 17, .45);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .25s ease;
}
.drawer-backdrop.show { opacity: 1; }
.refine-drawer {
  position: fixed; top: 0; bottom: 0; left: 0; z-index: 95;
  width: min(400px, 92vw);
  background: var(--white); box-shadow: 0 0 60px rgba(17,17,17,.25);
  display: flex; flex-direction: column;
  transform: translateX(-102%); transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.refine-drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.5rem; border-bottom: 1px solid #cde4da;
  background: var(--green-tint);
}
.drawer-head h2 { font-size: 1.25rem; font-weight: 700; margin: 0; }
.drawer-close {
  background: none; border: 0; font-size: 1.7rem; line-height: 1;
  color: var(--muted); padding: .2rem .4rem;
}
.drawer-close:hover { color: var(--ink); }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.5rem; display: grid; gap: 1.6rem; align-content: start; }
.drawer-field { display: grid; gap: .5rem; border: 0; margin: 0; padding: 0; }
.drawer-field > label, .drawer-field legend {
  font-family: var(--display); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); padding: 0;
}
.drawer-field select {
  width: 100%; font: inherit; font-size: .92rem; color: var(--ink);
  padding: .68rem .8rem; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--white); cursor: pointer;
}
.drawer-field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-tint); }
.drawer-field select:disabled { color: var(--faint); background: var(--surface); cursor: not-allowed; }

/* dual-handle price slider */
.range-wrap { position: relative; height: 28px; margin-top: .4rem; }
.range-track {
  position: absolute; top: 50%; left: 0; right: 0; height: 4px; translate: 0 -50%;
  background: var(--line); border-radius: 2px;
  /* filled section painted by JS via --lo/--hi percentages */
  background-image: linear-gradient(var(--green), var(--green));
  background-repeat: no-repeat;
  background-size: calc(var(--hi) - var(--lo)) 100%;
  background-position-x: var(--lo);
}
.range-wrap input[type="range"] {
  position: absolute; inset: 0; width: 100%; margin: 0;
  -webkit-appearance: none; appearance: none; background: none; pointer-events: none; height: 28px;
}
.range-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; pointer-events: auto;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--green);
  box-shadow: 0 1px 4px rgba(17,17,17,.2); cursor: grab;
}
.range-wrap input[type="range"]:active::-webkit-slider-thumb { cursor: grabbing; background: var(--green-tint); }
.range-wrap input[type="range"]::-moz-range-thumb {
  pointer-events: auto; width: 18px; height: 18px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--green);
  box-shadow: 0 1px 4px rgba(17,17,17,.2); cursor: grab;
}
.range-wrap input[type="range"]::-moz-range-track { background: none; }
.range-readout {
  display: flex; justify-content: space-between;
  font-family: var(--display); font-size: .92rem; font-weight: 700; color: var(--ink);
}

/* custom checkboxes */
.drawer-checks { gap: .7rem; }
.check {
  display: flex; align-items: center; gap: .65rem;
  font-size: .92rem; color: var(--ink-2); cursor: pointer; user-select: none;
}
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check-box {
  width: 20px; height: 20px; flex: none; border-radius: 5px;
  border: 1.5px solid var(--line-strong); background: var(--white);
  display: grid; place-items: center; transition: all .15s ease;
}
.check-box::after {
  content: ""; width: 10px; height: 6px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  rotate: -45deg; translate: 0 -1px; opacity: 0; transition: opacity .12s;
}
.check input:checked + .check-box { background: var(--green); border-color: var(--green); }
.check input:checked + .check-box::after { opacity: 1; }
.check input:focus-visible + .check-box { box-shadow: 0 0 0 3px var(--green-tint); }

.drawer-foot {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: .7rem;
  padding: 1.1rem 1.5rem; border-top: 1px solid var(--line);
}

.stock-count { font-size: .82rem; color: var(--muted); }
.stock-count b { color: var(--green); font-weight: 600; }

.grid {
  display: grid; gap: clamp(1rem, 2vw, 1.6rem);
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
}

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; display: flex; flex-direction: column;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.card:hover { border-color: #9fccbc; box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.card-media { position: relative; aspect-ratio: 1; background: var(--surface); overflow: hidden; }
.card-flag {
  position: absolute; top: .7rem; left: .7rem;
  font-family: var(--display); font-size: .6rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--ink); color: #fff;
  padding: .26rem .6rem; border-radius: 100px;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-badges { position: absolute; top: .75rem; left: .75rem; display: flex; gap: .4rem; flex-wrap: wrap; }
.badge {
  font-family: var(--display); font-size: .64rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  background: rgba(255, 255, 255, .92); color: var(--ink); backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  padding: .28rem .6rem; border-radius: 100px;
}
.badge.green { background: var(--green); color: #fff; border-color: var(--green); }
.card-body { padding: 1.05rem 1.15rem 1.2rem; display: flex; flex-direction: column; gap: .22rem; flex: 1; }
.card-brand { font-family: var(--display); font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--green); }
.card-name { font-family: var(--display); font-size: 1.08rem; font-weight: 600; color: var(--ink); line-height: 1.28; }
.card-specs { font-size: .76rem; color: var(--muted); }
.card-foot {
  margin-top: auto; padding-top: .75rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: .6rem; flex-wrap: wrap;
}
.card-price { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.card-price.poa { font-size: .85rem; font-weight: 600; color: var(--green); }
.card-ticks { display: inline-flex; gap: .75rem; }
.tick {
  display: inline-flex; align-items: center; gap: .32rem;
  font-family: var(--display); font-size: .68rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--ink-2);
}
.tick svg { width: 15px; height: 15px; flex: none; }
.tick.off { color: #b6b9bd; }

/* skeleton loaders */
.skeleton { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.skeleton .sk-img { aspect-ratio: 1; }
.skeleton .sk-line { height: 12px; border-radius: 3px; margin: 1rem 1.1rem; }
.skeleton .sk-line.short { width: 45%; }
.sk-shimmer {
  background: linear-gradient(100deg, #ececea 40%, #f7f7f5 50%, #ececea 60%);
  background-size: 200% 100%; animation: shimmer 1.3s infinite linear;
}
@keyframes shimmer { to { background-position: -200% 0; } }

.load-more-wrap { text-align: center; margin-top: 2.6rem; }
.grid-empty { text-align: center; color: var(--muted); padding: 4rem 1rem; grid-column: 1 / -1; }
.grid-empty h3 { font-size: 1.5rem; }
.grid-empty a { color: var(--green); }

/* ---------- why band (light grey, big stats) ---------- */
.band { background: var(--surface); border-block: 1px solid var(--line); }

/* deep green band: the brand's rich statement section */
.band-green {
  background: linear-gradient(160deg, var(--green-band-1), var(--green-band-2) 70%);
  color: var(--green-pale);
}
.band-green h2 { color: #fff; }
.band-green .eyebrow { color: var(--green-bright); }
.band-green .eyebrow::before { background: var(--green-bright); }
.band-green .lead { color: var(--green-pale); }
.band-green .feature-list b { color: #fff; }
.band-green .feature-list p { color: var(--green-pale); }
.band-green .feature-list .fi { background: rgba(255, 255, 255, .08); }
.band-green .feature-list svg { stroke: var(--green-bright); }
.band-green .stat { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); }
.band-green .stat .n { color: #fff; }
.band-green .stat .n em { color: var(--green-bright); }
.band-green .stat .l { color: #9dbfb3; }
.band-green .stat-note { color: #7fa294; }
.split { display: grid; gap: clamp(2.2rem, 5vw, 4.5rem); grid-template-columns: 1.05fr 1fr; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); letter-spacing: -.01em; }
.split .lead { color: var(--muted); }

.feature-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.feature-list li { display: flex; gap: .95rem; align-items: flex-start; }
.feature-list .fi {
  flex: none; width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--green-tint); display: grid; place-items: center;
}
.feature-list svg { width: 21px; height: 21px; stroke: var(--green); }
.feature-list b { display: block; font-family: var(--display); font-size: .96rem; font-weight: 700; color: var(--ink); margin-bottom: .1rem; }
.feature-list p { font-size: .86rem; color: var(--muted); margin: 0; }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
}
.stat .n { font-family: var(--display); font-size: clamp(2rem, 3.4vw, 2.7rem); font-weight: 700; color: var(--ink); line-height: 1; }
.stat .n em { font-style: normal; color: var(--green); }
.stat .l { display: block; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .6rem; }
.stat-note { grid-column: 1 / -1; font-size: .74rem; color: var(--faint); margin: .2rem 0 0; }

/* ---------- sell / part-exchange ---------- */
.sell-cards { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }
.sell-card {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem 1.9rem; display: flex; flex-direction: column;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.sell-card:hover { border-color: #9fccbc; box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.sell-card .num {
  font-family: var(--display); font-size: .78rem; font-weight: 700; color: var(--green);
  letter-spacing: .16em; margin-bottom: .9rem;
}
.sell-card h3 { font-size: 1.35rem; font-weight: 700; }
.sell-card p { color: var(--muted); font-size: .88rem; flex: 1; }
.sell-card .btn { align-self: flex-start; margin-top: 1.1rem; }

/* ---------- about / contact ---------- */
.contact-panel {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.4rem); box-shadow: var(--shadow-lift);
}
.contact-panel .who { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.3rem; }
.avatar {
  width: 54px; height: 54px; border-radius: 50%; flex: none;
  background: var(--green); color: #fff;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 1.4rem; font-weight: 700;
}
.contact-panel .who b { display: block; font-family: var(--display); font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.contact-panel .who span { font-size: .8rem; color: var(--muted); }
.contact-rows { display: grid; gap: .6rem; margin-bottom: 1.4rem; }
.contact-rows a { display: inline-flex; gap: .6rem; align-items: center; font-size: .92rem; font-weight: 500; text-decoration: none; color: var(--ink-2); }
.contact-rows a:hover { color: var(--green); }
.contact-rows svg { width: 16px; height: 16px; stroke: var(--green); flex: none; }

.bq-credit { display: flex; gap: .9rem; align-items: flex-start; border-top: 1px solid var(--line); padding-top: 1.3rem; margin-top: 1.5rem; }
.bq-credit svg { flex: none; width: 28px; height: 28px; stroke: var(--green); }
.bq-credit p { font-size: .8rem; color: var(--muted); margin: 0; }
.bq-credit a { color: var(--green); font-weight: 600; }

/* ---------- about page ---------- */
.about-grid {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; max-width: 560px; } }
.about-photo-wrap { position: relative; }
.about-photo-wrap::before {
  content: ""; position: absolute; inset: 8% -5% -5% 8%;
  background: var(--green-tint); border-radius: 18px; z-index: 0;
}
.about-photo {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5;
  object-fit: cover; border-radius: 14px;
  border: 1px solid var(--line); box-shadow: var(--shadow-lift);
}
/* monochrome portrait that comes to life on hover (the BQ team-page trick);
   touch devices have no hover, so they get colour straight away */
@media (hover: hover) {
  .about-photo { filter: grayscale(1); transition: filter .55s ease; }
  .about-photo-wrap:hover .about-photo,
  .about-photo-wrap:focus-within .about-photo { filter: grayscale(0); }
}
/* the CDN fallback copy is only 350px wide; render it at native size so it
   stays sharp rather than stretching (removed once assets/img/jamie.jpg exists) */
.about-photo.lowres { max-width: 350px; display: block; margin-inline: auto; }
.about-photo-caption {
  position: relative; z-index: 1;
  font-family: var(--display); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  margin: 1rem 0 0; text-align: center;
}
.about-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.3rem 0 1.6rem; }
.tag {
  font-family: var(--display); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--green-tint); color: var(--green-dark);
  border: 1px solid #cfe6de; padding: .32rem .8rem; border-radius: 100px;
}
.about-links { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.about-links .btn-ghost { display: inline-flex; align-items: center; gap: .45rem; }
.avatar-img {
  width: 54px; height: 54px; border-radius: 50%; object-fit: cover; flex: none;
  border: 2px solid var(--green);
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .6rem; background: var(--white); transition: border-color .2s; }
.faq details[open] { border-color: #9fccbc; background: #fbfdfc; }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.05rem 3rem 1.05rem 1.3rem;
  font-family: var(--display); font-size: 1.02rem; font-weight: 700; color: var(--ink); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; translate: 0 -50%;
  font-weight: 300; font-size: 1.4rem; color: var(--green); transition: rotate .25s ease;
}
.faq details[open] summary::after { rotate: 45deg; }
.faq details p { color: var(--muted); font-size: .9rem; padding: 0 1.3rem 1.15rem; margin: 0; }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; max-width: 560px; } }
.review-card {
  margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.7rem; display: flex; flex-direction: column; gap: .8rem;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.review-card:hover { border-color: #9fccbc; box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.review-card .stars { color: var(--green); font-size: 1.05rem; letter-spacing: .2em; }
.review-card blockquote { margin: 0; font-size: .95rem; color: var(--ink-2); line-height: 1.7; flex: 1; }
.review-card figcaption { font-family: var(--display); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* ---------- recently viewed rail (collection page) ---------- */
.recent-wrap { margin-bottom: 2rem; }
.recent-title { font-size: 1.05rem; font-weight: 700; margin-bottom: .8rem; }
.recent-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 260px);
  gap: .8rem; overflow-x: auto; padding-bottom: .5rem; scrollbar-width: none;
}
.recent-rail::-webkit-scrollbar { display: none; }
.recent-item {
  display: flex; align-items: center; gap: .8rem; text-decoration: none;
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: .6rem .8rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.recent-item:hover { border-color: #9fccbc; box-shadow: var(--shadow-card); }
.recent-item img { width: 52px; height: 52px; border-radius: 6px; object-fit: cover; background: var(--surface); flex: none; }
.recent-item .ri-name {
  font-family: var(--display); font-size: .78rem; font-weight: 600; color: var(--ink);
  display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px;
}
.recent-item .ri-price { font-size: .76rem; font-weight: 700; color: var(--green-dark); }

/* ---------- share button (watch detail) ---------- */
.share-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: none; border: 1px solid var(--line-strong); border-radius: 100px;
  padding: .35rem .9rem; font-family: var(--display); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2);
  cursor: pointer; transition: border-color .2s ease, color .2s ease;
  margin-left: .7rem; vertical-align: middle;
}
.share-btn:hover { border-color: var(--green); color: var(--green); }
.share-btn svg { width: 13px; height: 13px; }
.toast {
  position: fixed; bottom: 1.2rem; left: 50%; translate: -50% 0; z-index: 130;
  background: var(--ink); color: #fff; font-size: .82rem;
  padding: .6rem 1.2rem; border-radius: 100px; box-shadow: 0 10px 30px rgba(0,0,0,.3);
  animation: toastIn .25s ease;
}
@keyframes toastIn { from { opacity: 0; translate: -50% 8px; } }

/* ---------- pre-footer CTA ---------- */
.cta-band { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: #fff; }
.cta-band .inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-block: clamp(2.6rem, 6vw, 4rem);
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 0; }
.cta-band h2 .accent { color: #b7ead8; }
.cta-band p { color: #d2ece2; margin: .4rem 0 0; font-size: .95rem; }
.cta-band .actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.cta-band .btn-primary { background: #fff; color: var(--green-dark); border-color: #fff; }
.cta-band .btn-primary:hover { background: var(--green-tint); border-color: var(--green-tint); box-shadow: none; }

/* ---------- footer ---------- */
.site-footer { background: var(--green-ink); color: #8fa79d; font-size: .85rem; border-top: 1px solid #1b3a2f; }
.footer-main { display: grid; gap: 2.2rem; grid-template-columns: 1.6fr 1fr 1fr 1.3fr 1.2fr; padding-block: clamp(2.8rem, 6vw, 4rem); }
@media (max-width: 1020px) { .footer-main { grid-template-columns: 1fr 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 640px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .footer-main { grid-template-columns: 1fr; } }
.footer-run { font-size: .78rem; margin-top: .8rem; }
.footer-run a { color: var(--green-bright); }
.footer-contact li { line-height: 1.5; }
.footer-contact li + li { margin-top: .2rem; }
.footer-main h4 { font-family: var(--display); font-size: .74rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer-main ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-main a { text-decoration: none; color: #8fa79d; }
.footer-main a:hover { color: var(--green-bright); }
.footer-brand .logo-word .l1 { color: #fff; font-size: 1.3rem; }
.footer-brand .logo-word .l2 { color: #6c7078; }
.footer-brand p { font-size: .8rem; max-width: 300px; margin-top: .9rem; }
.footer-bottom {
  border-top: 1px solid #1b3a2f;
  padding-block: 1.3rem; font-size: .73rem;
  display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between;
}
.footer-bottom a { color: #cfe0d9; text-decoration: none; }
.footer-bottom a:hover { color: var(--green-bright); }

/* ---------- watch detail page ---------- */
.crumbs { font-size: .78rem; color: var(--muted); padding-block: 1.3rem .3rem; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--green); }

.detail { display: grid; gap: clamp(1.8rem, 4.5vw, 4rem); grid-template-columns: 1.12fr 1fr; align-items: start; padding-block: .8rem 4.5rem; }
@media (max-width: 900px) { .detail { grid-template-columns: 1fr; } }

.gallery-main {
  aspect-ratio: 1; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-bottom: .8rem;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: .55rem; }
.gallery-thumbs button {
  aspect-ratio: 1; padding: 0; border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; background: var(--surface); opacity: .6; transition: opacity .2s, border-color .2s;
}
.gallery-thumbs button.active, .gallery-thumbs button:hover { opacity: 1; border-color: var(--green); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gallery-caption {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  font-size: .74rem; color: var(--muted); margin: .7rem 0 0;
}
.gallery-caption::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex: none;
}

.detail-desc { margin-top: 2rem; border-top: 1px solid var(--line); padding-top: 1.5rem; }
.detail-desc h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: .6rem; }
.detail-desc p { color: var(--muted); font-size: .92rem; line-height: 1.75; margin: 0; }

.detail-info .card-brand { font-size: .74rem; }
.detail-info h1 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 700; letter-spacing: -.01em; margin-bottom: .25em; }
.detail-price { font-family: var(--display); font-size: 1.7rem; font-weight: 700; color: var(--ink); margin-bottom: 1.2rem; }
.detail-price.poa { color: var(--green); font-size: 1.25rem; }
.detail-status {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green); background: var(--green-tint);
  padding: .35rem .85rem; border-radius: 100px; margin-bottom: .9rem;
}
.detail-actions { display: grid; gap: .7rem; margin: 1.4rem 0 1.9rem; }
.assurance { display: grid; gap: .5rem; font-size: .82rem; color: var(--muted); margin: 0 0 2rem; padding: 0; }
.assurance li { list-style: none; display: flex; gap: .6rem; align-items: center; }
.assurance svg { width: 16px; height: 16px; stroke: var(--green); flex: none; }

.spec-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.spec-table th, .spec-table td { text-align: left; padding: .62rem .2rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { font-weight: 500; color: var(--muted); width: 42%; }
.spec-table td { color: var(--ink-2); font-weight: 500; }

.related { padding-bottom: clamp(3.5rem, 7vw, 5.5rem); }
.related h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 1.8rem; }

/* ---------- demo notice ---------- */
.demo-note {
  position: fixed; bottom: 1rem; left: 50%; translate: -50% 0; z-index: 80;
  background: var(--ink); color: #e6e8ea; font-size: .78rem;
  padding: .7rem 1.1rem; border-radius: 8px;
  display: flex; gap: 1rem; align-items: center; max-width: min(92vw, 560px);
  box-shadow: 0 12px 32px rgba(0,0,0,.30);
}
.demo-note b { color: #4cc9a6; }
.demo-note code { font-size: .72rem; background: #23262c; padding: .1rem .35rem; border-radius: 3px; }
.demo-note button { background: none; border: 0; color: #9a9da6; font-size: 1.1rem; line-height: 1; padding: .2rem; }

/* ---------- mobile refinements ---------- */
@media (max-width: 600px) {
  .announce { font-size: .6rem; letter-spacing: .06em; padding-block: .45rem; }

  .grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
  .card-body { padding: .7rem .75rem .85rem; gap: .16rem; }
  .card-brand { font-size: .58rem; letter-spacing: .14em; }
  .card-name { font-size: .88rem; }
  .card-specs { font-size: .64rem; }
  .card-foot { padding-top: .55rem; gap: .4rem; }
  .card-price { font-size: .92rem; }
  .card-price.poa { font-size: .74rem; }
  .tick { font-size: .56rem; gap: .22rem; }
  .tick svg { width: 12px; height: 12px; }
  .card-ticks { gap: .5rem; }

  .bar-row { gap: .55rem; }
  .bar-row .search-wrap { flex: 1 1 100%; order: 3; }
  .search-wrap .field { width: 100%; }
  .bar-row .field input { width: 100%; }
  .suggest { width: 100%; }
  .stock-count { flex-basis: 100%; order: 4; }

  .gallery-thumbs { display: flex; overflow-x: auto; padding-bottom: .3rem; scrollbar-width: none; }
  .gallery-thumbs::-webkit-scrollbar { display: none; }
  .gallery-thumbs button { flex: 0 0 64px; }

  .cta-band .actions { width: 100%; }
  .cta-band .actions .btn { flex: 1; }
}

/* ---------- sticky buy bar (watch detail, mobile) ---------- */
.buybar { display: none; }
@media (max-width: 760px) {
  .buybar {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
  }
  .buybar .bb-price { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: var(--ink); }
  .buybar .bb-price.poa { font-size: .9rem; color: var(--green); }
  .buybar .btn { padding: .7rem 1.6rem; font-size: .84rem; }
  body.has-buybar { padding-bottom: 74px; }
}

/* ==========================================================================
   Advanced layer: view transitions, auto-hiding header, search suggestions,
   staggered grids, image fade-in, sticky gallery, lightbox
   ========================================================================== */

/* cross-document view transitions: a clicked card's photo morphs into the
   detail page gallery (Chromium; other engines simply ignore this) */
@view-transition { navigation: auto; }
::view-transition-group(watch-hero) { animation-duration: .35s; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .25s; }

/* auto-hiding sticky header */
.site-header { transition: transform .3s ease, box-shadow .3s ease; }
.site-header.hdr-hide { transform: translateY(-100%); }
.site-header.hdr-scrolled { box-shadow: 0 8px 28px rgba(17, 17, 17, .07); }

/* live search suggestions */
.search-wrap { position: relative; }
.suggest {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 50;
  width: max(100%, 340px); max-height: 380px; overflow-y: auto;
  background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  box-shadow: var(--shadow-lift); padding: .35rem;
}
.suggest-item {
  display: flex; align-items: center; gap: .75rem; width: 100%;
  padding: .45rem .55rem; border: 0; background: none; border-radius: 6px;
  text-align: left; cursor: pointer;
}
.suggest-item:hover, .suggest-item.active { background: var(--green-tint); }
.suggest-item img { width: 42px; height: 42px; border-radius: 5px; object-fit: cover; background: var(--surface); flex: none; }
.suggest-item .si-name {
  font-family: var(--display); font-size: .82rem; font-weight: 600; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block;
}
.suggest-item .si-sub { font-size: .7rem; color: var(--muted); display: block; }
.suggest-item .si-price { margin-left: auto; font-size: .8rem; font-weight: 700; color: var(--ink); flex: none; }
.suggest-all {
  display: block; width: 100%; padding: .55rem; border: 0; background: none;
  border-top: 1px solid var(--line); margin-top: .25rem; cursor: pointer;
  font-family: var(--display); font-size: .76rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--green); text-align: center;
}
.suggest-all:hover { color: var(--green-dark); }

/* staggered grid entrance */
@keyframes popIn { from { opacity: 0; translate: 0 14px; } }
.card.pop { animation: popIn .45s ease backwards; }

/* images fade in once decoded (JS adds .ld) */
.card-media img, .tile-media img, .show-card img, .gallery-main img, .suggest-item img {
  opacity: 0; transition: opacity .4s ease;
}
img.ld { opacity: 1 !important; }

/* sticky gallery while specs scroll (desktop) */
@media (min-width: 901px) {
  .detail > div:first-child { position: sticky; top: 106px; }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(12, 14, 13, .92);
  display: flex; align-items: center; justify-content: center;
  animation: lbFade .25s ease;
}
@keyframes lbFade { from { opacity: 0; } }
.lightbox img {
  max-width: min(92vw, 1100px); max-height: 88vh; object-fit: contain;
  border-radius: 8px; background: #fff;
}
.lightbox button {
  position: absolute; background: rgba(255, 255, 255, .12); border: 0; color: #fff;
  width: 46px; height: 46px; border-radius: 50%; font-size: 1.35rem; line-height: 1;
  display: grid; place-items: center; backdrop-filter: blur(6px);
  transition: background .2s;
}
.lightbox button:hover { background: rgba(255, 255, 255, .26); }
.lightbox .lb-close { top: 1.2rem; right: 1.2rem; }
.lightbox .lb-prev { left: 1.2rem; top: 50%; translate: 0 -50%; }
.lightbox .lb-next { right: 1.2rem; top: 50%; translate: 0 -50%; }
.lightbox .lb-count {
  position: absolute; bottom: 1.2rem; left: 50%; translate: -50% 0;
  color: #cfd4d1; font-size: .8rem; letter-spacing: .1em;
}
.gallery-main { cursor: zoom-in; }

/* ---------- WhatsApp ---------- */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 85;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(0, 0, 0, .34); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 760px) {
  .wa-float { width: 50px; height: 50px; right: .9rem; bottom: .9rem; }
  .wa-float svg { width: 27px; height: 27px; }
  body.has-buybar .wa-float { bottom: calc(86px + env(safe-area-inset-bottom)); }
}

.btn-wa { background: #25D366; color: #fff; border-color: #25D366; display: inline-flex; gap: .5rem; }
.btn-wa:hover { background: #1EBE5B; border-color: #1EBE5B; color: #fff; }
.btn-wa svg { width: 17px; height: 17px; fill: currentColor; flex: none; }

/* ---------- accessibility: skip link ---------- */
.skip-link {
  position: absolute; left: 1rem; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; text-decoration: none;
  font-family: var(--display); font-size: .8rem; font-weight: 700;
  padding: .6rem 1.2rem; border-radius: 0 0 6px 6px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* ---------- quick searches strip ---------- */
.quick-search { border-block: 1px solid var(--line); background: var(--white); padding-block: .8rem; }
.quick-search .container { display: flex; align-items: center; gap: 1rem; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
.quick-search .container::-webkit-scrollbar { display: none; }
.qs-label {
  flex: none; font-family: var(--display); font-size: .7rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.qs-links { display: flex; gap: .5rem; }
.qs-links a {
  flex: none; white-space: nowrap; text-decoration: none;
  font-family: var(--display); font-size: .76rem; font-weight: 600; letter-spacing: .03em;
  color: var(--ink-2); background: var(--surface);
  border: 1px solid var(--line); border-radius: 100px; padding: .34rem .9rem;
  transition: all .18s ease;
}
.qs-links a:hover { background: var(--green-tint); border-color: #9fccbc; color: var(--green-dark); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; translate: 0 18px; transition: opacity .6s ease, translate .6s ease; }
.reveal.in { opacity: 1; translate: 0 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; translate: 0 0; }
  .marquee-track { animation: none; }
}

/* ---------- footer social icons ---------- */
.footer-social { display: flex; gap: .6rem; margin-top: .9rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid #1b3a2f; color: #8fa79d;
  display: grid; place-items: center;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.footer-social a:hover { color: #fff; border-color: var(--green-bright); background: rgba(76, 201, 166, .12); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

/* centred social strip above the footer bottom bar */
.footer-social-wrap { display: flex; justify-content: center; padding-bottom: 1.8rem; }
.footer-social { margin-top: 0; }
