/* ==========================================================
   XC Footwear — B2B site stylesheet
   Colors live in :root; change --accent to rebrand.
   ========================================================== */
:root {
  --ink: #15171c;
  --ink-2: #3a3f4a;
  --muted: #6b7280;
  --line: #e4e1da;
  --paper: #faf8f4;
  --white: #ffffff;
  --sand: #f1ede4;
  --accent: #c8321f;        /* shoebox red */
  --accent-ink: #9f2415;
  --ok: #1f7a4d;
  --radius: 10px;
  --wrap: 1200px;
  --shadow: 0 1px 2px rgba(20,20,20,.06), 0 8px 24px rgba(20,20,20,.06);
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block; font: 600 .78rem/1 var(--font-body); letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.lead { font-size: 1.15rem; color: var(--ink-2); max-width: 640px; }
.section { padding: 96px 0; }
.section.tight { padding: 64px 0; }
.section.sand { background: var(--sand); }
.section.dark { background: var(--ink); color: #e9e7e2; }
.section.dark .lead, .section.dark p { color: #b9b6ae; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font: 600 .98rem/1 var(--font-body); padding: 15px 24px; border-radius: 8px;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-ink); }
.btn-ghost { border-color: currentColor; color: inherit; background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-sm { padding: 10px 16px; font-size: .88rem; }
.btn-block { width: 100%; }

/* ---------- Top bar + header ---------- */
.topbar { background: var(--ink); color: #cfccc4; font-size: .82rem; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; padding-top: 8px; padding-bottom: 8px; }
.topbar a { color: #fff; text-decoration: none; }
.topbar .tb-right { display: flex; gap: 20px; }
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(250,248,244,.94);
  backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 24px; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 8px; background: var(--accent); color: #fff;
  display: grid; place-items: center; font: 800 1rem/1 var(--font-display); letter-spacing: -.03em;
}
.logo-text { font: 800 1.15rem/1 var(--font-display); letter-spacing: -.01em; }
.logo-text small { display: block; font: 500 .7rem/1.3 var(--font-body); color: var(--muted); letter-spacing: .04em; }
.nav { display: flex; gap: 4px; }
.nav a {
  white-space: nowrap; text-decoration: none; font-weight: 500; font-size: .95rem; padding: 8px 12px; border-radius: 6px; color: var(--ink-2);
}
.nav a:hover { background: var(--sand); color: var(--ink); }
.nav a.active { color: var(--accent); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.basket-btn {
  position: relative; display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
  padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px; font-size: .9rem; font-weight: 500; background: var(--white);
}
.basket-count {
  min-width: 20px; height: 20px; padding: 0 6px; border-radius: 10px; background: var(--accent); color: #fff;
  font-size: .72rem; font-weight: 700; display: inline-grid; place-items: center;
}
.basket-count[data-n="0"] { background: #bdb8ad; }
.menu-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; background: #111; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,12,14,.92) 0%, rgba(12,12,14,.78) 45%, rgba(12,12,14,.25) 100%);
}
.hero .wrap { position: relative; padding-top: 110px; padding-bottom: 110px; }
.hero h1 { max-width: 780px; }
.hero h1 em { font-style: normal; color: #ff8a73; }
.hero .lead { color: #dcd8cf; font-size: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 34px; font-size: .9rem; color: #cfcac0; }
.hero-proof span::before { content: "✓"; color: #ff8a73; font-weight: 700; margin-right: 7px; }

.page-hero { background: var(--ink); color: #fff; padding: 76px 0 64px; position: relative; overflow: hidden; }
.page-hero.has-img .hero-bg::after { background: linear-gradient(90deg, rgba(12,12,14,.93), rgba(12,12,14,.7)); }
.page-hero .wrap { position: relative; }
.page-hero .lead { color: #d3cfc6; }
.crumbs { font-size: .85rem; color: #a7a298; margin-bottom: 16px; }
.crumbs a { color: #d3cfc6; text-decoration: none; }

/* ---------- Stat strip ---------- */
.stats { background: var(--white); border-bottom: 1px solid var(--line); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 24px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font: 800 2.3rem/1 var(--font-display); color: var(--ink); letter-spacing: -.02em; }
.stat b small { font-size: 1.1rem; font-weight: 700; }
.stat span { display: block; color: var(--muted); font-size: .9rem; margin-top: 8px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-2); margin: 0; font-size: .96rem; }
.icon {
  width: 46px; height: 46px; border-radius: 10px; background: #fbe9e5; color: var(--accent);
  display: grid; place-items: center; margin-bottom: 18px;
}
.icon svg { width: 24px; height: 24px; }

/* Two-way offer (stock vs custom) */
.offer { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.offer-card {
  position: relative; border-radius: 14px; overflow: hidden; min-height: 460px; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; text-decoration: none;
  background: #222 center/cover no-repeat;
}
.offer-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,12,.05) 20%, rgba(10,10,12,.9) 100%); }
.offer-card > * { position: relative; }
.offer-card .tag { align-self: flex-start; background: var(--accent); padding: 6px 12px; border-radius: 99px; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.offer-card h3 { font-size: 1.9rem; margin-bottom: 10px; }
.offer-card ul { list-style: none; padding: 0; margin: 0 0 22px; color: #e3dfd6; }
.offer-card li { padding: 3px 0; }
.offer-card li::before { content: "—"; color: #ff8a73; margin-right: 10px; }
.offer-card .more { font-weight: 600; }
.offer-card:hover .more { text-decoration: underline; }

/* ---------- Category chips ---------- */
.cats { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.cat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  text-decoration: none; transition: border-color .15s, transform .15s;
}
.cat:hover { border-color: var(--ink); transform: translateY(-2px); }
.cat img { aspect-ratio: 1; object-fit: cover; width: 100%; background: #f3f3f3; }
.cat span { display: block; padding: 12px 14px; font-weight: 600; font-size: .92rem; }

/* ---------- Products ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip {
  border: 1px solid var(--line); background: var(--white); padding: 9px 16px; border-radius: 99px;
  font: 500 .9rem/1 var(--font-body); cursor: pointer; color: var(--ink-2);
}
.chip:hover { border-color: var(--ink); }
.chip.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
}
.product-img { position: relative; aspect-ratio: 1; background: #f4f4f4; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img .badge {
  position: absolute; top: 10px; left: 10px; background: rgba(21,23,28,.85); color: #fff;
  font-size: .72rem; font-weight: 600; padding: 5px 9px; border-radius: 5px;
}
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-cat { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.product h3 { font: 600 .98rem/1.35 var(--font-body); margin: 0; }
.product-meta { font-size: .82rem; color: var(--muted); margin-top: auto; }
.product-actions { display: flex; gap: 8px; }
.product-actions .btn { flex: 1; padding: 11px 10px; font-size: .85rem; }
.add-btn.added { background: var(--ok); }
.product-link { font-size: .8rem; color: var(--muted); text-decoration: none; text-align: center; }
.product-link:hover { color: var(--ink); text-decoration: underline; }

/* ---------- Media / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.rev > :first-child { order: 2; }
.split.wide-left { grid-template-columns: 1.5fr 1fr; }
[hidden] { display: none !important; }
.media { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.checklist { list-style: none; padding: 0; margin: 20px 0 28px; }
.checklist li { padding: 8px 0 8px 32px; position: relative; border-bottom: 1px dashed var(--line); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 13px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center/11px no-repeat;
}
.section.dark .checklist li { border-color: #33363d; }

/* Photo gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gallery figure { margin: 0; position: relative; border-radius: 10px; overflow: hidden; cursor: zoom-in; background: #222; }
.gallery figure.wide { grid-column: span 2; }
.gallery figure.tall { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px; color: #fff; font-size: .86rem; font-weight: 600;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
}
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8,8,10,.92); display: none; place-items: center; padding: 24px; }
.lightbox.open { display: grid; }
.lightbox img { max-height: 86vh; border-radius: 8px; }
.lightbox button { position: absolute; top: 18px; right: 22px; background: none; border: 0; color: #fff; font-size: 2.2rem; cursor: pointer; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; counter-reset: s; }
.step { padding: 24px 20px 0 0; border-top: 3px solid var(--line); position: relative; }
.step::before {
  counter-increment: s; content: "0" counter(s); display: block; font: 800 1.9rem/1 var(--font-display);
  color: var(--accent); margin-bottom: 12px;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: .9rem; color: var(--ink-2); margin: 0; }
.step .days { display: inline-block; margin-top: 10px; font-size: .78rem; font-weight: 600; color: var(--muted); }
.section.dark .step { border-color: #3a3d44; }
.section.dark .step p { color: #b9b6ae; }

/* Timeline bar */
.timeline { display: flex; border-radius: 8px; overflow: hidden; font-size: .82rem; font-weight: 600; color: #fff; margin: 28px 0 10px; }
.timeline div { padding: 12px 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.timeline-note { font-size: .85rem; color: var(--muted); }

/* Comparison table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
table.compare { width: 100%; border-collapse: collapse; min-width: 560px; font-size: .95rem; }
.compare th, .compare td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th { background: var(--ink); color: #fff; font-family: var(--font-display); font-size: 1rem; }
.compare tbody th { font-weight: 600; color: var(--ink-2); width: 26%; }
.compare tr:last-child > * { border-bottom: 0; }

/* Trust / terms */
.terms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.terms div { background: var(--white); padding: 22px; }
.terms b { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 6px; }
.markets { display: flex; flex-wrap: wrap; gap: 10px; }
.markets span { border: 1px solid #3a3d44; padding: 8px 14px; border-radius: 99px; font-size: .9rem; color: #e3dfd6; }

/* FAQ */
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--accent); }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 12px 0 0; color: var(--ink-2); }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 32px; box-shadow: var(--shadow); color: var(--ink); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-2); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; font: 400 .98rem/1.4 var(--font-body); padding: 12px 14px; border: 1px solid #d6d2c8; border-radius: 8px;
  background: #fff; color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: -1px; border-color: transparent; }
.radio-row { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-row label { margin: 0; position: relative; }
.radio-row input { position: absolute; left: 0; top: 0; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.radio-row span {
  display: inline-block; padding: 10px 14px; border: 1px solid #d6d2c8; border-radius: 8px; cursor: pointer; font-weight: 500; font-size: .9rem; color: var(--ink-2);
}
.radio-row input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.radio-row input:focus-visible + span { outline: 2px solid var(--accent); }
.hp { position: absolute; left: -9999px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 12px; }
.form-status { margin-top: 14px; padding: 12px 14px; border-radius: 8px; font-size: .92rem; display: none; }
.form-status.err { display: block; background: #fdecea; color: #8d1f12; }
.form-status.ok { display: block; background: #e7f5ed; color: #155c39; }
.basket-list { border: 1px dashed #d6d2c8; border-radius: 8px; padding: 12px; background: var(--paper); }
.basket-list:empty::before { content: "No products selected — that's fine, just describe what you need below."; color: var(--muted); font-size: .88rem; }
.basket-item { display: flex; align-items: center; gap: 12px; padding: 6px 0; font-size: .88rem; }
.basket-item img { width: 44px; height: 44px; object-fit: cover; border-radius: 6px; }
.basket-item span { flex: 1; }
.basket-item button { background: none; border: 0; color: var(--muted); cursor: pointer; font-size: 1.2rem; }

/* Contact channels */
.channels { display: grid; gap: 14px; }
.channel { display: flex; gap: 16px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); text-decoration: none; }
.channel:hover { border-color: var(--ink); }
.channel .icon { margin: 0; flex: none; }
.channel b { display: block; }
.channel small { color: var(--muted); }

/* CTA band */
.cta-band { background: var(--accent); color: #fff; padding: 64px 0; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { margin: 0 0 6px; }
.cta-band p { margin: 0; color: #ffe0d9; }
.cta-band .btn-dark { background: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: #0e0f12; color: #a9a59c; padding: 64px 0 28px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }
.site-footer a { color: #d6d2c8; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .logo-text { color: #fff; }
.footer-bottom { border-top: 1px solid #25272c; margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; }

/* ---------- Floating contact ---------- */
.float-contact { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.float-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 18px; border-radius: 99px; color: #fff;
  text-decoration: none; font-weight: 600; font-size: .92rem; box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.float-btn svg { width: 20px; height: 20px; }
.float-wa { background: #1fa855; }
.float-quote { background: var(--ink); }
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 120px); background: var(--ink); color: #fff;
  padding: 12px 18px; border-radius: 8px; font-size: .9rem; z-index: 150; transition: transform .25s; box-shadow: var(--shadow);
}
.toast.show { transform: translate(-50%, 0); }
.toast a { color: #ff8a73; margin-left: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--paper); flex-direction: column; padding: 12px 16px 20px; border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav a { padding: 12px; font-size: 1rem; }
  .menu-toggle { display: inline-block; }

  .products { grid-template-columns: repeat(3, 1fr); }
  .cats { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .terms { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .header-cta .btn { display: none; }
  .split, .split.wide-left, .offer, .g2, .g3 { grid-template-columns: 1fr; }
  .split { gap: 36px; }
  .split.rev > :first-child { order: 0; }
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .topbar .tb-left { display: none; }
  .topbar .wrap { justify-content: center; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .section { padding: 64px 0; }
  .hero .wrap { padding-top: 70px; padding-bottom: 70px; }
  .products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-body { padding: 12px; }
  .product-actions { flex-direction: column; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .g4, .terms { grid-template-columns: 1fr; }
  .offer-card { min-height: 380px; padding: 26px; }
  .float-btn .lbl { display: none; }
  .float-btn { padding: 14px; }
  .basket-btn .lbl { display: none; }
  .topbar .tb-right { gap: 14px; font-size: .78rem; }
}

/* ---------- Product detail & category pages ---------- */
a.product-img { display: block; }
.product h3 a { text-decoration: none; }
.product h3 a:hover { color: var(--accent); }
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pd-img { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.pd-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.pd h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.pd .lead { font-size: 1.05rem; }
.spec-table { width: 100%; border-collapse: collapse; margin: 22px 0 26px; font-size: .95rem; }
.spec-table th, .spec-table td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { width: 38%; color: var(--muted); font-weight: 600; padding-right: 16px; }
.pd-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-wa { background: #1fa855; color: #fff; }
.btn-wa:hover { background: #178a45; }
.cat-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
a.chip { text-decoration: none; display: inline-block; }
.page-hero a.chip { background: transparent; color: #e3dfd6; border-color: #3a3d44; }
.page-hero a.chip:hover { border-color: #fff; color: #fff; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-top: 8px; }
.prose p { color: var(--ink-2); }
@media (max-width: 900px) {
  .pd { grid-template-columns: 1fr; gap: 28px; }
}