/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Colors */
  --bg:            #ffffff;
  --bg-alt:        #f8fafc;
  --bg-card:       #ffffff;
  --bg-dark:       #0f172a;
  --ink:           #0f172a;
  --ink-2:         #1e293b;
  --muted:         #64748b;
  --muted-2:       #94a3b8;
  --accent:        #f97316;
  --accent-light:  #fff7ed;
  --accent-dark:   #ea6a00;
  --primary:       #2563eb;
  --primary-light: #eff6ff;
  --primary-dark:  #1d4ed8;
  --success:       #16a34a;
  --success-light: #f0fdf4;
  --border:        #e2e8f0;
  --border-2:      #cbd5e1;

  /* Type */
  --sans:          "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --nav-h:         64px;
  --gutter:        1rem;
  --max-w:         1200px;
  --radius-sm:     8px;
  --radius:        12px;
  --radius-lg:     20px;

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:     0 4px 16px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:     0 20px 40px rgba(0,0,0,.12), 0 8px 16px rgba(0,0,0,.06);
  --shadow-card:   0 2px 8px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.04);

  /* Easings */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1,h2,h3,h4,h5 { text-wrap: balance; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .5rem 1rem; background: var(--ink); color: #fff;
  z-index: 9999; border-radius: var(--radius-sm); font-weight: 500; font-size: .9rem;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (min-width: 720px) { .container { --gutter: 2rem; } }

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

/* sample-data notice */
.sample-notice {
  display: flex; align-items: center; gap: .5rem;
  background: #fefce8; border: 1px solid #fde047;
  color: #92400e; border-radius: var(--radius-sm);
  padding: .75rem 1rem; font-size: .85rem; font-weight: 500;
  margin-bottom: 2rem;
}
.sample-notice svg { flex-shrink: 0; width: 18px; height: 18px; }

/* =============================================================
   4. Typography
   ============================================================= */
.section-kicker {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--ink);
  margin-bottom: .5rem;
}
.section-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 56ch; margin-bottom: 2rem;
}

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .65rem 1.4rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9rem; line-height: 1;
  transition: all .2s var(--ease-out); white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary); color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-accent {
  background: var(--accent); color: #fff;
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border-2);
}
.btn-outline:hover { border-color: var(--ink); background: var(--bg-alt); }

.btn-ghost {
  background: transparent; color: var(--primary); padding-inline: 0;
}
.btn-ghost:hover { color: var(--primary-dark); }
.btn-ghost::after { content: " →"; }

.btn-amazon {
  background: var(--accent); color: #fff;
  width: 100%; justify-content: center;
  padding: .75rem 1rem; font-size: .95rem;
}
.btn-amazon:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn-lg { padding: .85rem 2rem; font-size: 1rem; border-radius: var(--radius); }
.btn-sm { padding: .45rem 1rem; font-size: .8rem; }

/* =============================================================
   6. Badges / chips
   ============================================================= */
.badge {
  display: inline-flex; align-items: center;
  padding: .2rem .55rem; border-radius: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; line-height: 1;
}
.badge-discount  { background: var(--accent);       color: #fff; }
.badge-label     { background: var(--primary);       color: #fff; }
.badge-new       { background: var(--success);       color: #fff; }
.badge-trending  { background: #7c3aed;              color: #fff; }
.badge-deal      { background: var(--accent);        color: #fff; }
.badge-sample    { background: #fde047; color: #78350f; font-size: .65rem; }

.stars { color: #f59e0b; letter-spacing: .05em; font-size: .9rem; }

/* =============================================================
   7. Nav
   ============================================================= */
.site-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  height: var(--nav-h); display: flex; align-items: center; gap: 1.5rem;
}

.brand {
  display: flex; align-items: center; gap: .6rem;
  flex-shrink: 0; font-weight: 800;
}
.brand-logo {
  width: 38px; height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
}
.brand-name {
  font-size: .95rem; color: var(--ink); font-weight: 700;
  letter-spacing: -.01em; line-height: 1.2;
}
.brand-name em { color: var(--accent); font-style: normal; }

.main-nav { flex: 1; }
.nav-links {
  display: none;
  gap: .15rem;
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
}
.nav-links a {
  padding: .45rem .8rem; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 500; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.nav-links a:hover,
.nav-links a.is-active { background: var(--bg-alt); color: var(--primary); }
/* Fix: CTA in nav must override generic nav-links color */
.nav-links a.nav-cta,
.nav-links a.nav-cta:hover { background: var(--accent); color: #fff; }

.nav-cta-wrap { display: none; }
@media (min-width: 960px) { .nav-cta-wrap { display: flex; } }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 6px; border-radius: var(--radius-sm);
  margin-left: auto;
}
@media (min-width: 960px) { .hamburger { display: none; } }
.hamburger span {
  display: block; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .25s var(--ease-out), opacity .2s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: var(--bg); padding: 1.5rem var(--gutter) 2rem;
  overflow-y: auto;
  transform: translateX(100%); opacity: 0; pointer-events: none;
  transition: transform .3s var(--ease-out), opacity .2s;
  z-index: 99;
}
.mobile-menu.is-open { transform: translateX(0); opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: .5rem; }
.mobile-menu a {
  display: block; padding: .85rem 1rem; border-radius: var(--radius-sm);
  font-size: 1.05rem; font-weight: 500; color: var(--ink-2);
}
.mobile-menu a:hover { background: var(--bg-alt); color: var(--primary); }
.mobile-menu .btn { margin-top: 1rem; width: 100%; }

/* =============================================================
   8. Hero
   ============================================================= */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  color: #fff; padding-block: clamp(3rem, 8vw, 7rem);
  position: relative; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37,99,235,.3), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem;
  max-width: 700px;
}
.hero-pretag {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.hero-pretag span { color: var(--accent); }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  text-wrap: balance; max-width: 18ch;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,.75); max-width: 54ch;
  line-height: 1.65;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-features {
  display: flex; flex-wrap: wrap; gap: 1rem;
  padding-top: .5rem;
}
.hero-feat {
  display: flex; align-items: center; gap: .45rem;
  font-size: .85rem; color: rgba(255,255,255,.7);
}
.hero-feat svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--success); }

/* =============================================================
   9. Deal cards
   ============================================================= */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
@media (min-width: 720px) { .deals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .deals-grid { grid-template-columns: repeat(3, 1fr); } }

.deal-card {
  background: var(--bg-card); border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .22s var(--ease-out), box-shadow .22s;
  border: 1px solid var(--border);
}
.deal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.deal-card-img {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(135deg, hsl(var(--ph-hue,220) 60% 90%), hsl(var(--ph-hue,220) 50% 80%));
  flex-shrink: 0;
}
.deal-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease-out);
}
.deal-card:hover .deal-card-img img { transform: scale(1.04); }
.deal-card-img .badge {
  position: absolute; top: .75rem;
}
.deal-card-img .badge-discount { left: .75rem; }
.deal-card-img .badge-label { right: .75rem; }
.deal-card-img .badge-sample {
  position: absolute; bottom: .5rem; right: .5rem;
}

/* No-image placeholder */
.deal-card-img::after {
  content: "📦";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; opacity: .25;
  pointer-events: none;
}
.deal-card-img img:not([src=""]) ~ *:last-child { /* hide placeholder when img loads */ }
.deal-card-img:has(img[complete]) ::after { display: none; }

.deal-card-body {
  padding: 1.1rem; display: flex; flex-direction: column; gap: .5rem; flex: 1;
}
.deal-card-brand { font-size: .75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.deal-card-name {
  font-size: .95rem; font-weight: 700; color: var(--ink); line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.deal-card-desc {
  font-size: .825rem; color: var(--muted); line-height: 1.5; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.deal-card-rating {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--muted);
}
.rating-count { font-size: .75rem; color: var(--muted-2); }

.deal-card-price {
  display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap;
}
.price-current { font-size: 1.3rem; font-weight: 800; color: var(--success); }
.price-original { font-size: .85rem; color: var(--muted-2); }
.price-original s { text-decoration: line-through; }
.price-disclaimer {
  font-size: .68rem; color: var(--muted-2); margin-top: .25rem;
  line-height: 1.4; font-style: italic;
}

/* deal rank badge (#1 #2 #3) */
.deal-rank {
  position: absolute; top: .6rem; left: .6rem;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800;
}

/* =============================================================
   10. Category cards
   ============================================================= */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 540px)  { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px)  { .categories-grid { grid-template-columns: repeat(6, 1fr); } }

.cat-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.25rem .75rem; gap: .6rem;
  background: var(--bg-card); border-radius: var(--radius);
  border: 1.5px solid var(--border);
  text-align: center;
  transition: all .2s var(--ease-out); cursor: pointer;
}
.cat-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.cat-icon {
  font-size: 2rem; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); margin-bottom: .25rem;
}
.cat-card-name { font-size: .85rem; font-weight: 700; color: var(--ink); }
.cat-card-desc { font-size: .72rem; color: var(--muted); line-height: 1.4; }

/* =============================================================
   11. Article cards
   ============================================================= */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .articles-grid { grid-template-columns: repeat(3, 1fr); } }

.article-card {
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s var(--ease-out), box-shadow .2s;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article-card-img {
  aspect-ratio: 16/9; overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
}
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease-out); }
.article-card:hover .article-card-img img { transform: scale(1.04); }
.article-card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.article-cat-tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--primary);
}
.article-card-title { font-size: .95rem; font-weight: 700; color: var(--ink); line-height: 1.35; flex: 1; }
.article-card-excerpt { font-size: .825rem; color: var(--muted); line-height: 1.5; }
.article-card-date { font-size: .75rem; color: var(--muted-2); }

/* =============================================================
   12. Sections (generic layout)
   ============================================================= */
.section { padding-block: clamp(2.5rem, 6vw, 5rem); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,.7); }

.section-head {
  margin-bottom: 2rem;
}
.section-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem;
}
.section-head-row .section-title { margin-bottom: 0; }

/* =============================================================
   13. Newsletter
   ============================================================= */
.newsletter-section {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  padding-block: clamp(3rem, 7vw, 5rem);
  color: #fff; text-align: center;
}
.newsletter-inner { max-width: 540px; margin-inline: auto; }
.newsletter-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.newsletter-title { font-size: clamp(1.5rem, 3vw, 2rem); color: #fff; margin-bottom: .75rem; }
.newsletter-sub { color: rgba(255,255,255,.7); margin-bottom: 1.75rem; font-size: .95rem; }
.newsletter-features {
  display: flex; flex-direction: column; gap: .5rem;
  text-align: left; margin-bottom: 2rem;
}
.newsletter-feat {
  display: flex; align-items: center; gap: .6rem;
  font-size: .875rem; color: rgba(255,255,255,.8);
}
.newsletter-feat::before { content: "✓"; color: #4ade80; font-weight: 700; }

.newsletter-form {
  display: flex; flex-direction: column; gap: .75rem;
}
@media (min-width: 540px) {
  .newsletter-form { flex-direction: row; }
  .newsletter-form input { flex: 1; }
}
.newsletter-form input {
  padding: .75rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1); color: #fff;
  font: inherit; font-size: .9rem;
  outline: none; transition: border-color .2s;
  width: 100%;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-disclaimer { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: .75rem; }
.newsletter-consent { display: flex; align-items: flex-start; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.6); }
.newsletter-consent input[type="checkbox"] { flex-shrink: 0; margin-top: .2rem; }

/* =============================================================
   14. Page hero (inner pages)
   ============================================================= */
.page-hero {
  background: var(--bg-alt);
  padding-block: 3rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--muted); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--muted-2); }
.page-hero-kicker {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .5rem;
}
.page-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--ink); margin-bottom: .75rem;
}
.page-hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 56ch; }

/* Filter bar */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: .6rem;
  padding-block: 1.5rem; align-items: center;
}
.filter-btn {
  padding: .5rem 1rem; border-radius: 100px;
  border: 1.5px solid var(--border); background: var(--bg);
  font-size: .825rem; font-weight: 500; color: var(--muted);
  transition: all .15s; cursor: pointer;
}
.filter-btn.is-active,
.filter-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* =============================================================
   15. Trust / about blocks
   ============================================================= */
.trust-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }

.trust-card {
  padding: 1.75rem; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--bg-card);
}
.trust-icon { font-size: 2rem; margin-bottom: 1rem; }
.trust-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.trust-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

.stats-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 540px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-box { text-align: center; padding: 1.5rem 1rem; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: .8rem; color: var(--muted); margin-top: .25rem; }

/* =============================================================
   16. Legal / disclosure
   ============================================================= */
.legal-body {
  max-width: 760px; margin-inline: auto;
  font-size: .95rem; line-height: 1.8; color: var(--ink-2);
}
.legal-body h2 { font-size: 1.35rem; margin-top: 2.5rem; margin-bottom: .75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.legal-body h2:first-child { border-top: none; margin-top: 0; }
.legal-body p { margin-bottom: 1rem; }
.legal-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-body ul li { margin-bottom: .4rem; }
.legal-body a { color: var(--primary); text-decoration: underline; }
.legal-body strong { color: var(--ink); }

.disclosure-banner {
  background: var(--accent-light); border: 1.5px solid #fed7aa;
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  font-size: .875rem; color: #7c2d12; line-height: 1.6;
}
.disclosure-banner strong { color: #9a3412; }

/* =============================================================
   17. Footer
   ============================================================= */
.site-footer {
  background: var(--bg-dark); color: rgba(255,255,255,.8);
  padding-block: 3rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 30ch; }

.footer-nav h3 { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: .875rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-nav a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color .15s; }
.footer-nav a:hover { color: #fff; }

.footer-divider { border-color: rgba(255,255,255,.08); margin-bottom: 2rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; }
.affiliate-notice {
  font-size: .78rem; color: rgba(255,255,255,.4); line-height: 1.7;
  margin-bottom: 1rem; max-width: 80ch;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.35); }

/* =============================================================
   18. Inline affiliate notice (footer of each page)
   ============================================================= */
.site-affiliate-strip {
  background: #fef3c7; border-top: 1px solid #fde68a;
  padding: .6rem var(--gutter); text-align: center;
  font-size: .78rem; color: #78350f; line-height: 1.5;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.site-affiliate-strip::before {
  content: "ℹ️";
  font-size: .85rem; flex-shrink: 0;
}

/* =============================================================
   19. Responsive — tablet / desktop overrides
   ============================================================= */
@media (min-width: 720px) {
  .hero-inner { max-width: 800px; }
  .hero-features { gap: 1.5rem; }
}

/* =============================================================
   20. Reduced-motion (only truly intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}

/* =============================================================
   21. Loading skeletons (WooCommerce real-time fetch)
   ============================================================= */
@keyframes skeleton-wave {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  pointer-events: none;
}
.skeleton-img {
  aspect-ratio: 4/3;
  background: linear-gradient(90deg, var(--border) 25%, var(--bg-alt) 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: skeleton-wave 1.6s ease-in-out infinite;
}
.skeleton-body {
  padding: 1rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.skeleton-line {
  height: .85rem; border-radius: 4px;
  background: linear-gradient(90deg, var(--border) 25%, var(--bg-alt) 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: skeleton-wave 1.6s ease-in-out infinite;
}
.skeleton-line.w-30 { width: 30%; }
.skeleton-line.w-60 { width: 60%; }
.skeleton-line.w-80 { width: 80%; }
@media (prefers-reduced-motion: reduce) {
  .skeleton-img, .skeleton-line { animation: none; }
}
