/* ============================================================
   ProKitchenReview — Kitchen product-review theme
   Cream marble + terracotta copper + warm stone (kitchen, not outdoor teal)
   Loaded AFTER style.css → overrides tokens + key components
   ============================================================ */

:root {
  --bg:        #faf6f1;
  --surface:   #ffffff;
  --surface2:  #f5ebe0;
  --border:    #e8d5c4;
  --gold:      #c2410c;
  --gold-light:#ea580c;
  --emerald:   #c2410c;
  --emerald-soft: #fb923c;
  --forest:    #9a3412;
  --sky:       #b45309;
  --red:       #dc2626;
  --accent:    #c2410c;
  --text:      #1c1917;
  --muted:     #78716c;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --max-w:     960px;
  --transition: .2s ease;
  --shadow:    0 4px 22px rgba(194, 65, 12, 0.08);
  --shadow-md: 0 10px 32px rgba(194, 65, 12, 0.14);
}

/* ---- Base override (warm kitchen light) ---- */
body {
  background:
    radial-gradient(1100px 480px at 8% -8%, rgba(251, 146, 60, 0.18), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(194, 65, 12, 0.09), transparent 50%),
    var(--bg) !important;
  color: var(--text) !important;
  font-family: 'Inter', system-ui, sans-serif !important;
}

h1, h2, h3, h4, h5, h6 { color: #292524 !important; }
a { color: var(--gold); }
a:hover { color: var(--forest); }

/* ---- Nav: logo left · links center · Updated right ---- */
.site-nav {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8), var(--shadow);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 20px;
  gap: 12px 16px;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: #1c1917 !important;
  text-decoration: none !important;
  justify-self: start;
  line-height: 1.1;
  text-shadow: none;
}
.nav-logo span {
  color: #c2410c !important; /* terracotta kitchen accent */
  background: none !important;
  -webkit-text-fill-color: #c2410c !important;
  font-weight: 800;
}
.nav-links {
  gap: 10px 12px !important;
}
.nav-links a {
  font-size: 0.82rem !important;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  flex-wrap: wrap;
  justify-self: center;
}
.nav-links a {
  color: #57534e !important;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none !important;
}
.nav-links a:hover,
.nav-links a.active { color: #1c1917 !important; }
/* Updated badge pinned right */
.nav-badge {
  justify-self: end;
  font-size: 0.72rem !important;
  color: #9a3412 !important;
  border: 1px solid #fdba74 !important;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff7ed !important;
  font-weight: 800 !important;
  white-space: nowrap;
  text-decoration: none !important;
}
.nav-toggle {
  display: none;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--forest);
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  justify-self: end;
}

/* ---- Breadcrumb ---- */
.crumb-wrap { padding-top: 22px; }
.breadcrumb {
  font-size: 0.84rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted) !important; text-decoration: none !important; }
.breadcrumb a:hover { color: var(--forest) !important; }
.breadcrumb .sep {
  margin: 0 8px;
  color: #78716c;
  opacity: 1;
  font-weight: 600;
}

/* ---- Article hero ---- */
.article-hero { padding: 24px 24px 8px; }
.hero-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--forest) !important;
  font-weight: 700;
  margin-bottom: 12px;
}
.article-hero h1 {
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 800;
  margin-bottom: 18px;
  color: #292524 !important;
  line-height: 1.15;
}
.article-hero h1 span {
  background: linear-gradient(120deg, #c2410c, #ea580c, #b45309);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.article-meta .dot { opacity: 0.45; }

/* Intro keeps card; author is frameless */
.article-lede {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #e8d5c4;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* Author byline — no card frame */
.author-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  max-width: 100%;
}
.author-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fdba74;
  box-shadow: 0 1px 6px rgba(194, 65, 12, 0.12);
  display: block;
  background: #fff7ed;
}
.author-verified-badge {
  position: absolute;
  right: -2px;
  bottom: -1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #c2410c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(194, 65, 12, 0.3);
}
.author-verified-badge svg {
  display: block;
  width: 11px;
  height: 11px;
}
.author-meta { min-width: 0; flex: 1; }
.author-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1.2;
}
.author-name {
  font-weight: 800;
  color: #292524;
  font-size: 0.98rem;
}
.author-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ecfdf5;
  border: 1px solid #86efac;
  color: #9a3412;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 3px 8px 3px 4px;
  border-radius: 999px;
  line-height: 1;
}
.author-verified .verified-icon {
  display: block;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}
.author-role {
  font-size: 0.8rem;
  color: #78716c;
  margin-top: 3px;
}
.author-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 0.78rem;
  color: #6b7c6e;
  margin-top: 4px;
}
.author-line .dot { opacity: 0.5; color: #78716c; }

/* Intro card — pairs with author card */
.article-lede {
  font-size: 1.02rem;
  color: #57534e;
  line-height: 1.75;
  padding: 16px 18px;
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf6 100%);
}
.article-lede p {
  margin: 0 0 12px;
  color: #57534e;
}
.article-lede p:last-child {
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px solid #e2ebe0;
}

.section-wrap { padding: 36px 24px; }
.section-wrap > h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #431407 !important;
}

.section-label {
  font-size: 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--forest) !important;
  font-weight: 700 !important;
  margin-bottom: 18px !important;
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #fdba74, transparent) !important;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* ---- Jump to a pick (simple board, strong content chips) ---- */
.jump-section { padding-top: 12px; }
.jump-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 16px 14px;
  box-shadow: var(--shadow);
}
.jump-head { margin-bottom: 12px; }
.jump-kicker {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 800;
  color: #c2410c;
  margin-bottom: 4px;
}
.jump-title {
  font-size: 1.35rem !important;
  color: #431407 !important;
  margin: 0 0 4px !important;
  font-weight: 800;
}
.jump-sub {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  max-width: 520px;
}
.quick-picks {
  display: grid;
  gap: 8px;
}
.qp-item {
  display: grid;
  grid-template-columns: minmax(118px, auto) 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  background: #f8faf7;
  border: 1px solid #e2ebe0;
  border-radius: 12px;
  text-decoration: none !important;
  transition: border-color var(--transition), background var(--transition);
}
.qp-item:first-child {
  background: #fff7ed;
  border-color: #fdba74;
}
.qp-item:hover {
  border-color: #ea580c;
  background: #fff;
}
.qp-label {
  display: inline-block;
  width: fit-content;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 800;
  color: #fff;
  background: #c2410c;
  padding: 5px 9px;
  border-radius: 999px;
  line-height: 1.1;
}
.qp-item:nth-child(2) .qp-label { background: #b45309; }
.qp-item:nth-child(3) .qp-label { background: #1d4ed8; }
.qp-item:nth-child(4) .qp-label { background: #b45309; }
.qp-item:nth-child(5) .qp-label { background: #334155; }
.qp-name {
  color: #431407 !important;
  font-weight: 700;
  font-size: 0.84rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-name {
  font-size: 1.05rem !important;
  line-height: 1.35 !important;
}

/* Credibility strip — hours tested, before short intro */
.test-lede {
  font-size: 1.02rem !important;
  line-height: 1.55 !important;
  color: #1f2937 !important;
  font-weight: 500 !important;
  margin: 0 0 1rem !important;
  padding: 0.85rem 1rem !important;
  background: #fff7ed !important;
  border-left: 3px solid #ea580c !important;
  border-radius: 0 8px 8px 0 !important;
}
.test-lede strong {
  color: #431407 !important;
  font-weight: 800 !important;
}

.intro-top-link {
  color: #c2410c !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
.intro-top-link:hover { color: #d97706 !important; }

/* Plain bold (intro, buying guide, top pick body) */
.article-lede strong:not(.hl),
.bg-item .bg-body strong:not(.hl),
.prod-desc strong:not(.hl),
.pros li strong,
.cons li strong {
  color: #431407;
  font-weight: 800;
  background: none;
}

/* Marker highlight — ONLY Best for value + Bottom line (kitchen peach, not outdoor green) */
.prod-desc strong.hl,
.best-for-line strong.hl,
.verdict-card strong.hl,
strong.hl {
  color: #431407;
  font-weight: 800;
  background: linear-gradient(180deg, transparent 55%, rgba(253, 186, 116, 0.65) 55%);
  padding: 0 3px;
  border-radius: 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/* label "Best for:" stays plain bold, not marker */
.prod-desc > strong:not(.hl),
.best-for-line > strong:not(.hl) {
  background: none !important;
  color: #431407;
  font-weight: 800;
}
.bg-item .bg-body {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.verdict-card p {
  margin-bottom: 10px;
  line-height: 1.65;
}
.verdict-card p:last-of-type {
  margin-bottom: 14px;
}

/* ---- Spotlight #1: stacked rows, all centered ---- */
.spotlight-card {
  background:
    linear-gradient(145deg, #ffffff 0%, #fff7ed 55%, #fffbeb 100%);
  border: 1px solid #fed7aa;
  border-radius: var(--radius-lg);
  padding: 18px 16px 20px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.spotlight-card-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.spotlight-row {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.spotlight-row-media .prod-media {
  margin: 0 auto;
}
.spotlight-row-media .prod-media img {
  width: 260px !important;
  max-width: 100% !important;
  height: 260px !important;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.spotlight-row-content {
  gap: 0;
}
.spotlight-row-content .prod-desc {
  max-width: 100%;
  text-align: center;
}
.spotlight-row-content .tags {
  justify-content: center;
  margin-bottom: 0;
}
.spotlight-row-scores {
  max-width: 100%;
}
.spotlight-row-scores .score-panel {
  width: 100%;
  margin: 0;
  text-align: left;
}
.spotlight-row-pros {
  max-width: 100%;
}
.spotlight-row-pros .pros-cons {
  width: 100%;
  margin: 0;
  text-align: left;
}
.spotlight-row-cta {
  gap: 8px;
}
.spotlight-row-cta .btn-amz {
  min-width: 240px;
  margin: 0 auto;
}
.spotlight-row-cta .ad-label {
  margin: 0;
  text-align: center;
}

.spotlight-badge {
  display: inline-block;
  background: #431407 !important;
  color: #fff !important;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  border: none !important;
  box-shadow: 0 2px 10px rgba(20, 83, 45, 0.25);
}
.spotlight-card h2 {
  font-size: 1.45rem;
  margin: 0 auto 10px;
  color: #431407 !important;
  line-height: 1.25;
  max-width: 100%;
}
.product-spotlight.section-wrap {
  padding-top: 24px;
  padding-bottom: 24px;
}
.spotlight-card .score-panel {
  margin-top: 0;
  margin-bottom: 0;
}
.spotlight-card .pros-cons {
  margin-bottom: 0;
  margin-top: 0;
}
.prod-desc { color: #57534e; margin-bottom: 12px; line-height: 1.7; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.tag {
  font-size: 0.75rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  padding: 5px 11px;
  border-radius: 999px;
  font-weight: 500;
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 4px;
  margin-top: 4px;
}
.pros, .cons {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.pros { border-color: #fed7aa; background: #fffaf5; }
.cons { border-color: #fecaca; background: #fffbfb; }
.pros h4, .cons h4 { font-size: 0.85rem; margin-bottom: 8px; }
.text-emerald { color: var(--emerald) !important; }
.text-red { color: var(--red) !important; }
.pros ul, .cons ul { margin-left: 18px; color: #57534e; font-size: 0.9rem; }
.pros li, .cons li { margin-bottom: 6px; }

.btn-amz, .btn-amz-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #fff !important;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none !important;
  font-size: 0.92rem;
  box-shadow: 0 4px 14px rgba(21, 128, 61, 0.28);
  border: none;
  line-height: 1.2;
}
.btn-amz-sm {
  padding: 10px 16px;
  font-size: 0.84rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #ea580c, #c2410c);
  box-shadow: 0 3px 12px rgba(21, 128, 61, 0.22);
}
.btn-amz:hover, .btn-amz-sm:hover {
  filter: brightness(1.06);
  text-decoration: none !important;
}
.ad-label {
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--muted);
}

/* ---- Product rows (#2–#5): 3 cols = image | content | CTA ---- */
.product-row,
.product-row-compact {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) 168px;
  gap: 18px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  align-items: center;
}
.product-row:hover,
.product-row-compact:hover {
  border-color: #fdba74;
  box-shadow: var(--shadow-md);
}
.product-col-media {
  position: relative;
  width: 168px;
}
.product-col-media .rank-num-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  width: 40px;
  height: 40px;
  font-size: 0.82rem;
  border-radius: 12px;
}
.rank-num-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #431407;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 2px 10px rgba(20, 83, 45, 0.28);
}
.product-col-media .prod-media {
  margin: 0;
  width: 100%;
}
.product-col-media .prod-media img {
  display: block;
  width: 168px;
  height: 168px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow);
  margin: 0;
}
.product-col-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-col-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
}
.product-col-cta .btn-amz-sm {
  width: 100%;
  max-width: 168px;
  min-height: 48px;
  text-align: center;
  padding: 12px 10px;
  white-space: normal;
  line-height: 1.25;
}

/* High-contrast badges */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff !important;
  font-weight: 800;
  margin-bottom: 8px;
  background: #c2410c;
  padding: 5px 10px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 2px 8px rgba(21, 128, 61, 0.25);
}
.spotlight-badge {
  background: #431407 !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 2px 10px rgba(20, 83, 45, 0.25);
}
.prod-name {
  font-size: 1.1rem !important;
  margin: 0 0 8px !important;
  color: #431407 !important;
  line-height: 1.3;
}
.prod-desc-short {
  margin-bottom: 8px !important;
  font-size: 0.94rem;
}
ul.keynotes {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
ul.keynotes li {
  font-size: 0.74rem;
  font-weight: 700;
  color: #431407;
  background: #fff7ed;
  border: 1px solid #fdba74;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---- Cards grids ---- */
.uc-grid, .bg-grid, .test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.uc-card, .bg-item, .test-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, border-color .15s ease;
}
.uc-card:hover, .bg-item:hover, .test-item:hover {
  border-color: #fdba74;
  transform: translateY(-2px);
}
.uc-icon, .test-icon { font-size: 1.45rem; margin-bottom: 8px; }
.uc-title, .test-title, .bg-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #431407 !important;
}
.uc-pick {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.uc-desc, .bg-item p, .test-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ---- Score bars (outdoor palette) ---- */
.score-panel {
  display: grid;
  gap: 11px;
  margin: 14px 0 16px;
  padding: 16px 16px 14px;
  background: linear-gradient(160deg, #fffaf5 0%, #fff7ed 55%, #fff7ed 100%);
  border: 1px solid #fed7aa;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.score-row {
  display: grid;
  grid-template-columns: 108px 1fr 40px;
  align-items: center;
  gap: 12px;
}
.score-label {
  font-size: 0.84rem;
  color: #78716c;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.score-track {
  height: 9px;
  background: #dcefe0;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  border: 1px solid #c6e6ce;
}
.score-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #fb923c 0%, #ea580c 50%, #c2410c 100%);
  box-shadow: 0 0 10px rgba(22, 163, 74, 0.25);
  transition: width 0.6s ease;
  min-width: 4px;
}
.score-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: #9a3412;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.spotlight-card .score-panel {
  margin-top: 12px;
  margin-bottom: 14px;
}

/* ---- FAQ ---- */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.faq-q {
  font-size: 1rem !important;
  margin-bottom: 8px !important;
  color: #431407 !important;
}
.faq-a { color: #57534e; font-size: 0.95rem; line-height: 1.65; }

/* ---- Verdict ---- */
.verdict-card {
  background: linear-gradient(145deg, #fff7ed, #fff, #fffbeb);
  border: 1px solid #fdba74;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.verdict-card p {
  margin-bottom: 12px;
  color: #57534e;
  line-height: 1.7;
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 36px 0 52px;
  background: linear-gradient(180deg, #eef5ea, #e8f0e4);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.affiliate-notice {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.65;
}
.footer-links { display: flex; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.footer-links a { color: var(--forest) !important; font-size: 0.9rem; font-weight: 600; }
.text-muted { color: var(--muted) !important; }

/* ---- Demo notes ---- */
.demo-note { border-top: 1px dashed var(--border); margin-top: 12px; }
.demo-pre {
  background: #1c2b1f;
  border: 1px solid #2d4a34;
  border-radius: var(--radius-md);
  padding: 16px;
  overflow: auto;
  font-size: 0.78rem;
  color: #fed7aa;
  line-height: 1.55;
}

/* ---- Homepage helpers (shared) ---- */
.hero-home {
  padding: 64px 24px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.hero-home h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 16px;
  color: #431407 !important;
}
.hero-home h1 span {
  background: linear-gradient(120deg, #c2410c, #ea580c, #b45309);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-home p {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.cat-card {
  display: block;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none !important;
  box-shadow: var(--shadow);
  transition: .2s ease;
}
.cat-card:hover {
  border-color: #fdba74;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cat-icon { font-size: 1.55rem; margin-bottom: 8px; }
.cat-title { color: #431407 !important; font-weight: 700; margin-bottom: 6px; }
.cat-desc { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.art-card {
  display: block;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none !important;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.art-card:hover { border-color: #fdba74; }
.art-cat {
  font-size: 0.7rem;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.art-title {
  color: #431407 !important;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 6px 0;
}
.art-meta { color: var(--muted); font-size: 0.85rem; }

@media (max-width: 720px) {
  .nav-inner {
    grid-template-columns: 1fr auto auto;
    grid-template-areas:
      "logo toggle badge"
      "links links links";
  }
  .nav-logo { grid-area: logo; }
  .nav-toggle {
    display: block;
    grid-area: toggle;
  }
  .nav-badge { grid-area: badge; }
  .nav-links {
    display: none;
    grid-area: links;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav-links.open { display: flex; }
  .pros-cons { grid-template-columns: 1fr; }
  .product-row,
  .product-row-compact {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
  .product-col-media {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  .product-col-media .prod-media img {
    width: 100%;
    max-width: 200px;
    height: auto;
    aspect-ratio: 1;
  }
  .product-col-cta {
    justify-content: stretch;
  }
  .product-col-cta .btn-amz-sm {
    max-width: none;
  }
  .qp-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .author-byline {
    max-width: 100%;
    align-items: flex-start;
  }
  .prod-media img { max-width: 220px; }
  .spotlight-row-media .prod-media img {
    width: 220px !important;
    height: 220px !important;
  }
  .spotlight-row-pros .pros-cons {
    grid-template-columns: 1fr;
  }
  .score-row {
    grid-template-columns: 88px 1fr 36px;
    gap: 8px;
  }
  .score-label { font-size: 0.78rem; }
  .score-value { font-size: 0.88rem; }
}
