/* ══════════════════════════════════════════
   MITOLYN AFFILIATE PAGE — ROSA FEMININO THEME
   Lemonade Ocean | lemonadeocean.com
   ══════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:       #c8547a;
  --rose-dark:  #a33d61;
  --rose-light: #f5d0de;
  --rose-pale:  #fdf0f4;
  --blush:      #f0c8d8;
  --cream:      #fdf6f0;
  --beige:      #c8a080;
  --beige-mid:  #e8d5c0;
  --text-main:  #3a2a30;
  --text-muted: #7a6070;
  --text-light: #b09090;
  --white:      #ffffff;
  --border:     #e8d0d8;
  --shadow:     0 4px 24px rgba(180, 80, 110, 0.12);
  --shadow-sm:  0 2px 12px rgba(180, 80, 110, 0.08);
  --radius:     12px;
  --radius-lg:  20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', -apple-system, sans-serif;
  --max-w:      1200px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── READING PROGRESS BAR ── */
#reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--beige));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── CONTAINERS ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ══ HEADER ══ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rose);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.header-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color var(--transition);
}

.header-nav a:hover { color: var(--rose); }

.btn-header {
  background: var(--rose) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition) !important;
}

.btn-header:hover {
  background: var(--rose-dark) !important;
  transform: translateY(-1px);
}

/* ══ BREADCRUMB ══ */
.breadcrumb-bar {
  background: var(--rose-pale);
  border-bottom: 1px solid var(--rose-light);
  padding: 8px 0;
}

.breadcrumb-bar nav {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumb-bar a {
  color: var(--rose);
  text-decoration: none;
}

.breadcrumb-bar a:hover { text-decoration: underline; }

.breadcrumb-bar .sep {
  margin: 0 8px;
  color: var(--text-light);
}

/* ══ HERO ══ */
.hero {
  background: linear-gradient(135deg, #fff0f5 0%, #fde8f0 50%, #f8e0ea 100%);
  border-bottom: 1px solid var(--blush);
  padding: 72px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,84,122,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(200,160,128,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid var(--blush);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title em {
  color: var(--rose);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-disclaimer {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ══ BUTTONS ══ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white) !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 6px 24px rgba(163,61,97,0.35);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(163,61,97,0.45);
  filter: brightness(1.05);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--rose) !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--rose);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--rose);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-full { display: block; text-align: center; }
.btn-large { padding: 20px 48px; font-size: 1.1rem; }

/* ══ LAYOUT ══ */
.layout-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 80px;
  align-items: start;
}

/* ══ ARTICLE ══ */
.article-main { min-width: 0; }

.article-section {
  margin-bottom: 60px;
  animation: fadeInUp 0.5s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.article-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rose-light);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.article-section h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--rose-dark);
  margin: 28px 0 12px;
}

.article-section h4 {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  font-size: 1rem;
}

.article-section p { margin-bottom: 18px; color: var(--text-main); }

.article-section ul, .article-section ol {
  margin: 12px 0 20px 24px;
}

.article-section li { margin-bottom: 8px; color: var(--text-main); }

/* ══ TABLE OF CONTENTS ══ */
.toc-box {
  background: var(--rose-pale);
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 48px;
}

.toc-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 16px;
}

.toc-list {
  columns: 2;
  column-gap: 32px;
  margin-left: 20px;
}

.toc-list li { margin-bottom: 8px; break-inside: avoid; }

.toc-list a {
  color: var(--rose);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color var(--transition);
}

.toc-list a:hover {
  color: var(--rose-dark);
  text-decoration: underline;
}

/* ══ HIGHLIGHT BOX ══ */
.highlight-box {
  background: linear-gradient(135deg, var(--rose-pale) 0%, #fff8fb 100%);
  border: 1px solid var(--blush);
  border-left: 4px solid var(--rose);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0;
}

.highlight-box ul { margin: 10px 0 0 20px; }
.highlight-box li { margin-bottom: 8px; font-size: 0.95rem; }

/* ══ INGREDIENT CARDS ══ */
.ingredient-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.ingredient-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--rose-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-card h4 {
  color: var(--rose-dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.ingredient-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ══ BENEFITS GRID ══ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.benefit-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.benefit-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.benefit-item h4 {
  color: var(--rose-dark);
  margin-bottom: 8px;
  font-size: 1rem;
}

.benefit-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ══ PROS & CONS ══ */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0;
}

.pros-box, .cons-box {
  border-radius: var(--radius);
  padding: 28px;
}

.pros-box {
  background: #f0faf5;
  border: 1px solid #c0e8d0;
}

.cons-box {
  background: #fff5f5;
  border: 1px solid #f0c8c8;
}

.pros-box h3 {
  color: #2a7a4a;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.cons-box h3 {
  color: #c04040;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.pros-box ul, .cons-box ul { margin-left: 20px; }
.pros-box li, .cons-box li { margin-bottom: 12px; font-size: 0.9rem; line-height: 1.6; }

.editorial-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  background: var(--beige-mid);
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 20px;
}

/* ══ COMPARISON TABLE ══ */
.table-wrapper { overflow-x: auto; margin: 28px 0; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th {
  background: var(--rose);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.comparison-table th.highlight-col {
  background: var(--rose-dark);
}

.comparison-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
}

.comparison-table td.highlight-col {
  background: #fff0f5;
  font-weight: 700;
  color: var(--rose-dark);
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--rose-pale); }
.comparison-table tr:hover td.highlight-col { background: #ffe0ec; }

/* ══ DISCLAIMER & GUARANTEE ══ */
.disclaimer-box {
  background: var(--beige-mid);
  border: 1px solid var(--beige);
  border-radius: 8px;
  padding: 18px 22px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 24px;
}

.guarantee-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #f0faf5;
  border: 1px solid #b0e0c0;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
}

.guarantee-icon { font-size: 2.5rem; }

.guarantee-box h4 {
  color: #2a7a4a;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.guarantee-box p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ══ PRICING GRID ══ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.pricing-card.best-value {
  border: 2px solid var(--rose);
  box-shadow: 0 8px 32px rgba(200,84,122,0.18);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.pricing-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rose);
  font-family: var(--font-display);
  margin: 10px 0 2px;
}

.price-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.pricing-card ul {
  list-style: none;
  margin: 0 0 20px 0;
  text-align: left;
  font-size: 0.82rem;
}

.pricing-card li {
  padding: 5px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text-muted);
}

.pricing-card li:last-child { border-bottom: none; }

/* ══ CTA BOXES ══ */
.cta-box {
  background: linear-gradient(135deg, var(--rose-pale) 0%, #fff8fb 100%);
  border: 1px solid var(--blush);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  text-align: center;
  margin: 40px 0;
}

.cta-box.cta-final {
  background: linear-gradient(135deg, #3a2a30 0%, var(--rose-dark) 100%);
  color: var(--white);
  border: none;
}

.cta-box.cta-final h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-box.cta-final p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }

.cta-text {
  font-weight: 600;
  color: var(--rose-dark);
  margin-bottom: 16px;
  font-size: 1rem;
}

.cta-sub-note {
  margin-top: 14px !important;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0 !important;
}

/* ══ VERDICT ══ */
.verdict-box {
  background: var(--white);
  border: 2px solid var(--rose);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 28px 0;
}

.verdict-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.verdict-stars { font-size: 1.4rem; }

.verdict-score {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rose);
  font-family: var(--font-display);
}

/* ══ FAQ ══ */
.faq-list { margin-top: 8px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  font-family: var(--font-body);
  transition: background var(--transition);
}

.faq-question:hover, .faq-question[aria-expanded="true"] {
  background: var(--rose-pale);
}

.faq-icon {
  color: var(--rose);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  background: var(--rose-pale);
  border-top: 1px solid var(--blush);
}

.faq-answer.open { display: block; }

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-top: 16px;
  margin: 0;
  line-height: 1.7;
}

/* ══ DISCLOSURE ══ */
.disclosure-box {
  background: var(--beige-mid);
  border: 1px solid var(--beige);
  border-radius: 8px;
  padding: 22px 26px;
  margin-top: 48px;
}

.disclosure-box h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.disclosure-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ══ SIDEBAR ══ */
.sidebar { min-width: 0; }

.sticky-sidebar {
  position: sticky;
  top: 84px;
}

.sidebar-cta {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.sidebar-badge {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.sidebar-cta h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.sidebar-tagline {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.sidebar-stars {
  font-size: 0.95rem;
  margin-bottom: 18px;
  color: var(--text-muted);
}

.sidebar-stars span { font-size: 0.8rem; }

.sidebar-bullets {
  list-style: none;
  text-align: left;
  margin-bottom: 22px;
  font-size: 0.82rem;
}

.sidebar-bullets li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.sidebar-bullets li:last-child { border-bottom: none; }

.sidebar-note {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 12px;
  margin-bottom: 0;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.sidebar-widget h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--rose-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.sidebar-widget ul { list-style: none; }

.sidebar-widget li { border-bottom: 1px solid var(--border); }
.sidebar-widget li:last-child { border-bottom: none; }

.sidebar-widget a {
  display: block;
  padding: 9px 0;
  font-size: 0.85rem;
  color: var(--rose);
  text-decoration: none;
  transition: color var(--transition);
}

.sidebar-widget a:hover { color: var(--rose-dark); }

/* ══ FOOTER ══ */
.site-footer {
  background: #2a1820;
  color: rgba(255,255,255,0.7);
  padding: 48px 0;
  margin-top: 0;
  border-top: 3px solid var(--rose);
}

.footer-inner { text-align: center; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--rose-light);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--rose-light); }

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.65;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ══ EXIT POPUP ══ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 10, 20, 0.65);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.popup-overlay.active { display: flex; }

.popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.popup-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}

.popup-close:hover { color: var(--text-main); }

.popup-icon { font-size: 2.5rem; margin-bottom: 12px; }

.popup-box h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.popup-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.popup-decline {
  display: block;
  margin-top: 14px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.78rem;
  cursor: pointer;
  text-decoration: underline;
  width: 100%;
  transition: color var(--transition);
}

.popup-decline:hover { color: var(--text-muted); }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .layout-wrapper {
    grid-template-columns: 1fr;
    padding-top: 32px;
    gap: 0;
  }

  .sidebar { display: none; }

  .toc-list { columns: 1; }

  .benefits-grid { grid-template-columns: 1fr; }

  .pros-cons-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }

  .header-nav a:not(.btn-header) { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 48px 0 40px; }

  .hero-title { font-size: 1.6rem; }

  .btn-primary { padding: 14px 24px; font-size: 0.9rem; }

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

  .comparison-table { font-size: 0.78rem; }

  .comparison-table th, .comparison-table td { padding: 10px 12px; }

  .ingredient-card { flex-direction: column; }

  .ingredient-icon { width: 44px; height: 44px; }
}
