/* ============================================
   REVIEWED BY RITA — Design System
   Warm, trustworthy, accessibility-first
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Brand Palette */
  --rose: #C8536A;
  --rose-light: #D4728A;
  --rose-dark: #A8425A;
  --cream: #FDF6EC;
  --cream-warm: #FAF0E0;
  --slate: #3D4A5C;
  --slate-light: #5A6A7E;
  --honey: #D4A847;
  --honey-light: #E8C875;
  --sage: #7A9E87;
  --sage-light: #A3C4AE;

  /* Semantic Colors */
  --color-bg: var(--cream);
  --color-surface: #FFFFFF;
  --color-surface-warm: var(--cream-warm);
  --color-text: var(--slate);
  --color-text-muted: var(--slate-light);
  --color-primary: var(--rose);
  --color-primary-hover: var(--rose-dark);
  --color-accent: var(--honey);
  --color-success: var(--sage);

  /* Verdict Colors */
  --verdict-buy: var(--sage);
  --verdict-buy-bg: #EFF6F1;
  --verdict-wait: var(--honey);
  --verdict-wait-bg: #FBF5E6;
  --verdict-skip: #9CA3AF;
  --verdict-skip-bg: #F3F4F6;

  /* Typography */
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: Arial, 'Helvetica Neue', Helvetica, sans-serif;

  /* Type Scale — 18px minimum body */
  --text-xs: 0.875rem;    /* 14px — metadata only */
  --text-sm: 1rem;         /* 16px — small labels */
  --text-base: 1.125rem;   /* 18px — body minimum */
  --text-lg: 1.25rem;      /* 20px */
  --text-xl: 1.5rem;       /* 24px */
  --text-2xl: 2rem;        /* 32px */
  --text-3xl: 2.5rem;      /* 40px */
  --text-hero: clamp(2.5rem, 1.5rem + 3vw, 4rem); /* 40-64px */

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radius — rounded, soft */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 9999px;

  /* Shadows — soft, warm */
  --shadow-sm: 0 1px 3px rgba(61, 74, 92, 0.06), 0 1px 2px rgba(61, 74, 92, 0.04);
  --shadow-md: 0 4px 12px rgba(61, 74, 92, 0.08), 0 2px 4px rgba(61, 74, 92, 0.04);
  --shadow-lg: 0 12px 32px rgba(61, 74, 92, 0.10), 0 4px 8px rgba(61, 74, 92, 0.05);
  --shadow-hover: 0 8px 24px rgba(61, 74, 92, 0.12), 0 4px 8px rgba(61, 74, 92, 0.06);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 180ms var(--ease);
  --transition-normal: 300ms var(--ease);

  /* Content widths */
  --content-narrow: 680px;
  --content-default: 960px;
  --content-wide: 1140px;
}

/* --- Base Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.25; font-family: var(--font-display); color: var(--color-text); }
p { max-width: 70ch; }
button { cursor: pointer; background: none; border: none; }

a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--color-primary-hover); }
a:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }

::selection { background: rgba(200, 83, 106, 0.2); color: var(--color-text); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

/* --- Layout --- */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.container--narrow {
  max-width: var(--content-narrow);
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-primary);
  color: white;
  padding: var(--space-3) var(--space-6);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 700;
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* --- Header / Nav --- */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid rgba(61, 74, 92, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-block: var(--space-4);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo svg {
  width: 42px;
  height: 42px;
}

.site-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--rose-light);
}

.site-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
}

.site-logo-text span {
  color: var(--color-primary);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex-wrap: wrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  min-height: 44px;
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  background: rgba(200, 83, 106, 0.08);
  color: var(--color-primary);
}

.search-bar {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: var(--space-2);
  background: white;
  border: 2px solid rgba(61, 74, 92, 0.12);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4);
  width: 220px;
  flex-shrink: 0;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-bar:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(200, 83, 106, 0.15);
}

.search-bar svg {
  flex-shrink: 0;
  color: var(--color-text-muted);
  width: 20px;
  height: 20px;
}

.search-bar input {
  border: none;
  background: none;
  outline: none;
  width: 100%;
  font-size: var(--text-base);
  min-height: 36px;
}

.search-bar input::placeholder {
  color: var(--color-text-muted);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text);
}

.nav-toggle:hover {
  background: rgba(61, 74, 92, 0.06);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .header-inner { flex-wrap: wrap; }

  .nav-main {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-block: var(--space-4);
    border-top: 1px solid rgba(61, 74, 92, 0.08);
    order: 3;
  }

  .nav-main.open { display: flex; }

  .nav-link {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    justify-content: flex-start;
    font-size: var(--text-base);
  }

  .search-bar {
    order: 2;
    width: 100%;
    margin-left: 0;
    min-width: auto;
    margin-top: var(--space-3);
  }

  .site-logo { order: 0; }
  .nav-toggle { order: 1; margin-left: auto; }
}

/* --- Hero Section --- */
.hero {
  padding: var(--space-16) 0 var(--space-12);
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.hero-headline {
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  max-width: 22ch;
  margin-inline: auto;
}

.hero-headline em {
  font-style: italic;
  color: var(--color-primary);
}

.hero-subline {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-primary);
  color: white;
  font-size: var(--text-base);
  font-weight: 700;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-pill);
  text-decoration: none;
  min-height: 52px;
  box-shadow: var(--shadow-md);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-cta:hover {
  background: var(--color-primary-hover);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* --- Section Titles --- */
.section-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

/* --- Product Cards --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.product-card-image {
  aspect-ratio: 4 / 3;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}

.product-card-image .product-icon {
  font-size: 4rem;
  opacity: 0.25;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-4);
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-icon--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image .verdict-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
}

.product-card-body {
  padding: var(--space-5) var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-category {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.product-card-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.product-card-verdict {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  flex: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.product-card-price {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
}

.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  flex-shrink: 0;
}

.score-badge--small {
  width: 36px;
  height: 36px;
  font-size: var(--text-sm);
}

/* --- Verdict Badges --- */
.verdict-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1;
}

.verdict-badge--buy {
  background: var(--verdict-buy);
  color: white;
}

.verdict-badge--wait {
  background: var(--verdict-wait);
  color: white;
}

.verdict-badge--skip {
  background: var(--verdict-skip);
  color: white;
}

/* --- Stars --- */
.stars {
  display: flex;
  gap: 2px;
  color: var(--honey);
}

.stars svg {
  width: 20px;
  height: 20px;
}

.stars--lg svg {
  width: 28px;
  height: 28px;
}

/* --- Trust Section (How Rita Reviews) --- */
.trust-section {
  background: white;
  padding: var(--space-16) 0;
  margin: var(--space-12) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: var(--space-6);
  text-align: center;
}

.trust-card {
  padding: var(--space-6);
}

.trust-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-5);
  background: var(--cream-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.trust-icon svg {
  width: 32px;
  height: 32px;
}

.trust-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.trust-card p {
  color: var(--color-text-muted);
  margin-inline: auto;
}

/* --- Testimonials --- */
.testimonials-section {
  background: white;
  padding: var(--space-12) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.testimonial-card {
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-7);
  margin: 0;
  border-left: 4px solid var(--color-primary);
}

.testimonial-card p {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

.testimonial-card footer {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 600;
  font-style: normal;
}

/* --- Category Filter Bar --- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  align-items: center;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-pill);
  font-size: var(--text-base);
  font-weight: 600;
  background: white;
  color: var(--color-text);
  border: 2px solid rgba(61, 74, 92, 0.1);
  min-height: 44px;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-btn.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* --- Product Detail View --- */
.product-detail {
  padding: var(--space-8) 0 var(--space-16);
}

.product-detail-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  margin-bottom: var(--space-6);
  min-height: 44px;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  margin-left: calc(-1 * var(--space-3));
}

.product-detail-back:hover {
  background: rgba(61, 74, 92, 0.06);
  color: var(--color-text);
}

/* Rita's Verdict Callout — Above the fold */
.rita-verdict-box {
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-8);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-6);
  align-items: center;
}

.rita-verdict-box h2 {
  font-size: var(--text-2xl);
  color: white;
  margin-bottom: var(--space-3);
}

.rita-verdict-box p {
  font-size: var(--text-lg);
  opacity: 0.92;
  max-width: 50ch;
}

.rita-verdict-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.rita-verdict-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.rita-verdict-outof {
  font-size: var(--text-sm);
  opacity: 0.8;
}

.rita-verdict-label {
  display: inline-flex;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.2);
  font-weight: 700;
  font-size: var(--text-base);
}

@media (max-width: 600px) {
  .rita-verdict-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-6);
  }

  .rita-verdict-score {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Product Detail Layout */
.product-detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
  align-items: start;
}

.product-detail-image {
  background: var(--cream-warm);
  border-radius: var(--radius-xl);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-10);
}

.product-detail-image .product-icon {
  font-size: 6rem;
  opacity: 0.2;
}

.product-detail-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
}

.product-detail-info h1 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.product-detail-brand {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.product-detail-price {
  font-size: var(--text-2xl);
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: var(--space-5);
}

.product-detail-stars {
  margin-bottom: var(--space-6);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: var(--color-primary);
  color: white;
  font-size: var(--text-base);
  font-weight: 700;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-lg);
  text-decoration: none;
  min-height: 52px;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  color: white;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .product-detail-header {
    grid-template-columns: 1fr;
  }
}

/* Review Sections */
.review-section {
  max-width: var(--content-narrow);
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

.review-section h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid rgba(61, 74, 92, 0.08);
}

.review-section p {
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  line-height: 1.7;
}

/* --- How Rita Reviews Page --- */

.how-hero {
  text-align: center;
  padding: var(--space-10) 0 var(--space-6);
}

.how-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--slate);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.how-hero__subhead {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--rose);
  font-style: italic;
  line-height: 1.4;
}

/* Pullquote */
.rita-pullquote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--rose);
  text-align: center;
  border: none;
  padding: var(--space-8) var(--space-6);
  margin: var(--space-8) 0;
  position: relative;
  line-height: 1.4;
}

.rita-pullquote::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--rose-light);
  margin: 0 auto var(--space-6);
  border-radius: 2px;
}

.rita-pullquote::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--rose-light);
  margin: var(--space-6) auto 0;
  border-radius: 2px;
}

/* Steps */
.rita-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin: var(--space-6) 0 var(--space-8);
}

.rita-step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.rita-step__number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  border-radius: 50%;
  margin-top: 2px;
}

.rita-step__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--slate);
  margin-bottom: var(--space-2);
}

.rita-step p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 0;
}

/* How page CTA */
.how-cta {
  text-align: center;
  padding: var(--space-10) 0 var(--space-6);
}

@media (max-width: 600px) {
  .how-hero__title {
    font-size: var(--text-2xl);
  }
  .how-hero__subhead {
    font-size: var(--text-lg);
  }
  .rita-pullquote {
    font-size: var(--text-xl);
    padding: var(--space-6) var(--space-4);
  }
  .rita-step__number {
    width: 36px;
    height: 36px;
    font-size: var(--text-base);
  }
}

/* Pros/Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  max-width: var(--content-narrow);
  margin-inline: auto;
}

@media (max-width: 600px) {
  .pros-cons { grid-template-columns: 1fr; }
}

.pros-list, .cons-list {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.pros-list h3, .cons-list h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.pros-list h3 { color: var(--sage); }
.cons-list h3 { color: var(--rose); }

.pros-list li, .cons-list li {
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  padding-left: var(--space-6);
  position: relative;
  border-bottom: 1px solid rgba(61, 74, 92, 0.06);
}

.pros-list li:last-child, .cons-list li:last-child {
  border-bottom: none;
}

.pros-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.cons-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-weight: 700;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  margin-bottom: var(--space-10);
}

.specs-table th,
.specs-table td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-size: var(--text-base);
  border-bottom: 1px solid rgba(61, 74, 92, 0.06);
}

.specs-table th {
  font-weight: 700;
  color: var(--color-text);
  width: 40%;
  background: var(--cream-warm);
}

/* Pull Quote */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--color-primary);
  text-align: center;
  padding: var(--space-8) var(--space-6);
  margin: var(--space-8) 0;
  border-top: 2px solid rgba(200, 83, 106, 0.15);
  border-bottom: 2px solid rgba(200, 83, 106, 0.15);
  max-width: var(--content-narrow);
  margin-inline: auto;
}

/* --- Email Signup --- */
.signup-section {
  background: var(--cream-warm);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  margin: var(--space-12) 0;
}

.signup-section h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.signup-section p {
  color: var(--color-text-muted);
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.signup-form {
  display: flex;
  gap: var(--space-3);
  max-width: 480px;
  margin-inline: auto;
}

.signup-form input {
  flex: 1;
  padding: var(--space-4) var(--space-5);
  border: 2px solid rgba(61, 74, 92, 0.12);
  border-radius: var(--radius-lg);
  background: white;
  font-size: var(--text-base);
  min-height: 52px;
}

.signup-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(200, 83, 106, 0.15);
}

.signup-form button {
  background: var(--color-primary);
  color: white;
  font-weight: 700;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  min-height: 52px;
  white-space: nowrap;
  transition: background var(--transition-fast);
}

.signup-form button:hover {
  background: var(--color-primary-hover);
}

@media (max-width: 480px) {
  .signup-form {
    flex-direction: column;
  }
}

/* --- Footer --- */
.site-footer {
  background: var(--slate);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-12) 0 var(--space-8);
  margin-top: var(--space-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

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

.footer-about h3 {
  font-size: var(--text-xl);
  color: white;
  margin-bottom: var(--space-4);
}

.footer-about p {
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: 45ch;
}

.footer-links h4 {
  font-size: var(--text-base);
  color: white;
  margin-bottom: var(--space-4);
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: var(--space-3); }

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: var(--text-base);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-sm);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-bottom a:hover { color: white; }

/* --- Section Spacing --- */
.section {
  padding: var(--space-12) 0;
}

.section--alt {
  background: white;
}

/* --- Loading States --- */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-16);
}

.loading-spinner::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 3px solid rgba(200, 83, 106, 0.2);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Category Page --- */
.category-hero {
  padding: var(--space-10) 0 var(--space-6);
}

.category-hero h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}

.category-hero p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
}

/* Sort dropdown */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.sort-bar label {
  font-weight: 600;
  font-size: var(--text-base);
}

.sort-bar select {
  background: white;
  border: 2px solid rgba(61, 74, 92, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-base);
  min-height: 44px;
  cursor: pointer;
}

.result-count {
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

/* Affiliate disclosure */
.affiliate-notice {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  background: var(--cream-warm);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-6);
  text-align: center;
}

/* Search Results */
.search-results-heading {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
}

/* 404 / Empty */
.empty-state {
  text-align: center;
  padding: var(--space-16) var(--space-4);
}

.empty-state h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.empty-state p {
  color: var(--color-text-muted);
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

/* Utility */
.text-center { text-align: center; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
