/* ===========================================================
   Aussie Hardware — prototype styles
   Premium-architectural: teal + charcoal + warm white
   =========================================================== */

:root {
  /* Brand */
  --teal-900: #1d484e;
  --teal-700: #29737e;
  --teal-600: #21606a;
  --teal-500: #2f8b93;
  --teal-100: #cfe0e1;
  --teal-50:  #eaf2f2;

  /* Neutrals (warm) */
  --ink:      #16191b;
  --ink-2:    #2c3134;
  --muted:    #647074;
  --muted-2:  #9aa4a5;
  --line:     #d7dede;
  --line-2:   #e6eced;
  --paper:    #eef2f2;
  --paper-2:  #e4eded;
  --white:    #ffffff;

  --ok:       #1f8a5b;
  --warn:     #b4742a;

  /* Type */
  --display: "Lora", Georgia, "Times New Roman", serif;
  --body: "Manrope", system-ui, sans-serif;

  /* Geometry */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(22,25,27,.05), 0 2px 8px rgba(22,25,27,.04);
  --shadow-md: 0 4px 14px rgba(22,25,27,.07), 0 10px 40px rgba(22,25,27,.06);
  --shadow-lg: 0 20px 60px rgba(10,79,81,.12), 0 6px 18px rgba(22,25,27,.08);
  --maxw: 1240px;
  --ease: cubic-bezier(.4,.01,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
h1,h2,h3,h4 { font-family: var(--display); margin: 0; line-height: 1.05; letter-spacing: -.02em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-600);
}
.section-num {
  font-family: var(--display);
  font-weight: 800;
  color: var(--teal-100);
}

/* ===========================================================
   Top bar + progress
   =========================================================== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,245,241,.86);
  backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar__row {
  display: flex; align-items: center; gap: 24px;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__logo { height: 30px; width: auto; display: block; }
.foot .brand__logo { height: 30px; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--teal-700);
  display: grid; place-items: center;
  color: #fff; position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.brand__mark svg { width: 20px; height: 20px; }
.brand__name {
  font-family: var(--display); font-weight: 800; font-size: 18px;
  letter-spacing: -.02em; line-height: 1;
}
.brand__name span { color: var(--teal-600); }
.brand__tag { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

.topbar__spacer { flex: 1; }

/* progress steps */
.steps { display: flex; align-items: center; gap: 0; }
.step {
  display: flex; align-items: center; gap: 10px;
  padding: 0 4px;
  color: var(--muted-2);
  cursor: pointer;
  background: none; border: 0;
  transition: color .25s var(--ease);
}
.step__dot {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800; font-family: var(--display);
  background: var(--white); color: var(--muted-2);
  border: 1.5px solid var(--line);
  transition: all .3s var(--ease);
  flex: none;
}
.step__label { font-size: 12.5px; font-weight: 700; white-space: nowrap; letter-spacing: -.01em; }
.step__bar { width: 30px; height: 1.5px; background: var(--line); margin: 0 8px; transition: background .3s var(--ease); }
.step.is-active { color: var(--ink); }
.step.is-active .step__dot { background: var(--teal-700); color: #fff; border-color: var(--teal-700); box-shadow: 0 0 0 4px var(--teal-50); }
.step.is-done { color: var(--ink-2); }
.step.is-done .step__dot { background: var(--teal-700); color: #fff; border-color: var(--teal-700); }
.step.is-done + .step__bar, .step.is-active ~ .step__bar { }
.step__bar.is-filled { background: var(--teal-600); }
.step:disabled { cursor: not-allowed; opacity: .55; }

.btn-cart {
  display: flex; align-items: center; gap: 9px;
  background: var(--ink); color: #fff;
  border: 0; border-radius: 100px;
  padding: 10px 16px; font-size: 13.5px; font-weight: 700;
  transition: transform .2s var(--ease), background .2s;
}
.btn-cart:hover { background: var(--teal-700); transform: translateY(-1px); }
.btn-cart__count {
  background: var(--teal-500); color: #fff;
  min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: 100px; font-size: 11.5px; display: grid; place-items: center;
}

/* ===========================================================
   Buttons / pills
   =========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: 8px;
  font-weight: 700; font-size: 15px; letter-spacing: -.01em;
  padding: 15px 26px;
  transition: transform .2s var(--ease), box-shadow .25s, background .2s, color .2s;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--teal-700); color: #fff; box-shadow: 0 6px 18px rgba(13,110,112,.28); }
.btn--primary:hover { background: var(--teal-600); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(13,110,112,.34); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: var(--white); }
.btn--lg { padding: 18px 34px; font-size: 16.5px; }
.btn--block { width: 100%; }
.btn--ok { background: var(--ok); color: #fff; box-shadow: 0 6px 18px rgba(31,138,91,.28); }
.btn--ok:hover { filter: brightness(1.06); transform: translateY(-2px); }
.btn:disabled { background: var(--paper-2); color: var(--muted-2); box-shadow: none; cursor: not-allowed; transform: none; }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: .02em;
  padding: 7px 13px; border-radius: 100px;
  background: var(--teal-50); color: var(--teal-700);
  border: 1px solid var(--teal-100);
}
.pill svg { width: 14px; height: 14px; }

/* ===========================================================
   Hero
   =========================================================== */
.hero { padding: 18px 0 18px; }
.hero__head { max-width: 760px; margin-bottom: 40px; }
.hero h1 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800; line-height: 1.02;
  margin: 10px 0 14px;
}
.hero h1 em { font-style: normal; color: var(--teal-600); }
.hero__sub { font-size: clamp(16px,1.4vw,19px); color: var(--muted); max-width: 560px; }

.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
  cursor: pointer; text-align: left;
  display: flex; flex-direction: column;
  min-height: 420px; padding: 0;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal-100); }
.card__media { position: relative; flex: 1; min-height: 250px; overflow: hidden; }
.card__badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(22,25,27,.62); backdrop-filter: blur(6px);
  color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 100px;
}
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 6px; }
.card__title { font-size: 24px; font-weight: 800; }
.card__desc { font-size: 13.5px; color: var(--muted); }
.card__cta {
  margin-top: 14px; display: flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 14.5px; color: var(--teal-700);
  transition: gap .25s var(--ease);
}
.card:hover .card__cta { gap: 15px; }
.card__cta svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.card:hover .card__cta svg { transform: translateX(3px); }

/* striped placeholder */
.ph {
  position: absolute; inset: 0;
  background-color: var(--paper-2);
  background-image: repeating-linear-gradient(135deg, rgba(13,110,112,.07) 0 2px, transparent 2px 11px);
  display: grid; place-items: center;
}
.ph__label {
  font-family: "Manrope", monospace; font-size: 11px; letter-spacing: .08em;
  color: var(--teal-700); background: rgba(255,255,255,.7);
  padding: 5px 11px; border-radius: 100px; font-weight: 700;
  border: 1px dashed var(--teal-100);
}
.ph--ink { background-color: #1c2123; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, transparent 2px 11px); }
.ph--ink .ph__label { color: #cfe6e3; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }

/* trust strip */
.trust {
  margin-top: 44px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust__item {
  display: flex; align-items: center; gap: 13px;
  padding: 22px 8px 22px 0;
}
.trust__item + .trust__item { padding-left: 26px; border-left: 1px solid var(--line); }
.trust__ic {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: var(--teal-50); color: var(--teal-700);
  display: grid; place-items: center;
}
.trust__ic svg { width: 20px; height: 20px; }
.trust__t { font-family: var(--display); font-weight: 800; font-size: 15px; line-height: 1.1; }
.trust__s { font-size: 12px; color: var(--muted); }

/* ===========================================================
   Section frame
   =========================================================== */
.section { padding: 80px 0; position: relative; }
.section--alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.is-locked > .wrap { opacity: .4; filter: grayscale(.4); pointer-events: none; user-select: none; }
.lock-hint { display: none; }
.section.is-locked .lock-hint {
  display: flex; align-items: center; gap: 12px;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 5; background: var(--white); border: 1.5px solid var(--teal-100);
  box-shadow: var(--shadow-md); border-radius: 100px; padding: 14px 22px 14px 16px;
  max-width: calc(100% - 40px);
}
.lock-hint__ic { width: 36px; height: 36px; border-radius: 50%; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; flex: none; }
.lock-hint__ic svg { width: 18px; height: 18px; }
.lock-hint b { font-family: var(--display); font-weight: 800; font-size: 14px; color: var(--ink); display: block; }
.lock-hint span { font-size: 12.5px; color: var(--muted); }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.section__head h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; }
.section__head .eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.section__head p { color: var(--muted); max-width: 440px; font-size: 14.5px; }

/* ===========================================================
   Calculator
   =========================================================== */
.calc { display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; background: var(--white); box-shadow: var(--shadow-md); }
.calc__form { padding: 38px 40px 40px; }
.calc__visual { background: var(--ink); color: #fff; padding: 38px 40px; display: flex; flex-direction: column; }

.calc__product-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 13px; letter-spacing: .04em;
  color: var(--teal-700); background: var(--teal-50);
  padding: 8px 14px; border-radius: 100px; border: 1px solid var(--teal-100);
  margin-bottom: 22px;
}
.calc__product-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-600); }

.field { margin-bottom: 22px; }
.field__label { display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 700; margin-bottom: 9px; }
.field__label .hint { font-weight: 600; color: var(--muted); font-size: 12px; }
.field__row { display: flex; gap: 12px; }

.segmented { display: flex; gap: 8px; }
.seg {
  flex: 1; padding: 13px 10px; border-radius: var(--r-md);
  border: 1.5px solid var(--line); background: var(--white);
  font-weight: 700; font-size: 13.5px; color: var(--ink-2);
  transition: all .2s var(--ease); text-align: center;
}
.seg:hover { border-color: var(--teal-100); }
.seg.is-on { border-color: var(--teal-700); background: var(--teal-50); color: var(--teal-700); box-shadow: 0 0 0 3px var(--teal-50); }

.input-wrap { position: relative; display: flex; align-items: center; }
.input {
  width: 100%; padding: 14px 16px; border-radius: var(--r-md);
  border: 1.5px solid var(--line); background: var(--white);
  font-family: var(--body); font-size: 16px; font-weight: 600; color: var(--ink);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.input:focus { border-color: var(--teal-600); box-shadow: 0 0 0 3px var(--teal-50); }
.input--unit { padding-right: 52px; }
.unit { position: absolute; right: 15px; font-size: 13px; font-weight: 700; color: var(--muted); pointer-events: none; }
.input[type="number"]::-webkit-inner-spin-button { opacity: .4; }

.override { display: flex; align-items: center; gap: 10px; }
.override .input { flex: none; width: 92px; text-align: center; }
.override__note { font-size: 12px; color: var(--muted); }
.override__auto { font-size: 11px; font-weight: 700; color: var(--teal-700); cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }

.angle-field { transition: opacity .3s, max-height .3s; }
.angle-field.is-hidden { opacity: .4; }

.calc__foot { margin-top: 28px; display: flex; gap: 12px; align-items: center; }
.calc__foot .note { font-size: 12px; color: var(--muted); }

/* visual diagram side */
.calc__visual h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.calc__visual .vsub { font-size: 13px; color: #9fb6b5; margin-bottom: 18px; }
.diagram { flex: 1; display: grid; place-items: center; padding: 8px 0 14px; }
.diagram svg { width: 100%; height: auto; max-height: 320px; }
.dlabel { font-family: var(--body); font-weight: 700; }
.readout { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 4px; }
.readout__item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-md); padding: 12px 14px; }
.readout__k { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: #8fa9a8; font-weight: 700; }
.readout__v { font-family: var(--display); font-weight: 800; font-size: 21px; margin-top: 3px; }
.readout__v small { font-size: 12px; color: #9fb6b5; font-weight: 600; }

/* ===========================================================
   Kit table
   =========================================================== */
.kit { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.kit__head { padding: 26px 30px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.kit__head h3 { font-size: 22px; font-weight: 800; }
.kit__summary { font-size: 13px; color: var(--muted); margin-top: 4px; }
.kit__summary b { color: var(--teal-700); }

.kit__table { width: 100%; border-collapse: collapse; }
.kit__table th { text-align: left; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; padding: 14px 30px; border-bottom: 1px solid var(--line); }
.kit__table th.num, .kit__table td.num { text-align: right; }
.kit__table td { padding: 17px 30px; border-bottom: 1px solid var(--line-2); vertical-align: middle; }
.kit__table tr:last-child td { border-bottom: 0; }
.kit__item { display: flex; align-items: center; gap: 14px; }
.kit__thumb { width: 46px; height: 46px; border-radius: 10px; flex: none; background-color: var(--paper-2); background-image: repeating-linear-gradient(135deg, rgba(13,110,112,.1) 0 2px, transparent 2px 7px); display:grid; place-items:center; color: var(--teal-700); }
.kit__thumb svg { width: 22px; height: 22px; }
.kit__name { font-weight: 700; font-size: 14.5px; }
.kit__sku { font-size: 11.5px; color: var(--muted-2); font-family: monospace; letter-spacing: .02em; margin-top: 2px; }
.kit__tag-stair { display:inline-flex; align-items:center; gap:5px; font-size: 10.5px; font-weight: 700; color: var(--warn); background: #fbf2e6; padding: 3px 8px; border-radius: 100px; margin-left: 8px; vertical-align: middle; }
.kit__qty { font-weight: 700; }
.kit__price { color: var(--muted); font-size: 13.5px; }
.kit__line { font-weight: 800; font-family: var(--display); font-size: 15.5px; }

.kit__foot { padding: 24px 30px; background: var(--paper); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.kit__totals { text-align: right; margin-left: auto; }
.kit__totals .row { display: flex; gap: 40px; justify-content: space-between; font-size: 14px; color: var(--muted); margin-bottom: 7px; min-width: 280px; }
.kit__totals .row b { color: var(--ink); font-weight: 700; }
.kit__totals .grand { border-top: 1.5px solid var(--line); padding-top: 12px; margin-top: 4px; }
.kit__totals .grand .lbl { font-family: var(--display); font-weight: 800; font-size: 16px; color: var(--ink); }
.kit__totals .grand .val { font-family: var(--display); font-weight: 800; font-size: 30px; color: var(--teal-700); }

/* qty stepper (review) */
.stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 100px; overflow: hidden; }
.stepper button { width: 32px; height: 32px; border: 0; background: var(--white); color: var(--ink); font-size: 17px; font-weight: 700; display: grid; place-items: center; transition: background .15s; }
.stepper button:hover { background: var(--teal-50); color: var(--teal-700); }
.stepper input { width: 42px; height: 32px; border: 0; text-align: center; font-family: var(--body); font-weight: 700; font-size: 14px; color: var(--ink); outline: none; -moz-appearance: textfield; }
.stepper input::-webkit-inner-spin-button { display: none; }

/* review project banner */
.proj-banner {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: var(--teal-900); color: #fff; border-radius: var(--r-lg);
  padding: 20px 26px; margin-bottom: 26px;
}
.proj-banner__ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.12); display: grid; place-items: center; flex: none; }
.proj-banner__ic svg { width: 22px; height: 22px; }
.proj-banner h4 { font-size: 17px; font-weight: 800; }
.proj-banner__specs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 7px; }
.proj-banner__specs span { font-size: 12.5px; background: rgba(255,255,255,.1); padding: 4px 11px; border-radius: 100px; font-weight: 600; }
.proj-banner__edit { margin-left: auto; }

/* your details + fulfilment */
.details-card { margin-top: 26px; border: 1.5px solid var(--line); border-radius: var(--r-lg); background: var(--white); padding: 24px 26px; }
.details-card__head h3 { font-family: var(--display); font-weight: 800; font-size: 19px; }
.details-card__head p { font-size: 13px; color: var(--muted); margin-top: 5px; }
.fulfil { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.fulfil__opt { display: flex; align-items: center; gap: 13px; text-align: left; border: 1.5px solid var(--line); background: var(--white); border-radius: var(--r-md); padding: 15px 16px; transition: all .18s var(--ease); }
.fulfil__opt:hover { border-color: var(--teal-100); }
.fulfil__opt.is-on { border-color: var(--teal-700); background: var(--teal-50); box-shadow: 0 0 0 3px var(--teal-50); }
.fulfil__ic { width: 38px; height: 38px; border-radius: 10px; background: var(--paper); color: var(--teal-700); display: grid; place-items: center; flex: none; }
.fulfil__opt.is-on .fulfil__ic { background: var(--white); }
.fulfil__ic svg { width: 20px; height: 20px; }
.fulfil__txt { flex: 1; }
.fulfil__txt b { font-family: var(--display); font-weight: 800; font-size: 14.5px; display: block; }
.fulfil__txt span { font-size: 12px; color: var(--muted); }
.fulfil__radio { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--line); flex: none; display: grid; place-items: center; }
.fulfil__opt.is-on .fulfil__radio { border-color: var(--teal-700); }
.fulfil__opt.is-on .fulfil__radio::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--teal-700); }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.details-grid .full { grid-column: 1 / -1; }
.details-grid .field { margin: 0; }
.details-grid .input.is-error { border-color: #c2492f; box-shadow: 0 0 0 3px rgba(194,73,47,.1); }
.pickup-note { display: none; align-items: flex-start; gap: 12px; margin-top: 16px; padding: 14px 16px; border-radius: var(--r-md); background: var(--teal-50); border: 1px solid var(--teal-100); }
.pickup-note.is-show { display: flex; }
.pickup-note svg { width: 19px; height: 19px; color: var(--teal-700); flex: none; margin-top: 1px; }
.pickup-note b { font-family: var(--display); font-weight: 800; font-size: 13.5px; display: block; }
.pickup-note span { font-size: 12.5px; color: var(--ink-2); line-height: 1.45; }

/* approval / no-delay reassurance note */
.delay-note { display: flex; align-items: flex-start; gap: 11px; margin-top: 16px; padding: 14px 16px; border-radius: var(--r-md); background: var(--paper); border: 1px solid var(--line); }
.delay-note svg { width: 18px; height: 18px; color: var(--teal-700); flex: none; margin-top: 1px; }
.delay-note b { font-family: var(--display); font-weight: 800; font-size: 13px; color: var(--ink); }
.delay-note p { font-size: 12.5px; color: var(--muted); margin-top: 3px; line-height: 1.5; }
.guides-row{display:flex;align-items:center;gap:14px;flex-wrap:wrap;padding-top:16px;margin-top:2px;border-top:1px solid var(--line)}
.guides-row__label{display:flex;align-items:center;gap:6px;font-size:11.5px;font-weight:800;letter-spacing:.08em;color:var(--muted-2);text-transform:uppercase}
.guide-pill{display:inline-flex;align-items:center;gap:8px;border:1px solid var(--line);border-radius:100px;padding:8px 8px 8px 16px;font-size:13.5px;font-weight:700;color:var(--ink);text-decoration:none;background:var(--white)}
.guide-pill:hover{border-color:var(--teal-700)}
.guide-pill__badge{background:var(--teal-700);color:#fff;font-size:10px;font-weight:800;padding:4px 8px;border-radius:100px;letter-spacing:.03em}
.upload-drop{display:flex;flex-direction:column;align-items:center;border:1.5px dashed var(--line);border-radius:var(--r-md);padding:24px 20px;text-align:center;background:var(--paper);margin-top:20px;cursor:pointer;transition:border-color .15s}
.upload-drop:hover,.upload-drop.is-drag{border-color:var(--teal-700);background:var(--teal-50)}
.upload-drop svg{width:22px;height:22px;color:var(--teal-700);margin-bottom:8px}
.upload-drop__label{font-weight:700;font-size:14px}
.upload-drop__sub{font-size:12.5px;color:var(--muted);margin-top:4px}
.upload-list{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.upload-list__item{display:flex;align-items:center;gap:8px;background:var(--white);border:1px solid var(--line);border-radius:100px;padding:6px 8px 6px 12px;font-size:12.5px;font-weight:600}
.upload-list__item button{border:0;background:var(--paper-2);color:var(--muted-2);border-radius:50%;width:18px;height:18px;display:grid;place-items:center;cursor:pointer;font-size:12px;line-height:1}
.upload-list__item button:hover{background:#f0d4c7;color:var(--warn)}

.gate__hint { display: none; font-size: 12.5px; font-weight: 600; color: var(--warn); }
.gate__hint.is-show { display: block; }

/* confirm gate */
.confirm-gate {
  margin-top: 26px; padding: 22px 26px;
  border: 1.5px solid var(--line); border-radius: var(--r-lg);
  background: var(--white); display: flex; flex-direction: column; gap: 18px;
}
.checkrow { display: flex; align-items: flex-start; gap: 13px; cursor: pointer; }
.checkrow input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox {
  width: 24px; height: 24px; border-radius: 7px; flex: none; margin-top: 1px;
  border: 1.5px solid var(--line); background: var(--white);
  display: grid; place-items: center; transition: all .2s var(--ease);
}
.checkbox svg { width: 15px; height: 15px; color: #fff; opacity: 0; transform: scale(.6); transition: all .2s var(--ease); }
.checkrow input:checked + .checkbox { background: var(--ok); border-color: var(--ok); }
.checkrow input:checked + .checkbox svg { opacity: 1; transform: scale(1); }
.checkrow__txt { font-size: 14.5px; font-weight: 600; }
.checkrow input:focus-visible + .checkbox { box-shadow: 0 0 0 3px var(--teal-50); }
.gate__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.gate__actions .btn { flex: 1; min-width: 220px; }

/* confirmation success */
.success { text-align: center; max-width: 560px; margin: 0 auto; padding: 30px 0; }
.success__ic { width: 78px; height: 78px; border-radius: 50%; background: var(--ok); display: grid; place-items: center; margin: 0 auto 24px; box-shadow: 0 12px 30px rgba(31,138,91,.3); animation: pop .5s var(--ease); }
.success__ic svg { width: 40px; height: 40px; color: #fff; }
@keyframes pop { 0% { transform: scale(.5); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.success h2 { font-size: 34px; font-weight: 800; margin-bottom: 12px; }
.success p { color: var(--muted); font-size: 16px; margin-bottom: 26px; }
.success__ref { display: inline-flex; gap: 10px; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: 10px 18px; font-size: 14px; margin-bottom: 28px; }
.success__ref b { font-family: monospace; letter-spacing: .04em; }

/* empty state for locked sections */
.empty-hint { text-align: center; color: var(--muted); padding: 60px 20px; }
.empty-hint svg { width: 40px; height: 40px; color: var(--muted-2); margin-bottom: 14px; }
.empty-hint b { color: var(--ink-2); display: block; font-family: var(--display); font-size: 18px; margin-bottom: 6px; }

/* footer */
.foot { padding: 64px 0 40px; color: var(--muted); font-size: 13px; border-top: 1px solid var(--line); margin-top: 40px; }
.foot__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; }
.foot__brandcol .brand__logo { height: 34px; margin-bottom: 16px; }
.foot__blurb { font-size: 13.5px; color: var(--muted); line-height: 1.6; max-width: 38ch; margin: 0 0 18px; }
.foot__contact { display: flex; flex-direction: column; gap: 9px; }
.foot__contact a { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-2); text-decoration: none; font-weight: 700; font-size: 13.5px; }
.foot__contact a:hover { color: var(--teal-700); }
.foot__contact svg { width: 16px; height: 16px; color: var(--teal-700); }
.foot__col h5 { font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin: 0 0 16px; }
.foot__link { display: block; background: none; border: 0; padding: 0 0 11px; text-align: left; font-family: var(--body); font-size: 13.5px; font-weight: 600; color: var(--muted); text-decoration: none; cursor: pointer; transition: color .15s var(--ease); }
.foot__link:hover { color: var(--teal-700); }
.foot__bar { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 22px; font-size: 12.5px; }
.hub-hero{padding:24px 0 0}
.tag-row{display:flex;gap:8px}
.tag{background:var(--paper-2);border:1px solid var(--line);border-radius:100px;padding:4px 10px;font-size:10.5px;font-weight:800;letter-spacing:.04em;color:var(--ink-2)}
.tag--soon{background:var(--teal-50);color:var(--teal-700);border-color:var(--teal-100)}
.hub-hero__eyebrow{font-size:12px;font-weight:800;letter-spacing:.1em;color:var(--muted-2);text-transform:uppercase}
.hub-hero h1{font-size:clamp(28px,3.6vw,40px);margin:8px 0 10px}
.hub-hero p{font-size:16px;color:var(--muted);max-width:56ch}
.hub-feature{position:relative;display:block;border-radius:var(--r-lg);overflow:hidden;background:var(--ink);margin-top:16px;aspect-ratio:21/9;text-decoration:none;color:inherit}
.hub-feature__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.hub-feature__scrim{position:absolute;inset:0;background:linear-gradient(0deg,rgba(10,14,14,.82) 0%,rgba(10,14,14,.35) 45%,rgba(10,14,14,0) 75%)}
.hub-feature__body{position:relative;height:100%;padding:clamp(20px,3vw,40px);display:flex;flex-direction:column;justify-content:flex-end;gap:8px;color:#fff}
.hub-feature__body h2{font-size:clamp(22px,2.6vw,32px)}
.hub-feature__body p{color:rgba(255,255,255,.82);font-size:14px;max-width:52ch}
.hub-feature__body .btn{width:max-content;margin-top:6px}
.tag--onimg{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.3);color:#fff}
.hub-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:16px}
.hub-card{border:1px solid var(--line);border-radius:var(--r-md);overflow:hidden;background:var(--white);text-decoration:none;color:inherit;display:flex;flex-direction:column;transition:transform .2s var(--ease),box-shadow .2s var(--ease)}
.hub-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}
.hub-card__media{position:relative;padding-top:75%;background:var(--paper-2);flex:none}
.hub-card__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.hub-card__body{padding:12px 14px;display:flex;align-items:center;justify-content:space-between;gap:8px}
.hub-card__body h3{font-size:15px}
.hub-card__body svg{width:16px;height:16px;color:var(--muted-2);flex:none}
.hub-trust{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;background:var(--paper);border-radius:var(--r-lg);padding:10px clamp(20px,3vw,32px);margin-top:12px}
.hub-trust__item{display:flex;align-items:center;gap:12px}
.hub-trust__item svg{width:22px;height:22px;color:var(--teal-700);flex:none}
.hub-trust__item b{display:block;font-size:14px}
.hub-trust__item span{font-size:12px;color:var(--muted)}
.hub-h2{font-size:24px;margin:40px 0 16px}
.hub-scroll{display:flex;gap:18px;overflow-x:auto;padding-bottom:6px;scrollbar-width:none}
.hub-scroll::-webkit-scrollbar{display:none}
.part-card{flex:0 0 220px;border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;background:var(--white)}
.part-card__media{aspect-ratio:1;background:var(--paper-2)}
.part-card__media img{width:100%;height:100%;object-fit:cover;display:block}
.part-card__body{padding:14px 16px 18px}
.part-card__body h4{font-size:15px;margin-bottom:2px}
.part-card__body .price{font-size:12.5px;color:var(--muted);margin-bottom:12px}
.hub-arrows{display:flex;gap:8px}
.hub-arrows button{width:38px;height:38px;border-radius:50%;border:1px solid var(--line);background:var(--white);color:var(--ink-2);display:grid;place-items:center;cursor:pointer}
.hub-arrows button:hover{border-color:var(--teal-700);color:var(--teal-700)}
.hub-testi{background:var(--ink-2);color:#fff;border-radius:var(--r-xl);padding:clamp(28px,4vw,48px);margin-top:24px;display:grid;grid-template-columns:1fr 1.1fr;gap:32px;align-items:center}
.hub-testi__media{aspect-ratio:16/11;border-radius:var(--r-lg);overflow:hidden;background:rgba(255,255,255,.08)}
.hub-testi__media img{width:100%;height:100%;object-fit:cover;display:block}
.hub-testi blockquote{margin:0 0 16px;font-family:var(--display);font-weight:800;font-size:clamp(20px,2.2vw,27px);line-height:1.35}
.hub-testi cite{font-style:normal;font-size:13.5px;opacity:.75}
.hub-cta{text-align:center;background:var(--paper);border-radius:var(--r-xl);padding:clamp(32px,5vw,56px) 24px;margin-top:48px}
.hub-cta h2{font-size:clamp(28px,3.4vw,40px);margin-bottom:12px}
.hub-cta p{color:var(--muted);font-size:16px;margin-bottom:26px}
@media(max-width:980px){.hub-feature{grid-template-columns:1fr}.hub-grid{grid-template-columns:1fr 1fr}.hub-trust{grid-template-columns:1fr 1fr}.hub-testi{grid-template-columns:1fr}}
@media(max-width:560px){.hub-grid{grid-template-columns:1fr}}
.foot__legal { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.foot__legal a { color: var(--ink-2); font-weight: 700; text-decoration: none; }
.foot__legal a:hover { color: var(--teal-700); }
@media (max-width: 860px) { .foot__grid { grid-template-columns: 1fr 1fr; gap: 32px; } .foot__brandcol { grid-column: 1 / -1; } }
@media (max-width: 520px) { .foot__grid { grid-template-columns: 1fr; } .foot__bar { flex-direction: column; align-items: flex-start; gap: 12px; } }

/* toast */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 120%);
  background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 100px;
  font-weight: 700; font-size: 14px; z-index: 100; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px; transition: transform .4s var(--ease);
}
.toast.is-show { transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; color: var(--teal-500); }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1080px) {
  .calc { grid-template-columns: 1fr; }
  .calc__visual { order: -1; }
}
@media (max-width: 860px) {
  .step__label { display: none; }
  .step__bar { width: 16px; margin: 0 4px; }
  .brand__tag { display: none; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 340px; }
  .trust { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(3) { border-left: 0; padding-left: 0; }
  .trust__item { padding-left: 0 !important; border-left: 0 !important; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 18px; }
  .section { padding: 54px 0; }
  .calc__form, .calc__visual { padding: 26px 22px; }
  .kit__table th:nth-child(3), .kit__table td:nth-child(3) { display: none; }
  .kit__head, .kit__foot { padding: 20px; }
  .kit__table th, .kit__table td { padding-left: 20px; padding-right: 20px; }
  .topbar__row { gap: 12px; }
  .btn-cart span.lbl { display: none; }
}
@media (max-width: 520px) {
  .trust { grid-template-columns: 1fr; }
  .readout { grid-template-columns: 1fr 1fr; }
}

/* ===========================================================
   ADDED: real-photo cards · dual CTA
   =========================================================== */
.card { cursor: default; }
.card__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .6s var(--ease);
}
.card:hover .card__photo { transform: scale(1.05); }
.card__media { cursor: pointer; }
.card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,79,81,.28), rgba(10,79,81,0) 55%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.card:hover .card__media::after { opacity: 1; }
.card__actions { display: flex; flex-direction: column; gap: 9px; margin-top: 16px; }
.card__btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 100px; font-weight: 700; font-size: 14px; font-family: var(--body);
  padding: 13px 18px; border: 1.5px solid transparent; width: 100%;
  transition: transform .2s var(--ease), background .2s, border-color .2s, color .2s;
}
.card__btn svg { width: 16px; height: 16px; }
.card__btn--primary { background: var(--teal-700); color: #fff; }
.card__btn--primary:hover { background: var(--teal-600); transform: translateY(-1px); }
.card__btn--ghost { background: var(--white); color: var(--ink); border-color: var(--line); }
.card__btn--ghost:hover { border-color: var(--teal-600); color: var(--teal-700); background: var(--teal-50); }

/* ===========================================================
   ADDED: Individual Products (shop)
   =========================================================== */
.shop-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  flex-wrap: wrap; margin-bottom: 26px;
}
.shop-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.shop-tab {
  border: 1.5px solid var(--line); background: var(--white); color: var(--ink-2);
  border-radius: 100px; padding: 10px 18px; font-weight: 700; font-size: 13.5px;
  transition: all .2s var(--ease);
}
.shop-tab:hover { border-color: var(--teal-100); }
.shop-tab.is-on { background: var(--teal-700); color: #fff; border-color: var(--teal-700); }
.sortby { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); font-weight: 600; }
.sortby select {
  font-family: var(--body); font-weight: 700; font-size: 13.5px; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 100px; padding: 9px 34px 9px 14px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236b7173' stroke-width='2.4'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 13px center;
  appearance: none; cursor: pointer; outline: none;
}
.sortby select:focus { border-color: var(--teal-600); }

.shop-layout { display: grid; grid-template-columns: 248px 1fr; gap: 32px; align-items: start; }

.filters { position: sticky; top: 88px; }
.filters__title { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.fgroup { border-bottom: 1px solid var(--line); }
.fgroup__head {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: 0; padding: 16px 2px;
  font-family: var(--display); font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink);
}
.fgroup__head .pm { font-size: 18px; color: var(--muted); font-weight: 400; }
.fgroup__body { padding: 2px 2px 16px; display: flex; flex-direction: column; gap: 11px; }
.fgroup.is-collapsed .fgroup__body { display: none; }
.fcheck { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; color: var(--ink-2); line-height: 1.35; }
.fcheck input { position: absolute; opacity: 0; width: 0; height: 0; }
.fbox { width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--line); flex: none; margin-top: 1px; display: grid; place-items: center; transition: all .2s var(--ease); }
.fbox svg { width: 12px; height: 12px; color: #fff; opacity: 0; transition: opacity .15s; }
.fcheck input:checked + .fbox { background: var(--teal-700); border-color: var(--teal-700); }
.fcheck input:checked + .fbox svg { opacity: 1; }
.fcheck:hover .fbox { border-color: var(--teal-600); }
.fcheck__count { color: var(--muted-2); font-size: 12px; }

.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.prod {
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--white);
  display: flex; flex-direction: column; overflow: hidden;
  transition: box-shadow .25s var(--ease), border-color .2s, transform .25s;
}
.prod:hover { box-shadow: var(--shadow-md); border-color: var(--teal-100); transform: translateY(-3px); }
.prod__media { position: relative; aspect-ratio: 1 / 1; background: var(--paper); display: grid; place-items: center; border-bottom: 1px solid var(--line-2); }
.prod__media .pic {
  width: 100%; height: 100%; display: grid; place-items: center; color: var(--teal-700);
  background-image: repeating-linear-gradient(135deg, rgba(13,110,112,.06) 0 2px, transparent 2px 12px);
}
.prod__media .pic svg { width: 46%; height: 46%; opacity: .8; }
.prod__stock {
  position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; color: var(--ink-2);
  background: rgba(255,255,255,.92); padding: 5px 10px; border-radius: 100px; border: 1px solid var(--line);
}
.prod__stock .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.prod__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.prod__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.prod__name { font-family: var(--display); font-weight: 800; font-size: 14.5px; color: var(--teal-700); line-height: 1.2; }
.prod__price { font-weight: 800; font-size: 14px; color: var(--warn); white-space: nowrap; text-align: right; }
.prod__price small { display: block; font-size: 10px; color: var(--muted); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.prod__desc { font-size: 12.5px; color: var(--muted); line-height: 1.45; flex: 1; }
.prod__opt {
  width: 100%; font-family: var(--body); font-weight: 600; font-size: 13px; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 11px 32px 11px 12px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236b7173' stroke-width='2.4'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 11px center;
  appearance: none; cursor: pointer; outline: none;
}
.prod__opt:focus { border-color: var(--teal-600); }
.prod__opt.is-error { border-color: #c2492f; box-shadow: 0 0 0 3px rgba(194,73,47,.1); }
.prod__add {
  width: 100%; border: 0; border-radius: var(--r-sm); background: var(--teal-700); color: #fff;
  font-family: var(--body); font-weight: 700; font-size: 14px; padding: 13px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s var(--ease), transform .15s;
}
.prod__add svg { width: 16px; height: 16px; }
.prod__add:hover { background: var(--teal-600); }
.prod__add:active { transform: scale(.98); }
.prod__add.is-added { background: var(--ok); }

.shop-empty { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 50px 20px; }

/* shop kit-promo banner */
.shop-promo {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: var(--teal-50); border: 1px solid var(--teal-100); border-radius: var(--r-lg);
  padding: 18px 24px; margin-bottom: 26px;
}
.shop-promo__ic { width: 42px; height: 42px; border-radius: 11px; background: var(--white); color: var(--teal-700); display: grid; place-items: center; flex: none; border: 1px solid var(--teal-100); }
.shop-promo__ic svg { width: 22px; height: 22px; }
.shop-promo b { font-family: var(--display); font-size: 15px; }
.shop-promo p { font-size: 13px; color: var(--ink-2); }
.shop-promo .btn { margin-left: auto; }

/* ===========================================================
   ADDED: Custom-quote callout + modal
   =========================================================== */
.quote-callout {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 20px; padding: 16px 20px;
  border: 1.5px dashed var(--teal-100); border-radius: var(--r-md); background: var(--teal-50);
}
.quote-callout.is-hot { border-style: solid; border-color: var(--teal-600); background: var(--teal-50); }
.quote-callout__ic { width: 38px; height: 38px; border-radius: 10px; background: var(--white); color: var(--teal-700); display: grid; place-items: center; flex: none; border: 1px solid var(--teal-100); }
.quote-callout__ic svg { width: 20px; height: 20px; }
.quote-callout__txt { flex: 1; min-width: 200px; }
.quote-callout__txt b { font-family: var(--display); font-size: 14.5px; display: block; }
.quote-callout__txt span { font-size: 12.5px; color: var(--muted); }
.quote-callout .btn { padding: 11px 18px; font-size: 13.5px; }

.modal-scrim {
  position: fixed; inset: 0; z-index: 200; background: rgba(16,19,21,.5);
  backdrop-filter: blur(3px); display: grid; place-items: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .25s var(--ease);
}
.modal-scrim.is-open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--paper); border-radius: var(--r-xl); width: min(540px, 100%);
  max-height: 92vh; overflow: auto; box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(.98); transition: transform .3s var(--ease);
}
.modal--wide { width: min(860px, 100%); }
.modal-scrim.is-open .modal { transform: none; }
.modal__head { padding: 26px 30px 0; position: relative; }
.modal__head .eyebrow { display: block; margin-bottom: 10px; }
.modal__head h3 { font-family: var(--display); font-weight: 800; font-size: 25px; letter-spacing: -.02em; }
.modal__head p { color: var(--muted); font-size: 14px; margin-top: 8px; }
.modal__close {
  position: absolute; top: 18px; right: 20px; width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: var(--white); color: var(--ink); display: grid; place-items: center; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: background .2s;
}
.modal__close:hover { background: var(--paper-2); }
.modal__close svg { width: 18px; height: 18px; }
.modal__body { padding: 22px 30px 30px; }
.modal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modal__grid .field { margin-bottom: 0; }
.modal__grid .full { grid-column: 1 / -1; }
.modal textarea.input { resize: vertical; min-height: 84px; font-size: 14.5px; line-height: 1.5; }
.modal__call {
  display: flex; align-items: center; gap: 13px; margin-top: 4px; margin-bottom: 20px;
  padding: 14px 18px; border-radius: var(--r-md); background: var(--ink); color: #fff;
}
.modal__call svg { width: 22px; height: 22px; color: var(--teal-500); flex: none; }
.modal__call .k { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #9fb6b5; font-weight: 700; }
.modal__call .v { font-family: var(--display); font-weight: 800; font-size: 19px; }
.modal__call a { margin-left: auto; font-weight: 700; font-size: 13px; color: var(--teal-500); }
.modal .success { padding: 10px 0 6px; }
.modal .success__ic { width: 64px; height: 64px; margin-bottom: 18px; }
.modal .success__ic svg { width: 32px; height: 32px; }
.modal .success h2 { font-size: 26px; }
.modal .success p { font-size: 14.5px; }

@media (max-width: 980px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .filters__title { display: none; }
  .fgroup:first-of-type { border-top: 1px solid var(--line); }
  .products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .products { grid-template-columns: 1fr 1fr; }
  .modal__grid { grid-template-columns: 1fr; }
  .prod__name { font-size: 13px; }
}
@media (max-width: 420px) {
  .products { grid-template-columns: 1fr; }
}

/* ===========================================================
   ADDED: Stairs & Treads — homepage row
   =========================================================== */
.cat-head {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin: 56px 0 24px; padding-top: 38px; border-top: 1px solid var(--line);
}
.cat-head h2 { font-family: var(--display); font-weight: 800; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.02em; }
.cat-head p { color: var(--muted); font-size: 14px; }
.cards--two { grid-template-columns: repeat(2, 1fr); }
.card--wide { min-height: 360px; }
.card__new {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--teal-700); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px;
}

/* ===========================================================
   ADDED: Configurator (product page) layout
   =========================================================== */
.cfg { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.cfg__media-col { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 18px; }
.cfg__image { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); aspect-ratio: 4 / 3.4; }
.cfg__image image-slot, .cfg__image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.cfg__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.cfg__thumb { aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); }
.cfg__thumb img { width: 100%; height: 100%; object-fit: cover; }

.cfg__back { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13.5px; color: var(--muted); margin-bottom: 18px; background: none; border: 0; transition: color .2s; }
.cfg__back:hover { color: var(--teal-700); }
.cfg__back svg { width: 16px; height: 16px; }

.cfg__panel-head h2 { font-family: var(--display); font-weight: 800; font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.02em; }
.cfg__panel-head p { color: var(--muted); font-size: 14.5px; margin-top: 12px; line-height: 1.55; }
.cfg__switch {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 16px;
  background: var(--teal-50); border: 1px solid var(--teal-100); border-radius: 100px;
  padding: 10px 16px; font-family: var(--body); font-weight: 700; font-size: 13px; color: var(--teal-700);
  cursor: pointer; transition: all .2s var(--ease);
}
.cfg__switch:hover { background: var(--teal-100); transform: translateY(-1px); }
.cfg__switch svg { width: 15px; height: 15px; flex: none; }
.cfg__switch svg:last-child { transition: transform .2s var(--ease); }
.cfg__switch:hover svg:last-child { transform: translateX(3px); }

.cfg__step { padding: 26px 0; border-bottom: 1px solid var(--line); }
.cfg__step:first-of-type { padding-top: 24px; }
.cfg__step-title { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.cfg__step-n { width: 24px; height: 24px; border-radius: 50%; background: var(--teal-50); color: var(--teal-700); font-family: var(--display); font-weight: 800; font-size: 12px; display: grid; place-items: center; flex: none; }
.cfg__step-title h4 { font-family: var(--display); font-weight: 800; font-size: 16px; letter-spacing: -.01em; }
.cfg__step-title .req { font-size: 11px; font-weight: 700; color: var(--muted-2); margin-left: auto; }

/* tread-count grid */
.tread-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.tread-btn {
  aspect-ratio: 1.05; border: 1.5px solid var(--line); background: var(--white); border-radius: var(--r-md);
  font-family: var(--display); font-weight: 800; font-size: 17px; color: var(--ink-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  transition: all .18s var(--ease); position: relative;
}
.tread-btn small { font-family: var(--body); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); }
.tread-btn:hover { border-color: var(--teal-100); transform: translateY(-1px); }
.tread-btn.is-on { border-color: var(--teal-700); background: var(--teal-50); color: var(--teal-700); box-shadow: 0 0 0 3px var(--teal-50); }
.tread-btn.is-on small { color: var(--teal-600); }
.tread-btn.is-rec::after {
  content: "★"; position: absolute; top: -7px; right: -7px;
  width: 18px; height: 18px; background: var(--warn); color: #fff; border-radius: 50%;
  font-size: 9px; display: grid; place-items: center; box-shadow: var(--shadow-sm);
}

.paint-color-wrap { margin-top: 4px; }
.paint-preview { margin: 10px 0 4px; }
.paint-preview image-slot { width: 100%; height: 150px; display: block; }
.paint-preview__cap { font-size: 12px; color: var(--muted); margin-top: 6px; }
.plate-example { display: flex; gap: 8px; margin: 10px 0 4px; }
.plate-example img { width: 50%; height: 110px; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); }
.plate-example img.plate-example__full { width: 100%; height: auto; object-fit: contain; }
.plate-example img.plate-example__small { width: auto; height: auto; max-width: 220px; max-height: 130px; object-fit: contain; margin: 0 auto; }
.plate-example.plate-example--center { justify-content: center; }
.plate-example__cap { font-size: 12px; color: var(--muted); margin-top: 6px; }

.species-card .ph-box img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.species-card .ph-box img#thumb-american { object-position: 50% 60%; }
.species-card .ph-box{position:relative}
.species-card .zoom-btn{position:absolute;top:6px;right:6px;width:26px;height:26px;border-radius:50%;background:rgba(22,25,27,.55);color:#fff;border:0;display:grid;place-items:center;cursor:pointer;z-index:2}
.species-card .zoom-btn svg{width:14px;height:14px}
.img-lightbox{position:fixed;inset:0;background:rgba(22,25,27,.82);z-index:999;display:none;align-items:center;justify-content:center;padding:40px}
.img-lightbox.is-open{display:flex}
.img-lightbox img{max-width:min(900px,90vw);max-height:85vh;border-radius:var(--r-lg);object-fit:contain;box-shadow:var(--shadow-lg)}
.img-lightbox__close{position:absolute;top:24px;right:24px;width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.15);color:#fff;border:0;display:grid;place-items:center;cursor:pointer}
.img-lightbox__close svg{width:20px;height:20px}
.field-group label{display:flex;align-items:center;gap:6px}
.measure-info-btn{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;border:1px solid var(--line);background:var(--paper);color:var(--teal-700);cursor:pointer;flex:none;padding:0}
.measure-info-btn:hover{background:var(--teal-700);color:#fff;border-color:var(--teal-700)}
.finish-preview { margin: 10px 0 4px; }
.example-photo{margin-top:20px;border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--line)}
.example-photo img{width:100%;max-height:320px;object-fit:cover;display:block}
.example-photo__cap{padding:10px 14px;font-size:12.5px;color:var(--muted);background:var(--paper)}
.finish-preview image-slot,.finish-preview img { width: 100%; height: 130px; display: block; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); }
.finish-preview__cap { font-size: 12px; color: var(--muted); margin-top: 6px; }
.timber-disclaimer { font-size: 11.5px; color: var(--muted); margin-top: 8px; font-style: italic; }
.spec-block{border:1px solid var(--line);border-radius:var(--r-lg);padding:20px 22px;background:var(--white)}
.spec-block + .spec-block{margin-top:0}
.avail-warning{margin-top:8px;padding:12px 14px;border-radius:var(--r-md);background:#fbf1ec;border:1px solid #f0d4c7;font-size:12.5px;color:var(--ink-2);line-height:1.5}
.avail-warning b{color:var(--warn);font-family:var(--display)}
.opt-row { display: flex; gap: 10px; flex-wrap: wrap; }
.opt {
  flex: 1; min-width: 130px; display: flex; align-items: center; gap: 11px;
  border: 1.5px solid var(--line); background: var(--white); border-radius: var(--r-md);
  padding: 14px 16px; text-align: left; transition: all .18s var(--ease);
}
.opt:hover { border-color: var(--teal-100); }
.opt.is-on { border-color: var(--teal-700); background: var(--teal-50); box-shadow: 0 0 0 3px var(--teal-50); }
.opt__radio { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--line); flex: none; display: grid; place-items: center; transition: all .18s; }
.opt.is-on .opt__radio { border-color: var(--teal-700); }
.opt.is-on .opt__radio::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--teal-700); }
.opt__txt b { font-family: var(--display); font-weight: 800; font-size: 14px; display: block; }
.opt__txt span { font-size: 11.5px; color: var(--muted); }
.opt__price { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--warn); white-space: nowrap; }

.cfg .field__label { font-size: 13px; }
.cfg .measure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cfg .measure-grid .full { grid-column: 1 / -1; }
.cfg textarea.input { resize: vertical; min-height: 76px; line-height: 1.5; font-size: 14.5px; }

/* width select + custom */
.width-row { display: flex; gap: 10px; align-items: center; }
.width-row select { flex: 1; }
.select {
  width: 100%; font-family: var(--body); font-weight: 600; font-size: 15px; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 14px 38px 14px 14px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236b7173' stroke-width='2.4'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none; cursor: pointer; outline: none;
}
.select:focus { border-color: var(--teal-600); box-shadow: 0 0 0 3px var(--teal-50); }

/* upload zone */
.upload {
  border: 1.5px dashed var(--line); border-radius: var(--r-md); background: var(--paper);
  padding: 22px; text-align: center; cursor: pointer; transition: all .2s var(--ease);
}
.upload:hover, .upload.is-drag { border-color: var(--teal-600); background: var(--teal-50); }
.upload input { display: none; }
.upload__ic { width: 38px; height: 38px; border-radius: 10px; background: var(--white); color: var(--teal-700); display: grid; place-items: center; margin: 0 auto 10px; border: 1px solid var(--teal-100); }
.upload__ic svg { width: 20px; height: 20px; }
.upload__t { font-weight: 700; font-size: 14px; }
.upload__s { font-size: 12px; color: var(--muted); margin-top: 3px; }
.files { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.file-chip { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 9px 12px; font-size: 13px; }
.file-chip__ic { width: 26px; height: 26px; border-radius: 6px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; flex: none; }
.file-chip__ic svg { width: 14px; height: 14px; }
.file-chip__name { font-weight: 600; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-chip__size { color: var(--muted-2); font-size: 11.5px; }
.file-chip__x { width: 22px; height: 22px; border-radius: 50%; border: 0; background: var(--paper-2); color: var(--muted); cursor: pointer; display: grid; place-items: center; flex: none; }
.file-chip__x:hover { background: #f0d9d2; color: #b4432a; }
.file-chip__x svg { width: 12px; height: 12px; }

/* smart step calculator readout */
.stepcalc {
  margin-top: 14px; border: 1px solid var(--teal-100); border-radius: var(--r-md);
  background: var(--teal-50); overflow: hidden;
}
.stepcalc__head { display: flex; align-items: center; gap: 9px; padding: 13px 16px; border-bottom: 1px solid var(--teal-100); font-weight: 800; font-family: var(--display); font-size: 13px; color: var(--teal-700); }
.stepcalc__head svg { width: 16px; height: 16px; }
.stepcalc__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stepcalc__cell { padding: 12px 14px; border-right: 1px solid var(--teal-100); }
.stepcalc__cell:last-child { border-right: 0; }
.stepcalc__k { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-600); font-weight: 700; }
.stepcalc__v { font-family: var(--display); font-weight: 800; font-size: 19px; color: var(--ink); margin-top: 2px; }
.stepcalc__v small { font-size: 11px; color: var(--muted); font-weight: 600; }
.stepcalc__note { padding: 11px 16px; font-size: 12px; display: flex; align-items: center; gap: 8px; }
.stepcalc__note.ok { color: var(--ok); }
.stepcalc__note.warn { color: var(--warn); background: #fbf2e6; }
.stepcalc__note svg { width: 15px; height: 15px; flex: none; }

/* stair diagrams (light card) */
.stair-diagrams { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stair-diagram { background: var(--ink); border-radius: var(--r-md); padding: 14px 16px; color: #fff; }
.stair-diagram h5 { font-family: var(--display); font-weight: 800; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #8fa9a8; margin-bottom: 6px; }
.stair-diagram svg { width: 100%; height: auto; }

/* sticky add-to-cart bar */
.cfg__cart {
  position: sticky; bottom: 0; margin-top: 4px; padding: 18px 0 4px;
  background: linear-gradient(to top, var(--white) 72%, rgba(255,255,255,0));
}
.cfg__cart-inner { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--ink); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.cfg__cart-price { color: #fff; }
.cfg__cart-price .k { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: #9fb6b5; font-weight: 700; }
.cfg__cart-price .v { font-family: var(--display); font-weight: 800; font-size: 26px; line-height: 1.1; }
.cfg__cart-price .v small { font-size: 12px; color: #9fb6b5; font-weight: 600; }
.cfg__cart .btn { margin-left: auto; }

/* bundle upsell */
.bundle { margin-top: 18px; border: 1.5px solid var(--teal-100); border-radius: var(--r-lg); overflow: hidden; }
.bundle__head { display: flex; align-items: flex-start; gap: 13px; padding: 18px 20px; background: var(--teal-50); cursor: pointer; }
.bundle__head .checkbox { margin-top: 2px; }
.bundle__head-txt b { font-family: var(--display); font-weight: 800; font-size: 15px; display: block; }
.bundle__head-txt span { font-size: 12.5px; color: var(--ink-2); }
.bundle__head-price { margin-left: auto; font-weight: 800; color: var(--warn); font-size: 13.5px; white-space: nowrap; }
.bundle__body { padding: 20px; border-top: 1px solid var(--teal-100); display: none; flex-direction: column; gap: 16px; }
.bundle.is-open .bundle__body { display: flex; }
.bundle__match { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--teal-700); font-weight: 700; background: var(--teal-50); padding: 10px 14px; border-radius: var(--r-sm); }
.bundle__match svg { width: 16px; height: 16px; }

/* info section: what happens after ordering */
.after { margin-top: 38px; padding-top: 34px; border-top: 1px solid var(--line); }
.after h3 { font-family: var(--display); font-weight: 800; font-size: 22px; margin-bottom: 22px; }
.after__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: af; }
.after__step { counter-increment: af; position: relative; padding-top: 44px; }
.after__step::before {
  content: counter(af); position: absolute; top: 0; left: 0;
  width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: #fff;
  font-family: var(--display); font-weight: 800; font-size: 14px; display: grid; place-items: center;
}
.after__step h5 { font-family: var(--display); font-weight: 800; font-size: 14.5px; margin-bottom: 5px; }
.after__step p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* item specs in cart/review */
.item-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.item-specs span { font-size: 11px; font-weight: 600; color: var(--ink-2); background: var(--paper); border: 1px solid var(--line); padding: 3px 9px; border-radius: 100px; }
.item-notes { font-size: 12px; color: var(--muted); margin-top: 7px; font-style: italic; max-width: 460px; }
.item-files { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 7px; }
.item-files span { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--teal-700); background: var(--teal-50); border: 1px solid var(--teal-100); padding: 3px 9px; border-radius: 100px; }
.item-files svg { width: 11px; height: 11px; }
.kit__tag-bundle { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 700; color: var(--teal-700); background: var(--teal-50); padding: 3px 8px; border-radius: 100px; margin-left: 8px; vertical-align: middle; }

@media (max-width: 980px) {
  .cfg { grid-template-columns: 1fr; }
  .cfg__media-col { position: static; }
  .cfg__image { aspect-ratio: 16 / 11; max-height: 380px; }
  .after__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .cards--two { grid-template-columns: 1fr; }
  .tread-grid { grid-template-columns: repeat(5, 1fr); }
  .stepcalc__grid { grid-template-columns: 1fr 1fr; }
  .stepcalc__cell:nth-child(2) { border-right: 0; }
  .stair-diagrams { grid-template-columns: 1fr; }
  .cfg__cart-inner { padding: 14px 16px; }
  .cfg__cart-price .v { font-size: 22px; }
}
@media (max-width: 520px) {
  .tread-grid { grid-template-columns: repeat(4, 1fr); }
  .measure-grid { grid-template-columns: 1fr !important; }
  .after__steps { grid-template-columns: 1fr; }
}

/* ===========================================================
   ADDED: Handrail configurator
   =========================================================== */
/* segmented control (mounting / profile fallback) */
.hr-seg { display: flex; gap: 8px; flex-wrap: wrap; }
.hr-seg .seg { flex: 1; min-width: 120px; }
.seg__sub { display: block; font-size: 11px; font-weight: 600; color: var(--muted); margin-top: 3px; }
.seg.is-on .seg__sub { color: var(--teal-600); }

/* shape chooser (straight vs bends) */
.shape-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.shape {
  border: 1.5px solid var(--line); background: var(--white); border-radius: var(--r-md);
  padding: 14px 10px 12px; text-align: center; transition: all .18s var(--ease);
  display: flex; flex-direction: column; align-items: center; gap: 9px;
}
.shape:hover { border-color: var(--teal-100); }
.shape.is-on { border-color: var(--teal-700); background: var(--teal-50); box-shadow: 0 0 0 3px var(--teal-50); }
.shape svg { width: 100%; height: 38px; }
.shape b { font-family: var(--display); font-weight: 800; font-size: 13px; }
.shape span { font-size: 11px; color: var(--muted); line-height: 1.3; }

/* section builder rows */
.sections { display: flex; flex-direction: column; gap: 12px; }
.hr-addbend {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  background: var(--white); border: 1.5px dashed var(--teal-200, var(--teal-100)); color: var(--teal-700);
  border-radius: var(--r-md); padding: 11px 18px; font-family: var(--body); font-weight: 700; font-size: 13.5px;
  cursor: pointer; transition: all .18s var(--ease);
}
.hr-addbend:hover { background: var(--teal-50); border-color: var(--teal-700); transform: translateY(-1px); }
.hr-addbend svg { width: 16px; height: 16px; }
.sec-row__remove {
  margin-left: auto; width: 26px; height: 26px; border-radius: 7px; flex: none;
  border: 0; background: var(--paper-2); color: var(--muted); cursor: pointer;
  display: grid; place-items: center; transition: all .15s var(--ease);
}
.sec-row__remove:hover { background: #f0d9d2; color: #b4432a; }
.sec-row__remove svg { width: 13px; height: 13px; }
.sec-row {
  border: 1.5px solid var(--line); border-radius: var(--r-md); background: var(--white);
  padding: 14px 16px; display: flex; flex-direction: column; gap: 12px;
}
.sec-row__head { display: flex; align-items: center; gap: 10px; }
.sec-row__badge { width: 22px; height: 22px; border-radius: 6px; background: var(--ink); color: #fff; font-family: var(--display); font-weight: 800; font-size: 11px; display: grid; place-items: center; flex: none; }
.sec-row__title { font-family: var(--display); font-weight: 800; font-size: 13.5px; }
.sec-row__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 12px; align-items: end; }
.sec-type { display: flex; gap: 6px; }
.sec-type button {
  flex: 1; padding: 9px 6px; border: 1.5px solid var(--line); background: var(--white);
  border-radius: var(--r-sm); font-family: var(--body); font-weight: 700; font-size: 12px; color: var(--ink-2);
  display: flex; align-items: center; justify-content: center; gap: 5px; transition: all .18s var(--ease);
}
.sec-type button svg { width: 13px; height: 13px; }
.sec-type button.is-on { border-color: var(--teal-700); background: var(--teal-50); color: var(--teal-700); }

/* adjustable-joiner connector between sections */
.joiner-note {
  display: flex; align-items: center; gap: 9px; padding: 9px 14px; margin: 2px 0 2px 18px;
  border-left: 2px dashed var(--teal-100); font-size: 12px; color: var(--teal-700); font-weight: 600;
}
.joiner-note svg { width: 16px; height: 16px; flex: none; }
.joiner-note--turn { flex-wrap: wrap; }
.joiner-note--turn .joiner-note__lbl { display: inline-flex; align-items: center; gap: 7px; flex: 1; min-width: 160px; }
.joiner-note--turn .joiner-note__lbl svg { width: 16px; height: 16px; flex: none; }
.turn-toggle { display: inline-flex; gap: 6px; }
.turn-toggle button { border: 1.5px solid var(--teal-100); background: var(--white); color: var(--teal-700); border-radius: 100px; padding: 6px 13px; font-family: var(--body); font-weight: 700; font-size: 12px; cursor: pointer; transition: all .15s var(--ease); }
.turn-toggle button.is-on { background: var(--teal-700); color: #fff; border-color: var(--teal-700); }

/* measurement tip */
.hr-tip {
  display: flex; gap: 11px; padding: 13px 15px; margin-bottom: 14px;
  border-radius: var(--r-md); background: var(--paper); border: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink-2); line-height: 1.5;
}
.hr-tip svg { width: 18px; height: 18px; color: var(--teal-700); flex: none; margin-top: 1px; }
.hr-tip b { color: var(--ink); font-weight: 700; }

/* per-section direction toggle */
.sec-dir { display: flex; align-items: center; gap: 8px; margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--line); }
.sec-dir__label { font-size: 11.5px; font-weight: 700; color: var(--muted); }
.sec-dir__btns { display: flex; gap: 6px; margin-left: auto; }
.sec-dir__btns button {
  display: inline-flex; align-items: center; gap: 5px; padding: 7px 12px;
  border: 1.5px solid var(--line); background: var(--white); border-radius: 100px;
  font-family: var(--body); font-weight: 700; font-size: 12px; color: var(--ink-2); transition: all .18s var(--ease);
}
.sec-dir__btns button svg { width: 13px; height: 13px; }
.sec-dir__btns button.is-on { border-color: var(--teal-700); background: var(--teal-50); color: var(--teal-700); }

/* rails-in-this-order tray */
.rails-tray { margin: 4px 0 8px; }
/* wire balustrade configurator */
.wire-buy { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.wire-buy__lbl { font-size: 12.5px; font-weight: 700; color: var(--muted); }
.wire-buy__btn { display: inline-flex; align-items: center; gap: 7px; border: 1.5px solid var(--line); background: var(--white); border-radius: 100px; padding: 9px 15px; font-family: var(--body); font-weight: 700; font-size: 12.5px; color: var(--teal-700); cursor: pointer; transition: all .15s var(--ease); }
.wire-buy__btn b { color: var(--warn); font-weight: 800; }
.wire-buy__thumb { width: 30px; height: 30px; border-radius: 6px; flex: none; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; }
.wire-buy__thumb svg { width: 17px; height: 17px; }
.wire-buy__btn:hover { border-color: var(--teal-700); background: var(--teal-50); }
.wire-stairs { display: flex; align-items: center; gap: 11px; padding: 11px 14px; margin-top: 12px; background: var(--teal-50); border: 1px solid var(--teal-100); border-radius: var(--r-md); }
.fit-note { display: flex; align-items: flex-start; gap: 11px; margin-top: 12px; padding: 13px 15px; border-radius: var(--r-md); background: #fbf6ec; border: 1px solid #ecdcc0; font-size: 12.5px; color: var(--ink-2); line-height: 1.5; }
.fit-note svg { width: 17px; height: 17px; color: var(--warn); flex: none; margin-top: 1px; }
.wire-stairs > svg { width: 18px; height: 18px; color: var(--teal-700); flex: none; }
.wire-stairs b { font-family: var(--display); font-weight: 800; font-size: 13px; color: var(--ink); }
.wire-stairs span { font-size: 12.5px; color: var(--ink-2); }
.wire-stairs > div { flex: 1; }
.wire-stairs__btn { flex: none; border: 1.5px solid var(--teal-700); background: var(--white); color: var(--teal-700); border-radius: 100px; padding: 8px 15px; font-family: var(--body); font-weight: 700; font-size: 12.5px; cursor: pointer; transition: all .15s var(--ease); white-space: nowrap; }
.wire-stairs__btn:hover { background: var(--teal-700); color: #fff; }
.wire-toggle { display: flex; align-items: flex-start; gap: 12px; width: 100%; text-align: left; border: 1.5px solid var(--line); background: var(--white); border-radius: var(--r-md); padding: 14px 16px; cursor: pointer; transition: all .18s var(--ease); }
.wire-toggle:hover { border-color: var(--teal-100); }
.wire-toggle.is-on { border-color: var(--teal-700); background: var(--teal-50); }
.wire-toggle__box { width: 24px; height: 24px; border-radius: 7px; flex: none; border: 1.5px solid var(--line); background: var(--white); display: grid; place-items: center; margin-top: 1px; transition: all .18s var(--ease); }
.wire-toggle__box svg { width: 15px; height: 15px; color: #fff; opacity: 0; transform: scale(.6); transition: all .18s var(--ease); }
.wire-toggle.is-on .wire-toggle__box, .wire-toggle--check input:checked + .wire-toggle__box { background: var(--ok); border-color: var(--ok); }
.wire-toggle.is-on .wire-toggle__box svg, .wire-toggle--check input:checked + .wire-toggle__box svg { opacity: 1; transform: scale(1); }
.wire-toggle__txt b { font-family: var(--display); font-weight: 800; font-size: 14px; display: block; }
.wire-toggle__txt span { font-size: 12px; color: var(--muted); }
@media (max-width: 600px) { .wire-stairs { flex-wrap: wrap; } .wire-stairs__btn { width: 100%; } }
.spare__opts { display: flex; gap: 6px; margin-top: 9px; flex-wrap: wrap; }
.select--sm { width: auto; padding: 7px 28px 7px 11px; font-size: 12px; font-weight: 600; border-radius: var(--r-sm); background-position: right 9px center; }
.opt-row--profile { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.opt--profile { flex-direction: column; align-items: stretch; gap: 10px; padding: 14px; position: relative; }
.opt--profile .opt-thumb { width: 100%; height: 50px; }
.opt--profile .opt__body { display: flex; flex-direction: column; gap: 2px; }
.opt--profile .opt__body b { font-family: var(--display); font-weight: 800; font-size: 14px; }
.opt--profile .opt__sub { font-size: 11.5px; color: var(--muted); line-height: 1.3; }
.opt--profile .opt__price { font-size: 13px; font-weight: 800; color: var(--warn); margin-top: 5px; }
.opt--profile .opt__radio { position: absolute; top: 12px; right: 12px; }
@media (max-width: 600px) {
  .opt-row--profile { grid-template-columns: 1fr; }
  .opt--profile { flex-direction: row; align-items: center; }
  .opt--profile .opt-thumb { width: 54px; height: 40px; flex: none; }
  .opt--profile .opt__radio { position: static; }
}
.rails-tray__empty {
  display: flex; align-items: flex-start; gap: 11px; padding: 14px 16px;
  background: var(--teal-50); border: 1px solid var(--teal-100); border-radius: var(--r-md);
  font-size: 13px; color: var(--ink-2); line-height: 1.45;
}
.rails-tray__empty svg { width: 20px; height: 20px; color: var(--teal-700); flex: none; margin-top: 1px; }
.rails-tray__title { font-family: var(--display); font-weight: 800; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.rails-tray__title span { width: 20px; height: 20px; border-radius: 50%; background: var(--teal-700); color: #fff; display: grid; place-items: center; font-size: 11px; }
.rails-tray__list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.rail-chip { display: flex; align-items: center; gap: 12px; padding: 11px 14px; background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-md); transition: border-color .18s var(--ease); }
.rail-chip.is-editing { border-color: var(--teal-700); box-shadow: 0 0 0 3px var(--teal-50); }
.rail-chip__badge { width: 26px; height: 26px; border-radius: 7px; background: var(--ink); color: #fff; font-family: var(--display); font-weight: 800; font-size: 12px; display: grid; place-items: center; flex: none; }
.rail-chip__info { flex: 1; display: flex; flex-direction: column; line-height: 1.2; }
.rail-chip__info b { font-family: var(--display); font-weight: 800; font-size: 13.5px; }
.rail-chip__info span { font-size: 12px; color: var(--muted); }
.rail-chip__actions { display: flex; gap: 6px; }
.rail-chip__btn { border: 1.5px solid var(--line); background: var(--white); border-radius: 100px; padding: 6px 13px; font-family: var(--body); font-weight: 700; font-size: 12px; color: var(--teal-700); cursor: pointer; transition: all .15s var(--ease); }
.rail-chip__btn:hover { border-color: var(--teal-700); background: var(--teal-50); }
.rail-chip__btn--del { color: var(--muted); }
.rail-chip__btn--del:hover { border-color: #c2492f; background: #f7e8e3; color: #b4432a; }

/* multiple-rails: quantity row + added confirmation */
.hr-qty-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 14px 16px; margin-bottom: 8px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.hr-qty-label { font-family: var(--display); font-weight: 800; font-size: 13.5px; }
.hr-qty-hint { font-size: 11.5px; color: var(--muted); flex: 1; min-width: 180px; }
.hr-added {
  margin-top: 12px; padding: 14px 16px; border-radius: var(--r-md);
  background: var(--teal-50); border: 1px solid var(--teal-100);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  animation: hrPop .3s var(--ease);
}
@keyframes hrPop { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.hr-added__msg { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink); }
.hr-added__msg svg { width: 20px; height: 20px; color: var(--ok); flex: none; }
.hr-added__actions { display: flex; gap: 9px; margin-left: auto; flex-wrap: wrap; }
.hr-added__actions .btn { padding: 11px 18px; font-size: 14px; }

/* live rail visual (in media column) */
.cfg__image--short { aspect-ratio: auto; height: 200px; }
.hr-visual { background: var(--ink); border-radius: var(--r-lg); padding: 18px 20px; border: 1px solid var(--ink); }
.hr-visual__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.hr-visual__head h5 { font-family: var(--display); font-weight: 800; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #8fa9a8; }
.hr-visual__legend { display: flex; gap: 12px; }
.hr-visual__legend span { font-size: 10.5px; color: #9fb6b5; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.hr-visual__legend i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.hr-visual svg { width: 100%; height: auto; display: block; }
.hr-visual__foot { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.hr-visual__chip { font-size: 11px; font-weight: 700; color: #cfe6e3; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: 4px 10px; border-radius: 100px; }

/* end-treatment pair */
.ends-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.end-card { border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 13px 14px; background: var(--white); }
.end-card__label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 9px; }
.end-card .sec-type button { font-size: 11.5px; }

/* recommend / disclaimer note */
.reco {
  display: flex; align-items: flex-start; gap: 11px; padding: 13px 15px; border-radius: var(--r-md);
  background: var(--teal-50); border: 1px solid var(--teal-100); margin-top: 12px;
}
.reco svg { width: 17px; height: 17px; color: var(--teal-700); flex: none; margin-top: 1px; }
.reco b { font-family: var(--display); font-weight: 800; font-size: 13.5px; color: var(--ink); }
.reco p { font-size: 12px; color: var(--ink-2); margin-top: 3px; line-height: 1.45; }
.reco__row { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.reco__row .stepper { border-color: var(--teal-100); }
.reco__row .lbl { font-size: 12px; font-weight: 700; color: var(--ink-2); }
.reco__reset { font-size: 11px; font-weight: 700; color: var(--teal-700); cursor: pointer; text-decoration: underline; text-underline-offset: 2px; background: none; border: 0; }

/* height warning */
.height-warn { display: none; align-items: center; gap: 8px; margin-top: 9px; font-size: 12px; font-weight: 600; color: var(--warn); background: #fbf2e6; padding: 9px 13px; border-radius: var(--r-sm); }
.height-warn.is-show { display: flex; }
.height-warn svg { width: 15px; height: 15px; flex: none; }

/* help / call-us helper bar */
.help-bar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: 16px 20px; margin-top: 20px;
}
.help-bar__ic { width: 42px; height: 42px; border-radius: 11px; background: var(--teal-700); color: #fff; display: grid; place-items: center; flex: none; }
.help-bar__ic svg { width: 21px; height: 21px; }
.help-bar__txt { flex: 1; min-width: 200px; }
.help-bar__txt b { font-family: var(--display); font-weight: 800; font-size: 14.5px; display: block; }
.help-bar__txt span { font-size: 12.5px; color: var(--muted); }
.help-bar__actions { display: flex; gap: 9px; flex-wrap: wrap; }

/* save & share */
.share-out {
  display: none; margin-top: 12px; padding: 14px 16px; border-radius: var(--r-md);
  background: var(--white); border: 1.5px solid var(--teal-100);
}
.share-out.is-show { display: block; }
.share-out__label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 8px; }
.share-out__row { display: flex; gap: 8px; }
.share-out input { flex: 1; font-family: monospace; font-size: 12.5px; color: var(--ink-2); border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 10px 12px; background: var(--paper); outline: none; overflow: hidden; text-overflow: ellipsis; }
.share-out__copy { border: 0; background: var(--teal-700); color: #fff; font-weight: 700; font-size: 13px; padding: 0 16px; border-radius: var(--r-sm); cursor: pointer; white-space: nowrap; }
.share-out__copy:hover { background: var(--teal-600); }

/* contact panel (quote modal) */
.quote-2col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; }
.contact-info h4 { font-family: var(--display); font-weight: 800; font-size: 17px; margin-bottom: 16px; }
.contact-info__item { display: flex; gap: 12px; margin-bottom: 16px; }
.contact-info__ic { width: 34px; height: 34px; border-radius: 9px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; flex: none; }
.contact-info__ic svg { width: 17px; height: 17px; }
.contact-info__k { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.contact-info__v { font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.45; }
.contact-info__v a { color: var(--teal-700); font-weight: 700; }

@media (max-width: 980px) {
  .quote-2col { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .fulfil { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   ADDED: part thumbnails, cart groups, spares, keep-shopping
   =========================================================== */
/* small option thumbnail placeholder */
.opt-thumb, .seg-thumb {
  width: 40px; height: 40px; border-radius: 8px; flex: none; position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.opt-thumb .ph__label, .seg-thumb .ph__label { font-size: 8px; padding: 2px 4px; border: 0; background: rgba(255,255,255,.78); }
.opt { align-items: center; }
.seg-thumb { display: inline-block; margin-bottom: 8px; }
#hr-mount .seg { display: flex; flex-direction: column; align-items: flex-start; }

/* end-treatment explainer */
.end-explain { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.end-explain__item { display: flex; gap: 11px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper); }
.end-explain__thumb { width: 44px; height: 44px; border-radius: 8px; flex: none; position: relative; overflow: hidden; border: 1px solid var(--line); }
.end-explain__thumb .ph__label { font-size: 8px; padding: 2px 4px; border: 0; }
.end-explain__diagram { width: 44px; height: 44px; flex: none; border-radius: 8px; background: var(--teal-50); border: 1px solid var(--teal-100); display: grid; place-items: center; }
.end-explain__diagram svg { width: 30px; height: 30px; }
.end-explain b { font-family: var(--display); font-weight: 800; font-size: 13px; display: block; }
.end-explain span { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* spare parts quick-add */
.spares { display: flex; flex-direction: column; gap: 10px; }
.spare { display: flex; align-items: center; gap: 13px; border: 1px solid var(--line); border-radius: var(--r-md); padding: 11px 14px; background: var(--white); }
.spare__thumb { width: 44px; height: 44px; border-radius: 8px; flex: none; position: relative; overflow: hidden; border: 1px solid var(--line); }
.spare__thumb .ph__label { font-size: 8px; padding: 2px 4px; border: 0; }
.spare__info { flex: 1; }
.spare__name { font-family: var(--display); font-weight: 800; font-size: 14px; }
.spare__blurb { font-size: 12px; color: var(--muted); }
.spare__buy { display: flex; align-items: center; gap: 12px; }
.spare__price { font-weight: 800; font-size: 13.5px; color: var(--warn); }
.spare__add { border: 1.5px solid var(--teal-700); background: var(--white); color: var(--teal-700); font-family: var(--body); font-weight: 700; font-size: 13px; padding: 8px 16px; border-radius: 100px; cursor: pointer; transition: all .18s var(--ease); white-space: nowrap; }
.spare__add:hover { background: var(--teal-700); color: #fff; }
.spare__add.is-added { background: var(--ok); border-color: var(--ok); color: #fff; }

/* cart group headers */
.cart-group td { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line) !important; padding-top: 11px !important; padding-bottom: 11px !important; }
.cart-group__name { font-family: var(--display); font-weight: 800; font-size: 13px; letter-spacing: .02em; color: var(--ink); }
.cart-group__count { font-size: 11.5px; color: var(--muted); margin-left: 10px; font-weight: 600; }
.cart-group__total { font-family: var(--display); font-weight: 800; font-size: 13.5px; color: var(--ink-2); }

/* keep-shopping strip */
.keepshop { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 22px; padding: 16px 20px; border: 1.5px solid var(--teal-100); border-radius: var(--r-lg); background: var(--teal-50); }
.keepshop__txt { flex: 1; min-width: 180px; }
.keepshop__txt b { font-family: var(--display); font-weight: 800; font-size: 14.5px; display: block; }
.keepshop__txt span { font-size: 12.5px; color: var(--ink-2); }
.keepshop__btns { display: flex; gap: 8px; flex-wrap: wrap; }
.keepshop__btn { border: 1.5px solid var(--line); background: var(--white); color: var(--ink); font-family: var(--body); font-weight: 700; font-size: 13px; padding: 9px 15px; border-radius: 100px; cursor: pointer; transition: all .18s var(--ease); }
.keepshop__btn:hover { border-color: var(--teal-700); color: var(--teal-700); }
.keepshop__btn--all { background: var(--ink); color: #fff; border-color: var(--ink); }
.keepshop__btn--all:hover { background: var(--teal-700); color: #fff; border-color: var(--teal-700); }

@media (max-width: 600px) {
  .end-explain { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .shape-row { grid-template-columns: 1fr; }
  .sec-row__grid { grid-template-columns: 1fr; }
  .ends-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   Utility nav (global)
   =========================================================== */
.utilbar { border-bottom: 1px solid var(--line-2); background: rgba(246,245,241,.72); }
.utilbar__row { display: flex; align-items: center; gap: 18px; height: 42px; }
.utilbar__left { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: .01em; }
.utilnav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.utilnav__link, .utilnav__search {
  background: none; border: 0; font-family: var(--body); font-weight: 700; font-size: 13px;
  color: var(--ink-2); padding: 7px 12px; border-radius: 100px; display: flex; align-items: center; gap: 8px;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.utilnav__link:hover, .utilnav__search:hover { background: var(--white); color: var(--teal-700); }
.utilnav__search svg { width: 15px; height: 15px; }
.utilnav__search kbd, .search__foot kbd {
  font-family: var(--body); font-size: 10.5px; font-weight: 800; color: var(--muted);
  background: var(--white); border: 1px solid var(--line); border-radius: 5px; padding: 1px 6px; line-height: 1.5;
}
.utilnav__contact {
  background: var(--teal-700); color: #fff; border: 0; font-family: var(--body); font-weight: 700; font-size: 13px;
  padding: 8px 16px; border-radius: 100px; display: flex; align-items: center; gap: 8px; transition: background .15s, transform .15s;
}
.utilnav__contact svg { width: 14px; height: 14px; }
.utilnav__contact:hover { background: var(--teal-600); transform: translateY(-1px); }
@media (max-width: 800px) {
  .utilbar__left { display: none; }
  .utilnav__search span, .utilnav__search kbd { display: none; }
  .utilnav__link { padding: 7px 9px; }
}

/* ===========================================================
   Search overlay
   =========================================================== */
.search-scrim {
  position: fixed; inset: 0; z-index: 120; display: none;
  background: rgba(16,25,27,.5); backdrop-filter: blur(3px);
  align-items: flex-start; justify-content: center; padding: 12vh 20px 20px;
}
.search-scrim.is-open { display: flex; }
.search {
  width: 100%; max-width: 620px; background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--line);
  animation: searchpop .18s var(--ease);
}
@keyframes searchpop { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.search__bar { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.search__ic { width: 20px; height: 20px; color: var(--teal-700); flex: none; }
.search__bar input {
  flex: 1; border: 0; outline: none; font-family: var(--body); font-size: 17px; font-weight: 600;
  color: var(--ink); background: none;
}
.search__bar input::placeholder { color: var(--muted-2); font-weight: 500; }
.search__close { background: none; border: 0; color: var(--muted); width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.search__close:hover { background: var(--paper); color: var(--ink); }
.search__close svg { width: 18px; height: 18px; }
.search__results { max-height: 52vh; overflow-y: auto; padding: 8px; }
.search__sec { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); padding: 10px 12px 6px; }
.search__item {
  width: 100%; display: flex; align-items: center; gap: 13px; text-align: left;
  background: none; border: 0; padding: 11px 12px; border-radius: var(--r-md); transition: background .12s;
}
.search__item.is-sel { background: var(--teal-50); }
.search__tag {
  font-size: 10.5px; font-weight: 800; letter-spacing: .03em; color: var(--teal-700);
  background: var(--white); border: 1px solid var(--teal-100); border-radius: 100px; padding: 4px 9px; flex: none; min-width: 58px; text-align: center;
}
.search__item.is-sel .search__tag { background: var(--white); }
.search__txt { flex: 1; min-width: 0; }
.search__txt b { font-family: var(--display); font-weight: 800; font-size: 14.5px; display: block; }
.search__txt span { font-size: 12.5px; color: var(--muted); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search__go { width: 18px; height: 18px; color: var(--muted-2); flex: none; opacity: 0; transition: opacity .12s, transform .12s; }
.search__item.is-sel .search__go { opacity: 1; transform: translateX(2px); color: var(--teal-700); }
.search__empty { padding: 28px 16px; text-align: center; color: var(--muted); font-size: 14px; }
.search__foot { padding: 11px 18px; border-top: 1px solid var(--line); background: var(--paper); font-size: 11.5px; color: var(--muted); display: flex; gap: 10px; }
@media (max-width: 520px) { .search__foot { display: none; } .search__tag { min-width: 0; } }

/* ===========================================================
   Resources + About modals
   =========================================================== */
.res-grid { display: flex; flex-direction: column; gap: 12px; }

/* in-page document viewer */
.doc-scrim { position: fixed; inset: 0; z-index: 130; display: none; background: rgba(16,25,27,.55); backdrop-filter: blur(3px); padding: 4vh 4vw; }
.doc-scrim.is-open { display: flex; }
.doc-view { margin: auto; width: 100%; max-width: 900px; height: 92vh; background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.doc-view__bar { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--paper); flex: none; }
.doc-view__title { font-family: var(--display); font-weight: 800; font-size: 15px; color: var(--ink); }
.doc-view__actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.doc-view__btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--body); font-weight: 700; font-size: 13px; color: var(--ink); background: var(--white); border: 1.5px solid var(--line); border-radius: 100px; padding: 8px 15px; cursor: pointer; transition: all .15s var(--ease); }
.doc-view__btn:hover { border-color: var(--teal-700); color: var(--teal-700); }
.doc-view__btn svg { width: 15px; height: 15px; }
.doc-view__close { width: 34px; height: 34px; border-radius: 9px; border: 0; background: var(--white); color: var(--muted); display: grid; place-items: center; cursor: pointer; }
.doc-view__close:hover { background: var(--line); color: var(--ink); }
.doc-view__close svg { width: 18px; height: 18px; }
.doc-view__frame { flex: 1; width: 100%; border: 0; background: var(--paper); }
@media (max-width: 560px) { .doc-scrim { padding: 0; } .doc-view { height: 100vh; max-width: none; border-radius: 0; } }

/* guide email gate */
.modal--sm { max-width: 460px; }
.guide-gate { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper); margin-bottom: 20px; }
.guide-gate__ic { width: 42px; height: 42px; border-radius: 10px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; flex: none; }
.guide-gate__ic svg { width: 22px; height: 22px; }
.guide-gate__txt b { font-family: var(--display); font-weight: 800; font-size: 15.5px; display: block; }
.guide-gate__txt span { font-size: 12px; color: var(--muted); }
.guide-form .field__label { display: block; margin-bottom: 8px; }
#guide-email {
  width: 100%; font-family: var(--body); font-size: 15px; font-weight: 600; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-md); background: var(--white); outline: none;
  transition: border-color .15s var(--ease), box-shadow .15s;
}
#guide-email:focus { border-color: var(--teal-700); box-shadow: 0 0 0 3px var(--teal-50); }
.guide-err { display: none; color: #b9542f; font-size: 12.5px; font-weight: 700; margin-top: 8px; }
.guide-err.is-on { display: block; }
.guide-consent { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0 18px; font-size: 13px; color: var(--ink-2); line-height: 1.45; cursor: pointer; }
.guide-consent input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--teal-700); flex: none; }
.guide-submit { width: 100%; justify-content: center; gap: 9px; padding: 14px; font-size: 15px; }
.guide-submit svg { width: 17px; height: 17px; }
.guide-fine { font-size: 11.5px; color: var(--muted); margin: 12px 0 0; text-align: center; line-height: 1.5; }
.res-card {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1.5px solid var(--line);
  border-radius: var(--r-lg); background: var(--white); text-decoration: none; color: inherit; transition: all .18s var(--ease);
}
.res-card:hover { border-color: var(--teal-700); box-shadow: 0 0 0 3px var(--teal-50); transform: translateY(-1px); }
.res-card__ic { width: 48px; height: 48px; border-radius: 12px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; flex: none; }
.res-card__ic svg { width: 24px; height: 24px; }
.res-card__txt { flex: 1; }
.res-card__txt b { font-family: var(--display); font-weight: 800; font-size: 17px; display: block; }
.res-card__txt span { font-size: 13px; color: var(--muted); }
.res-card__pdf { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: 13px; color: var(--teal-700); background: var(--teal-50); border: 1px solid var(--teal-100); padding: 9px 15px; border-radius: 100px; flex: none; white-space: nowrap; }
.res-card__pdf svg { width: 15px; height: 15px; }
@media (max-width: 560px) { .res-card { flex-wrap: wrap; } .res-card__pdf { width: 100%; justify-content: center; } }

.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
.about-stat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 14px; text-align: center; }
.about-stat b { font-family: var(--display); font-weight: 800; font-size: 26px; color: var(--teal-700); display: block; }
.about-stat span { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.about-cols { display: grid; grid-template-columns: 1.2fr 1fr; gap: 26px; }
.about-col h4 { font-size: 15px; font-weight: 800; margin-bottom: 9px; }
.about-col p { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; }
.about-col a { color: var(--teal-700); font-weight: 700; }
.about-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
@media (max-width: 600px) { .about-stats { grid-template-columns: repeat(2, 1fr); } .about-cols { grid-template-columns: 1fr; } }

/* per-configurator guide links */
.doc-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.doc-links__lbl { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.doc-links__lbl svg { width: 15px; height: 15px; color: var(--teal-700); }
.doc-link {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 700; font-size: 13px;
  color: var(--ink); background: var(--white); border: 1.5px solid var(--line); padding: 8px 13px; border-radius: 100px; transition: all .16s var(--ease);
}
.doc-link svg { width: 15px; height: 15px; color: var(--teal-700); }
.doc-link em { font-style: normal; font-size: 10px; font-weight: 800; letter-spacing: .05em; color: #fff; background: var(--teal-700); padding: 2px 6px; border-radius: 5px; }
.doc-link:hover { border-color: var(--teal-700); background: var(--teal-50); }

/* paint colour swatches (staircase finish) */
.swatch-row { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch { flex: 1; min-width: 150px; display: flex; align-items: center; gap: 12px; border: 1.5px solid var(--line); background: var(--white); border-radius: var(--r-md); padding: 11px 13px; text-align: left; transition: all .18s var(--ease); }
.swatch:hover { border-color: var(--teal-100); }
.swatch.is-on { border-color: var(--teal-700); background: var(--teal-50); box-shadow: 0 0 0 3px var(--teal-50); }
.swatch__chip { width: 30px; height: 30px; border-radius: 7px; flex: none; }
.swatch__txt b { font-family: var(--display); font-weight: 800; font-size: 14px; display: block; }
.swatch__txt span { font-size: 11.5px; color: var(--muted); }
.paint__note { font-size: 11.5px; color: var(--muted); margin: 11px 0 0; }

/* top & bottom plate pickers (staircase) */
.step-sub { font-size: 13px; color: var(--muted); margin: -4px 0 14px; line-height: 1.5; }
.plate-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.plate-col__label { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 9px; }
.plate-row { grid-template-columns: 1fr 1fr; }
.plate-thumb { background: #0f1413; border-color: #1c2628; }
@media (max-width: 640px) {
  .plate-pair { grid-template-columns: 1fr; }
}

/* ===========================================================
   Landing — "What are you building?" chooser hero
   =========================================================== */
.chooser-head { max-width: 720px; margin: 0 auto 18px; text-align: center; }
.chooser-head .eyebrow { display: block; }
.chooser-head h1 { margin: 10px 0 12px; }
.chooser-sub { margin: 0 auto; max-width: 600px; font-size: 15px; }
.chooser-sub b { color: var(--ink); font-weight: 800; }

.ways { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 880px; margin: 0 auto 40px; }
.way { display: flex; gap: 15px; text-align: left; background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; }
.way__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; flex: none; }
.way__ic svg { width: 23px; height: 23px; }
.way__txt b { font-family: var(--display); font-size: 16.5px; font-weight: 800; display: block; margin-bottom: 3px; }
.way__txt span { font-size: 13px; color: var(--muted); line-height: 1.5; }

.chooser { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.chooser .card {
  position: relative; border: 0; background: #111; border-radius: 18px; overflow: hidden;
  min-height: 372px; display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: none; cursor: default;
}
.chooser .card:hover { transform: translateY(-5px); box-shadow: 0 20px 42px rgba(10,79,81,.2); border-color: transparent; }
.tile__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .55s var(--ease); }
.chooser .card:hover .tile__photo { transform: scale(1.06); }
.chooser .card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,22,22,.04) 26%, rgba(7,18,18,.9)); z-index: 1; }
.tile__inner { position: relative; z-index: 2; padding: 20px; color: #fff; text-align: left; }
.tile__kicker { font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--teal-100); }
.tile__name { font-family: var(--display); font-size: 21px; font-weight: 800; margin: 7px 0 5px; color: #fff; letter-spacing: -.01em; }
.tile__desc { font-size: 12.5px; color: rgba(255,255,255,.82); line-height: 1.45; margin: 0 0 15px; }
.tile__actions { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.tile__btn { display: inline-flex; align-items: center; gap: 7px; background: #fff; color: var(--ink); font-family: var(--body); font-weight: 700; font-size: 13px; border: 0; border-radius: 100px; padding: 10px 16px; cursor: pointer; transition: background .18s, color .18s; }
.tile__btn svg { width: 15px; height: 15px; }
.tile__btn:hover { background: var(--teal-700); color: #fff; }
.tile__link { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.3); font-family: var(--body); font-weight: 700; font-size: 12.5px; border-radius: 100px; padding: 9px 14px; cursor: pointer; transition: background .18s; }
.tile__link:hover { background: rgba(255,255,255,.27); }
@media (max-width: 1080px) { .chooser { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .chooser { grid-template-columns: repeat(2, 1fr); } .ways { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .chooser { grid-template-columns: 1fr; } .chooser .card { min-height: 320px; } }

/* product range banner (photos integrated on the single landing — visual only) */
.prodrail { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin: 0 0 6px; }
.prodrail__item {
  position: relative; border: 0; padding: 0; border-radius: 16px; overflow: hidden;
  height: 112px; background: #111; text-align: left;
  box-shadow: var(--shadow-sm);
}
.prodrail__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.prodrail__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,22,22,.05) 30%, rgba(7,18,18,.86)); }
.prodrail__lbl { position: absolute; left: 15px; right: 15px; bottom: 14px; z-index: 2; color: #fff; }
.prodrail__lbl b { display: block; font-family: var(--display); font-weight: 800; font-size: 17px; letter-spacing: -.01em; line-height: 1.1; }
.prodrail__lbl em { display: block; font-style: normal; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-100); margin-top: 5px; }
@media (max-width: 1080px) { .prodrail { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .prodrail { grid-template-columns: 1fr 1fr; } .prodrail__item { height: 120px; } }

/* lane picker (guided builder / shop parts) */
.picker__head { max-width: 680px; margin: 6px 0 26px; }
.picker__head .eyebrow { display: block; margin-bottom: 11px; }
.picker__head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; }
.picker__head p { margin-top: 11px; font-size: 15.5px; color: var(--muted); line-height: 1.55; }
.picker__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pcard {
  display: flex; flex-direction: column; text-align: left; border: 1px solid var(--line); background: var(--white);
  border-radius: var(--r-lg); overflow: hidden; cursor: pointer; font-family: var(--body); padding: 0;
  box-shadow: var(--shadow-sm); transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-100); }
.pcard:focus-visible { outline: 3px solid var(--teal-500); outline-offset: 2px; }
.pcard__photo { position: relative; height: 168px; overflow: hidden; background: #111; }
.pcard__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pcard:hover .pcard__photo img { transform: scale(1.05); }
.pcard__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.pcard__kicker { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-600); }
.pcard__name { font-family: var(--display); font-size: 21px; font-weight: 800; letter-spacing: -.01em; margin: 7px 0 8px; }
.pcard__desc { font-size: 14px; color: var(--muted); line-height: 1.5; }
.pcard__cta {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  background: var(--teal-700); color: #fff; font-weight: 800; font-size: 14px; padding: 11px 18px; border-radius: 11px;
}
.pcard__cta svg { width: 17px; height: 17px; }
.pcard:hover .pcard__cta { background: var(--teal-600); }
@media (max-width: 900px) { .picker__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .picker__grid { grid-template-columns: 1fr; } }

/* ===========================================================
   Experience fork (Trade / Guided / Parts)
   =========================================================== */
.fork { margin-top: 20px; }
.fork__head { text-align: center; max-width: 660px; margin: 0 auto 18px; }
.fork__head .eyebrow { display: block; margin-bottom: 10px; }
.fork__head h2 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 800; }
.fork__head p { margin-top: 10px; font-size: 15px; color: var(--muted); }
.fork__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.forkcard {
  position: relative; text-align: left; border: 0; border-radius: var(--r-lg);
  padding: 24px 24px 22px; min-height: 0; display: flex; flex-direction: column;
  background: var(--white); box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
  font-family: var(--body); overflow: hidden;
}
.forkcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.forkcard:focus-visible { outline: 3px solid var(--teal-500); outline-offset: 2px; }
.forkcard--trade { background: linear-gradient(160deg, #0d6e70, #0a4f51); box-shadow: var(--shadow-md); }
.forkcard--guide { border: 1px solid var(--line); }
.forkcard--parts { background: var(--paper-2); border: 1px solid var(--line); }

.forkcard__ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 17px; }
.forkcard__ic svg { width: 25px; height: 25px; }
.forkcard--trade .forkcard__ic { background: rgba(255,255,255,.14); }
.forkcard--trade .forkcard__ic svg { stroke: #fff; }
.forkcard--guide .forkcard__ic { background: var(--teal-50); }
.forkcard--guide .forkcard__ic svg { stroke: var(--teal-600); }
.forkcard--parts .forkcard__ic { background: #e3e0d8; }
.forkcard--parts .forkcard__ic svg { stroke: var(--ink-2); }

.forkcard h3 { font-family: var(--display); font-size: 24px; font-weight: 800; line-height: 1.05; letter-spacing: -.02em; }
.forkcard--trade h3 { color: #fff; }
.forkcard__who { display: block; margin-top: 9px; font-size: 12.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.forkcard--trade .forkcard__who { color: var(--teal-100); }
.forkcard--guide .forkcard__who { color: var(--teal-600); }
.forkcard--parts .forkcard__who { color: var(--muted); }

.forkcard__list { list-style: none; padding: 0; margin: 17px 0 0; display: flex; flex-direction: column; gap: 10px; }
.forkcard__list li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; line-height: 1.4; }
.forkcard__list svg { width: 17px; height: 17px; flex: none; margin-top: 1px; fill: none; }
.forkcard--trade .forkcard__list li { color: rgba(255,255,255,.9); }
.forkcard--trade .forkcard__list svg { stroke: var(--teal-100); }
.forkcard--guide .forkcard__list li { color: var(--ink-2); }
.forkcard--guide .forkcard__list svg { stroke: var(--teal-500); }
.forkcard--parts .forkcard__list li { color: var(--ink-2); }
.forkcard--parts .forkcard__list svg { stroke: var(--teal-500); }

.forkcard__cta {
  margin-top: auto; padding-top: 24px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 12px; font-weight: 800; font-size: 15px; letter-spacing: -.01em;
}
.forkcard__cta svg { width: 19px; height: 19px; }
/* the CTA visual is a pseudo-button inside the whole clickable card */
.forkcard__cta--light, .forkcard__cta--teal, .forkcard__cta--ink {
  padding: 14px 20px; margin-top: auto;
}
.forkcard__cta--light { background: #fff; color: var(--teal-900); }
.forkcard__cta--teal { background: var(--teal-600); color: #fff; }
.forkcard__cta--ink { background: var(--ink); color: #fff; }
.forkcard:hover .forkcard__cta--teal { background: var(--teal-700); }

.forkcard__tag {
  position: absolute; top: 20px; right: 20px; font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: var(--teal-500); color: #fff;
}
.forkcard__welcome {
  display: none; align-items: center; gap: 7px; margin-bottom: 12px;
  font-size: 12px; font-weight: 800; letter-spacing: .01em; color: #fff;
  background: rgba(255,255,255,.16); border-radius: 999px; padding: 6px 12px; align-self: flex-start;
}
.forkcard--trade.is-returning .forkcard__welcome { display: inline-flex; }
.forkcard--trade.is-returning { outline: 3px solid var(--teal-100); outline-offset: -3px; }

@media (max-width: 900px) { .fork__grid { grid-template-columns: 1fr; } .forkcard { min-height: 0; } }

/* ===========================================================
   Quick order (trade / condensed)
   =========================================================== */
.quick { max-width: 1000px; margin: 0 auto; }
.quick__intro { max-width: 640px; margin: 6px 0 22px; }
.quick__intro h2 { font-size: clamp(30px, 4vw, 42px); font-weight: 800; margin: 12px 0 10px; }
.quick__intro p { font-size: 15px; color: var(--muted); line-height: 1.55; }
.linklike { background: none; border: 0; padding: 0; font: inherit; color: var(--teal-700); font-weight: 800; text-decoration: underline; cursor: pointer; }

.quick__tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.qtab {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 15px; border-radius: 11px;
  border: 1.5px solid var(--line); background: var(--white); color: var(--ink-2);
  font-family: var(--body); font-weight: 700; font-size: 14px; transition: .18s var(--ease);
}
.qtab__ic { width: 18px; height: 18px; display: grid; place-items: center; }
.qtab__ic svg { width: 18px; height: 18px; stroke: var(--muted); }
.qtab:hover { border-color: var(--teal-100); }
.qtab.is-on { background: var(--teal-700); border-color: var(--teal-700); color: #fff; }
.qtab.is-on .qtab__ic svg { stroke: #fff; }

.quick__panel {
  display: grid; grid-template-columns: 0.92fr 1fr; gap: 0; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.quick__media { position: relative; background: #0e2626; min-height: 380px; }
.quick__media img { width: 100%; height: 100%; object-fit: cover; opacity: .94; }
.quick__mediacap { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 24px; color: #fff;
  background: linear-gradient(0deg, rgba(6,20,20,.88), rgba(6,20,20,0)); }
.quick__mediacap b { font-family: var(--display); font-size: 22px; font-weight: 800; display: block; letter-spacing: -.01em; }
.quick__mediacap span { font-size: 12.5px; color: rgba(255,255,255,.82); }

.quick__form { padding: 28px 28px 26px; display: flex; flex-direction: column; }
.qgrid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.qgrid--small { grid-template-columns: 160px; margin-top: 14px; }
.qfield__label { font-size: 13px; font-weight: 800; color: var(--ink-2); margin-bottom: 7px; display: flex; gap: 6px; align-items: baseline; }
.qfield__hint { font-size: 11px; font-weight: 700; color: var(--muted-2); }
.qsel { position: relative; }
.qsel select, .qinput {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-family: inherit;
  font-size: 14.5px; font-weight: 600; color: var(--ink); background: var(--white); appearance: none;
}
.qsel select:focus, .qinput:focus { outline: 0; border-color: var(--teal-500); box-shadow: 0 0 0 3px var(--teal-50); }
.qsel::after { content: ""; position: absolute; right: 15px; top: 50%; width: 9px; height: 9px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.qinput-wrap { position: relative; }
.qinput-wrap.has-unit .qinput { padding-right: 42px; }
.qinput-unit { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 13px; font-weight: 700; color: var(--muted); }

.quick__cart { margin-top: 22px; padding-top: 20px; border-top: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.quick__price-k { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); display: block; }
.quick__price { font-family: var(--display); font-size: 32px; font-weight: 800; color: var(--teal-700); line-height: 1; }
.quick__extras { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 18px; }
.quick__extra { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--teal-700); }
.quick__extra svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.quick__extra--muted { color: var(--muted); }
@media (max-width: 760px) { .quick__panel { grid-template-columns: 1fr; } .quick__media { min-height: 220px; } }

/* timber species pickers (treads + bundle) */
.opt-row--wood .opt { min-width: 130px; gap: 11px; padding: 11px 13px; }
.opt-row--wood .opt__txt b { font-size: 13.5px; }
.opt-row--wood .opt__txt span { font-size: 11px; }
.opt-row--wood .opt__price { font-size: 11.5px; color: var(--muted); }
.opt-row--wood .opt.is-on .opt__price { color: var(--teal-700); }
.opt-row.opt-row--finish { display: grid; grid-template-columns: 1fr; }
.opt-row--finish .opt { min-width: 0; }
.wood-chip { width: 28px; height: 28px; border-radius: 7px; flex: none; box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); }

/* ===========================================================
   Header v2 — util strip + main nav (Shopify-matched)
   =========================================================== */
:root { --orange: #e8672c; --orange-600: #d1571f; }
.util2 { border-bottom: 1px solid var(--line-2); background: var(--white); }
.util2__row { display: flex; align-items: center; gap: 16px; height: 44px; }
.util2__phone { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; color: var(--ink-2); text-decoration: none; }
.util2__phone svg { width: 16px; height: 16px; color: var(--teal-700); }
.util2__callback { background: var(--orange); color: #fff; border: 0; border-radius: 100px; padding: 8px 18px; font-weight: 800; font-size: 13.5px; text-decoration: none; display: inline-flex; align-items: center; transition: background .15s, transform .15s; }
.util2__callback:hover { background: var(--orange-600); transform: translateY(-1px); }
.util2__social { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.util2__social a { color: var(--ink-2); display: grid; place-items: center; transition: color .15s; }
.util2__social a:hover { color: var(--teal-700); }
.util2__social svg { width: 18px; height: 18px; }

.mainrow { display: flex; align-items: center; gap: 14px; height: 76px; }
.mainrow .brand { flex: none; }
.mainnav { display: flex; align-items: center; gap: 0; margin-left: 4px; flex-wrap: nowrap; min-width: 0; }
.mainnav__item { position: relative; }
.mainnav__btn { background: none; border: 0; font-family: var(--body); font-weight: 700; font-size: 13.5px; color: var(--ink-2); padding: 8px 9px; border-radius: 8px; display: flex; align-items: center; gap: 4px; cursor: pointer; transition: background .15s, color .15s; text-decoration: none; white-space: nowrap; }
.mainnav__btn:hover, .mainnav__item.is-open .mainnav__btn { background: var(--paper); color: var(--ink); }
.mainnav__btn svg { width: 13px; height: 13px; transition: transform .15s; }
.mainnav__item.is-open .mainnav__btn svg { transform: rotate(180deg); }
.mainnav__drop { position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 8px; display: none; z-index: 60; }
.mainnav__item.is-open .mainnav__drop { display: block; }
.mainnav__drop a, .mainnav__drop span.is-soon { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 14px; font-weight: 700; color: var(--ink-2); text-decoration: none; }
.mainnav__drop a:hover { background: var(--paper); color: var(--ink); }
.mainnav__drop span.is-soon { color: var(--muted-2); cursor: not-allowed; }
.mainnav__drop .soon-tag { font-size: 10.5px; font-weight: 800; letter-spacing: .03em; color: var(--teal-700); background: var(--teal-50); border: 1px solid var(--teal-100); border-radius: 100px; padding: 2px 8px; }

.topbar__row.mainrow .btn-cart { flex: none; }
.searchbox { position: relative; margin-left: auto; flex: none; }
.searchbox input { width: 150px; border: 1.5px solid var(--line); border-radius: 100px; padding: 8px 34px 8px 14px; font-family: var(--body); font-size: 13px; background: var(--paper); transition: border-color .15s, width .2s; outline: none; }
.searchbox input:focus { border-color: var(--teal-600); width: 210px; background: var(--white); }
.searchbox button { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); background: none; border: 0; color: var(--muted); display: grid; place-items: center; cursor: pointer; padding: 4px; }
.searchbox button svg { width: 15px; height: 15px; }
.searchbox__results { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 6px; display: none; z-index: 60; }
.searchbox__results.is-open { display: block; }
.searchbox__results a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 13.5px; font-weight: 700; color: var(--ink-2); text-decoration: none; }
.searchbox__results a:hover { background: var(--paper); color: var(--ink); }
.searchbox__results .none { padding: 9px 12px; font-size: 13px; color: var(--muted); }
@media (max-width: 760px) { .mainnav { display: none; } }
@media (max-width: 1000px) { .topbar__row.mainrow .btn-cart span:not(.btn-cart__count) { display: none; } .topbar__row.mainrow .btn-cart { padding: 10px 12px; } }
@media (max-width: 1050px) { .searchbox input { width: 40px; padding-left: 0; color: transparent; cursor: pointer; } .searchbox input:focus,.searchbox input.has-val { width: 160px; padding-left: 14px; color: var(--ink); cursor: text; } .searchbox input::placeholder{color:transparent} }
