/*
Theme Name: EHQ Thrive
Theme URI: https://everydayhealthquest.com
Author: Everyday Health Quest
Author URI: https://everydayhealthquest.com
Description: Bold, energetic wellness theme for Everyday Health Quest — featuring sage green, gold, and terracotta brand colors.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: ehq-thrive
Tags: wellness, health, blog, shop, one-column, two-columns, custom-colors, custom-menu, featured-images, full-width-template, post-thumbnails, threaded-comments, translation-ready
*/

/* ═══════════════════════════════════════
   CSS VARIABLES & RESET
═══════════════════════════════════════ */
:root {
  --green:       #6e9277;
  --green-light: #8FAF8F;
  --green-pale:  #e8f2e8;
  --charcoal:    #323232;
  --gold:        #D4A84B;
  --terra:       #c9622f;
  --white:       #ffffff;
  --off-white:   #faf9f6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(50,50,50,.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-box {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-box svg { width: 26px; height: 26px; fill: var(--white); }
.nav-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.2;
}
/* WordPress nav menu reset */
.main-nav { display: flex; align-items: center; }
.main-nav ul { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.main-nav ul li { margin: 0; padding: 0; }
.main-nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 4px;
  transition: color .2s;
}
.main-nav ul li a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--terra);
  transition: width .25s;
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a { color: var(--terra); }
.main-nav ul li a:hover::after,
.main-nav ul li.current-menu-item > a::after { width: 100%; }
.nav-cta {
  background: var(--terra);
  color: var(--white) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 40px;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: #b3541f; transform: translateY(-1px); }

/* ═══════════════════════════════════════
   SHARED UTILITIES
═══════════════════════════════════════ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 28px; height: 2px; background: var(--terra); }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terra); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .9rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 4px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(201,98,47,.35);
}
.btn-primary:hover { background: #b3541f; transform: translateY(-2px); }
.btn-primary svg, .btn-terra svg, .btn-green svg, .btn-ghost svg { width: 16px; height: 16px; }

.btn-terra {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terra); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .85rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 4px; text-decoration: none;
  transition: background .2s, transform .15s; width: fit-content;
}
.btn-terra:hover { background: #b3541f; transform: translateY(-1px); }

.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .88rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 4px; text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-green:hover { background: #5a7a63; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.5); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .9rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 4px; transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  border: 2px solid var(--charcoal); color: var(--charcoal);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .8rem; letter-spacing: .05em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 4px; text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: var(--charcoal); color: var(--white); }

.btn-gold {
  background: var(--gold); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .82rem; letter-spacing: .05em; text-transform: uppercase;
  padding: 14px 24px; border: none; border-radius: 4px; cursor: pointer;
  white-space: nowrap; transition: background .2s;
}
.btn-gold:hover { background: #c09530; }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--green);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .88rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 4px; text-decoration: none;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-white:hover { background: var(--gold); color: var(--white); transform: translateY(-1px); }

/* ═══════════════════════════════════════
   NEWSLETTER SECTION
═══════════════════════════════════════ */
.newsletter-bg {
  background: linear-gradient(135deg, var(--green) 0%, #4a6b52 100%);
  position: relative; overflow: hidden;
}
.newsletter-bg::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  top: -150px; right: -100px;
}
.newsletter-inner {
  max-width: 680px; margin: 0 auto;
  padding: 80px 48px; text-align: center; position: relative; z-index: 1;
}
.nl-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.nl-tag::before, .nl-tag::after { content: ''; width: 28px; height: 2px; background: var(--gold); }
.newsletter-inner h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white); margin-bottom: 14px;
}
.newsletter-inner h2 em { font-style: normal; color: var(--gold); }
.newsletter-sub {
  font-family: 'Lora', serif; font-size: 1rem;
  color: rgba(255,255,255,.8); margin-bottom: 36px; line-height: 1.7;
}
.nl-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.nl-form input {
  flex: 1; padding: 14px 18px; border: none; border-radius: 4px;
  font-family: 'Inter', sans-serif; font-size: .92rem;
  background: rgba(255,255,255,.95); color: var(--charcoal); outline: none;
}
.nl-form input:focus { box-shadow: 0 0 0 3px rgba(212,168,75,.4); }
.nl-note { font-size: .76rem; color: rgba(255,255,255,.55); margin-top: 12px; }

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.trust-bar {
  background: var(--green); padding: 20px 48px;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase;
}
.trust-item svg { width: 20px; height: 20px; flex-shrink: 0; fill: var(--gold); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer { background: var(--charcoal); padding: 56px 48px 28px; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-box {
  width: 38px; height: 38px; border-radius: 7px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-box svg { width: 20px; height: 20px; fill: var(--white); }
.footer-brand-name {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .88rem; color: var(--white);
}
.footer-tagline {
  font-family: 'Lora', serif; font-style: italic;
  font-size: .85rem; color: rgba(255,255,255,.5);
  line-height: 1.7; margin-bottom: 20px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .2s;
}
.social-link:hover { background: var(--terra); }
.social-link svg { width: 15px; height: 15px; fill: var(--white); }
.footer-col-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
/* WordPress nav menu in footer */
.footer-menu ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-menu ul li { margin: 0; }
.footer-menu ul li a { font-size: .85rem; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer-menu ul li a:hover { color: var(--white); }
.footer-contact { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.8; }
.footer-contact a { color: var(--green-light); text-decoration: none; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-copy span { color: var(--terra); }

/* ═══════════════════════════════════════
   PAGE HERO (shared pattern)
═══════════════════════════════════════ */
.page-hero {
  background: var(--charcoal);
  padding: 80px 48px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute;
  right: -60px; top: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: var(--green); opacity: .08;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terra); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 40px; margin-bottom: 20px;
}
.page-hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--white); line-height: 1.08; margin-bottom: 16px;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero-sub {
  font-family: 'Lora', serif; font-size: 1.05rem;
  color: rgba(255,255,255,.72); max-width: 560px; line-height: 1.7;
}

/* ═══════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   DISCLAIMER BAR
═══════════════════════════════════════ */
.disclaimer-bar {
  background: var(--off-white);
  border-top: 3px solid var(--gold);
  padding: 20px 48px;
}
.disclaimer-bar-inner {
  max-width: 1200px; margin: 0 auto;
  font-size: .76rem; color: #999; line-height: 1.7; text-align: center;
}
.disclaimer-bar-inner a { color: var(--green); text-decoration: none; }

/* ═══════════════════════════════════════
   WORDPRESS DEFAULT OVERRIDES
═══════════════════════════════════════ */
.wp-block-image img { border-radius: 8px; }
.entry-content { max-width: 760px; margin: 0 auto; padding: 60px 48px; }
.entry-content h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; margin-bottom: 16px; color: var(--charcoal); }
.entry-content p { font-family: 'Lora', serif; font-size: 1rem; line-height: 1.8; color: #555; margin-bottom: 20px; }

/* ═══════════════════════════════════════
   BLOG / INDEX — SHARED
═══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.blog-card-img-link { display: block; overflow: hidden; aspect-ratio: 16/9; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card-img-link:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { font-size: .72rem; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: .06em; color: var(--green); margin-bottom: .5rem; }
.blog-card-meta a { color: inherit; text-decoration: none; }
.blog-card-title { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: .6rem; line-height: 1.35; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--terra); }
.blog-card-excerpt { font-family: 'Lora', serif; font-size: .9rem; color: #666; line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.blog-card .btn-outline, .blog-card .btn-green { align-self: flex-start; margin-top: auto; }

/* FILTER BAR */
.filter-bar-wrap { background: var(--off-white); border-bottom: 1px solid #e8e8e8; position: sticky; top: 64px; z-index: 90; }
.filter-bar { max-width: 1200px; margin: 0 auto; padding: .9rem 1.5rem; display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.filter-pill { padding: .4rem 1rem; border-radius: 999px; background: #fff; border: 1.5px solid #ddd; font-family: 'Inter', sans-serif; font-size: .78rem; font-weight: 600; color: var(--charcoal); text-decoration: none; transition: all .2s; }
.filter-pill:hover, .filter-pill.active { background: var(--green); border-color: var(--green); color: #fff; }

/* FEATURED POST */
.featured-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.09); }
.featured-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.featured-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.featured-badge { position: absolute; top: 1rem; left: 1rem; background: var(--terra); color: #fff; font-family: 'Montserrat', sans-serif; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .3rem .75rem; border-radius: 999px; }
.featured-content { padding: 2.5rem; }
.featured-content h2 { font-family: 'Montserrat', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--charcoal); margin: .5rem 0 1rem; line-height: 1.25; }
.featured-content p { font-family: 'Lora', serif; color: #666; line-height: 1.75; margin-bottom: 1.5rem; }

/* PAGINATION */
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 2.2rem; height: 2.2rem; border-radius: 50%; font-family: 'Inter', sans-serif; font-size: .85rem; text-decoration: none; color: var(--charcoal); background: #fff; border: 1.5px solid #ddd; margin: 0 .15rem; transition: all .2s; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* ═══════════════════════════════════════
   WELLNESS HUB PAGE
═══════════════════════════════════════ */
.wellness-hero { position: relative; background: linear-gradient(135deg, var(--green) 0%, #4a7a55 100%); padding: 6rem 1.5rem; overflow: hidden; }
.wellness-hero-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; text-align: center; color: #fff; }
.wellness-hero-inner h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; margin: .75rem 0 1.25rem; line-height: 1.1; }
.wellness-hero-inner h1 em { color: var(--gold); font-style: normal; }
.wellness-hero-inner p { font-family: 'Lora', serif; font-size: 1.1rem; line-height: 1.8; opacity: .9; margin-bottom: 2rem; }
.hero-cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.wellness-hero-stripe { position: absolute; bottom: -2px; left: 0; right: 0; height: 80px; background: var(--off-white); clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%); }

.value-props-bar { background: var(--charcoal); padding: 1.5rem; }
.value-props-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.vp-item { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.85); font-family: 'Inter', sans-serif; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.vp-icon { width: 18px; height: 18px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.shop-cats-section { background: var(--off-white); padding: 5rem 1.5rem; }
.shop-cats-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.shop-cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; text-align: left; }
.shop-cat-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.07); display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.shop-cat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.shop-cat-img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.shop-cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.shop-cat-card:hover .shop-cat-img-wrap img { transform: scale(1.05); }
.shop-cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 60%); }
.shop-cat-badge { position: absolute; top: 1rem; left: 1rem; padding: .3rem .75rem; border-radius: 999px; font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #fff; }
.shop-cat-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.shop-cat-body h3 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--charcoal); margin-bottom: .6rem; }
.shop-cat-body p { font-family: 'Lora', serif; font-size: .9rem; color: #666; line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.shop-cat-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.shop-cat-price { font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .06em; }

/* ═══════════════════════════════════════
   WELLNESS PICKS PAGE
═══════════════════════════════════════ */
.picks-cat-nav { background: #fff; border-bottom: 2px solid var(--green-pale); padding: .75rem 1.5rem; position: sticky; top: 64px; z-index: 100; transition: box-shadow .3s; }
.picks-cat-nav.stuck { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.picks-cat-nav-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: .5rem; flex-wrap: wrap; overflow-x: auto; }
.picks-cat-pill { padding: .4rem 1.1rem; border-radius: 999px; background: var(--green-pale); border: none; font-family: 'Inter', sans-serif; font-size: .77rem; font-weight: 600; color: var(--green); text-decoration: none; white-space: nowrap; transition: all .2s; cursor: pointer; }
.picks-cat-pill:hover, .picks-cat-pill.active { background: var(--green); color: #fff; }

.picks-wrap { max-width: 1200px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.picks-section { margin-bottom: 4rem; }
.picks-section-header { margin-bottom: 1.5rem; }
.picks-cat-tag { display: inline-block; padding: .3rem .9rem; border-radius: 999px; font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: .75rem; }
.picks-section-header h2 { font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--charcoal); }
.picks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.pick-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); display: flex; flex-direction: column; position: relative; transition: transform .3s, box-shadow .3s; }
.pick-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.pick-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.pick-badge { position: absolute; top: .85rem; right: .85rem; padding: .25rem .65rem; border-radius: 999px; font-family: 'Montserrat', sans-serif; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #fff; z-index: 2; }
.pick-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.pick-body h3 { font-family: 'Montserrat', sans-serif; font-size: .95rem; font-weight: 700; color: var(--charcoal); margin-bottom: .5rem; line-height: 1.35; }
.pick-body p { font-family: 'Lora', serif; font-size: .85rem; color: #666; line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.pick-btn { align-self: flex-start; font-size: .8rem; padding: .55rem 1.1rem; margin-top: auto; }

/* ═══════════════════════════════════════
   FAQ PAGE
═══════════════════════════════════════ */
.faq-layout { max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem 6rem; display: grid; grid-template-columns: 1fr 320px; gap: 3.5rem; align-items: start; }
.faq-section-block { margin-bottom: 3rem; }
.faq-section-title { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--charcoal); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--green-pale); }
.faq-item { border: 1.5px solid #ebebeb; border-radius: 12px; overflow: hidden; margin-bottom: .75rem; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.25rem; background: #fff; border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: .95rem; font-weight: 700; color: var(--charcoal); text-align: left; transition: background .2s; }
.faq-q:hover { background: var(--green-pale); }
.faq-item.open .faq-q { background: var(--green-pale); color: var(--green); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s; }
.faq-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 1rem 1.25rem 1.25rem; font-family: 'Lora', serif; font-size: .9rem; color: #555; line-height: 1.8; }
.faq-a a { color: var(--green); text-decoration: underline; }

.faq-sidebar { }
.faq-sidebar-sticky { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { background: #fff; border-radius: 16px; padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,.07); border: 1.5px solid var(--green-pale); }
.sidebar-contact-card { background: var(--charcoal); border-color: var(--charcoal); }
.sidebar-contact-card .sidebar-card-title { color: #fff; }
.sidebar-contact-card p { color: rgba(255,255,255,.75); font-family: 'Lora', serif; font-size: .88rem; line-height: 1.7; }
.sidebar-card-title { font-family: 'Montserrat', sans-serif; font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--green); margin-bottom: 1rem; }
.sidebar-jump-nav { display: flex; flex-direction: column; gap: .4rem; }
.sidebar-jump-nav a { font-family: 'Inter', sans-serif; font-size: .85rem; color: var(--charcoal); text-decoration: none; padding: .4rem .6rem; border-radius: 6px; transition: all .2s; font-weight: 500; }
.sidebar-jump-nav a:hover { background: var(--green-pale); color: var(--green); }

/* ═══════════════════════════════════════
   DIGITAL WELLNESS TOOLS PAGE
═══════════════════════════════════════ */
.dw-products-section { background: var(--off-white); padding: 5rem 1.5rem; }
.dw-products-inner { max-width: 1200px; margin: 0 auto; }
.dw-intro { text-align: center; margin-bottom: 3.5rem; }
.dw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.dw-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.08); position: relative; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.dw-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.13); }
.dw-card--featured { border: 2.5px solid var(--gold); }
.dw-card-badge { position: absolute; top: 1rem; right: 1rem; padding: .3rem .8rem; border-radius: 999px; font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; z-index: 2; }
.dw-card-img-wrap { aspect-ratio: 16/10; overflow: hidden; }
.dw-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.dw-card:hover .dw-card-img-wrap img { transform: scale(1.04); }
.dw-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.dw-card-category { font-family: 'Inter', sans-serif; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--terra); margin-bottom: .5rem; }
.dw-card-body h3 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--charcoal); margin-bottom: .75rem; line-height: 1.3; }
.dw-card-body p { font-family: 'Lora', serif; font-size: .88rem; color: #666; line-height: 1.75; margin-bottom: 1rem; }
.dw-card-list { list-style: none; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: .4rem; }
.dw-card-list li { font-family: 'Inter', sans-serif; font-size: .82rem; color: #555; padding-left: 1.4rem; position: relative; }
.dw-card-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.dw-card-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--green-pale); }
.dw-card-price { display: flex; align-items: baseline; gap: .5rem; }
.price-was { font-family: 'Inter', sans-serif; font-size: .85rem; color: #aaa; text-decoration: line-through; }
.price-current { font-family: 'Montserrat', sans-serif; font-size: 1.35rem; font-weight: 900; }
.dw-btn { font-size: .82rem; padding: .6rem 1.2rem; white-space: nowrap; }

.dw-trust-section { background: var(--charcoal); padding: 5rem 1.5rem; }
.dw-trust-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.dw-trust-section .section-title { color: #fff; }
.dw-trust-section .section-title em { color: var(--gold); }
.dw-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.dw-trust-item { }
.dw-trust-item svg { width: 40px; height: 40px; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 1rem; }
.dw-trust-item h4 { font-family: 'Montserrat', sans-serif; font-size: .9rem; font-weight: 800; color: #fff; margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .04em; }
.dw-trust-item p { font-family: 'Lora', serif; font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.75; }

/* ═══════════════════════════════════════
   DISCLAIMER BAR (page-level variant)
═══════════════════════════════════════ */
.disclaimer-bar { background: #f0f0ee; border-top: 1px solid #ddd; padding: 1rem 1.5rem; }
.disclaimer-inner { max-width: 1200px; margin: 0 auto; font-family: 'Inter', sans-serif; font-size: .75rem; color: #888; line-height: 1.7; text-align: center; }
.disclaimer-inner strong { color: var(--charcoal); }

/* ═══════════════════════════════════════
   RESPONSIVE — ALL PAGES
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .picks-grid { grid-template-columns: repeat(2, 1fr); }
  .dw-grid { grid-template-columns: repeat(2, 1fr); }
  .dw-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar-sticky { position: static; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .featured-inner { grid-template-columns: 1fr; }
  .shop-cats-grid { grid-template-columns: 1fr; }
  .picks-grid { grid-template-columns: 1fr; }
  .dw-grid { grid-template-columns: 1fr; }
  .dw-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .value-props-inner { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .hero-cta-row { flex-direction: column; align-items: center; }
}
