/* ==========================================================================
   Plasticproof Catalog — design system
   Warm editorial apothecary: cream paper, forest green, terracotta, serif
   display. Native to the existing brand (index.html / blog), elevated to
   production-grade e-commerce. Single source of truth for storefront,
   category, and product-detail pages.
   ========================================================================== */

:root {
  /* Brand tokens (from existing site) */
  --bg: #FEFCF9;
  --bg-alt: #F7F3EE;
  --bg-sink: #F2ECE3;
  --bg-card: #FFFFFF;
  --ink: #2C2C2C;
  --ink-2: #6B6B6B;
  --ink-3: #999999;
  --line: rgba(0,0,0,0.07);
  --line-2: rgba(0,0,0,0.12);
  --accent: #5B8C6E;
  --accent-hover: #4A7A5D;
  --accent-ink: #3B6350;
  --accent-soft: rgba(91,140,110,0.10);
  --accent-softer: rgba(91,140,110,0.05);
  --terra: #C08552;
  --terra-soft: rgba(192,133,82,0.12);
  --gold: #B8863B;
  --danger: #C45B5B;
  --danger-soft: rgba(196,91,91,0.08);

  --shadow-xs: 0 1px 3px rgba(120,100,80,0.06);
  --shadow-sm: 0 2px 16px rgba(150,130,110,0.09);
  --shadow-md: 0 8px 30px rgba(140,120,100,0.13);
  --shadow-lg: 0 20px 60px rgba(120,100,80,0.18);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --maxw: 1200px;

  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background-color: var(--bg);
  /* faint layered paper atmosphere — not a flat fill */
  background-image:
    radial-gradient(1200px 600px at 82% -8%, rgba(192,133,82,0.05), transparent 60%),
    radial-gradient(1000px 520px at 8% 4%, rgba(91,140,110,0.06), transparent 55%);
  background-attachment: fixed;
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: rgba(91,140,110,0.20); color: var(--ink); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---- shared layout ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--accent-ink);
}
.serif { font-family: var(--serif); font-weight: 400; }

/* =========================================================================
   NAV  (mirrors existing site nav so the catalog feels native)
   ========================================================================= */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 13px 24px; background: rgba(254,252,249,0.82);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); text-decoration: none; line-height: 1.2; display: inline-flex; align-items: center; }
.nav-logo img { height: 30px; width: auto; border-radius: 7px; margin-right: 9px; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-link { font-size: 0.875rem; font-weight: 500; color: var(--ink-2); text-decoration: none; transition: color 0.2s var(--ease); }
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--accent); font-weight: 600; }
.nav-cta { display: inline-flex; align-items: center; padding: 10px 22px; background: var(--accent); color: #fff; border-radius: 100px; white-space: nowrap; font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.nav-cta:hover { background: var(--accent-hover); box-shadow: 0 4px 16px rgba(91,140,110,0.25); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; width: 28px; height: 24px; position: relative; z-index: 110; }
.nav-hamburger span { display: block; width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s var(--ease); position: absolute; left: 0; }
.nav-hamburger span:nth-child(1){top:2px} .nav-hamburger span:nth-child(2){top:11px} .nav-hamburger span:nth-child(3){top:20px}
.nav-hamburger.active span:nth-child(1){top:11px;transform:rotate(45deg)} .nav-hamburger.active span:nth-child(2){opacity:0} .nav-hamburger.active span:nth-child(3){top:11px;transform:rotate(-45deg)}
.nav-mobile-overlay { display: none; }
@media (max-width: 720px) {
  .nav-links { display: none !important; } .nav-hamburger { display: block; }
  .nav-mobile-overlay { display: block; max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), padding .35s var(--ease); padding: 0 24px; background: var(--bg); }
  .nav-mobile-overlay.open { max-height: 340px; padding: 18px 24px 24px; border-bottom: 1px solid var(--line-2); box-shadow: var(--shadow-sm); }
  .nav-mobile-overlay a { display: block; font-size: 1.05rem; font-weight: 500; color: var(--ink); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-mobile-overlay a:last-child { border-bottom: none; }
  .nav-mobile-overlay a.nav-mob-cta { color: var(--accent); font-weight: 600; }
}

/* =========================================================================
   BREADCRUMBS
   ========================================================================= */
.breadcrumbs { font-size: 0.8rem; color: var(--ink-3); padding-top: 92px; }
.breadcrumbs a { color: var(--ink-3); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { margin: 0 7px; opacity: 0.6; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--sans); font-weight: 600; text-decoration: none; cursor: pointer; border: none; border-radius: 100px; transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease); white-space: nowrap; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-amazon { background: var(--accent); color: #fff; padding: 13px 24px; font-size: 0.9rem; box-shadow: 0 2px 10px rgba(91,140,110,0.18); }
.btn-amazon:hover { background: var(--accent-hover); box-shadow: 0 8px 22px rgba(91,140,110,0.30); transform: translateY(-2px); }
.btn-amazon.lg { padding: 17px 34px; font-size: 1.02rem; border-radius: 100px; width: 100%; }
.btn-ghost { background: transparent; color: var(--accent-ink); padding: 12px 22px; font-size: 0.85rem; border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-softer); }

/* =========================================================================
   BADGES + TIER + PILLS
   ========================================================================= */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: 100px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.badge svg { width: 13px; height: 13px; }
.badge.excellent { background: var(--accent-soft); color: var(--accent-ink); }
.badge.great { background: var(--terra-soft); color: #99622F; }

/* $/$$/$$$ editorial affordability — clearly OUR signal, never a live price */
.tier { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--ink-2); }
.tier-marks { display: inline-flex; gap: 2px; font-family: var(--serif); font-size: 1rem; letter-spacing: 1px; line-height: 1; }
.tier-marks .on { color: var(--accent); } .tier-marks .off { color: var(--line-2); }
.tier-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); }

.pill { display: inline-flex; align-items: center; gap: 5px; padding: 5px 11px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 100px; font-size: 0.72rem; font-weight: 600; color: var(--ink-2); }
.pill svg { width: 13px; height: 13px; color: var(--accent); }

/* =========================================================================
   PRODUCT CARD (category grid + featured + related)
   ========================================================================= */
.grid { display: grid; gap: 22px; }
.grid > * { min-width: 0; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; min-width: 0;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }

/* media area — real photo OR a typographic "material" fallback (never a fake photo) */
.card-media { position: relative; aspect-ratio: 4 / 3; background: var(--bg-card); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform 0.4s var(--ease); }
.card:hover .card-media img { transform: scale(1.035); }
.card-media .badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); box-shadow: var(--shadow-xs); }

/* typographic fallback tile (image gap) */
.media-fallback { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 20px;
  background:
    radial-gradient(120% 90% at 50% 0%, var(--bg-card), var(--bg-alt) 70%),
    repeating-linear-gradient(135deg, rgba(91,140,110,0.03) 0 10px, transparent 10px 20px); }
.media-fallback svg { width: 40px; height: 40px; color: var(--accent); opacity: 0.85; }
.media-fallback .mf-mat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-ink); }

.card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; gap: 9px; }
.card-brand { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); }
.card-name { font-family: var(--serif); font-size: 1.16rem; line-height: 1.22; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.44em; }
.card-name a { text-decoration: none; }
.card-why { font-size: 0.86rem; color: var(--ink-2); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 3.1em; }
.card-foot { margin-top: auto; padding-top: 14px; display: flex; flex-direction: column; gap: 12px; }
.card-actions { display: flex; gap: 8px; align-items: center; }
.card-actions .btn-amazon { flex: 1; padding: 11px 14px; font-size: 0.82rem; }
.card-actions .btn-ghost { padding: 11px 14px; font-size: 0.8rem; }

/* staggered load-in */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.stagger > * { opacity: 0; animation: rise 0.6s var(--ease) forwards; }
.stagger > *:nth-child(1){animation-delay:.04s} .stagger > *:nth-child(2){animation-delay:.09s}
.stagger > *:nth-child(3){animation-delay:.14s} .stagger > *:nth-child(4){animation-delay:.19s}
.stagger > *:nth-child(5){animation-delay:.24s} .stagger > *:nth-child(6){animation-delay:.29s}
.stagger > *:nth-child(7){animation-delay:.34s} .stagger > *:nth-child(8){animation-delay:.39s}
.stagger > *:nth-child(n+9){animation-delay:.42s}
@media (prefers-reduced-motion: reduce) { .stagger > * { opacity: 1; animation: none; } .card, .card-media img { transition: none; } }

/* =========================================================================
   PAGE HEADER / HERO
   ========================================================================= */
.page-head { padding: 20px 0 40px; }
.page-head h1 { font-family: var(--serif); font-size: clamp(2.1rem, 5vw, 3rem); line-height: 1.1; color: var(--ink); margin: 12px 0 14px; letter-spacing: -0.01em; }
.page-head h1 em { font-style: italic; color: var(--accent); }
.page-head .lede { font-size: 1.12rem; color: var(--ink-2); max-width: 640px; }

/* storefront hero */
.hero { padding: 110px 0 20px; text-align: center; }
.hero h1 { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 3.9rem); line-height: 1.05; letter-spacing: -0.015em; margin: 16px auto 16px; max-width: 14ch; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .lede { font-size: 1.16rem; color: var(--ink-2); max-width: 600px; margin: 0 auto 30px; }

/* search */
.search-wrap { max-width: 500px; margin: 0 auto; position: relative; }
.search-wrap input { width: 100%; padding: 15px 20px 15px 50px; border: 1px solid var(--line-2); border-radius: 100px; background: var(--bg-card); font-family: var(--sans); font-size: 0.98rem; color: var(--ink); outline: none; box-shadow: var(--shadow-xs); transition: border-color 0.2s, box-shadow 0.2s; }
.search-wrap input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.search-wrap input::placeholder { color: var(--ink-3); }
.search-wrap .s-ic { position: absolute; left: 19px; top: 50%; transform: translateY(-50%); width: 19px; height: 19px; color: var(--ink-3); }

/* section headings */
/* padding-block (not the `padding` shorthand) so a `.wrap.section` keeps
   .wrap's horizontal gutter instead of getting it reset to 0 — otherwise the
   section breaks out of the page margin (flush-left heading + overflowing
   cards) on mobile. */
.section { padding-block: 40px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.section-head h2 { font-family: var(--serif); font-size: clamp(1.5rem, 3.5vw, 2rem); color: var(--ink); }
.section-head a { font-size: 0.85rem; font-weight: 600; color: var(--accent); text-decoration: none; }
.section-head a:hover { text-decoration: underline; }

/* room tiles — real photo card + text below */
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .rooms { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .rooms { grid-template-columns: 1fr; } }
.room { display: flex; flex-direction: column; text-decoration: none; color: inherit; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s; }
.room:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.room-media { aspect-ratio: 16 / 10; background: var(--bg-card); overflow: hidden; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--line); }
.room-media img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform 0.45s var(--ease); }
.room:hover .room-media img { transform: scale(1.045); }
.room-media .media-fallback svg { width: 44px; height: 44px; }
.room-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.room h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
.room p { font-size: 0.85rem; color: var(--ink-2); line-height: 1.5; }
.room .count { margin-top: auto; padding-top: 6px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent); }

/* trust strip */
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 34px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-lg); }
@media (max-width: 720px) { .trust-strip { grid-template-columns: 1fr; gap: 22px; } }
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item .ti-ic { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; background: var(--bg-card); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.trust-item .ti-ic svg { width: 20px; height: 20px; color: var(--accent); }
.trust-item h4 { font-size: 0.92rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.trust-item p { font-size: 0.82rem; color: var(--ink-2); line-height: 1.5; }

/* =========================================================================
   CATEGORY: filter/sort bar
   ========================================================================= */
.toolbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px 24px; flex-wrap: wrap; padding: 18px 22px; margin-bottom: 22px; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-xs); }
.tb-filters { display: flex; flex-direction: column; gap: 11px; flex: 1 1 auto; min-width: 0; }
.toolbar .tb-group { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.toolbar .tb-label { flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px; width: 82px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-3); }
.toolbar .tb-label svg { width: 14px; height: 14px; }
.chip { font-family: var(--sans); font-size: 0.8rem; font-weight: 600; color: var(--ink-2); background: var(--bg-alt); border: 1px solid var(--line); border-radius: 9px; padding: 6px 13px; cursor: pointer; transition: all 0.18s var(--ease); }
.chip:hover { border-color: var(--accent); color: var(--accent-ink); }
.chip.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.tb-sort { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.toolbar select { font-family: var(--sans); font-size: 0.82rem; font-weight: 600; color: var(--ink); background: var(--bg-alt); border: 1px solid var(--line); border-radius: 9px; padding: 8px 14px; cursor: pointer; outline: none; }
.toolbar select:focus { border-color: var(--accent); }
@media (max-width: 640px) {
  .toolbar { padding: 16px; gap: 14px; }
  .tb-filters { width: 100%; }
  .toolbar .tb-group { align-items: flex-start; flex-direction: column; gap: 7px; }
  .toolbar .tb-label { width: auto; }
  .tb-group .chips { display: flex; gap: 7px; flex-wrap: wrap; }
  .tb-sort { width: 100%; }
  .tb-sort select { flex: 1; }
}
.result-count { font-size: 0.8rem; color: var(--ink-3); margin-bottom: 18px; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-2); }
.empty-state svg { width: 44px; height: 44px; color: var(--ink-3); margin-bottom: 14px; }

/* =========================================================================
   EDITORIAL BLOCKS (category "how we vet / avoid / faq")
   ========================================================================= */
.editorial { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; margin-top: 40px; }
@media (max-width: 600px) { .editorial { padding: 26px; } }
.editorial h2 { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); margin-bottom: 8px; }
.editorial > p { font-size: 0.98rem; color: var(--ink-2); line-height: 1.7; max-width: 68ch; }
.vet-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; margin: 20px 0 8px; }
@media (max-width: 600px) { .vet-list { grid-template-columns: 1fr; } }
.vet-list li { display: flex; gap: 11px; font-size: 0.92rem; color: var(--ink-2); line-height: 1.55; }
.check-dot { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.check-dot svg { width: 12px; height: 12px; color: var(--accent); }

/* =========================================================================
   PDP
   ========================================================================= */
.pdp { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: start; padding-top: 20px; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 28px; } }

/* gallery */
.gallery { position: sticky; top: 84px; }
@media (max-width: 900px) { .gallery { position: static; } }
.gallery-main { aspect-ratio: 1 / 1; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 34px; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumb { width: 68px; height: 68px; border-radius: 12px; border: 1px solid var(--line); background: var(--bg-card); overflow: hidden; cursor: pointer; padding: 6px; transition: border-color 0.2s; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }

/* buy panel */
.buy { }
.buy .pdp-brand { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); margin-bottom: 8px; }
.buy h1 { font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 2.4rem); line-height: 1.14; color: var(--ink); margin-bottom: 14px; letter-spacing: -0.01em; }
.buy .badge-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.buy .summary { font-size: 1.04rem; color: var(--ink-2); line-height: 1.65; margin-bottom: 22px; }
.buy-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.buy-card .tier { margin-bottom: 14px; }
.buy-card .btn-amazon { margin-bottom: 10px; }
.buy-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.buy .assoc { font-size: 0.74rem; color: var(--ink-3); margin-top: 14px; line-height: 1.5; }
.buy .assoc a { color: var(--accent); }

/* pdp detail sections */
.pdp-sections { margin-top: 52px; display: flex; flex-direction: column; gap: 20px; }
.panel { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 40px; }
@media (max-width: 600px) { .panel { padding: 24px; } }
.panel h2 { font-family: var(--serif); font-size: 1.45rem; color: var(--ink); margin-bottom: 16px; }
.panel > p { font-size: 0.96rem; color: var(--ink-2); line-height: 1.72; margin-bottom: 12px; }
.panel > p:last-child { margin-bottom: 0; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.why-list li { display: flex; gap: 12px; font-size: 0.96rem; color: var(--ink-2); line-height: 1.6; }
.why-list strong { color: var(--ink); font-weight: 700; }

/* specs */
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); border-radius: var(--radius-sm); overflow: hidden; }
@media (max-width: 500px) { .specs { grid-template-columns: 1fr; } }
.spec { background: var(--bg-card); padding: 15px 18px; }
.spec .k { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-3); margin-bottom: 3px; }
.spec .v { font-size: 0.92rem; font-weight: 600; color: var(--ink); }

/* avoid box */
.avoid { background: var(--danger-soft); border: 1px solid rgba(196,91,91,0.16); border-left: 4px solid var(--danger); border-radius: var(--radius-sm); padding: 20px 24px; margin-top: 14px; }
.avoid .a-label { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--danger); margin-bottom: 8px; }
.avoid .a-label svg { width: 14px; height: 14px; }
.avoid p { font-size: 0.9rem; color: #7a3535; line-height: 1.6; margin: 0; }
.avoid a { color: #7a3535; text-decoration: underline; }

/* sourced reviews (real + attributed + linked only) */
.reviews { display: flex; flex-direction: column; gap: 16px; }
.review { border-left: 3px solid var(--accent-soft); padding: 4px 0 4px 18px; }
.review blockquote { font-size: 0.98rem; color: var(--ink); line-height: 1.6; font-style: italic; }
.review .cite { margin-top: 8px; font-size: 0.8rem; color: var(--ink-3); }
.review .cite a { color: var(--accent); font-weight: 600; text-decoration: none; }
.review .cite a:hover { text-decoration: underline; }

/* faq */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 0; cursor: pointer; font-size: 0.96rem; font-weight: 600; color: var(--ink); user-select: none; }
.faq-tog { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; transition: transform 0.25s var(--ease), background 0.2s; }
.faq-tog svg { width: 13px; height: 13px; }
.faq-item.open .faq-tog { background: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq-a-inner { font-size: 0.92rem; color: var(--ink-2); line-height: 1.68; padding-bottom: 16px; }

/* related article callout */
.callout { display: flex; align-items: center; gap: 16px; background: var(--accent-soft); border: 1px solid rgba(91,140,110,0.16); border-radius: var(--radius); padding: 20px 26px; text-decoration: none; transition: background 0.2s, box-shadow 0.2s; }
.callout:hover { background: rgba(91,140,110,0.14); box-shadow: var(--shadow-sm); }
.callout .co-ic { flex-shrink: 0; width: 42px; height: 42px; background: var(--accent); border-radius: 11px; display: flex; align-items: center; justify-content: center; }
.callout .co-ic svg { width: 19px; height: 19px; color: #fff; }
.callout .co-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-ink); margin-bottom: 3px; }
.callout .co-title { font-family: var(--serif); font-size: 1.06rem; color: var(--ink); }

/* =========================================================================
   DISCLOSURE + FOOTER
   ========================================================================= */
.disclosure { margin: 30px 0 0; }
.disclosure p { font-size: 0.75rem; color: var(--ink-3); line-height: 1.6; max-width: 78ch; }
footer.site-foot { margin-top: 20px; padding: 34px 24px 46px; border-top: 1px solid var(--line); text-align: center; font-size: 0.8rem; color: var(--ink-3); }
footer.site-foot a { color: var(--accent); text-decoration: none; }
footer.site-foot a:hover { text-decoration: underline; }
footer.site-foot .foot-line { margin-top: 6px; }
