/* ororo Heated Apparel — 2026 catalog
   Brand tokens from ororo Partner Brand Guide 2026 */

:root {
  --ororo-night: #140800;
  --ororo-heat: #f55a00;
  --ororo-heat-soft: #ff7a2a;
  --ororo-ink: #1a1a1a;
  --ororo-ink-2: #3a3a3a;
  --ororo-mute: #6b6b6b;
  --ororo-line: #e6e3df;
  --ororo-paper: #ffffff;
  --ororo-paper-2: #f6f4f0;
  --ororo-paper-3: #eceae5;

  --font-display: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
  --shadow-card: 0 1px 2px rgba(20, 8, 0, 0.04), 0 8px 24px rgba(20, 8, 0, 0.06);
  --shadow-hover: 0 2px 6px rgba(20, 8, 0, 0.08), 0 16px 40px rgba(20, 8, 0, 0.12);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ororo-ink);
  background: var(--ororo-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ororo-heat);
}
.eyebrow.on-dark { color: var(--ororo-heat); }
.eyebrow .bar {
  display: inline-block;
  width: 4px; height: 14px;
  background: var(--ororo-heat);
  vertical-align: -2px;
  margin-right: 10px;
}

.kicker { color: var(--ororo-heat); }
.lead {
  font-size: clamp(15px, 1.1vw + 10px, 18px);
  color: var(--ororo-ink-2);
  max-width: 56ch;
}

/* Layout ─────────────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

/* Nav ────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--ororo-line);
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  height: 64px;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.brand {
  display: inline-flex; align-items: center;
  color: var(--ororo-ink);
  line-height: 0;
}
.brand img {
  height: 28px; width: auto;
  display: block;
}
.brand .label { display: none; } /* logo handles wordmark */

.nav-links {
  display: flex; gap: 22px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-links a {
  color: var(--ororo-ink-2);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-links a:hover { color: var(--ororo-heat); border-color: var(--ororo-heat); }
.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--ororo-heat); color: #fff;
  padding: 9px 16px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--ororo-heat-soft); }
@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* Hero ───────────────────────────────────────────────── */
.hero {
  background: var(--ororo-paper-2);
  padding-block: clamp(40px, 6vw, 72px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
}
.hero-copy h1 .alt { color: var(--ororo-heat); }
.hero-copy .lead { margin-top: 22px; }
.hero-meta {
  margin-top: 28px;
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ororo-ink-2);
}
.hero-meta .pill {
  border: 1px solid var(--ororo-line);
  padding: 8px 14px; border-radius: 999px;
  background: #fff;
  color: var(--ororo-ink-2);
  transition: border-color .15s, color .15s, background .15s;
}
a.pill { text-decoration: none; cursor: pointer; }
a.pill:hover {
  border-color: var(--ororo-heat);
  color: var(--ororo-heat);
  background: rgba(245, 90, 0, 0.04);
}
.hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #ddd;
  aspect-ratio: 520 / 804;
  max-height: 680px;
  margin-inline: auto;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { aspect-ratio: 4/5; max-height: none; }
}

/* Pure spread (no text — just the PDF page) ────────── */
.spread-only {
  padding-block: clamp(24px, 3vw, 48px);
  background: var(--ororo-paper);
}
.spread-only.paper { background: var(--ororo-paper-2); }
.spread-only.dark  { background: var(--ororo-night); }
.spread-only .frame {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}
.spread-only .frame img { width: 100%; height: auto; display: block; }

/* Editorial spread (full-bleed page image) ───────────── */
.spread {
  padding-block: clamp(48px, 6vw, 96px);
}
.spread.dark { background: var(--ororo-night); color: #fff; }
.spread.paper { background: var(--ororo-paper-2); }
.spread-frame {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}
.spread-frame img { width: 100%; height: auto; }
.spread-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.spread-head h2 {
  font-size: clamp(34px, 4.5vw, 56px);
}
.spread-head p { max-width: 56ch; color: var(--ororo-ink-2); margin: 0; }
.spread.dark .spread-head p { color: #d7d2cc; }

/* Section opener (large editorial divider) ───────────── */
.section-divider {
  position: relative;
  margin-block: clamp(32px, 5vw, 72px) clamp(24px, 4vw, 48px);
}
.section-divider .label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ororo-heat);
}
.section-divider h2 {
  margin-top: 8px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
}
.section-divider .count {
  display: inline-block;
  margin-left: 14px;
  font-size: 0.32em;
  vertical-align: 0.55em;
  color: var(--ororo-mute);
  letter-spacing: 0.04em;
}

/* Filter bar ─────────────────────────────────────────── */
.filters {
  display: flex; gap: 5px; flex-wrap: nowrap;
  align-items: center;
  padding: 14px 0 20px;
  border-bottom: 1px solid var(--ororo-line);
  margin-bottom: 24px;
  position: sticky; top: 64px; z-index: 30;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  overflow-x: auto;
  scrollbar-width: thin;
}
.filters::-webkit-scrollbar { height: 6px; }
.filters::-webkit-scrollbar-thumb { background: var(--ororo-line); border-radius: 3px; }
.filters .label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ororo-mute);
  margin-right: 4px;
}
.chip {
  border: 1px solid var(--ororo-line);
  background: #fff;
  color: var(--ororo-ink-2);
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .15s;
}
.filters .label { flex-shrink: 0; }
.chip:hover { border-color: var(--ororo-ink); color: var(--ororo-ink); }
.chip.active {
  background: var(--ororo-night);
  border-color: var(--ororo-night);
  color: #fff;
}
.chip.heat.active { background: var(--ororo-heat); border-color: var(--ororo-heat); }

/* Product grid ───────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.card {
  background: #fff;
  border: 1px solid var(--ororo-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--ororo-ink);
  box-shadow: var(--shadow-hover);
}
.card-thumb {
  background: #fff;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}
.card:hover .card-thumb img { transform: scale(1.03); }
.card-body {
  padding: 16px 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1;
}
.card-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ororo-heat);
}
.card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  color: var(--ororo-ink);
}
.card-specs {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-size: 11px; color: var(--ororo-mute);
  margin-top: 6px;
}
.card-specs span {
  border: 1px solid var(--ororo-line);
  padding: 3px 7px; border-radius: 3px;
}
.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
}
.card-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ororo-ink);
}
.card-colors {
  display: inline-flex; gap: 5px;
}
.swatch {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
}
.card-zones {
  display: inline-flex; align-items: center;
  gap: 4px;
  font-size: 11px; font-weight: 700;
  background: var(--ororo-heat);
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.card-zones::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
}

/* Lightbox / detail ──────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 8, 0, 0.86);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox-inner {
  background: #fff;
  max-width: 1180px;
  max-height: 92vh;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
.lightbox-img {
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  background: var(--ororo-paper-2);
}
.lightbox-img img { width: 100%; height: auto; display: block; }
.lightbox-close {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.92);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--ororo-ink);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
}
.lightbox-close:hover { background: #fff; }

/* Tech / materials grid ──────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 2.5vw, 36px);
  margin-top: 36px;
}
.feature {
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.spread.paper .feature {
  background: #fff;
  border-color: var(--ororo-line);
}
.feature h4 {
  font-size: 16px;
  letter-spacing: -0.005em;
  text-transform: none;
}
.feature h4 .num { color: var(--ororo-heat); margin-right: 6px; }
.feature p {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--ororo-mute);
}
.spread.dark .feature p { color: #b8b1aa; }

/* Materials list ─────────────────────────────────────── */
.materials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.material {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--ororo-line);
}
.material .logo {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--ororo-ink);
  background: var(--ororo-paper-2);
  border-radius: var(--radius);
  aspect-ratio: 1;
  padding: 4px;
  line-height: 1.1;
}
.material h4 {
  font-size: 14px;
  text-transform: none;
  margin-bottom: 6px;
}
.material p { margin: 0; font-size: 13px; color: var(--ororo-mute); }
.material ul {
  margin: 6px 0 0; padding-left: 16px;
  font-size: 12px; color: var(--ororo-mute);
}

/* Media mentions ─────────────────────────────────────── */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 28px;
}
.outlets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 28px;
  align-items: center;
}
.outlet {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ororo-ink-2);
  letter-spacing: -0.005em;
}
.outlet .serif { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.quotes { display: grid; gap: 24px; }
.quote {
  border-left: 2px solid var(--ororo-heat);
  padding-left: 16px;
}
.quote p {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--ororo-ink-2);
}
.quote cite {
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: var(--ororo-heat);
}
@media (max-width: 760px) {
  .media-grid { grid-template-columns: 1fr; gap: 32px; }
  .outlets { grid-template-columns: repeat(2, 1fr); }
}

/* Testimonials ───────────────────────────────────────── */
.testimonials {
  background: var(--ororo-paper-2);
  padding-block: clamp(48px, 6vw, 96px);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--ororo-line);
  border-radius: var(--radius);
  padding: 24px;
}
.testimonial p {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--ororo-ink-2);
}
.testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: var(--ororo-heat);
}

/* Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--ororo-night);
  color: #fff;
  padding-block: 56px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ororo-heat);
  margin: 0 0 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer a { color: #d7d2cc; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer .brand-block .brand { margin-bottom: 14px; }
.footer .brand-block .brand img { height: 32px; }
.footer .brand-block p { color: #b8b1aa; font-size: 13px; max-width: 38ch; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: #8a857f; font-size: 12px;
}
.tag { color: var(--ororo-heat); font-weight: 700; letter-spacing: 0.06em; }
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Heating-zones block — refined ─────────────────────── */
.zones-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: stretch;
  background: var(--ororo-night);
  color: #fff;
  padding: 22px 24px;
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.zones-count {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 4px 16px 4px 4px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.zones-count .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: var(--ororo-heat);
}
.zones-count .num-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d7d2cc;
  margin-top: 6px;
  text-align: center;
}
.zones-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  align-content: center;
}
.zones-list .zone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.zones-list .zone::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ororo-heat);
  box-shadow: 0 0 0 3px rgba(245, 90, 0, 0.18);
  flex-shrink: 0;
}
@media (max-width: 520px) {
  .zones-block { grid-template-columns: 1fr; gap: 14px; }
  .zones-count { flex-direction: row; gap: 12px; padding: 0 0 12px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .zones-count .num { font-size: 36px; }
  .zones-list { grid-template-columns: 1fr; }
}

/* Product detail modal ──────────────────────────────── */
.detail {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(20, 8, 0, 0.86);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
}
.detail.open { display: flex; }
.detail-inner {
  background: #fff;
  width: 100%;
  max-width: 1200px;
  max-height: 92vh;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  position: relative;
}
.detail-close {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.92);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 22px;
  color: var(--ororo-ink);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  z-index: 2;
}
.detail-close:hover { background: #fff; }

.detail-hero {
  background: var(--ororo-paper-2);
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.detail-hero-img {
  position: absolute; inset: 0;
  background-size: 200% auto;
  background-repeat: no-repeat;
  background-position: 0% center;
}
.detail-hero-img.full { background-size: cover; background-position: center; }
.detail-hero-img.right { background-position: 100% center; }
.detail-page-link {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(255,255,255,0.92);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ororo-ink);
}

.detail-body {
  padding: clamp(24px, 3vw, 40px);
  overflow-y: auto;
  max-height: 92vh;
}
.detail-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ororo-heat);
  margin-bottom: 8px;
}
.detail-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.1;
  margin: 0 0 6px;
  color: var(--ororo-ink);
}
.detail-sku {
  font-size: 12px;
  color: var(--ororo-mute);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.detail-price-row {
  display: flex; align-items: baseline; gap: 14px;
  margin: 12px 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ororo-line);
}
.detail-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--ororo-ink);
}
.detail-msrp-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ororo-mute);
}
.detail-zones {
  display: flex; align-items: center; gap: 12px;
  background: var(--ororo-night);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.detail-zones .num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--ororo-heat);
  line-height: 1;
}
.detail-zones .num-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: #d7d2cc;
}
.detail-zones .loc {
  font-size: 13px;
  color: #fff;
  line-height: 1.45;
}
.detail-dual {
  background: rgba(245, 90, 0, 0.08);
  border-left: 3px solid var(--ororo-heat);
  padding: 10px 14px;
  margin: -16px 0 24px;
  font-size: 13px;
  color: var(--ororo-ink-2);
}
.detail-dual strong { font-weight: 700; color: var(--ororo-heat); letter-spacing: 0.04em; }

.detail-section {
  margin-bottom: 24px;
}
.detail-section h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ororo-mute);
  margin: 0 0 10px;
}

.detail-materials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.detail-mat {
  background: var(--ororo-paper-2);
  padding: 12px 14px;
  border-radius: var(--radius);
}
.detail-mat .k {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ororo-heat);
  margin-bottom: 4px;
}
.detail-mat .v {
  font-size: 13px; color: var(--ororo-ink); line-height: 1.4;
}

.detail-features {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.detail-features li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: var(--ororo-ink-2);
  line-height: 1.5;
}
.detail-features li::before {
  content: ""; position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--ororo-heat);
}

.detail-fit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.detail-fit-row .detail-mat .v { font-weight: 600; }

.detail-variants {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.detail-variant {
  display: flex; align-items: center; gap: 10px;
  padding: 10px;
  border: 1px solid var(--ororo-line);
  border-radius: var(--radius);
  background: #fff;
}
.detail-variant.hero {
  border-color: var(--ororo-heat);
  background: rgba(245, 90, 0, 0.03);
}
.detail-variant .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.detail-variant .info { min-width: 0; }
.detail-variant .name {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ororo-ink);
  line-height: 1.25;
}
.detail-variant .sku {
  font-size: 11px;
  color: var(--ororo-heat);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.detail-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 6px;
}
.detail-tags .tag-pill {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ororo-line);
  color: var(--ororo-ink-2);
}

.detail-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ororo-heat);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}
.detail-cta:hover { background: var(--ororo-heat-soft); }
.detail-cta::after { content: "→"; font-size: 16px; }

.detail-view-spread {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 14px;
  font-size: 12px; font-weight: 700;
  color: var(--ororo-ink-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 14px;
  border: 1px solid var(--ororo-line);
  border-radius: 999px;
  background: #fff;
}
.detail-view-spread:hover { border-color: var(--ororo-ink); color: var(--ororo-ink); }

@media (max-width: 880px) {
  .detail-inner { grid-template-columns: 1fr; max-height: 96vh; }
  .detail-hero { min-height: 300px; aspect-ratio: 3/4; max-height: 50vh; }
  .detail-body { max-height: none; }
}

/* Misc helpers ───────────────────────────────────────── */
.empty {
  padding: 64px 20px;
  text-align: center;
  color: var(--ororo-mute);
  font-size: 14px;
  border: 1px dashed var(--ororo-line);
  border-radius: var(--radius);
}
