/* Warm eye-comfort theme — light, not dark */
:root {
  --bg: #e8dfd2 !important;
  --ink: #2c261f !important;
  --muted: #6f655c !important;
  --card: #f2ebe1 !important;
  --accent: #0d6b63 !important;
  --line: #d3c7b6 !important;
  --shadow: 0 10px 28px rgba(44, 38, 31, .09) !important;
  --clay: #a16207 !important;
  --amz: #c45500;
  --amz-bg: #ffd814;
  --amz-bg-hover: #f7ca00;
}

html { background: #e8dfd2; }
body {
  background: var(--bg) !important;
  color: var(--ink) !important;
}

.nav, .site-header {
  background: rgba(232, 223, 210, .94) !important;
  border-bottom-color: var(--line) !important;
  backdrop-filter: blur(12px);
}
.nav {
  flex-wrap: wrap !important;
  gap: 8px 12px !important;
  align-items: center !important;
}
.nav > div,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  justify-content: flex-end;
  align-items: center;
}
.nav a, .nav-links a {
  margin-left: 0 !important;
  white-space: nowrap;
}

.card, a.card, .why, .note, .disclosure, .why-copy {
  background: var(--card) !important;
  border-color: var(--line) !important;
}
.card .pic {
  background: linear-gradient(160deg, #ebe3d6, #f6f0e7) !important;
}
.card .pic img {
  background: #f7f1e8 !important;
}
.cta { color: var(--accent) !important; }
.hero {
  border-color: var(--line) !important;
  box-shadow: var(--shadow) !important;
}
.hero .veil {
  background: linear-gradient(180deg, rgba(44,38,31,.12), rgba(44,38,31,.62)) !important;
}
h2, .logo { color: var(--ink); }
.lede, .hint, .meta, .disclosure, footer, .nav a, .nav-links a {
  color: var(--muted) !important;
}
.nav a:hover, .nav-links a:hover { color: var(--accent) !important; }
.badge {
  background: #e4f2ee !important;
  border-color: #9dc9bf !important;
  color: #0d6b63 !important;
}

/* ——— Conversion polish ——— */
.aff-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 14px 0 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,252,248,.7);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .01em;
}
.aff-pill strong { color: var(--ink); font-weight: 600; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0 8px;
}
@media (max-width: 640px) {
  .trust-strip { grid-template-columns: 1fr; }
}
.trust-strip .trust-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  text-align: center;
}
.trust-strip .trust-item strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: .98rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.trust-strip .trust-item span {
  color: var(--muted);
  font-size: .82rem;
}

.hero .copy .eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
  background: #fffcf8;
  color: #0d6b63 !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,0,0,.22); }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.45);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }

/* Big Amazon CTAs on product cards */
.btn-amz {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  padding: 10px 14px;
  width: 100%;
  border-radius: 12px;
  background: var(--amz-bg);
  color: #111 !important;
  font-weight: 700;
  font-size: .9rem;
  border: 1px solid #f0c14b;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 2px 6px rgba(44,38,31,.08);
  transition: background .15s ease, transform .15s ease;
}
a.card:hover .btn-amz, .card:hover .btn-amz {
  background: var(--amz-bg-hover);
  letter-spacing: 0;
  transform: translateY(-1px);
}
.btn-amz::after { content: none; }

.cta-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--accent) !important;
  font-weight: 700;
  font-size: .9rem;
}

.card .body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.card .body h3 { margin-bottom: 2px; }

.disclosure {
  margin-top: 28px !important;
  padding: 14px 16px !important;
  border-radius: 16px !important;
  background: var(--card) !important;
  border: 1px solid var(--line) !important;
  color: var(--muted) !important;
  font-size: .85rem !important;
  line-height: 1.45;
}
.disclosure a { color: var(--accent) !important; font-weight: 600; }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin: 36px 0 6px;
}
.section-head h2 { margin: 0; }
.section-head .see-all {
  color: var(--accent) !important;
  font-weight: 700;
  font-size: .9rem;
}

@media (max-width: 720px) {
  .hero { aspect-ratio: 4/5 !important; max-height: 520px; }
  .hero .copy { left: 18px; right: 18px; bottom: 18px; }
  .hero h1 { font-size: clamp(1.45rem, 7vw, 2rem) !important; }
}


/* Mobile nav: keep primary paths easy to tap */
@media (max-width: 640px) {
  .nav-links a:nth-child(n+6),
  .nav > div a:nth-child(n+6) {
    display: none;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { width: 100%; }
}
