/* ============================================================
   Craft & Made — Global Stylesheet
   Aesthetic: Warm editorial / artisan / magazine
   ============================================================ */

/* ----- Custom Properties ----- */
:root {
  --clay:        #C8694A;
  --clay-light:  #E8936E;
  --clay-dark:   #A04E32;
  --cream:       #FAF6F0;
  --cream-mid:   #F0E8DC;
  --cream-dark:  #E5D9C8;
  --ink:         #1C1812;
  --ink-mid:     #3D3528;
  --ink-light:   #6B5E4C;
  --ink-muted:   #9B8E7C;
  --sage:        #7A8C6E;
  --sage-light:  #B8C9A8;
  --white:       #FFFFFF;
  --border:      #E0D4C0;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', 'Helvetica Neue', sans-serif;

  --max-width:   1120px;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 8px rgba(28,24,18,0.08);
  --shadow-md:   0 6px 24px rgba(28,24,18,0.12);
  --shadow-lg:   0 12px 48px rgba(28,24,18,0.16);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ----- Typography ----- */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p  { color: var(--ink-light); line-height: 1.75; }

em { font-style: italic; color: var(--clay); }

/* ----- Utilities ----- */
.section-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
}
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.section-header p { margin-top: 0.75rem; font-size: 17px; }

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--clay);
  color: var(--white);
  border-color: var(--clay);
}
.btn-primary:hover { background: var(--clay-dark); border-color: var(--clay-dark); }
.btn-outline {
  background: transparent;
  color: var(--clay);
  border-color: var(--clay);
}
.btn-outline:hover { background: var(--clay); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--ink-light);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--ink-light); color: var(--ink); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ============================================================
   DISCLOSURE BAR
   ============================================================ */
.disclosure-bar {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 8px 1.5rem;
  font-size: 12px;
  letter-spacing: 0.01em;
}
.disclosure-bar a { color: var(--clay-light); text-decoration: underline; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(28,24,18,0.06);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 22px;
  color: var(--clay);
  line-height: 1;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 1px;
}

/* Nav */
.main-nav {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
  align-items: center;
}
.main-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-light);
  padding: 8px 14px;
  border-radius: var(--radius);
  letter-spacing: 0.01em;
  transition: all 0.15s;
}
.main-nav a:hover { color: var(--ink); background: var(--cream-mid); }
.main-nav a.active { color: var(--clay); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.2s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  padding: 7rem 2rem 8rem;
  overflow: hidden;
  text-align: center;
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,105,74,0.18) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8694a' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.hero-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--clay-light); }
.hero p {
  color: rgba(250,246,240,0.7);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero .btn-outline {
  border-color: rgba(250,246,240,0.4);
  color: rgba(250,246,240,0.8);
}
.hero .btn-outline:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(250,246,240,0.5);
}
.hero-trust span::before { content: ''; }
.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(250,246,240,0.3);
  text-transform: uppercase;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:0.3; } 50% { opacity:0.7; } }

/* ============================================================
   ETSY SPOTLIGHT
   ============================================================ */
.etsy-spotlight {
  padding: 6rem 0;
  background: var(--cream);
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.spotlight-text h2 { margin-bottom: 1.25rem; }
.spotlight-text p { margin-bottom: 1rem; font-size: 16px; }
.spotlight-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spotlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-light);
}
.check {
  color: var(--sage);
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Card Stack Visual */
.spotlight-visual { position: relative; }
.spotlight-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.scard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.scard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.scard-1 { transform: rotate(-1deg); }
.scard-2 { transform: rotate(0.5deg); }
.scard-3 { transform: rotate(1.5deg); }
.scard-4 { transform: rotate(-0.5deg); }
.scard-icon { font-size: 28px; margin-bottom: 10px; }
.scard-cat { font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.scard-stat { font-size: 12px; color: var(--ink-muted); }

.spotlight-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--clay);
  color: var(--white);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.spotlight-badge strong { font-family: var(--font-serif); font-size: 22px; font-weight: 700; line-height: 1; }
.spotlight-badge span { font-size: 9px; letter-spacing: 0.05em; opacity: 0.9; line-height: 1.3; margin-top: 2px; }

/* ============================================================
   COMPARE SECTION
   ============================================================ */
.compare-section {
  padding: 6rem 0;
  background: var(--cream-mid);
}
.compare-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.compare-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.compare-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.compare-card--featured {
  border: 2px solid var(--clay);
  background: linear-gradient(160deg, #fff 70%, rgba(200,105,74,0.04) 100%);
}
.compare-card--featured::before {
  content: '★ Editor's Pick';
  position: absolute;
  top: -1px; left: 18px;
  background: var(--clay);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}
.compare-card--featured { padding-top: 2.5rem; }
.compare-rank {
  font-family: var(--font-serif);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}
.compare-rank::before { content: 'No. '; }

.compare-logo {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em;
}
.etsy-logo     { background: #F1641E; color: white; font-size: 16px; font-family: var(--font-serif); font-weight: 700; }
.folksy-logo   { background: #E6793C; color: white; }
.amazon-logo   { background: #232F3E; color: #FF9900; }
.notonhighst-logo { background: #C8304A; color: white; }

.compare-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0;
}
.compare-tagline { font-size: 13px; color: var(--ink-muted); }
.compare-score { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.score-stars { color: var(--clay); font-size: 14px; }
.score-num { font-size: 13px; font-weight: 700; color: var(--ink); }
.compare-pros { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.compare-pros li {
  font-size: 13px;
  color: var(--ink-light);
  padding-left: 18px;
  position: relative;
}
.compare-pros li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: 700; font-size: 12px; }
.compare-verdict {
  font-size: 12px;
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--clay-dark);
  padding: 8px 0;
  border-top: 1px solid var(--border);
}
.compare-card .btn { width: 100%; text-align: center; margin-top: 4px; }
.compare-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   GIFT GUIDES SECTION
   ============================================================ */
.guides-section {
  padding: 6rem 0;
  background: var(--cream);
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.guide-card--wide { grid-column: span 2; }

.guide-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clay-light);
}
.guide-emoji { font-size: 32px; margin-bottom: 1rem; display: block; }
.guide-card h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 0.5rem; }
.guide-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.guide-link { font-size: 13px; font-weight: 700; color: var(--clay); }
.guide-card:hover .guide-link { text-decoration: underline; }

/* ============================================================
   WHY HANDMADE
   ============================================================ */
.why-section {
  padding: 6rem 0;
  background: var(--ink);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text .section-label { color: var(--clay-light); }
.why-text h2 { color: var(--cream); margin-bottom: 1.25rem; }
.why-text p { color: rgba(250,246,240,0.65); margin-bottom: 1rem; font-size: 16px; }

.why-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.why-stat {
  border-left: 3px solid var(--clay);
  padding-left: 1.5rem;
}
.why-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.why-label {
  font-size: 14px;
  color: rgba(250,246,240,0.55);
  margin-top: 6px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: 5rem 0;
  background: var(--cream-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}
.newsletter-inner h2 { margin-bottom: 0.5rem; }
.newsletter-inner > p { font-size: 16px; color: var(--ink-muted); margin-bottom: 1.5rem; }
.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--clay); }
.newsletter-note { font-size: 12px; color: var(--ink-muted); margin-top: 0.75rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink-mid); padding: 4rem 2rem 0; }
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,246,240,0.1);
}
.footer-brand { max-width: 280px; }
.footer-brand .logo-main { font-size: 18px; color: var(--cream); }
.footer-brand .logo-sub { color: rgba(250,246,240,0.4); }
.footer-brand .logo-icon { color: var(--clay-light); }
.footer-brand p { font-size: 13px; color: rgba(250,246,240,0.5); margin-top: 12px; line-height: 1.7; }
.footer-disclosure { font-size: 11.5px; color: rgba(250,246,240,0.35) !important; margin-top: 8px !important; font-style: italic; }

.footer-links { display: flex; gap: 3rem; flex: 1; justify-content: flex-end; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(250,246,240,0.4); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: rgba(250,246,240,0.65); transition: color 0.15s; }
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 0;
}
.footer-bottom p { font-size: 12px; color: rgba(250,246,240,0.3); }

/* ============================================================
   MARKETPLACES PAGE
   ============================================================ */
.page-hero {
  background: var(--ink);
  padding: 4rem 2rem 5rem;
  text-align: center;
}
.page-hero .hero-texture { position: absolute; inset: 0; pointer-events: none; }
.page-hero { position: relative; overflow: hidden; }
.page-hero h1 { color: var(--cream); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.page-hero p { color: rgba(250,246,240,0.65); max-width: 580px; margin: 0 auto; font-size: 16px; }

.reviews-list { padding: 5rem 0; }

.review-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  overflow: hidden;
}
.review-full.featured-review { border: 2px solid var(--clay); }
.review-header-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.review-logo-lg {
  width: 68px; height: 68px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px; font-weight: 700;
}
.review-header-text { flex: 1; }
.review-header-text h2 { font-size: 1.6rem; margin-bottom: 4px; }
.review-tagline { font-size: 14px; color: var(--ink-muted); font-style: italic; }
.review-score-lg { text-align: right; }
.review-score-lg .big-score { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; color: var(--ink); line-height: 1; }
.review-score-lg .score-label { font-size: 11px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.review-score-lg .stars-lg { color: var(--clay); font-size: 16px; }

.review-body-full {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
}
.review-main { padding: 2.5rem; border-right: 1px solid var(--border); }
.review-main h3 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--ink); }
.review-main p { font-size: 15px; margin-bottom: 1rem; }

.review-sidebar { padding: 2rem; background: var(--cream); }
.criteria-list { display: flex; flex-direction: column; gap: 14px; }
.criterion-row { display: flex; flex-direction: column; gap: 5px; }
.crit-name { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-light); font-weight: 700; }
.crit-bar { height: 6px; background: var(--cream-dark); border-radius: 3px; overflow: hidden; }
.crit-fill { height: 100%; background: linear-gradient(90deg, var(--clay-dark), var(--clay-light)); border-radius: 3px; }

.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.pros-box, .cons-box { padding: 1.25rem; border-radius: var(--radius); }
.pros-box { background: rgba(122,140,110,0.1); border: 1px solid rgba(122,140,110,0.25); }
.cons-box { background: rgba(200,105,74,0.07); border: 1px solid rgba(200,105,74,0.2); }
.pros-box h4 { color: var(--sage); font-size: 13px; margin-bottom: 8px; }
.cons-box h4 { color: var(--clay); font-size: 13px; margin-bottom: 8px; }
.pros-box li, .cons-box li { font-size: 13px; color: var(--ink-light); padding: 3px 0; }
.pros-box li::before { content: '+ '; color: var(--sage); font-weight: 700; }
.cons-box li::before { content: '− '; color: var(--clay); font-weight: 700; }

.review-cta-strip {
  padding: 1.5rem 2.5rem;
  background: var(--cream);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.review-price-info { flex: 1; font-size: 14px; color: var(--ink-muted); }
.review-price-info strong { color: var(--ink); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-content { padding: 4rem 0 6rem; }
.about-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; }
.about-section { margin-bottom: 3rem; }
.about-section h2 { margin-bottom: 1rem; }
.about-section p { font-size: 15px; margin-bottom: 0.75rem; }
.about-section ul { display: flex; flex-direction: column; gap: 8px; margin: 1rem 0; }
.about-section li { font-size: 14px; color: var(--ink-light); padding-left: 20px; position: relative; }
.about-section li::before { content: '✦'; position: absolute; left: 0; color: var(--clay); font-size: 10px; top: 3px; }

.disclosure-box {
  background: rgba(200,105,74,0.08);
  border: 1px solid rgba(200,105,74,0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}
.disclosure-box p { color: var(--ink-light); font-size: 14px; }

.about-sidebar { align-self: start; position: sticky; top: 90px; }
.sidebar-card { background: var(--cream-mid); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.25rem; }
.sidebar-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.sidebar-card p { font-size: 13.5px; color: var(--ink-muted); }

/* ============================================================
   GIFT GUIDES PAGE
   ============================================================ */
.gift-guide-full { padding: 5rem 0; }
.gift-section { margin-bottom: 4rem; }
.gift-section h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.gift-section .gift-intro { font-size: 16px; color: var(--ink-light); margin-bottom: 2rem; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.product-card h4 { font-family: var(--font-serif); font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.product-shop { font-size: 11px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.product-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.6; margin-bottom: 1rem; }
.product-price { font-size: 14px; font-weight: 700; color: var(--clay); margin-bottom: 0.75rem; }
.product-card .btn { width: 100%; text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .spotlight-grid { grid-template-columns: 1fr; gap: 3rem; }
  .compare-cards { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-card--wide { grid-column: span 2; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .review-body-full { grid-template-columns: 1fr; }
  .review-sidebar { border-right: none; border-top: 1px solid var(--border); }
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; gap: 0.25rem; z-index: 199; box-shadow: var(--shadow-md); }
  .nav-toggle { display: flex; }
  .compare-cards { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card--wide { grid-column: span 1; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-brand { max-width: 100%; }
  .footer-links { justify-content: flex-start; }
  .spotlight-card-stack { grid-template-columns: 1fr 1fr; }
  .hero-trust { gap: 1rem; font-size: 12px; }
}

/* ============================================================
   Font fallback stack (when Google Fonts unavailable)
   ============================================================ */
@media print, (prefers-reduced-data: reduce) {
  :root {
    --font-serif: Georgia, 'Times New Roman', serif;
    --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
}
