/* ===========================================
   BIZNIZ CHAIRS — GENERATED PAGE STYLES
   Shared stylesheet for /repair/{suburb} AND
   /spares/{sku} pages. Design tokens + components
   copied from the main site templates so every
   generated page renders identically to the main
   site without duplicating this CSS into every file.
=========================================== */
:root {
  --bg: #FAFAF7;
  --surface: #F4F1EB;
  --surface-2: #EDE9E1;
  --border: #E0D9CE;
  --text: #1A1A18;
  --muted: #6B6560;
  --faint: #9C9690;

  --green: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #52B788;
  --green-pale: #D8F3DC;
  --green-faint: #F0FAF2;

  --amber: #92400E;
  --amber-bg: #FFFBEB;
  --amber-light: #FEF3C7;
  --amber-border: #FDE68A;

  --red-light: #FEF2F2;
  --red-border: #FECACA;
  --red: #DC2626;

  --white: #FFFFFF;
  --black: #0D0D0B;

  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1160px;
  --pad-x: clamp(20px, 5vw, 48px);
  --section-py: clamp(64px, 9vw, 128px);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
h1, h2, h3, h4 { line-height: 1.2; font-family: var(--font-serif); }

.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  background: var(--green); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* HEADER / NAV */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,247,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.nav-logo span { color: var(--text); font-weight: 400; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nav-links a {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--text); background: var(--surface);
}
.nav-links a[aria-current="page"] { color: var(--green); font-weight: 600; }
.nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: .875rem !important;
  transition: background .15s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-mid) !important; }
.nav-toggle {
  display: none;
  background: none; border: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
  color: var(--text);
}
.nav-toggle:hover { background: var(--surface); }
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

.nav-drawer {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  padding: 24px var(--pad-x);
  display: flex; flex-direction: column; gap: 8px;
  transform: translateX(100%);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.nav-drawer.is-open { transform: translateX(0); }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.drawer-close {
  background: none; border: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--text);
}
.drawer-close:hover { background: var(--surface); }
.nav-drawer a {
  display: block; padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 1.1rem; font-weight: 500;
  color: var(--text);
}
.nav-drawer a:hover { background: var(--surface); }
.nav-drawer .drawer-cta {
  margin-top: 16px;
  background: var(--green); color: var(--white);
  text-align: center; font-weight: 700;
  padding: 16px;
}
.nav-drawer .drawer-cta:hover { background: var(--green-mid); }

/* BREADCRUMB */
.breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px var(--pad-x);
}
.breadcrumb__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--muted);
}
.breadcrumb__inner a { color: var(--muted); }
.breadcrumb__inner a:hover { color: var(--green); text-decoration: underline; }
.breadcrumb__inner svg { width: 14px; height: 14px; flex-shrink: 0; }
.breadcrumb__inner span { color: var(--text); font-weight: 500; }

/* HERO */
.hero {
  background: var(--green);
  color: var(--white);
  padding: clamp(56px, 9vw, 112px) var(--pad-x);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(82,183,136,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
}
@media (max-width: 860px) { .hero__inner { grid-template-columns: 1fr; } }
.hero__pretag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
}
.hero__pretag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-light);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}
.hero__title {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero__title em { font-style: normal; color: var(--green-light); }
.hero__body {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  padding: 14px 26px; border-radius: 100px;
  font-weight: 700; font-size: 1rem;
  transition: background .15s, transform .1s;
  min-height: 52px;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn-wa svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
  padding: 13px 24px; border-radius: 100px;
  font-weight: 600; font-size: .95rem;
  transition: background .15s, border-color .15s;
  min-height: 52px;
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

.hero__visual { display: flex; flex-direction: column; gap: 16px; }
.hero__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.hero__card-title {
  font-size: .75rem; font-weight: 700;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.repair-items { display: flex; flex-direction: column; gap: 12px; }
.repair-item { display: flex; align-items: center; gap: 12px; }
.repair-item__icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.repair-item__label { font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.9); }
.repair-item__sub { font-size: .78rem; color: rgba(255,255,255,.5); }
.hero__minimum {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; align-items: flex-start; gap: 12px;
}
.hero__minimum-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.hero__minimum-text { font-size: .85rem; color: rgba(255,255,255,.75); line-height: 1.5; }
.hero__minimum-text strong { color: var(--white); display: block; margin-bottom: 2px; }

/* STAT STRIP */
.stat-strip { background: var(--surface); border-bottom: 1px solid var(--border); padding: 24px var(--pad-x); }
.stat-strip__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 600px) { .stat-strip__inner { grid-template-columns: repeat(2, 1fr); } }
.stat-strip__item { text-align: center; }
.stat-strip__num {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--green);
  display: block; line-height: 1.1;
}
.stat-strip__label { font-size: .78rem; color: var(--muted); font-weight: 500; margin-top: 4px; }

/* SECTIONS */
.section { padding: var(--section-py) var(--pad-x); }
.section__inner { max-width: var(--max-w); margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--green); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--text);
  margin-bottom: 16px;
}
.section-body {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* REPAIR GRID */
.repair-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .repair-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .repair-grid { grid-template-columns: 1fr; } }
.repair-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.repair-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.repair-card__icon {
  width: 52px; height: 52px;
  background: var(--green-faint);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.repair-card__name {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.repair-card__desc { font-size: .875rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.repair-card__cost {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-faint);
  border: 1px solid var(--green-pale);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: .78rem; font-weight: 700; color: var(--green);
}
.repair-card__cost-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); }

/* ECONOMICS */
.econ { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.econ__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--section-py) var(--pad-x);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 760px) { .econ__inner { grid-template-columns: 1fr; } }
.econ__cards { display: flex; flex-direction: column; gap: 16px; }
.econ__card { border-radius: var(--radius-lg); padding: 24px; }
.econ__card--replace { background: var(--red-light); border: 1px solid var(--red-border); }
.econ__card--repair { background: var(--green-faint); border: 1px solid var(--green-pale); }
.econ__card-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.econ__card--replace .econ__card-label { color: var(--red); }
.econ__card--repair .econ__card-label { color: var(--green); }
.econ__card-amount { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; margin-bottom: 4px; }
.econ__card--replace .econ__card-amount { color: var(--red); }
.econ__card--repair .econ__card-amount { color: var(--green); }
.econ__card-note { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.econ__vs { text-align: center; font-family: var(--font-serif); font-size: .9rem; font-weight: 700; color: var(--muted); padding: 4px 0; }
.econ__quote {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.econ__quote p { font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; color: var(--text); line-height: 1.6; }
.econ__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--white);
  padding: 14px 28px; border-radius: 100px;
  font-weight: 700; font-size: 1rem;
  transition: background .15s;
  min-height: 52px;
}
.econ__cta:hover { background: var(--green-mid); }

/* SERVICE AREA */
.area-section { background: var(--white); }
.area-intro { font-size: clamp(.95rem, 1.3vw, 1.05rem); color: var(--muted); line-height: 1.7; max-width: 620px; margin-bottom: 32px; }
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.area-pill {
  display: flex; align-items: center; gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: .875rem; font-weight: 500; color: var(--text);
}
.area-pill--base { background: var(--green-faint); border-color: var(--green-pale); color: var(--green); font-weight: 700; }
.area-pill svg { width: 14px; height: 14px; }
.area-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .875rem; color: var(--muted);
  max-width: 540px;
}
.area-note strong { color: var(--text); }

/* PROCESS STEPS */
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 860px) { .process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .process__steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
}
.step__num {
  width: 40px; height: 40px;
  background: var(--green); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 16px;
}
.step__title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step__desc { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* FAQ */
.faq-section { background: var(--surface); border-top: 1px solid var(--border); }
.faq__list { max-width: 760px; margin-top: 40px; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; background: var(--white); }
.faq__q {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: .95rem; font-weight: 600; color: var(--text);
  cursor: pointer;
  transition: background .15s;
}
.faq__q:hover { background: var(--surface); }
.faq__chevron {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .15s;
}
.faq__chevron svg { width: 14px; height: 14px; transition: transform .25s; }
.faq__item.is-open .faq__chevron { background: var(--green); }
.faq__item.is-open .faq__chevron svg { stroke: var(--white); transform: rotate(180deg); }
.faq__a { display: none; padding: 0 24px 20px; font-size: .9rem; color: var(--muted); line-height: 1.7; }
.faq__item.is-open .faq__a { display: block; }

/* FINAL CTA */
.final-cta { background: var(--green); padding: var(--section-py) var(--pad-x); text-align: center; color: var(--white); }
.final-cta__inner { max-width: 680px; margin: 0 auto; }
.final-cta__tag {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--green-light);
  margin-bottom: 16px;
}
.final-cta__title { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 16px; }
.final-cta__body { font-size: clamp(.95rem, 1.4vw, 1.1rem); color: rgba(255,255,255,.75); line-height: 1.65; margin-bottom: 36px; }
.final-cta__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* FOOTER */
.site-footer { background: var(--black); color: rgba(255,255,255,.55); padding: clamp(48px, 7vw, 80px) var(--pad-x) clamp(24px, 4vw, 40px); }
.footer__grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }
.footer__brand-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.footer__brand-desc { font-size: .85rem; line-height: 1.65; max-width: 280px; }
.footer__col-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding-top: 28px;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px;
  font-size: .78rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer__legal a { color: rgba(255,255,255,.35); transition: color .15s; }
.footer__legal a:hover { color: rgba(255,255,255,.65); }

/* WHATSAPP FAB */
.wa-fab { position: fixed; bottom: 24px; right: 24px; z-index: 90; display: flex; align-items: center; gap: 10px; }
.wa-fab__tooltip {
  background: var(--text); color: var(--white);
  font-size: .8rem; font-weight: 600;
  padding: 6px 12px; border-radius: 100px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transform: translateX(8px);
  transition: opacity .2s, transform .2s;
}
.wa-fab:hover .wa-fab__tooltip { opacity: 1; transform: translateX(0); }
.wa-fab__btn {
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s, background .15s;
  cursor: pointer;
  color: var(--white);
}
.wa-fab__btn:hover { transform: scale(1.08); background: #1ebe5d; }
.wa-fab__btn svg { width: 28px; height: 28px; }

/* LOCAL CONTEXT (location-page-specific block) */
.local-context {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 32px;
}
.local-context p { font-size: .95rem; color: var(--muted); line-height: 1.75; }
.local-context p + p { margin-top: 14px; }

/* ===========================================
   PRODUCT PAGES (/spares/{sku})
=========================================== */
.product-hero__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 760px) { .product-hero__inner { grid-template-columns: 1fr; } }
.product-hero__gallery {
  aspect-ratio: 1/1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.product-hero__img { width: 100%; height: 100%; object-fit: contain; padding: 28px; }
.product-hero__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.product-hero__eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.product-hero__cat {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-faint); border: 1px solid var(--green-pale);
  color: var(--green); border-radius: 100px; padding: 4px 12px;
  font-size: .78rem; font-weight: 700;
}
.product-hero__sku { font-size: .8rem; color: var(--faint); font-weight: 600; letter-spacing: .03em; }
.product-hero__title { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; color: var(--text); margin-bottom: 14px; }
.product-hero__price { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--green); }
.product-hero__price-note { font-size: .82rem; color: var(--muted); margin: 6px 0 20px; }
.product-hero__desc { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px; max-width: 540px; }
.product-hero__specs {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px; margin-bottom: 28px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.product-hero__specs dt { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); margin-bottom: 4px; }
.product-hero__specs dd { font-size: .95rem; font-weight: 600; color: var(--text); }
.product-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.product-hero__ctas .btn-outline { border: 1.5px solid var(--border); color: var(--text); }
.product-hero__ctas .btn-outline:hover { background: var(--surface); border-color: var(--border); }
.product-hero__note {
  margin-top: 20px;
  font-size: .82rem; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
}
