/* Smart TVs Kenya — hard retail ecommerce UI. Zero JS. */
:root {
  --black: #111;
  --text: #222;
  --muted: #667085;
  --line: #e5e7eb;
  --line-2: #d0d5dd;
  --bg: #f5f6f8;
  --white: #fff;
  --price: #c41111;
  --blue: #0b5cab;
  --blue-d: #084a8c;
  --wa: #25d366;
  --wa-d: #1ebe57;
  --star: #f5a623;
  --ok: #067647;
  --r: 6px;
  --max: 1200px;
  --font: "Manrope", "Segoe UI", system-ui, sans-serif;
  --sticky: 58px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  padding-bottom: calc(var(--sticky) + 12px + env(safe-area-inset-bottom, 0px));
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  background: #000;
  color: #fff;
  padding: 8px 12px;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

.wrap {
  width: min(100% - 24px, var(--max));
  margin-inline: auto;
}

/* ========== TOP UTILITY BAR ========== */
.topbar {
  background: #0f172a;
  color: #cbd5e1;
  font-size: 12.5px;
  font-weight: 600;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  min-height: 36px;
  padding: 6px 0;
}

.topbar a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.topbar a:hover {
  color: var(--wa);
  text-decoration: none;
}

.topbar-right {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

/* ========== MAIN HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding: 8px 0;
  position: relative;
}

.logo {
  font-weight: 800;
  font-size: 18px;
  color: var(--black);
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.logo span {
  color: var(--blue);
}

.logo:hover {
  text-decoration: none;
  color: var(--black);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: #fff;
  cursor: pointer;
}

.nav-toggle-label svg {
  width: 18px;
  height: 18px;
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  padding: 8px;
  z-index: 120;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.site-nav a {
  display: block;
  padding: 11px 12px;
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
}

.site-nav a:hover {
  background: #f3f4f6;
  color: var(--blue);
  text-decoration: none;
}

.nav-toggle:checked ~ .site-nav {
  display: block;
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-toggle-label {
    display: none;
  }

  .site-nav {
    display: block;
    position: static;
    border: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 2px;
  }

  .site-nav a {
    padding: 8px 10px;
    font-size: 13.5px;
    color: #334155;
  }

  .header-cta {
    display: inline-flex;
    min-height: 40px;
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--r);
  font-family: var(--font);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.1;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--wa);
  color: #053b1c;
  border-color: #1ebe57;
}

.btn-primary:hover {
  background: var(--wa-d);
  color: #053b1c;
}

.btn-secondary {
  background: #fff;
  color: var(--black);
  border-color: var(--line-2);
}

.btn-secondary:hover {
  border-color: #94a3b8;
  color: var(--black);
  background: #f8fafc;
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn-blue:hover {
  background: var(--blue-d);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-sm {
  min-height: 36px;
  padding: 7px 12px;
  font-size: 13px;
}

.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ========== TYPE ========== */
h1,
h2,
h3,
h4 {
  margin: 0 0 10px;
  color: var(--black);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(24px, 3.2vw, 34px);
}

h2 {
  font-size: clamp(20px, 2.2vw, 26px);
}

h3 {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 12px;
}

.lead {
  font-size: 15px;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.55;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
  line-height: 1.45;
}

.tabular,
.price,
.num,
.spec-table td:last-child,
.price-table td:nth-child(n + 2) {
  font-variant-numeric: tabular-nums;
}

.price {
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  color: var(--price);
  letter-spacing: -0.02em;
}

.price-was {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 600;
  margin-left: 6px;
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* keep old class names working */
.inch-bar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 12px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.inch-bar::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--blue);
}

.inch-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 7px;
  border-radius: 3px;
  background: #eef2ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.inch-badge::before {
  content: none;
}

/* ========== MAIN CTA BAND ========== */
.hero-cta-band {
  padding: 18px 0 8px;
}

.hero-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 16px;
}

@media (min-width: 900px) {
  .hero-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
  }

  .hero-cta-inner .lead {
    margin-bottom: 0;
  }
}

.hero-cta-inner h1 {
  margin: 4px 0 8px;
  max-width: 18ch;
  font-size: clamp(22px, 3vw, 32px);
}

.hero-cta-inner .btn-row {
  flex-shrink: 0;
}

/* ========== HERO SLIDER (CSS swipe, zero JS) ========== */
.hero {
  padding: 12px 0 4px;
}

.hero-slider-wrap {
  position: relative;
}

.hero-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.hero-track::-webkit-scrollbar {
  height: 6px;
}

.hero-track::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 99px;
}

.hero-slide {
  flex: 0 0 min(100%, 980px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  min-height: 280px;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 800px) {
  .hero-slide {
    flex: 0 0 min(92%, 1040px);
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 320px;
  }
}

.hero-slide:hover {
  text-decoration: none;
  color: inherit;
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.hero-slide-media {
  background: #0f172a;
  min-height: 200px;
  position: relative;
}

.hero-slide-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 800px) {
  .hero-slide-media img {
    min-height: 320px;
  }
}

.hero-slide-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--price);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-slide-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.hero-slide-body .eyebrow {
  color: var(--blue);
}

.hero-slide-body h2 {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.15;
}

.hero-slide-body .lead {
  margin: 0 0 6px;
  font-size: 14px;
}

.hero-slide-body .price {
  font-size: 26px;
  margin: 2px 0 10px;
}

.hero-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 8px 0 0;
  font-size: 12.5px;
  font-weight: 750;
  color: var(--muted);
}

.hero-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.hero-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5e1;
}

.hero-dots span:first-child {
  background: var(--blue);
  width: 18px;
  border-radius: 99px;
}

/* legacy hero classes still used on inner pages */
.hero-grid {
  display: grid;
  gap: 12px;
}

.hero-copy {
  background: linear-gradient(135deg, #0b5cab 0%, #0a3d7a 100%);
  color: #fff;
  border-radius: 8px;
  padding: 28px 24px;
}

.hero-copy h1 {
  color: #fff;
}

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.hero-card-media img {
  width: 100%;
  min-height: 170px;
  object-fit: cover;
}

.hero-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}

/* ========== SECTIONS ========== */
.section {
  padding: 22px 0;
}

.section-tight {
  padding: 8px 0 4px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--black);
}

.section-head h2 {
  margin: 0;
  font-size: 18px;
  text-transform: none;
}

.section-head a {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

/* ========== CATEGORY RAIL ========== */
.size-strip,
.cat-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .size-strip,
  .cat-rail {
    grid-template-columns: repeat(6, 1fr);
  }
}

.size-tile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-height: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  text-decoration: none;
  color: var(--black);
  text-align: left;
  overflow: hidden;
}

.size-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #eef2f7;
}

.size-tile .size-tile-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 8px 10px 10px;
}

.size-tile:hover {
  border-color: var(--blue);
  color: var(--black);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(11, 92, 171, 0.1);
}

.size-tile strong {
  font-size: 18px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.size-tile span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}

/* budget as plain shop filters */
.budget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

@media (min-width: 900px) {
  .budget-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.budget-tile {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0;
  min-height: 88px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  text-decoration: none;
  color: var(--black);
  overflow: hidden;
}

.budget-tile img {
  width: 100%;
  height: 100%;
  min-height: 88px;
  object-fit: cover;
  background: #eef2f7;
}

.budget-tile .budget-tile-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 12px 12px;
}

.budget-tile:hover {
  border-color: var(--blue);
  text-decoration: none;
  color: var(--black);
  box-shadow: 0 2px 8px rgba(11, 92, 171, 0.08);
}

.budget-tile strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--price);
  letter-spacing: -0.01em;
}

.budget-tile span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 650;
}

/* brand row */
.brand-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (min-width: 900px) {
  .brand-strip {
    grid-template-columns: repeat(6, 1fr);
  }
}

.brand-tile {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  text-decoration: none;
  color: var(--black);
  font-weight: 800;
  font-size: 13px;
  overflow: hidden;
}

.brand-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #eef2f7;
}

.brand-tile span {
  display: block;
  padding: 8px 10px;
  text-align: center;
}

.brand-tile:hover {
  border-color: var(--blue);
  color: var(--blue);
  text-decoration: none;
}

/* chips fallback */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: #fff;
  color: var(--black);
  font-weight: 750;
  font-size: 13px;
  text-decoration: none;
}

.chip:hover {
  border-color: var(--blue);
  color: var(--blue);
  text-decoration: none;
}

.chip-active {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

/* ========== TRUST STRIP ========== */
.trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

@media (min-width: 900px) {
  .trust-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 12px;
}

.trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 2px;
}

/* ========== PRODUCT GRID (real ecommerce cards) ========== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (min-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.product-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.product-card a.card-media {
  display: block;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  position: relative;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  background: #f1f5f9;
}

.product-card-body {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.tag {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-card h3 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 750;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.product-card h3 a {
  color: var(--black);
  text-decoration: none;
}

.product-card h3 a:hover {
  color: var(--blue);
}

.card-footer {
  margin-top: auto;
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-footer .price {
  font-size: 18px;
  margin: 0;
}

.card-footer .btn {
  min-height: 38px;
  font-size: 12.5px;
  padding: 8px 10px;
}

.stock-line {
  font-size: 12px;
  font-weight: 750;
  color: var(--ok);
  margin: 0;
}

/* ========== PRODUCT PAGE ========== */
.product-layout {
  display: grid;
  gap: 16px;
  padding: 12px 0 28px;
}

@media (min-width: 960px) {
  .product-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 20px;
    align-items: start;
  }

  .buy-box {
    position: sticky;
    top: 80px;
  }
}

.gallery {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
}

.gallery figure {
  margin: 0;
  flex: 0 0 min(100%, 520px);
  scroll-snap-align: start;
  background: #f8fafc;
  border-radius: 6px;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f1f5f9;
  min-height: 240px;
}

.buy-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.buy-box h1 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin-bottom: 8px;
}

.buy-box .lead {
  font-size: 14px;
  margin-bottom: 10px;
}

.buy-box .price {
  font-size: 28px;
  margin: 4px 0 6px;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ok);
  margin: 0 0 10px;
}

.availability::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
}

.trust-chip {
  font-size: 11px;
  font-weight: 800;
  padding: 5px 8px;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.stack-gap > * + * {
  margin-top: 8px;
}

/* ========== TABLES ========== */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  margin: 12px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

th,
td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 13.5px;
}

th {
  background: #f8fafc;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 800;
}

tr:last-child td {
  border-bottom: 0;
}

.price-table td:last-child {
  color: var(--price);
  font-weight: 800;
  white-space: nowrap;
}

.spec-table {
  min-width: 0;
}

.spec-table th {
  width: 38%;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13.5px;
  color: var(--black);
  font-weight: 750;
  background: #f8fafc;
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
  padding: 10px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 4px;
  color: #94a3b8;
}

.breadcrumbs a {
  color: var(--muted);
  font-weight: 650;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

/* ========== CONTENT ========== */
.page-hero {
  padding: 18px 0 8px;
}

.page-hero h1 {
  max-width: 22ch;
}

.content-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}

.two-col {
  display: grid;
  gap: 12px;
}

@media (min-width: 900px) {
  .two-col {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.note {
  background: #eff6ff;
  border-left: 3px solid var(--blue);
  padding: 12px;
  border-radius: 0 6px 6px 0;
  margin: 12px 0;
}

.updated {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 750;
}

.prose-measure {
  max-width: 680px;
}

/* FAQ */
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 14px;
  margin-bottom: 8px;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--black);
  list-style: none;
  font-size: 14px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--muted);
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 36px 0 20px;
  margin-top: 28px;
}

.site-footer a {
  color: #fff;
  font-weight: 650;
  text-decoration: none;
}

.site-footer a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  }
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
  font-weight: 800;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 13.5px;
}

.footer-def {
  font-size: 13px;
  color: #64748b;
  margin-top: 12px;
  line-height: 1.5;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #64748b;
}

.map-wrap {
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1e293b;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========== STICKY MOBILE BUY BAR ========== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8px;
  padding: 8px 10px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.sticky-cta .btn {
  min-height: 44px;
  border-radius: var(--r);
}

@media (min-width: 1024px) {
  .sticky-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

/* forms */
label {
  display: block;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--black);
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  font: inherit;
  background: #fff;
  color: var(--black);
  margin-bottom: 10px;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 92, 171, 0.12);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* utils */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.center {
  text-align: center;
}

.not-found {
  padding: 64px 0;
  text-align: center;
}

/* category promo strip */
.promo-strip {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  margin: 8px 0 4px;
}

@media (min-width: 768px) {
  .promo-strip {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.promo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: var(--black);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 120px;
}

.promo-card:hover {
  text-decoration: none;
  color: var(--black);
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.promo-card-copy {
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.promo-card-copy strong {
  font-size: 15px;
  font-weight: 800;
}

.promo-card-copy span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 650;
}

.promo-card-copy em {
  font-style: normal;
  color: var(--price);
  font-weight: 800;
  font-size: 16px;
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 120px;
  background: #f1f5f9;
}

.promo-card.small {
  grid-template-columns: 1fr;
}

.promo-card.small img {
  min-height: 90px;
  max-height: 100px;
}

.promo-card.small .promo-card-copy {
  padding-top: 10px;
}
