/* RG Enterprises — facelift mockup
   Architecture lifted from marrambi-estate.pages.dev:
     - single index.html, one styles.css, tiny vanilla script.js
     - CSS custom properties for palette + type scale
     - hand-written, no framework, deploys as static Cloudflare Pages site

   Design language is RGE's (per v2 brief §3 Design Principles):
     - P2: clean + white + light
     - P4: search-first, browse-second
     - P6: tradie-friendly, technical specs visible, no marketing fluff
*/

/* ---------- Tokens ---------- */
:root {
  /* Neutrals */
  --white:        #ffffff;
  --off-white:    #f7f7f5;
  --paper:        #f0efec;
  --ink:          #141414;
  --ink-soft:     #3a3a3a;
  --ink-muted:    #6b6b6b;
  --hairline:     #e6e6e4;

  /* Accents — RG Enterprises brand palette (from the logo) */
  --accent:       #b3ff51; /* Lime green — brand accent, logo colour */
  --accent-dark:  #8dd32c; /* Darker lime for hovers */
  --accent-deep:  #6ca331; /* Shadow tone of lime for deep contrast */
  --steel:        #0a0a0a; /* pure black for dark surfaces */
  --steel-soft:   #1a1a1a;
  --gold:         #ffb800; /* review stars + "best seller" badges (kept) */
  --green:        #1f8a44; /* in-stock */
  --amber:        #d88a00; /* low-stock */
  --blue:         #0b69c5; /* pre-order */

  /* Type */
  --font-display: 'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
  --font-body:    'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --container:    1240px;
  --section-y:    clamp(56px, 8vw, 112px);
  --radius:       6px;
  --radius-lg:    12px;

  /* Shadows — barely-there, tradie-serious */
  --shadow-sm:    0 1px 2px rgba(20,20,20,0.04), 0 1px 3px rgba(20,20,20,0.06);
  --shadow-md:    0 4px 12px rgba(20,20,20,0.05), 0 2px 4px rgba(20,20,20,0.04);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent-deep); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ---------- Announce bar ---------- */
.announce {
  background: var(--steel);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.announce__inner {
  padding: 8px 16px;
  text-align: center;
}
.announce__text { opacity: 0.9; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
}
.nav a { color: var(--ink); }
.nav a:hover { color: var(--accent-deep); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 16px;
  min-height: 92px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}
.nav__brand:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.nav__logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}
.nav__logo--footer { height: 216px; max-width: 880px; }
@media (max-width: 820px) {
  .nav__logo--footer { height: 120px; max-width: 440px; }
}
/* Mobile: scale the giant logo back down so it fits */
@media (max-width: 820px) {
  .nav__inner { min-height: 88px; padding: 8px 12px; }
  .nav__logo { height: 64px; max-width: 240px; }
}
/* Legacy text-mark — retained for any page that still uses it */
.nav__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--accent);
  color: #000000;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
}
.nav__name { white-space: nowrap; color: var(--ink); }
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a { padding: 8px 2px; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pay-pill {
  padding: 6px 10px;
  border: 1px solid var(--hairline);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
}
.icon-btn {
  background: transparent;
  border: none;
  padding: 6px;
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}
.icon-btn:hover { color: var(--accent-deep); }

/* Mobile nav — trimmed for now, will expand in later commit */
@media (max-width: 820px) {
  .nav__links, .pay-pill { display: none; }
}

/* ---------- Reviewer annotation overlay (toggled by ?annotate=1) ---------- */
body.annotate [data-note] { position: relative; }
body.annotate [data-note]::after {
  content: attr(data-note);
  position: absolute;
  top: 12px; right: 12px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 3px;
  z-index: 5;
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--off-white);
  color: var(--ink-soft);
  padding: 64px 0 24px;
  border-top: 1px solid var(--hairline);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

.footer .nav__name { color: var(--ink); }
.footer .nav__brand { margin-bottom: 12px; color: var(--ink); }
.footer__grid { border-bottom-color: var(--hairline); }
.footer__about {
  font-size: 14px;
  line-height: 1.6;
  max-width: 42ch;
  color: var(--ink-muted);
}
.footer__col h4 {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col a {
  color: var(--ink-soft);
  font-size: 14px;
}
.footer__col a:hover { color: var(--accent-deep); }
.footer__pay { display: flex; flex-wrap: wrap; gap: 6px; }
.footer__pay .pay-badge {
  background: var(--white);
  border-color: var(--hairline);
  color: var(--ink-soft);
}
.footer__base {
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-muted);
}
.footer__base a { color: var(--ink-muted); }
.footer__base a:hover { color: var(--accent-deep); }
.footer__mark {
  color: var(--ink-muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

/* ---------- Shared: buttons + eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent);
  color: #000000;
  font-weight: 700;
}
.btn--primary:hover { background: var(--accent-dark); color: #000000; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); }

/* ---------- §5.2 Hero — full-bleed single-image slider with overlaid text (solutionsplus.au) ---------- */
.hero {
  background: #000;
  overflow: hidden;
}
.hero__slider {
  position: relative;
  width: 100%;
  /* v1.1 — shrunk so categories sit above the fold per Rhys 12 May call */
  height: clamp(380px, 52vh, 520px);
  overflow: hidden;
  isolation: isolate;
}
.hero__slides {
  position: absolute; inset: 0;
}
.hero__slide {
  position: absolute; inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 900ms ease;
  pointer-events: none;
}
.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  animation: hero-kenburns 10s ease-out forwards;
}
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes hero-kenburns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}

/* Dark scrim: bottom-left-biased gradient so text is legible and imagery still shows through */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15,20,26,0.78) 0%, rgba(15,20,26,0.55) 38%, rgba(15,20,26,0.20) 62%, rgba(15,20,26,0.35) 100%),
    linear-gradient(to top, rgba(15,20,26,0.55) 0%, rgba(15,20,26,0) 45%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.hero__container {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 32px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero__container { grid-template-columns: 1fr; }
  .hero__brands { display: none; }
}
.hero__text {
  max-width: 620px;
  color: var(--white);
}

/* v1.1 — A–Z brand column on hero right (Adam's compromise of Rhys's left-side sketch) */
.hero__brands {
  background: rgba(15,20,26,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  color: var(--white);
  max-height: 420px;
  display: flex;
  flex-direction: column;
}
.hero__brands-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.hero__brands-head span { color: var(--accent); }
.hero__brands-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 14px;
}
.hero__brands-list li { font-size: 13px; line-height: 1.4; }
.hero__brands-list a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  display: block;
  padding: 3px 0;
  border-bottom: 1px solid transparent;
  transition: color 120ms ease, border-color 120ms ease;
}
.hero__brands-list a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.hero__brands-list-own a { font-weight: 700; color: var(--accent); }
.hero__brands-all {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
}
.hero__brands-all:hover { color: var(--accent); }
.hero__text .eyebrow {
  color: rgba(255,255,255,0.78);
}
.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.04;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
  word-break: normal;
  overflow-wrap: break-word;
}
.hero__h1--accent { color: var(--accent); }
.hero__lede {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 0 24px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero__lede strong { color: var(--white); font-weight: 700; }
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn--ghost-on-dark {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
}
.btn--ghost-on-dark:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 8px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.22);
  max-width: 560px;
}
.hero__proof > div { min-width: 0; }
.hero__proof dt {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero__proof dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Slider controls */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(15,20,26,0.35);
  color: var(--white);
  display: grid; place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.hero__arrow:hover {
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border-color: var(--white);
}
.hero__arrow--prev { left: clamp(12px, 2vw, 28px); }
.hero__arrow--next { right: clamp(12px, 2vw, 28px); }
.hero__arrow svg { width: 22px; height: 22px; }

.hero__dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(16px, 2.5vw, 28px);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 180ms ease, transform 180ms ease, width 180ms ease;
}
.hero__dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  width: 24px;
  border-radius: 6px;
}

/* Tablet */
@media (max-width: 900px) {
  .hero__slider { height: clamp(500px, 72vh, 640px); }
  .hero__text {
    padding:
      0
      max(20px, calc((100vw - var(--container)) / 2 + 20px))
      clamp(56px, 8vw, 88px);
  }
  .hero__arrow { width: 40px; height: 40px; }
  .hero__arrow svg { width: 18px; height: 18px; }
}
@media (max-width: 520px) {
  .hero__slider { height: clamp(520px, 82vh, 640px); }
  .hero__h1 { font-size: clamp(34px, 9vw, 48px); }
  .hero__proof { gap: 14px; max-width: 100%; }
  .hero__proof dd { font-size: 18px; }
  .hero__arrow { display: none; }
}




/* ---------- §5.3 Search band ---------- */
.search-band {
  padding: var(--section-y) 0;
  background: var(--off-white);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}
.search-band__inner {
  max-width: 880px;
}
.search-band__h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
}
.search-band__lede {
  color: var(--ink-muted);
  font-size: 16px;
  margin: 0 0 32px;
}
.searchbox {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.searchbox:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(209,74,44,0.18), var(--shadow-md);
}
.searchbox__icon {
  display: flex;
  align-items: center;
  padding: 0 18px 0 24px;
  font-size: 22px;
  color: var(--ink-muted);
}
.searchbox__input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 22px 8px;
  font-size: 18px;
  font-family: var(--font-body);
  color: var(--ink);
  background: transparent;
}
.searchbox__input::placeholder {
  color: var(--ink-muted);
  font-weight: 400;
}
.searchbox__submit {
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 0 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.searchbox__submit:hover { background: var(--accent); }
.search-band__suggest {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
}
.search-band__suggest-label {
  color: var(--ink-muted);
  font-weight: 500;
}
.search-band__suggest a {
  color: var(--ink-soft);
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--white);
  border: 1px solid var(--hairline);
}
.search-band__suggest a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 640px) {
  .searchbox__icon { padding: 0 12px 0 14px; font-size: 18px; }
  .searchbox__input { padding: 16px 4px; font-size: 15px; }
  .searchbox__submit { padding: 0 16px; font-size: 13px; }
}

/* ---------- Shared section head ---------- */
.section-head {
  max-width: 720px;
  margin: 0 0 40px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head__h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}
.section-head__lede {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0;
}
.section-head__lede em { color: var(--accent); font-style: normal; font-weight: 600; }

/* ---------- §4.2 / §5.4 Categories ---------- */
.cats {
  padding: var(--section-y) 0;
  background: var(--white);
}
.cats__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1100px) { .cats__grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
@media (max-width: 820px)  { .cats__grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; } }
@media (max-width: 520px)  { .cats__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* v1.1 — Bigger Solutions Plus-style 5-tile grid */
.cats--big { padding-top: calc(var(--section-y) * 0.7); }
.cats__grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1180px) { .cats__grid--five { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 720px)  { .cats__grid--five { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; } }
@media (max-width: 460px)  { .cats__grid--five { grid-template-columns: 1fr; } }

.cat-tile--big .cat-tile__art { aspect-ratio: 4 / 3; }
.cat-tile--big .cat-tile__label { padding: 18px 18px 22px; }
.cat-tile--big .cat-tile__label h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.005em;
  margin-bottom: 6px;
}
.cat-tile--big .cat-tile__label p {
  font-size: 13.5px;
  line-height: 1.45;
  margin-bottom: 14px;
  min-height: 40px;
}
.cat-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 9px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  transition: background 140ms ease, color 140ms ease;
}
.cat-tile:hover .cat-tile__cta { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.cat-tile--accent .cat-tile__cta { background: var(--accent); border-color: var(--accent); }
.cat-tile--accent:hover .cat-tile__cta { background: var(--ink); border-color: var(--ink); color: var(--white); }

.cat-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  text-decoration: none;
  color: var(--ink);
}
.cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.cat-tile--accent {
  border: 2px solid var(--accent);
  grid-column: span 1;
}
.cat-tile--accent:hover { border-color: var(--accent-dark); }
.cat-tile__badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
}
.cat-tile__badge--sale { background: var(--gold); color: var(--ink); }
.cat-tile__art {
  aspect-ratio: 4 / 3;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
/* CSS-only category art placeholders — unique hue + icon-like gradient per tile */
.cat-tile__art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cat-tile__art--xline    { background: linear-gradient(135deg, #ffe4dc, #ffc3b0); }
.cat-tile__art--arborist { background: linear-gradient(135deg, #d9e7d0, #9fbd82); }
.cat-tile__art--mowing   { background: linear-gradient(135deg, #d7edd0, #a6ce90); }
.cat-tile__art--climbing { background: linear-gradient(135deg, #dfe6ed, #8ea5bd); }
.cat-tile__art--chain    { background: linear-gradient(135deg, #e4e4e4, #9ea6a9); }
.cat-tile__art--oil      { background: linear-gradient(135deg, #f3e6cb, #c9a864); }
.cat-tile__art--transport{ background: linear-gradient(135deg, #dfe3e8, #8696a7); }
.cat-tile__art--safety   { background: linear-gradient(135deg, #ffe9c7, #ffb949); }
.cat-tile__art--blades   { background: linear-gradient(135deg, #e5e5e8, #8c8f97); }
.cat-tile__art--clearance{ background: linear-gradient(135deg, #fff1d1, #ffca3a); }
.cat-tile__label {
  padding: 14px 16px 18px;
}
.cat-tile__label h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}
.cat-tile__label p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-muted);
  line-height: 1.4;
}
.cats__note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-muted);
  text-align: center;
  font-style: italic;
}

/* ---------- §5.5 Brands ---------- */
.brands {
  padding: var(--section-y) 0;
  background: var(--off-white);
  border-top: 1px solid var(--hairline);
}
.brands__strip {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 900px) { .brands__strip { grid-template-columns: repeat(5, minmax(0,1fr)); } }
@media (max-width: 500px) { .brands__strip { grid-template-columns: repeat(3, minmax(0,1fr)); } }

.brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--steel);
  text-align: center;
  transition: border-color 150ms ease, color 150ms ease;
}
.brands__item:hover {
  border-color: var(--ink);
  color: var(--ink);
  cursor: pointer;
}
.brands__item--own {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.brands__item--own:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}
.brands__foot {
  text-align: center;
  margin: 20px 0 0;
  font-size: 13px;
  color: var(--ink-muted);
}
.brands__foot a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/* ---------- §5.6 Trust ---------- */
.trust {
  padding: var(--section-y) 0;
  background: var(--white);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 820px) { .trust__grid { grid-template-columns: 1fr; } }

.trust__card {
  background: var(--off-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.stars {
  display: inline-flex;
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.trust__metric {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
}
.trust__quote {
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--hairline);
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.55;
}
.trust__quote cite {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-muted);
  font-style: normal;
  font-weight: 500;
}
.trust__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.pay-badge {
  padding: 6px 10px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.pay-badge--trade {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.trust__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 12px;
}
.trust__customers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.customer-pill {
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
}
.trust__note {
  font-size: 12px;
  color: var(--ink-muted);
  margin: 0;
  font-style: italic;
}

/* ---------- Shared — button modifier ---------- */
.btn--full { width: 100%; }

/* ---------- §7.2 Product showcase ---------- */
.showcase {
  padding: var(--section-y) 0;
  background: var(--off-white);
  border-top: 1px solid var(--hairline);
}
.showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 820px) { .showcase__grid { grid-template-columns: 1fr; } }

.pcard {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pcard__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.pcard__media--xline    { background: #fff; }
.pcard__media--penrite  { background: #fff; }
.pcard__media--clogger  { background: #fff; }
.pcard__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
  z-index: 2;
}
.pcard__badge--own {}
.pcard__badge--sale { background: var(--gold); color: var(--ink); }

.pcard__product--spool {
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, var(--accent) 0, var(--accent) 2px, var(--accent-dark) 2px, var(--accent-dark) 4px);
  box-shadow:
    inset 0 0 0 4px rgba(255,255,255,0.1),
    inset 0 8px 30px rgba(0,0,0,0.3),
    0 20px 40px -20px rgba(169,52,25,0.5);
  position: relative;
}
.pcard__product--spool::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28%; aspect-ratio: 1;
  background: var(--steel);
  border-radius: 50%;
}
.pcard__product--large { width: 62%; }

.pcard__product--bottle {
  width: 44%;
  aspect-ratio: 0.55 / 1;
  background: linear-gradient(180deg, #1c7a3d 0%, #0f4b24 100%);
  border-radius: 8px 8px 20px 20px / 12px 12px 24px 24px;
  position: relative;
  box-shadow: 0 20px 40px -20px rgba(15,75,36,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard__product--bottle::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 26px;
  background: linear-gradient(180deg, #0f4b24 0%, #1c7a3d 100%);
  border-radius: 4px 4px 2px 2px;
}
.pcard__bottle-label {
  background: var(--gold);
  color: #0f4b24;
  padding: 8px 12px;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.15;
  width: 84%;
}
.pcard__bottle-label span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.pcard__product--pants {
  width: 46%;
  aspect-ratio: 0.6 / 1;
  background:
    linear-gradient(180deg, #161616 0%, #2a2a2a 55%, #161616 100%);
  border-radius: 8px 8px 6px 6px;
  position: relative;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
}
.pcard__product--pants::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 14%;
  background: #161616;
  border-radius: 4px 4px 0 0;
}
.pcard__product--pants::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 90%; height: 42%;
  background: linear-gradient(180deg, transparent, #0a0a0a);
  border-radius: 0 0 4px 4px;
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 60% 100%, 55% 30%, 45% 30%, 40% 100%, 0 100%);
}

.pcard__body { padding: 16px 18px 20px; }
.pcard__title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
.pcard__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.pcard__stars em {
  color: var(--ink-muted);
  font-size: 12px;
  font-style: normal;
  margin-left: 6px;
  letter-spacing: normal;
}
.pcard__price {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.pcard__price s { color: var(--ink-muted); font-weight: 400; font-size: 14px; margin-right: 6px; }
.pcard__price strong { color: var(--accent); font-weight: 700; }

.pcard__stock {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 3px;
}
.pcard__stock--in       { background: rgba(31,138,68,0.1); color: var(--green); }
.pcard__stock--low      { background: rgba(216,138,0,0.12); color: var(--amber); }
.pcard__stock--preorder { background: rgba(11,105,197,0.1);  color: var(--blue); }

/* ---------- §7 PDP ---------- */
.pdp {
  padding: var(--section-y) 0;
  background: var(--white);
}
.pdp__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
}
@media (max-width: 900px) { .pdp__grid { grid-template-columns: 1fr; gap: 24px; } }

.pdp__gallery {}
.pdp__hero-img {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.pdp__thumb {
  aspect-ratio: 1 / 1;
  background: var(--off-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  cursor: pointer;
}
.pdp__thumb--active { border: 2px solid var(--ink); }

.pdp__crumbs {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.pdp__crumbs a { color: var(--ink-muted); }
.pdp__crumbs a:hover { color: var(--accent); }
.pdp__crumbs span { color: var(--ink-soft); font-weight: 600; }

.pdp__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  margin: 0 0 12px;
}
.pdp__stars-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.pdp__reviews-link {
  font-size: 13px;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--hairline);
}
.pdp__reviews-link:hover { color: var(--accent); border-color: var(--accent); }
.pdp__lede {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 20px;
}
.pdp__pricing { margin-bottom: 14px; }
.pdp__price {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.01em;
}
.pdp__price-sub {
  font-size: 13px;
  color: var(--ink-muted);
}
.pdp__stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.pdp__stock--in { background: rgba(31,138,68,0.08); color: var(--green); }
.pdp__stock .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.pdp__qty {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.pdp__qty label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-stepper button {
  width: 44px; height: 44px;
  background: var(--white);
  border: none;
  font-size: 18px;
  font-weight: 700;
}
.qty-stepper button:hover { background: var(--off-white); }
.qty-stepper input {
  width: 52px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
}
.pdp__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.pdp__bulk-hint {
  margin: 0 0 28px;
  font-size: 13px;
  color: var(--ink-muted);
}
.pdp__bulk-hint a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/* Accordion */
.acc {
  border-top: 1px solid var(--hairline);
}
.acc details {
  border-bottom: 1px solid var(--hairline);
}
.acc summary {
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "+";
  font-size: 24px;
  color: var(--ink-muted);
  margin-left: 16px;
  font-weight: 300;
  transition: transform 180ms ease;
}
.acc details[open] summary::after { content: "\2212"; }
.acc summary em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink-muted);
  font-size: 13px;
  margin-left: 8px;
}
.acc__body {
  padding: 4px 0 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.spec-table th {
  text-align: left;
  padding: 8px 0;
  color: var(--ink-muted);
  font-weight: 500;
  width: 40%;
  border-bottom: 1px solid var(--hairline);
}
.spec-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
  font-weight: 600;
  color: var(--ink);
}
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

.acc__body--docs { display: flex; flex-direction: column; gap: 8px; }
.doc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--off-white);
}
.doc-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.doc-link em {
  margin-left: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: var(--ink-muted);
}
.doc-link--muted {
  background: transparent;
  color: var(--ink-muted);
  cursor: default;
}
.doc-link--muted:hover { border-color: var(--hairline); color: var(--ink-muted); }
.doc-link__icon { font-size: 16px; }

.review {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  margin: 0 0 16px;
}
.review p { margin: 4px 0 6px; color: var(--ink); font-size: 14px; }
.review cite { font-size: 12px; color: var(--ink-muted); font-style: normal; }
.review__all {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}

/* ---------- Shared button variant ---------- */
.btn--large { padding: 18px 28px; font-size: 16px; }
.btn--ghost-inv {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--ghost-inv:hover { background: var(--white); color: var(--steel); }

.eyebrow--light { color: var(--accent); opacity: 0.95; }

/* ---------- §5.7 Bulk CTA ---------- */
.bulk {
  padding: var(--section-y) 0;
  background:
    linear-gradient(135deg, var(--steel) 0%, var(--steel-soft) 100%);
  color: var(--white);
}
.bulk__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
@media (max-width: 820px) { .bulk__grid { grid-template-columns: 1fr; gap: 24px; } }
.bulk__h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  margin: 0 0 14px;
}
.bulk__lede {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin: 0;
  max-width: 56ch;
}
.bulk__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bulk__ctas .btn--primary {
  background: var(--accent);
  color: var(--white);
}
.bulk__ctas .btn--primary:hover { background: var(--accent-dark); }

/* ---------- §9.2 Trade ---------- */
.trade {
  padding: var(--section-y) 0;
  background: var(--off-white);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.trade__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) { .trade__grid { grid-template-columns: 1fr; gap: 32px; } }
.trade__h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  margin: 0 0 14px;
}
.trade__lede {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0 0 24px;
}
.trade__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trade__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.trade__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trade__signin {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid currentColor;
}
.trade__signin:hover { color: var(--accent); }

.trade__card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.trade__card-head { margin-bottom: 16px; }
.trade__card-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.trade__card-note {
  font-size: 11px;
  color: var(--ink-muted);
  font-style: italic;
}
.trade__tier {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
}
.trade__tier-name {
  font-weight: 700;
  font-size: 15px;
  grid-row: 1;
}
.trade__tier-disc {
  font-family: var(--font-display);
  font-size: 26px;
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--accent);
  align-self: center;
}
.trade__tier-term {
  font-size: 12px;
  color: var(--ink-muted);
  grid-row: 2;
}
.trade__tier--top .trade__tier-disc { color: var(--accent-dark); font-size: 30px; }

/* ---------- §3.1 R5 About ---------- */
.about {
  padding: var(--section-y) 0;
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) { .about__grid { grid-template-columns: 1fr; } }
.about__h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  margin: 0 0 20px;
}
.about__lede {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.about__team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.team-card {
  background: var(--off-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}
.team-card__photo {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--steel), var(--steel-soft));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 96px;
  margin: 0 auto 12px;
}
.team-card__photo--muted {
  background: linear-gradient(135deg, #e2e2e0, #c9c9c5);
  color: var(--ink-muted);
}
.team-card__initials {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.05em;
}
.team-card__name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}
.team-card__role {
  margin: 2px 0 8px;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.team-card__bio {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.team-card__bio em { color: var(--ink-muted); font-size: 11px; display: block; margin-top: 6px; }

/* ---------- Enquire form ---------- */
.enquire {
  padding: var(--section-y) 0;
  background: var(--off-white);
  border-top: 1px solid var(--hairline);
}
.enquire__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 820px) { .enquire__grid { grid-template-columns: 1fr; gap: 32px; } }
.enquire__h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  margin: 0 0 14px;
}
.enquire__lede { color: var(--ink-soft); margin: 0 0 20px; }
.enquire__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.enquire__details strong {
  color: var(--ink);
  margin-right: 4px;
}
.enquire__form {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.enquire__form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.enquire__form input,
.enquire__form textarea {
  padding: 12px 14px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  background: var(--white);
}
.enquire__form input:focus,
.enquire__form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(209,74,44,0.15);
}

/* ---------- Reviewer annotation banner ---------- */
.annotate-banner {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.annotate-banner a {
  color: var(--white);
  text-decoration: underline;
  margin-left: 6px;
  font-weight: 600;
}

/* ---------- Nav scrolled state ---------- */
.nav--scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* ---------- Real product imagery (Shopify catalogue) ---------- */

/* hero-float keyframes (still used by .hero-band__tile--feature img) */
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Category tile images */
.cat-tile__art {
  position: relative;
}
.cat-tile__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14%;
  mix-blend-mode: multiply;
  transition: transform 240ms ease;
}
.cat-tile:hover .cat-tile__art img {
  transform: scale(1.04);
}

/* Product showcase card photo */
.pcard__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12%;
  transition: transform 240ms ease;
}
.pcard:hover .pcard__photo {
  transform: scale(1.03);
}

/* PDP hero image + thumb buttons */
.pdp__hero-img {
  background: var(--white);
  display: block;
  padding: 0;
  overflow: hidden;
}
.pdp__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  display: block;
}
.pdp__thumb {
  padding: 0;
  background: var(--off-white);
  cursor: pointer;
  overflow: hidden;
}
.pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
