/* ============================================================
   REVIEW PAGE — WELLNESS EDGE
   Mobile-First · 45+ Audience · Conversion Optimized
   ============================================================ */

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--primary:      #1a6b3a;
	--primary-dark: #155530;
	--primary-light:#e8f5ee;
	--accent:       #e65c00;
	--accent-dark:  #bf4d00;
	--text-dark:    #1a1a2e;
	--text-body:    #2d3748;
	--text-muted:   #6b7280;
	--bg:           #ffffff;
	--bg-soft:      #f7f9f7;
	--bg-dark:      #0f1f2e;
	--border:       #e2e8f0;
	--star-gold:    #f59e0b;
	--green-badge:  #16a34a;
	--red-badge:    #dc2626;
	--shadow-sm:    0 1px 3px rgba(0,0,0,.10);
	--shadow-md:    0 4px 16px rgba(0,0,0,.10);
	--shadow-lg:    0 8px 32px rgba(0,0,0,.14);
	--radius-sm:    6px;
	--radius-md:    12px;
	--radius-lg:    20px;
	--font-serif:   'Merriweather', Georgia, serif;
	--font-sans:    'Inter', system-ui, -apple-system, sans-serif;
	--container:    720px;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-sans);
	font-size: 17px;
	line-height: 1.7;
	color: var(--text-body);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--primary);
	text-decoration: none;
}

/* ── CONTAINER ─────────────────────────────────────────────── */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 18px;
}

/* ── FOOTER AD NOTICE (discreet) ───────────────────────────── */
.footer-ad-notice {
	margin-top: 14px;
	font-size: 11px;
	color: #374151;
	line-height: 1.5;
}

.footer-ad-label {
	display: inline-block;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .1em;
	color: #6b7280;
	border: 1px solid #4b5563;
	padding: 1px 5px;
	border-radius: 2px;
	vertical-align: middle;
	margin-right: 5px;
}

.footer-ad-notice a {
	color: #6b7280;
	text-decoration: underline;
}

/* ── SITE HEADER ───────────────────────────────────────────── */
.site-header {
	background: #fff;
	border-bottom: 2px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: var(--shadow-sm);
}

.header-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 12px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.site-brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.brand-icon {
	flex-shrink: 0;
}

.brand-name {
	display: block;
	font-size: 18px;
	font-weight: 800;
	color: var(--primary);
	letter-spacing: -.02em;
	line-height: 1.1;
}

.brand-tagline {
	display: block;
	font-size: 11px;
	color: var(--text-muted);
	font-weight: 400;
}

.header-cta-btn {
	background: var(--accent);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	padding: 10px 18px;
	border-radius: var(--radius-sm);
	white-space: nowrap;
	transition: background .2s;
	flex-shrink: 0;
}

.header-cta-btn:hover {
	background: var(--accent-dark);
	color: #fff;
}

/* ── STICKY CTA (mobile) ───────────────────────────────────── */
.sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--bg-dark);
	z-index: 200;
	padding: 10px 18px;
	transform: translateY(110%);
	transition: transform .35s ease;
	box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}

.sticky-cta::after {
	content: '';
	position: absolute;
	bottom: -30px;
	left: 0;
	right: 0;
	height: 30px;
	background: var(--bg-dark);
}

.sticky-cta.visible {
	transform: translateY(0);
}

.sticky-cta-inner {
	max-width: var(--container);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.sticky-rating {
	display: flex;
	align-items: center;
	gap: 6px;
}

.sticky-stars {
	color: var(--star-gold);
	font-size: 16px;
}

.sticky-score {
	color: #fff;
	font-weight: 700;
	font-size: 14px;
}

.sticky-cta-btn {
	background: var(--accent);
	color: #fff;
	font-weight: 800;
	font-size: 15px;
	padding: 12px 24px;
	border-radius: var(--radius-sm);
	flex-shrink: 0;
}

/* ── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb-nav {
	background: var(--bg-soft);
	border-bottom: 1px solid var(--border);
	padding: 10px 0;
}

.breadcrumb-nav .container {
	font-size: 13px;
	color: var(--text-muted);
}

.breadcrumb-nav span {
	margin: 0 4px;
}

.breadcrumb-nav .current {
	color: var(--text-dark);
	font-weight: 600;
}

/* ── HERO ARTICLE ──────────────────────────────────────────── */
.article-hero {
	padding: 28px 0 36px;
}

.category-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--primary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	padding: 4px 12px;
	border-radius: 100px;
	margin-bottom: 16px;
}

/* ── HERO PRODUCT IMAGE ────────────────────────────────────── */
.hero-product-wrap {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 6px;
}

.hero-text-col {
	flex: 1;
}

.hero-img-col {
	display: flex;
	justify-content: center;
}

.hero-product-card {
	position: relative;
	background: linear-gradient(135deg, #e8f5ee 0%, #f0fdf4 100%);
	border: 1px solid #c6e0d0;
	border-radius: var(--radius-lg);
	padding: 20px 24px 14px;
	text-align: center;
	width: 100%;
	max-width: 300px;
	box-shadow: var(--shadow-md);
}

.hero-product-img {
	margin: 0 auto;
	max-width: 220px;
	filter: drop-shadow(0 6px 16px rgba(0,0,0,.18));
	transition: transform .3s ease;
}

.hero-product-card:hover .hero-product-img {
	transform: translateY(-4px);
}

.hero-product-badge {
	position: absolute;
	bottom: 54px;
	right: 14px;
}

.hero-product-rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #c6e0d0;
}

.hero-stars {
	color: var(--star-gold);
	font-size: 16px;
}

.hero-rating-text {
	font-size: 13px;
	font-weight: 600;
	color: var(--primary-dark);
}

@media (min-width: 600px) {
	.hero-product-wrap {
		flex-direction: row;
		align-items: flex-start;
		gap: 28px;
	}

	.hero-img-col {
		flex-shrink: 0;
		width: 230px;
	}

	.hero-product-card {
		max-width: 230px;
	}

	.hero-product-img {
		max-width: 180px;
	}

	.hero-product-badge {
		bottom: 48px;
		right: 10px;
	}
}

.article-title {
	font-family: var(--font-serif);
	font-size: clamp(22px, 5vw, 32px);
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.3;
	margin-bottom: 14px;
}

.article-subtitle {
	font-size: 18px;
	color: var(--text-body);
	line-height: 1.6;
	margin-bottom: 20px;
	border-left: 4px solid var(--primary);
	padding-left: 16px;
	font-style: italic;
}

/* Author Meta */
.author-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}

.author-avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.author-name {
	display: block;
	font-size: 15px;
	color: var(--text-dark);
}

.author-credentials {
	display: block;
	font-size: 13px;
	color: var(--text-muted);
}

/* Overall Rating Box */
.overall-rating-box {
	background: #fff;
	border: 2px solid var(--primary);
	border-radius: var(--radius-md);
	padding: 22px 20px;
	margin-bottom: 24px;
	display: flex;
	gap: 24px;
	align-items: center;
	box-shadow: var(--shadow-sm);
}

.rating-left {
	text-align: center;
	flex-shrink: 0;
	min-width: 90px;
}

.big-stars {
	color: var(--star-gold);
	font-size: 24px;
	line-height: 1;
}

.big-score {
	font-size: 42px;
	font-weight: 800;
	color: var(--text-dark);
	line-height: 1.1;
}

.big-score span {
	font-size: 20px;
	color: var(--text-muted);
}

.rating-label {
	font-size: 12px;
	color: var(--text-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.rating-divider {
	width: 1px;
	background: var(--border);
	align-self: stretch;
	flex-shrink: 0;
}

.rating-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.rating-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.rating-cat {
	font-size: 13px;
	color: var(--text-body);
	min-width: 120px;
	flex-shrink: 0;
}

.rating-bar {
	flex: 1;
	height: 8px;
	background: #e2e8f0;
	border-radius: 4px;
	overflow: hidden;
}

.rating-fill {
	height: 100%;
	background: var(--primary);
	border-radius: 4px;
}

.rating-num {
	font-size: 13px;
	font-weight: 700;
	color: var(--text-dark);
	min-width: 28px;
	text-align: right;
}

/* Verdict Box */
.verdict-box {
	border-radius: var(--radius-md);
	padding: 18px 20px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-bottom: 26px;
}

.verdict-positive {
	background: var(--primary-light);
	border-left: 5px solid var(--primary);
}

.verdict-icon {
	font-size: 22px;
	color: var(--primary);
	font-weight: 900;
	flex-shrink: 0;
	margin-top: 1px;
}

.verdict-content {
	font-size: 16px;
	color: var(--text-dark);
	line-height: 1.65;
}

/* Hero CTA */
.hero-cta-wrap {
	text-align: center;
	margin-top: 8px;
}

.hero-cta-btn {
	display: block;
	background: var(--accent);
	color: #fff;
	border-radius: var(--radius-md);
	padding: 18px 24px;
	text-align: center;
	margin-bottom: 10px;
	transition: background .2s, transform .15s;
}

.hero-cta-btn:hover {
	background: var(--accent-dark);
	transform: translateY(-1px);
	color: #fff;
}

.cta-main-text {
	display: block;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -.01em;
}

.cta-sub-text {
	display: block;
	font-size: 13px;
	font-weight: 400;
	opacity: .9;
	margin-top: 3px;
}

.cta-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 13px;
	color: var(--text-muted);
}

/* Pulse animation */
@keyframes pulse-ring {
	0%   { box-shadow: 0 0 0 0 rgba(230, 92, 0, .5); }
	70%  { box-shadow: 0 0 0 12px rgba(230, 92, 0, 0); }
	100% { box-shadow: 0 0 0 0 rgba(230, 92, 0, 0); }
}

.pulse-btn {
	animation: pulse-ring 2.2s ease infinite;
}

/* ── TABLE OF CONTENTS ─────────────────────────────────────── */
.toc-nav {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	margin: 0 0 32px;
}

.toc-nav .container {
	padding: 20px 18px;
}

.toc-header {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 15px;
	color: var(--text-dark);
	margin-bottom: 12px;
}

.toc-list {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px 16px;
	padding-left: 0;
	counter-reset: toc;
}

.toc-list li {
	counter-increment: toc;
}

.toc-list a {
	font-size: 14px;
	color: var(--primary);
	display: flex;
	gap: 6px;
	align-items: flex-start;
	line-height: 1.4;
}

.toc-list a::before {
	content: counter(toc) ".";
	font-weight: 700;
	color: var(--text-muted);
	flex-shrink: 0;
	min-width: 18px;
}

/* ── ARTICLE SECTIONS ──────────────────────────────────────── */
.article-section {
	padding: 40px 0;
	border-bottom: 1px solid var(--border);
}

.article-section.bg-soft {
	background: var(--bg-soft);
}

.article-section.bg-dark {
	background: var(--bg-dark);
}

.section-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	color: var(--primary);
	text-transform: uppercase;
	margin-bottom: 8px;
}

.light-label {
	color: #4ade80;
}

.section-title {
	font-family: var(--font-serif);
	font-size: clamp(20px, 4.5vw, 28px);
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.3;
	margin-bottom: 18px;
}

.light-title {
	color: #fff;
}

.article-body {
	font-size: 17px;
	line-height: 1.75;
	color: var(--text-body);
	margin-bottom: 16px;
}

.light-text {
	color: #cbd5e0;
}

/* ── CALLOUT BOXES ─────────────────────────────────────────── */
.callout-box {
	border-radius: var(--radius-md);
	padding: 18px 16px;
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 22px;
}

.callout-warning {
	background: #fffbeb;
	border: 1px solid #fbbf24;
}

.callout-icon {
	font-size: 26px;
	flex-shrink: 0;
	line-height: 1;
}

.callout-text {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-dark);
}

/* Pain Checklist */
.pain-checklist {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 20px 18px;
	margin-top: 20px;
	box-shadow: var(--shadow-sm);
}

.pain-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid var(--border);
	font-size: 16px;
	line-height: 1.5;
}

.pain-item:last-child {
	border-bottom: none;
}

.pain-check {
	color: var(--green-badge);
	font-weight: 900;
	font-size: 18px;
	flex-shrink: 0;
	line-height: 1.4;
}

/* ── HIGHLIGHT QUOTE ───────────────────────────────────────── */
.highlight-quote {
	background: var(--primary-light);
	border-left: 5px solid var(--primary);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	padding: 18px 20px;
	margin: 20px 0;
}

.highlight-quote blockquote {
	font-style: italic;
	font-size: 17px;
	color: var(--text-dark);
	line-height: 1.65;
	margin-bottom: 8px;
}

.highlight-quote cite {
	font-size: 13px;
	color: var(--text-muted);
	font-style: normal;
}

/* ── INFO CARDS ────────────────────────────────────────────── */
.info-cards-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 22px;
}

.info-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 20px;
	box-shadow: var(--shadow-sm);
}

.info-card-icon {
	font-size: 30px;
	margin-bottom: 10px;
}

.info-card h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 8px;
}

.info-card p {
	font-size: 15px;
	color: var(--text-body);
	line-height: 1.6;
}

/* ── PRODUCT SPOTLIGHT ─────────────────────────────────────── */
.product-spotlight {
	background: var(--primary-light);
	border-radius: var(--radius-md);
	padding: 24px 20px;
	margin: 22px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.product-review-img {
	max-width: 220px;
	margin: 0 auto;
}

.product-stats {
	width: 100%;
	border: 1px solid #c6e0d0;
	border-radius: var(--radius-sm);
	overflow: hidden;
	background: #fff;
}

.stat-row {
	display: flex;
	justify-content: space-between;
	padding: 11px 16px;
	border-bottom: 1px solid var(--border);
	font-size: 15px;
}

.stat-row:last-child {
	border-bottom: none;
}

.stat-label {
	color: var(--text-muted);
	font-weight: 500;
}

.stat-value {
	font-weight: 700;
	color: var(--text-dark);
	text-align: right;
}

/* Trust Badges Row */
.trust-badges-row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 24px;
}

.trust-badge-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: var(--text-muted);
	text-align: center;
	font-weight: 600;
	letter-spacing: .04em;
}

/* ── INGREDIENT LIST ───────────────────────────────────────── */
.ingredient-review-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 22px;
}

.ingredient-item {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.ingredient-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background: var(--primary-light);
	gap: 12px;
}

.ingredient-name-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ingredient-number {
	font-size: 13px;
	font-weight: 800;
	color: var(--primary);
	opacity: .7;
	flex-shrink: 0;
}

.ingredient-name {
	font-size: 17px;
	font-weight: 700;
	color: var(--text-dark);
}

.ingredient-rating {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
}

.ing-stars {
	color: var(--star-gold);
	font-size: 14px;
}

.ing-score {
	font-size: 13px;
	font-weight: 700;
	color: var(--text-dark);
}

.ingredient-body {
	padding: 18px 20px;
}

.ingredient-body p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-body);
	margin-bottom: 12px;
}

.ing-verdict {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.ing-verdict-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: .06em;
}

.ing-verdict-strong {
	font-size: 13px;
	font-weight: 700;
	color: var(--green-badge);
	background: #dcfce7;
	padding: 2px 10px;
	border-radius: 100px;
}

.ingredient-summary-box {
	background: var(--primary);
	color: #fff;
	border-radius: var(--radius-md);
	padding: 24px 20px;
	margin-top: 24px;
}

.ingredient-summary-box h3 {
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 10px;
}

.ingredient-summary-box p {
	font-size: 15px;
	line-height: 1.65;
	opacity: .9;
}

.ing-final-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
}

.ing-final-stars {
	color: var(--star-gold);
	font-size: 22px;
}

.ing-final-score {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
}

/* ── INLINE CTA SECTION ────────────────────────────────────── */
.inline-cta-section {
	background: var(--bg-dark);
	padding: 30px 0;
}

.inline-cta-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.inline-cta-content {
	flex: 1;
	min-width: 200px;
}

.inline-cta-pre {
	font-size: 13px;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 4px;
}

.inline-cta-content h3 {
	font-size: 19px;
	font-weight: 700;
	color: #fff;
	line-height: 1.35;
	margin-bottom: 14px;
}

.inline-cta-btn {
	display: inline-block;
	background: var(--accent);
	color: #fff;
	font-weight: 800;
	font-size: 15px;
	padding: 13px 26px;
	border-radius: var(--radius-sm);
	transition: background .2s;
}

.inline-cta-btn:hover {
	background: var(--accent-dark);
	color: #fff;
}

.inline-cta-guarantee {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex-shrink: 0;
}

.inline-cta-guarantee span {
	font-size: 12px;
	color: #94a3b8;
	margin-top: 6px;
	line-height: 1.3;
}

/* ── REVIEW CARDS ──────────────────────────────────────────── */
.review-cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 24px;
}

.review-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 20px 18px;
	box-shadow: var(--shadow-sm);
}

.review-card.featured-review {
	border-color: var(--primary);
	border-width: 2px;
	background: var(--primary-light);
}

.review-header {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.reviewer-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.reviewer-info {
	flex: 1;
}

.reviewer-name {
	display: block;
	font-size: 15px;
	color: var(--text-dark);
}

.reviewer-location {
	display: block;
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 3px;
}

.reviewer-stars {
	color: var(--star-gold);
	font-size: 15px;
}

.verified-badge {
	font-size: 12px;
	font-weight: 700;
	color: var(--green-badge);
	background: #dcfce7;
	padding: 3px 9px;
	border-radius: 100px;
	white-space: nowrap;
	align-self: flex-start;
}

.review-title {
	font-weight: 700;
	font-size: 16px;
	color: var(--text-dark);
	margin-bottom: 8px;
	line-height: 1.4;
}

.review-body {
	font-size: 15px;
	color: var(--text-body);
	line-height: 1.7;
	margin-bottom: 12px;
}

.review-meta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--text-muted);
}

/* Aggregate Rating */
.aggregate-rating-box {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 24px 20px;
	margin-top: 28px;
	text-align: center;
	box-shadow: var(--shadow-sm);
}

.agg-score {
	font-size: 52px;
	font-weight: 800;
	color: var(--text-dark);
	line-height: 1;
}

.agg-stars {
	color: var(--star-gold);
	font-size: 26px;
	margin: 4px 0;
}

.agg-label {
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 18px;
}

.agg-breakdown {
	text-align: left;
	max-width: 340px;
	margin: 0 auto;
}

.agg-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
}

.agg-row > span:first-child {
	font-size: 14px;
	color: var(--text-muted);
	min-width: 30px;
}

.agg-bar {
	flex: 1;
	height: 10px;
	background: #e2e8f0;
	border-radius: 5px;
	overflow: hidden;
}

.agg-fill {
	height: 100%;
	background: var(--star-gold);
	border-radius: 5px;
}

.agg-row > span:last-child {
	font-size: 13px;
	color: var(--text-muted);
	min-width: 32px;
	text-align: right;
}

/* ── PROS & CONS ───────────────────────────────────────────── */
.pros-cons-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 22px;
}

.pros-column,
.cons-column {
	background: #fff;
	border-radius: var(--radius-md);
	padding: 20px 18px;
	box-shadow: var(--shadow-sm);
}

.pros-column {
	border-top: 4px solid var(--green-badge);
}

.cons-column {
	border-top: 4px solid #f59e0b;
}

.pros-header,
.cons-header {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 14px;
}

.pros-header {
	color: var(--green-badge);
}

.cons-header {
	color: #d97706;
}

.pros-list,
.cons-list {
	list-style: none;
	padding: 0;
}

.pros-list li,
.cons-list li {
	padding: 8px 0;
	border-bottom: 1px solid var(--border);
	font-size: 15px;
	line-height: 1.5;
	color: var(--text-body);
}

.pros-list li {
	padding-left: 20px;
	position: relative;
}

.pros-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--green-badge);
	font-weight: 700;
}

.cons-list li {
	padding-left: 20px;
	position: relative;
}

.cons-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #d97706;
	font-weight: 700;
}

.pros-list li:last-child,
.cons-list li:last-child {
	border-bottom: none;
}

/* ── COMPARISON TABLE ──────────────────────────────────────── */
.comparison-table-wrap {
	overflow-x: auto;
	margin-top: 20px;
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	min-width: 440px;
}

.comparison-table thead th {
	background: var(--primary);
	color: #fff;
	padding: 13px 14px;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
}

.comparison-table thead th:first-child {
	text-align: left;
}

.comparison-table .highlight-col {
	background: #f0fdf4;
}

.comparison-table thead .highlight-col {
	background: #166534;
}

.comparison-table tbody td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--border);
	vertical-align: middle;
	text-align: center;
}

.comparison-table tbody td:first-child {
	text-align: left;
	font-weight: 500;
	color: var(--text-dark);
}

.comparison-table tbody tr:last-child td {
	border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) td {
	background: var(--bg-soft);
}

.comparison-table tbody tr:nth-child(even) .highlight-col {
	background: #e8f5ee;
}

.yes  { color: var(--green-badge); font-weight: 700; }
.no   { color: var(--red-badge);   font-weight: 700; }
.partial { color: #d97706; font-weight: 700; }

/* ── PRICING CARDS (REVIEW) ────────────────────────────────── */
.pricing-cards-review {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 24px;
}

.price-card-review {
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: var(--radius-lg);
	padding: 26px 22px;
	text-align: center;
	position: relative;
}

.price-card-review.featured-price {
	background: rgba(255,255,255,.12);
	border-color: var(--accent);
	border-width: 2px;
}

.featured-ribbon {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
	padding: 4px 18px;
	border-radius: 100px;
	white-space: nowrap;
}

.price-card-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	color: #94a3b8;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.price-card-name {
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 4px;
}

.price-card-desc {
	font-size: 14px;
	color: #94a3b8;
	margin-bottom: 16px;
}

.price-card-img {
	margin: 0 auto 16px;
}

.price-card-img img {
	margin: 0 auto;
}

.price-card-amount {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 4px;
}

.price-strike {
	font-size: 18px;
	color: #94a3b8;
	text-decoration: line-through;
}

.price-final {
	font-size: 40px;
	font-weight: 900;
	color: #fff;
}

.price-per-bottle {
	font-size: 14px;
	color: #94a3b8;
	margin-bottom: 6px;
}

.price-save {
	background: #166534;
	color: #4ade80;
	font-size: 13px;
	font-weight: 700;
	padding: 4px 14px;
	border-radius: 100px;
	display: inline-block;
	margin-bottom: 16px;
}

.price-save.highlight-save {
	background: var(--accent);
	color: #fff;
	font-size: 14px;
}

.price-features {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	text-align: left;
}

.price-features li {
	font-size: 14px;
	color: #cbd5e0;
	padding: 6px 0;
	border-bottom: 1px solid rgba(255,255,255,.08);
}

.price-features li:last-child {
	border-bottom: none;
}

.price-cta-btn {
	display: block;
	width: 100%;
	padding: 16px;
	border-radius: var(--radius-sm);
	font-size: 16px;
	font-weight: 800;
	text-align: center;
	transition: background .2s, transform .15s;
}

.primary-price-btn {
	background: var(--accent);
	color: #fff;
}

.primary-price-btn:hover {
	background: var(--accent-dark);
	transform: translateY(-2px);
	color: #fff;
}

.secondary-price-btn {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255,255,255,.3);
}

.secondary-price-btn:hover {
	border-color: #fff;
	background: rgba(255,255,255,.07);
	color: #fff;
}

/* Guarantee Review Box */
.guarantee-review-box {
	display: flex;
	align-items: center;
	gap: 20px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--radius-md);
	padding: 22px 20px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.guarantee-review-box img {
	flex-shrink: 0;
}

.guarantee-text h3 {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
}

.guarantee-text p {
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.6;
}

/* Buy Trust Row */
.buy-trust-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 24px;
}

.buy-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #94a3b8;
}

/* ── TIMELINE RESULTS ──────────────────────────────────────── */
.timeline-results {
	margin-top: 26px;
	position: relative;
	padding-left: 28px;
}

.timeline-results::before {
	content: "";
	position: absolute;
	left: 7px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--border);
}

.timeline-item {
	position: relative;
	margin-bottom: 30px;
}

.timeline-marker {
	position: absolute;
	left: -28px;
	top: 4px;
	width: 14px;
	height: 14px;
	background: var(--border);
	border-radius: 50%;
	border: 2px solid #fff;
	box-shadow: 0 0 0 2px var(--border);
}

.timeline-marker.positive {
	background: #22c55e;
	box-shadow: 0 0 0 2px #22c55e;
}

.timeline-marker.excellent {
	background: var(--primary);
	box-shadow: 0 0 0 2px var(--primary);
}

.timeline-week {
	display: block;
	font-size: 11px;
	font-weight: 800;
	background: var(--primary);
	color: #fff;
	padding: 2px 10px;
	border-radius: 100px;
	position: absolute;
	top: -10px;
	left: 4px;
	white-space: nowrap;
}

.timeline-item:first-child .timeline-week {
	background: var(--text-muted);
}

.timeline-item:nth-child(2) .timeline-week {
	background: #22c55e;
}

.timeline-content {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 36px 16px 16px;
	box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 8px;
}

.timeline-content p {
	font-size: 15px;
	line-height: 1.65;
	color: var(--text-body);
}

/* ── FAQ ACCORDION ─────────────────────────────────────────── */
.faq-accordion {
	margin-top: 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.faq-q {
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 20px;
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	line-height: 1.4;
	transition: background .15s;
}

.faq-q:hover {
	background: var(--bg-soft);
}

.faq-arrow {
	font-size: 22px;
	font-weight: 300;
	color: var(--primary);
	flex-shrink: 0;
	transition: transform .25s;
	line-height: 1;
}

.faq-item.open .faq-arrow {
	transform: rotate(45deg);
}

.faq-a {
	display: none;
	padding: 0 20px 18px;
	border-top: 1px solid var(--border);
}

.faq-item.open .faq-a {
	display: block;
}

.faq-a p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-body);
	padding-top: 14px;
}

/* ── FINAL VERDICT ─────────────────────────────────────────── */
.final-verdict-box {
	background: var(--bg-soft);
	border: 2px solid var(--primary);
	border-radius: var(--radius-lg);
	padding: 28px 22px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 28px;
	box-shadow: var(--shadow-md);
}

.verdict-score-wrap {
	text-align: center;
}

.verdict-big-stars {
	color: var(--star-gold);
	font-size: 30px;
}

.verdict-big-score {
	font-size: 46px;
	font-weight: 900;
	color: var(--text-dark);
	line-height: 1;
	margin: 4px 0 10px;
}

.verdict-badge-final {
	display: inline-block;
	background: var(--primary);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .1em;
	padding: 5px 16px;
	border-radius: 100px;
}

.verdict-summary p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-body);
	margin-bottom: 12px;
}

.verdict-summary p:last-child {
	margin-bottom: 0;
}

/* Final CTA */
.final-cta-wrap {
	text-align: center;
}

.final-cta-btn {
	display: block;
	background: var(--accent);
	color: #fff;
	border-radius: var(--radius-md);
	padding: 20px 24px;
	margin-bottom: 16px;
	transition: background .2s, transform .15s;
}

.final-cta-btn:hover {
	background: var(--accent-dark);
	transform: translateY(-2px);
	color: #fff;
}

.final-cta-main {
	display: block;
	font-size: 20px;
	font-weight: 800;
}

.final-cta-sub {
	display: block;
	font-size: 13px;
	opacity: .9;
	margin-top: 4px;
}

.final-cta-badges {
	display: flex;
	justify-content: center;
}

/* ── RELATED SECTION ───────────────────────────────────────── */
.related-section {
	background: var(--bg-soft);
	padding: 40px 0;
	border-top: 1px solid var(--border);
}

.related-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 20px;
}

.related-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.related-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 20px;
	box-shadow: var(--shadow-sm);
	cursor: pointer;
	transition: box-shadow .2s;
}

.related-card:hover {
	box-shadow: var(--shadow-md);
}

.related-icon {
	font-size: 28px;
	margin-bottom: 10px;
}

.related-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 6px;
	line-height: 1.4;
}

.related-card p {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.55;
	margin-bottom: 10px;
}

.related-read {
	font-size: 13px;
	font-weight: 700;
	color: var(--primary);
}

/* ── FOOTER ────────────────────────────────────────────────── */
.review-footer {
	background: #111827;
	padding: 40px 0;
	color: #9ca3af;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 3px;
	margin-bottom: 20px;
}

.brand-name-footer {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
}

.footer-tagline {
	font-size: 13px;
	color: #6b7280;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
}

.footer-links a {
	font-size: 14px;
	color: #9ca3af;
	text-decoration: none;
	transition: color .15s;
}

.footer-links a:hover {
	color: #fff;
}

.footer-disclaimer {
	font-size: 13px;
	line-height: 1.65;
	color: #6b7280;
}

.footer-disclaimer p {
	margin-bottom: 12px;
}

.footer-copyright {
	margin-top: 20px;
	color: #4b5563;
}

/* ── SCROLL PROGRESS BAR ───────────────────────────────────── */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: var(--accent);
	z-index: 9999;
	width: 0%;
	transition: width .1s linear;
}

/* ═══════════════════════════════════════════════════════════ */
/* TABLET (min 640px)                                          */
/* ═══════════════════════════════════════════════════════════ */
@media (min-width: 640px) {

	.info-cards-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.pros-cons-grid {
		grid-template-columns: 1fr 1fr;
	}

	.pricing-cards-review {
		flex-direction: row;
		align-items: flex-start;
	}

	.price-card-review {
		flex: 1;
	}

	.product-spotlight {
		flex-direction: row;
		align-items: flex-start;
	}

	.product-review-img {
		max-width: 180px;
	}

	.product-stats {
		flex: 1;
	}

	.related-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.toc-list {
		grid-template-columns: 1fr 1fr;
	}

	.final-verdict-box {
		flex-direction: row;
		align-items: flex-start;
	}

	.verdict-score-wrap {
		flex-shrink: 0;
		min-width: 180px;
	}

}

/* ═══════════════════════════════════════════════════════════ */
/* DESKTOP (min 768px)                                         */
/* ═══════════════════════════════════════════════════════════ */
@media (min-width: 768px) {

	.review-cards {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}

	.review-card.featured-review {
		grid-column: 1 / -1;
	}

	.buy-trust-row {
		grid-template-columns: repeat(4, 1fr);
	}

	.ingredient-header {
		flex-wrap: nowrap;
	}

	.inline-cta-box {
		flex-wrap: nowrap;
	}

}

/* ═══════════════════════════════════════════════════════════ */
/* UTILITIES                                                   */
/* ═══════════════════════════════════════════════════════════ */

/* Large tap targets for 45+ users */
button, a, [role="button"] {
	-webkit-tap-highlight-color: transparent;
}

.faq-q {
	min-height: 60px;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
	outline: 3px solid var(--primary);
	outline-offset: 2px;
	border-radius: 4px;
}

/* Smooth reveal animation */
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
	animation: fadeInUp .5s ease forwards;
}
