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

html { scroll-behavior: smooth; }

:root {
  --bg: #FAF7F4;
  --primary: #2A6B6B;
  --accent: #C8953A;
  --secondary: #F2DDD5;
  --text: #2C2C2C;
  --subtext: #6B6B6B;
  --white: #FFFFFF;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --radius: 8px;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  background-color: var(--bg);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

img { max-width: 100%; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* HEADER */
header {
  background: var(--white);
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E8E0D8;
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 60px;
}

header img.logo {
  max-width: 200px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  background: transparent;
}

header a.nav-link {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  border: 1px solid var(--primary);
  padding: 8px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

header a.nav-link:hover {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
}

/* HEADER NAV MENU */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.header-nav-link {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--subtext);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.header-nav-link:hover {
  color: var(--primary);
  background: rgba(42,107,107,0.07);
  text-decoration: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Smooth scroll offset so sticky header doesn't cover anchors */
#top-pick, #more-gifts, #faq, #who-for, #compression-socks, #card-journal {
  scroll-margin-top: 72px;
}

/* HERO */
.hero {
  background: var(--bg);
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background-color: #2A6B6B;
  color: #FFFFFF;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: none;
}

.hero-stars {
  color: #C8953A;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-stars span:last-child {
  font-size: 13px;
  color: #6B6B6B;
  font-family: 'Lato', sans-serif;
}

.hero h1 {
  font-size: 44px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 19px;
  color: var(--subtext);
  line-height: 1.6;
  margin-bottom: 12px;
}

.hero-hook {
  font-style: italic;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 32px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 18px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.02em;
}

.btn-primary:hover { background: #B8852A; color: var(--white); text-decoration: none; }

.disclosure {
  font-size: 11px;
  color: var(--subtext);
  font-style: italic;
  text-align: center;
  margin-top: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 500px) {
  .disclosure {
    white-space: normal;
    font-size: 10px;
  }
}

.hero-image img {
  border-radius: 12px;
  width: 100%;
  height: 460px;
  object-fit: cover;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--primary);
  padding: 18px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 40px;
}

.trust-item {
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-item .check-mark {
  color: #C8953A;
  font-size: 14px;
}

/* GUIDE BRIDGE */
.guide-bridge-section {
  background: var(--white);
  padding: 0 60px 56px;
}

.guide-bridge {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--subtext);
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 28px 40px;
  border-left: 4px solid var(--accent);
  border-right: 4px solid var(--accent);
  background: var(--bg);
  border-radius: 4px;
}

/* SECTIONS */
.section-white { background: var(--white); padding: 72px 60px; }
.section-bg { background: var(--bg); padding: 48px 60px; }
.section-blush { background: var(--secondary); padding: 72px 60px; }
.section-teal { background: var(--primary); padding: 80px 60px; text-align: center; }

.section-inner {
  max-width: 720px;
  margin: 0 auto;
}

.section-inner p {
  margin-bottom: 20px;
}

.section-inner p:last-child {
  margin-bottom: 0;
}

.section-wide {
  max-width: 1100px;
  margin: 0 auto;
}

.section-teal h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
}

.section-teal p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

/* TOP PICK SECTION */
.top-pick-card {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}

.top-pick-image {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-pick-image img {
  width: 100%;
  border-radius: 8px;
  background: var(--bg);
  display: block;
}

.top-pick-image img.main-product {
  border-radius: 8px;
}

.top-pick-image img.lifestyle-img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
}

.badge-top-pick {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  z-index: 2;
}

.top-pick-content h3 {
  font-size: 24px;
  color: var(--text);
  margin-top: 8px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars-count {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--subtext);
}

.feature-list {
  list-style: none;
  margin-bottom: 24px;
}

.feature-list li {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #F0EAE4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.helper-line {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--subtext);
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 8px;
}

.top-pick-content .btn-primary {
  font-size: 17px;
  padding: 18px 36px;
  margin-top: 20px;
  width: 100%;
}

.cta-trust {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: var(--subtext);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* PRODUCT MICRO LABEL */
.product-micro-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--subtext);
  margin-bottom: 8px;
}

/* WHY DIFFERENT SECTION - redesigned with icon bullets */
.section-inner-wide {
  max-width: 800px;
  margin: 0 auto;
}

.section-inner-wide h2 {
  text-align: center;
  margin-bottom: 48px;
}

.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #E8E0D8;
}

.why-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-top: 2px;
}

.why-content {
  flex: 1;
}

.why-content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin: 0;
}

.why-content strong {
  color: var(--primary);
}

/* SHOP BY NEED SECTION */
.section-intro-center {
  text-align: center;
  max-width: 700px;
  margin: -16px auto 36px;
  font-size: 16px;
  color: var(--subtext);
  line-height: 1.8;
}

.need-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.need-card,
a.need-card,
a.need-card:link,
a.need-card:visited,
a.need-card:hover,
a.need-card:active,
a.need-card *,
.need-card h3,
.need-card p,
.need-card span {
  text-decoration: none !important;
}

.need-card {
  background: var(--white);
  border: 1px solid #E8E0D8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.need-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.need-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
  text-decoration: none !important;
}

.need-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
  text-decoration: none !important;
}

.need-card p {
  font-size: 14px;
  color: var(--subtext);
  line-height: 1.7;
  margin: 0;
  text-decoration: none !important;
}


/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* Card is a strict flex column -- image, label, title, body zone, cta zone */
.product-card {
  background: var(--white);
  border: 1px solid #E8E0D8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: inherit;
  height: 100%;
  box-sizing: border-box;
}

/* ZONE 1: image -- fixed height, no flex grow */
/* Product card image wrapper -- enforces consistent image area */
.card-img-wrap {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 6px;
  margin-bottom: 12px;
  flex-shrink: 0;
  overflow: visible;
  position: relative;
}

.card-img-wrap img {
  max-width: 100%;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ZONE 2: label -- fixed tiny height */
.product-card .product-micro-label {
  flex-shrink: 0;
}

/* ZONE 3: title -- min-height so short titles don't collapse row */
.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  text-decoration: none;
  flex-shrink: 0;
  min-height: 46px;
}

.product-card p {
  font-size: 14px;
  color: var(--subtext);
  line-height: 1.7;
  margin-bottom: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.product-card .helper-line {
  font-size: 13px;
  color: var(--subtext);
  margin-bottom: 6px;
  text-decoration: none;
  line-height: 1.6;
  flex-shrink: 0;
}

/* This is the only spacer needed -- direct flex child, grows to fill space */
.flex-push {
  flex-grow: 1;
  min-height: 8px;
}

/* CTA zone -- always at the bottom */
.card-cta {
  flex-shrink: 0;
}

/* CRITICAL: no underlines inside product cards ever */
.product-card,
.product-card * {
  text-decoration: none;
}

.btn-secondary {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0 20px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
}

.btn-secondary:hover { background: #B8852A; color: var(--white); text-decoration: none; }

.cta-helper {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: var(--subtext);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
  text-decoration: none;
}

.badge-meaningful {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
}

/* CRITERIA SECTION */
.criteria-heading {
  text-align: center;
}

.criteria-intro {
  text-align: center;
  max-width: 640px;
  margin: -16px auto 40px;
  font-size: 15px;
  color: var(--subtext);
  line-height: 1.8;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.criteria-col {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.criteria-col svg {
  display: block;
  margin: 0 auto 16px;
  width: 40px;
  height: 40px;
}

.criteria-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
}

.criteria-col p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--subtext);
  line-height: 1.8;
}

/* NURSES WEEK CALLOUT */
.nurses-week-callout {
  padding: 60px 60px;
}

.nurses-week-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #E8E0D8;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.nurses-week-accent {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 24px;
}

.nurses-week-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 16px;
}

.nurses-week-note {
  font-size: 13px;
  font-style: italic;
  color: var(--subtext);
  margin-top: 0;
}

/* INSIGHT BLOCKS */
.insight-block {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid #E8E0D8;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.insight-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
}

.insight-block p {
  font-size: 14px;
  color: var(--subtext);
  line-height: 1.8;
}

/* TESTIMONIALS grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CHECKLIST SECTION */
#who-for h2 {
  text-align: center;
}

#who-for .section-inner > p {
  margin-bottom: 28px;
}

.checklist {
  list-style: none;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.checklist li {
  font-size: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #E8E0D8;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.checklist li::before {
  content: "✓";
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

/* CTA BOX - gold button full width */
.cta-box {
  background: var(--bg);
  border-radius: 12px;
  padding: 36px;
  text-align: center;
  border: 1px solid #E8E0D8;
}

.cta-box .btn-primary {
  background: var(--accent);
  color: var(--white);
  display: block;
  width: 100%;
  padding: 18px 32px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
}

.cta-box .btn-primary:hover {
  background: #B8852A;
  color: var(--white);
  text-decoration: none;
}

/* FAQ - heading LEFT aligned as requested */
#faq h2 {
  text-align: left;
  margin-bottom: 36px;
}

.faq-item {
  border-bottom: 1px solid #E8E0D8;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
}

.faq-icon {
  font-size: 22px;
  color: var(--accent);
  min-width: 24px;
  text-align: right;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer.open { max-height: 400px; }

.faq-answer p {
  padding: 0 0 20px 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--subtext);
  text-align: left;
}

/* FINAL CTA */
.btn-white {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  padding: 16px 48px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  text-decoration: none;
}

.disclosure-teal,
.section-teal p.disclosure-teal {
  font-size: 10px;
  color: rgba(255,255,255,0.42);
  margin-top: 10px;
  margin-bottom: 0;
  font-style: italic;
  text-align: center;
  max-width: none;
  white-space: nowrap;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .disclosure-teal,
  .section-teal p.disclosure-teal {
    white-space: normal;
    font-size: 9px;
  }
}

/* FOOTER */
footer {
  background: var(--white);
  border-top: 1px solid #E8E0D8;
  padding: 48px 40px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--subtext);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.footer-trust {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: var(--subtext);
  text-align: center;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 20px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
}

.footer-links a:hover { text-decoration: underline; }

.footer-copy {
  font-size: 12px;
  color: var(--subtext);
}

/* STICKY MOBILE BAR */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  padding: 14px 20px;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}

.sticky-bar a {
  flex-grow: 1;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.sticky-bar-close {
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 8px;
  opacity: 0.8;
  margin-left: 12px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { padding: 60px 40px; }
  .need-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  header { padding: 16px 20px; }
  header img.logo { max-width: 160px; max-height: 48px; }

  /* Hide inline nav links; show hamburger button */
  .header-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid #E8E0D8;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

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

  .header-nav-link {
    width: 100%;
    padding: 14px 24px;
    border-radius: 0;
    font-size: 15px;
    border-bottom: 1px solid #F0EBE5;
  }

  .header-nav-link:last-child { border-bottom: none; }

  .nav-hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 32px;
  }

  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 17px; }
  .hero-image { order: -1; }
  .hero-image img { height: 260px; }

  .trust-strip {
    gap: 10px 24px;
    padding: 20px 24px;
  }

  .section-white,
  .section-bg,
  .section-blush,
  .section-teal {
    padding: 48px 24px;
  }

  .comparison-section,
  .nurses-week-callout { padding: 48px 24px; }

  .guide-bridge-section { padding: 0 24px 40px; }
  .guide-bridge { font-size: 15px; }

  h2 { font-size: 26px; }

  .top-pick-card {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }

  .product-grid { grid-template-columns: 1fr; }
  .need-card-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr; }
  .why-item { flex-direction: column; gap: 12px; }

  .sticky-bar { display: flex; }

  .section-inner { max-width: 100%; }
  .section-inner-wide { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .comparison-table th, .comparison-table td { padding: 8px 10px; font-size: 13px; }
}

/* NURSE MOM SECTION GRID */
.nurse-mom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

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

/* Why Different intro paragraph */
.why-intro {
  font-size: 16px;
  line-height: 1.9;
  color: #6B6B6B;
  margin-bottom: 40px;
  text-align: center;
}


/* ============================================================
   COMPREHENSIVE MOBILE FIX
   Targeting iPhone viewport 375px - 430px
   ============================================================ */

@media (max-width: 768px) {

  /* ---- 1. BODY BASE ---- */
  body {
    font-size: 15px;
    padding-bottom: 72px; /* prevents sticky bar from covering content */
  }

  /* ---- 2. HEADER: hide inline nav, show hamburger ---- */
  .header-nav {
    display: none !important;
  }

  .header-nav.open {
    display: flex !important;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid #E8E0D8;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  }

  .header-nav-link {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 1px solid #F0EBE5;
    text-decoration: none;
    width: 100%;
    display: block;
    border-radius: 0;
  }

  .header-nav-link:last-child { border-bottom: none; }
  .nav-hamburger { display: flex !important; }

  header {
    padding: 10px 16px;
    min-height: 56px;
  }

  header img.logo {
    max-width: 130px;
    max-height: 40px;
  }

  header a.nav-link {
    font-size: 12px;
    padding: 7px 12px;
    white-space: nowrap;
  }

  /* ---- 3. TYPOGRAPHY ---- */
  h2 {
    font-size: 22px;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  h3 {
    font-size: 16px;
  }

  p {
    font-size: 15px;
    line-height: 1.75;
  }

  /* ---- 4. SECTION PADDING ---- */
  .section-white,
  .section-bg,
  .section-blush,
  .section-teal {
    padding: 40px 20px;
  }

  .section-inner {
    padding: 0;
  }

  .comparison-section,
  .nurses-week-callout {
    padding: 40px 20px;
  }

  .guide-bridge-section {
    padding: 0 20px 36px;
  }

  .guide-bridge {
    font-size: 14px;
    padding: 20px 20px;
    border-left-width: 3px;
    border-right-width: 3px;
  }

  /* ---- 5. DISCLOSURE TEAL: force small regardless of cascade ---- */
  .disclosure-teal,
  .section-teal p.disclosure-teal,
  p.disclosure-teal {
    font-size: 9px !important;
    color: rgba(255,255,255,0.42) !important;
    white-space: normal !important;
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    line-height: 1.4 !important;
  }

  /* ---- 6. COMPARISON TABLE: convert to stacked list ---- */
  .comparison-table-wrap {
    overflow-x: visible;
  }

  .comparison-table {
    display: block;
    width: 100%;
  }

  .comparison-table thead {
    display: none; /* hide column headers */
  }

  .comparison-table tbody {
    display: block;
  }

  .comparison-table tr {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid #E8E0D8;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  }

  .comparison-row-featured {
    border-color: var(--accent) !important;
    border-width: 2px !important;
    background: #FBF6ED !important;
  }

  .comparison-table td {
    display: flex;
    padding: 4px 0;
    border: none;
    font-size: 14px;
    line-height: 1.5;
    background: transparent !important;
  }

  /* Add labels before each data cell */
  .comparison-table td:nth-child(1) {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    padding-bottom: 6px;
    border-bottom: 1px solid #F0EBE5;
    margin-bottom: 4px;
  }

  .comparison-table td:nth-child(2)::before {
    content: "Best for: ";
    font-weight: 700;
    color: var(--text);
    flex-shrink: 0;
    margin-right: 4px;
  }

  .comparison-table td:nth-child(3)::before {
    content: "Price: ";
    font-weight: 700;
    color: var(--text);
    flex-shrink: 0;
    margin-right: 4px;
  }

  .comparison-table td:nth-child(4)::before {
    content: "Why it helps: ";
    font-weight: 700;
    color: var(--text);
    flex-shrink: 0;
    margin-right: 4px;
  }

  /* ---- 7. NEED CARDS: force no underline on mobile ---- */
  a.need-card,
  a.need-card:link,
  a.need-card:visited,
  a.need-card:hover,
  a.need-card:active {
    text-decoration: none !important;
  }

  a.need-card *,
  a.need-card h3,
  a.need-card p,
  a.need-card span {
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
  }

  .need-card h3 {
    color: var(--primary);
    font-size: 17px;
  }

  .need-card {
    padding: 20px 18px;
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
  }

  /* ---- 8. HERO ---- */
  .hero {
    padding: 36px 20px;
    gap: 24px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.25;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-image img {
    height: 220px;
    border-radius: 8px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 6px 12px;
  }

  /* ---- 9. TOP PICK CARD ---- */
  .top-pick-card {
    padding: 20px;
    gap: 20px;
  }

  .top-pick-content h3 {
    font-size: 18px;
  }

  /* ---- 10. PRODUCT CARDS ---- */
  .product-card {
    padding: 20px;
  }

  .card-img-wrap {
    height: 160px;
  }

  .card-img-wrap img {
    max-height: 140px;
  }

  /* ---- 11. TRUST STRIP ---- */
  .trust-strip {
    padding: 14px 20px;
    gap: 8px 16px;
    font-size: 11px;
  }

  /* ---- 12. FAQ ---- */
  #faq h2 {
    text-align: left;
  }

  .faq-question {
    font-size: 15px;
    padding: 16px 0;
  }

  /* ---- 13. SECTION HEADINGS LEFT-ALIGN ON MOBILE ---- */
  .section-teal h2 {
    font-size: 24px;
    text-align: center; /* keep teal section centered */
  }

  .comparison-heading {
    text-align: left;
    font-size: 22px;
  }

  .comparison-intro {
    text-align: left;
    font-size: 14px;
  }

  /* ---- 14. FOOTER ---- */
  footer {
    padding: 36px 20px;
  }

  .footer-links {
    gap: 10px 16px;
  }

  /* ---- 15. NURSES WEEK CARD ---- */
  .nurses-week-card {
    padding: 28px 20px;
  }

  .nurses-week-body {
    font-size: 15px;
  }

  /* ---- 16. CRITERIA GRID ---- */
  .criteria-col {
    padding: 20px 16px;
  }

  /* ---- 17. CHECKLIST ---- */
  .checklist {
    max-width: 100%;
  }

  .cta-box {
    padding: 24px 16px;
  }

  /* ---- 18. WHY DIFFERENT ---- */
  .why-icon {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .why-intro {
    font-size: 14px;
    margin-bottom: 28px;
    text-align: left;
  }

  /* ---- 19. SCROLL MARGIN FOR STICKY HEADER ---- */
  #top-pick, #more-gifts, #faq, #who-for {
    scroll-margin-top: 60px;
  }
}

/* Extra small phones */
@media (max-width: 390px) {
  body { font-size: 14px; }
  .hero h1 { font-size: 24px; }
  h2 { font-size: 21px; }
  .section-white,
  .section-bg,
  .section-blush,
  .section-teal {
    padding: 36px 16px;
  }
}

@media (max-width: 390px) {
  .gift-finder-btn {
    font-size: 14px;
    padding: 14px 16px;
  }
}
