/* ==========================================================================
   Hoverboards Guide — Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
	--accent: #FF7A1A;
	--bg: #fffdfa;
	--ink: #0f172a;
	--ink-light: #475569;
	--ink-faint: #94a3b8;
	--border: #ece6dc;
	--border-light: #f1ece3;
	--card-bg: #ffffff;
	--section-bg: #fbf7f0;
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 18px;
	--radius-xl: 24px;
	--radius-pill: 999px;
	--shadow-card: 0 1px 3px rgba(15,23,42,0.04), 0 4px 12px rgba(15,23,42,0.05);
	--shadow-hover: 0 10px 30px rgba(15,23,42,0.08);
	--shadow-float: 0 20px 50px rgba(15,23,42,0.12), 0 4px 12px rgba(15,23,42,0.06);
}

/* --------------------------------------------------------------------------
   Base Reset & Typography
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	max-width: none; /* prevent WordPress layout-support CSS from capping width at $content_width */
	font-family: 'Geist', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
	background: var(--bg);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "ss01", "cv11";
	line-height: 1.5;
	font-size: 16px;
}

::selection {
	background: var(--accent);
	color: var(--ink);
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--ink);
}

p { margin-top: 0; }

a { color: inherit; }

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

ul, ol { margin: 0; padding: 0; }

button {
	font-family: inherit;
}

/* --------------------------------------------------------------------------
   Accessibility
   -------------------------------------------------------------------------- */
.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.skip-link:focus {
	position: fixed;
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	overflow: visible;
	padding: 12px 20px;
	background: var(--ink);
	color: #fff;
	border-radius: var(--radius-pill);
	font-weight: 700;
	font-size: 14px;
	z-index: 9999;
	text-decoration: none;
}

:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Layout Utilities
   -------------------------------------------------------------------------- */
.container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 32px;
	padding-right: 32px;
}

.py-lg  { padding-top: 56px; padding-bottom: 56px; }
.py-md  { padding-top: 32px; padding-bottom: 32px; }
.pt-md  { padding-top: 32px; }
.pb-md  { padding-bottom: 32px; }
.mb-lg  { margin-bottom: 28px; }

/* --------------------------------------------------------------------------
   Sticky Navbar
   -------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255,253,250,0.7);
	backdrop-filter: saturate(140%) blur(10px);
	-webkit-backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid transparent;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header.scrolled {
	background: rgba(255,253,250,0.92);
	border-bottom-color: var(--border);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	padding-bottom: 14px;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: inherit;
}

.nav-brand__icon {
	width: 32px;
	height: 32px;
	border-radius: 9px;
	background: var(--accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 -2px 0 rgba(0,0,0,0.12);
	flex-shrink: 0;
}

.nav-brand__name {
	font-weight: 800;
	font-size: 17px;
	letter-spacing: -0.01em;
	color: var(--ink);
}

.nav-brand__year {
	font-size: 11px;
	color: #6b7280;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.nav-links {
	display: flex;
	gap: 24px;
	align-items: center;
}

.nav-link {
	text-decoration: none;
	color: #475569;
	font-size: 14px;
	font-weight: 600;
	transition: color 0.15s ease;
}
.nav-link:hover { color: var(--accent); }

.nav-cta {
	font-size: 13px;
	font-weight: 700;
	padding: 8px 14px;
	border-radius: var(--radius-pill);
	background: var(--ink);
	color: #fff;
	text-decoration: none;
	transition: opacity 0.15s ease;
}
.nav-cta:hover { opacity: 0.85; }

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
	padding-top: 56px;
	padding-bottom: 56px;
	position: relative;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 56px;
	align-items: center;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: var(--radius-pill);
	background: #fef3e8;
	color: #b45309;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
	margin-bottom: 20px;
}

.hero__badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #f59e0b;
}

.hero__title {
	font-size: clamp(36px, 5vw, 60px);
	line-height: 1.04;
	letter-spacing: -0.02em;
	font-weight: 800;
	margin: 0;
	color: var(--ink);
}

.hero__title-accent {
	color: var(--accent);
}

.hero__sub {
	font-size: 19px;
	line-height: 1.55;
	color: #475569;
	margin-top: 18px;
	margin-bottom: 28px;
	max-width: 540px;
}

.hero__ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 22px;
	border-radius: var(--radius-pill);
	background: var(--accent);
	color: var(--ink);
	font-weight: 700;
	text-decoration: none;
	font-size: 15px;
	box-shadow: 0 6px 18px rgba(255,122,26,0.3);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(255,122,26,0.4);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 22px;
	border-radius: var(--radius-pill);
	background: #fff;
	color: var(--ink);
	font-weight: 700;
	text-decoration: none;
	font-size: 15px;
	border: 1.5px solid var(--ink);
	transition: background 0.15s ease;
}
.btn-secondary:hover { background: var(--section-bg); }

.hero__trust-chips {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 28px;
	color: #64748b;
	font-size: 13px;
	flex-wrap: wrap;
}

.trust-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* Hero Visual */
.hero-visual {
	position: relative;
	aspect-ratio: 1/1;
	max-width: 520px;
	margin-left: auto;
}

.hero-visual__bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 30%, #FFE6D1 0%, transparent 60%),
	            radial-gradient(circle at 70% 70%, #DFF7F6 0%, transparent 60%);
	border-radius: 32px;
}

.hero-visual__card {
	position: absolute;
	background: #fff;
	border-radius: 18px;
	box-shadow: var(--shadow-float);
	padding: 16px;
}

.hero-visual__card--a {
	left: 5%;
	top: 8%;
	width: 62%;
	aspect-ratio: 4/3;
	transform: rotate(-3deg);
}

.hero-visual__card--b {
	right: 4%;
	bottom: 6%;
	width: 58%;
	aspect-ratio: 4/3;
	transform: rotate(4deg);
}

.hero-visual__card-name {
	font-size: 12px;
	font-weight: 700;
	color: var(--ink);
	margin-top: 10px;
}

.hero-visual__card-sub {
	font-size: 11px;
	color: #64748b;
	margin-top: 2px;
}

.hero-visual__stat {
	position: absolute;
	background: #fff;
	border-radius: 12px;
	padding: 10px 14px;
	box-shadow: 0 10px 30px rgba(15,23,42,0.12);
	font-size: 12px;
	font-weight: 600;
	color: var(--ink);
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero-visual__stat--tested {
	left: -2%;
	bottom: 18%;
}

.hero-visual__stat--savings {
	right: -2%;
	top: 12%;
}

.hero-visual__stat-icon {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: #dcfce7;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-visual__stat-label {
	font-size: 10px;
	color: #64748b;
	font-weight: 500;
}

.hero-visual__stat-value {
	font-size: 18px;
	font-weight: 800;
	color: var(--accent);
}

/* --------------------------------------------------------------------------
   Section Headings
   -------------------------------------------------------------------------- */
.section-heading {
	margin-bottom: 28px;
	scroll-margin-top: 80px;
}

.section-heading__kicker {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--accent);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.section-heading__title {
	font-size: clamp(28px, 3.6vw, 40px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0;
	font-weight: 800;
	color: var(--ink);
}

.section-heading__sub {
	font-size: 17px;
	color: #475569;
	max-width: 640px;
	margin-top: 12px;
	margin-bottom: 0;
	line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Product Image Placeholder
   -------------------------------------------------------------------------- */
.product-image {
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-image--compact {
	aspect-ratio: 16/10;
}

.product-image__pattern {
	position: absolute;
	inset: 0;
	opacity: 0.6;
}

.product-image__label {
	position: absolute;
	bottom: 8px;
	left: 10px;
	font-family: ui-monospace, SFMono-Regular, monospace;
	font-size: 10px;
	letter-spacing: 0.04em;
	color: #475569;
	background: rgba(255,255,255,0.7);
	padding: 2px 6px;
	border-radius: 4px;
}

.product-image svg {
	position: relative;
	z-index: 1;
}

/* --------------------------------------------------------------------------
   Star Rating
   -------------------------------------------------------------------------- */
.stars {
	display: inline-flex;
	align-items: center;
	gap: 1px;
	color: #F59E0B;
}

/* --------------------------------------------------------------------------
   Amazon CTA Button
   -------------------------------------------------------------------------- */
.cta-amazon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--accent);
	color: var(--ink);
	font-weight: 700;
	border-radius: var(--radius-pill);
	text-decoration: none;
	box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 6px 14px rgba(255,122,26,0.25);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	white-space: nowrap;
	font-size: 14px;
	padding: 12px 18px;
}
.cta-amazon:hover {
	transform: translateY(-1px);
	box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 10px 22px rgba(255,122,26,0.35);
}

.cta-amazon--sm  { padding: 8px 12px; font-size: 13px; }
.cta-amazon--md  { padding: 12px 18px; font-size: 14px; }
.cta-amazon--lg  { padding: 16px 26px; font-size: 16px; }
.cta-amazon--full { display: flex; width: 100%; }

/* --------------------------------------------------------------------------
   Top Picks Grid
   -------------------------------------------------------------------------- */
.top-picks {
	padding-top: 32px;
	padding-bottom: 56px;
}

.picks-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.pick-card {
	background: var(--card-bg);
	border-radius: var(--radius-lg);
	padding: 20px;
	border: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: relative;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pick-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

.pick-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--ink);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: var(--radius-pill);
	letter-spacing: 0.04em;
	z-index: 2;
}

.pick-card__name {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--ink);
}

.pick-card__tagline {
	margin: 6px 0 0;
	font-size: 13px;
	color: #64748b;
	line-height: 1.4;
}

.pick-card__rating {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #475569;
}

.pick-card__rating-value {
	font-weight: 700;
	color: var(--ink);
}

.pick-card__features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
	padding: 10px 0;
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
}

.pick-card__feature-label {
	font-size: 10px;
	color: var(--ink-faint);
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.pick-card__feature-value {
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
	margin-top: 2px;
}

.pick-card__bullets {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.pick-card__bullet {
	display: flex;
	gap: 8px;
	font-size: 12.5px;
	color: #334155;
	line-height: 1.45;
}

.pick-card__bullet-icon {
	flex-shrink: 0;
	margin-top: 2px;
}

.pick-card__price-area {
	margin-top: auto;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
}

.pick-card__price-label {
	font-size: 10px;
	color: var(--ink-faint);
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.pick-card__price {
	font-size: 22px;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -0.02em;
}

.pick-card__compare-btn {
	background: transparent;
	color: #475569;
	border: 1px solid #cbd5e1;
	border-radius: var(--radius-pill);
	padding: 8px 12px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	font-family: inherit;
}
.pick-card__compare-btn:hover,
.pick-card__compare-btn.added {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

/* --------------------------------------------------------------------------
   Category Section (Hoverboards / Scooters)
   -------------------------------------------------------------------------- */
.category-section {
	padding-top: 32px;
	padding-bottom: 32px;
}

.category-section__intro {
	font-size: 15px;
	color: #475569;
	max-width: 720px;
	line-height: 1.6;
	margin-top: -8px;
	margin-bottom: 24px;
}

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

.cat-card {
	background: var(--card-bg);
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cat-card__image-wrap {
	position: relative;
}

.cat-card__tag {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #fff;
	color: var(--ink);
	font-size: 10.5px;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: var(--radius-pill);
	letter-spacing: 0.03em;
	box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.cat-card__name {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
}

.cat-card__rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 4px;
	font-size: 12px;
	color: #64748b;
}

.cat-card__rating-value {
	font-weight: 600;
	color: var(--ink);
}

.cat-card__specs {
	display: flex;
	gap: 14px;
	font-size: 12px;
	color: #475569;
	padding-top: 8px;
	border-top: 1px solid var(--border-light);
}

.cat-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: auto;
}

.cat-card__price {
	font-size: 18px;
	font-weight: 800;
	color: var(--ink);
}

/* --------------------------------------------------------------------------
   Compare Table
   -------------------------------------------------------------------------- */
.compare-section {
	padding-top: 32px;
	padding-bottom: 56px;
}

.compare-controls {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 18px;
	align-items: center;
}

.filter-tabs,
.sort-tabs {
	display: flex;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
	padding: 4px;
	gap: 2px;
}

.filter-tab,
.sort-tab {
	padding: 8px 16px;
	border: none;
	border-radius: var(--radius-pill);
	background: transparent;
	color: #475569;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
	font-family: inherit;
}
.filter-tab.active {
	background: var(--ink);
	color: #fff;
}
.sort-tab.active {
	background: var(--accent);
	color: var(--ink);
}

.sort-controls {
	margin-left: auto;
	display: flex;
	gap: 8px;
	align-items: center;
	font-size: 13px;
	color: #64748b;
}

.compare-table-wrap {
	background: var(--card-bg);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	overflow: hidden;
}

.compare-table-scroll {
	overflow-x: auto;
}

.compare-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	min-width: 720px;
}

.compare-table thead tr {
	background: var(--section-bg);
	text-align: left;
	color: #64748b;
	font-size: 11px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.compare-table th {
	padding: 14px 18px;
	font-weight: 700;
}

.compare-table th:last-child {
	text-align: right;
}

.compare-table tbody tr {
	border-top: 1px solid var(--border-light);
}

.compare-table td {
	padding: 16px 18px;
	color: #334155;
	vertical-align: middle;
}

.compare-table td:last-child {
	text-align: right;
}

.compare-table__product {
	display: flex;
	align-items: center;
	gap: 12px;
}

.compare-table__icon {
	width: 56px;
	height: 40px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.compare-table__product-name {
	font-weight: 700;
	color: var(--ink);
}

.compare-table__product-cat {
	font-size: 11px;
	color: var(--ink-faint);
	margin-top: 1px;
}

.compare-table__price {
	font-weight: 800;
	color: var(--ink);
}

.compare-table tbody tr[data-hidden="true"] {
	display: none;
}

/* --------------------------------------------------------------------------
   Quiz Section
   -------------------------------------------------------------------------- */
.quiz-section {
	padding-top: 32px;
	padding-bottom: 56px;
}

.quiz-card {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	border-radius: var(--radius-xl);
	padding: 40px;
	color: #fff;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.quiz-card__orb {
	position: absolute;
	right: -80px;
	top: -80px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
	opacity: 0.25;
	pointer-events: none;
}

.quiz-card__kicker {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--accent);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.quiz-card__title {
	font-size: clamp(28px, 3.4vw, 38px);
	margin: 0;
	line-height: 1.1;
	letter-spacing: -0.02em;
	font-weight: 800;
}

.quiz-card__sub {
	margin-top: 14px;
	font-size: 16px;
	color: #cbd5e1;
	line-height: 1.55;
	max-width: 380px;
}

.quiz-progress {
	margin-top: 20px;
	display: flex;
	gap: 6px;
}

.quiz-progress__bar {
	flex: 1;
	height: 4px;
	border-radius: 2px;
	background: rgba(255,255,255,0.15);
	transition: background 0.3s ease;
}
.quiz-progress__bar.active {
	background: var(--accent);
}

.quiz-panel {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--radius-md);
	padding: 24px;
	position: relative;
	z-index: 1;
}

.quiz-step-label {
	font-size: 12px;
	color: #94a3b8;
	font-weight: 600;
	margin-bottom: 8px;
}

.quiz-question {
	margin: 0 0 20px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
}

.quiz-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.quiz-option-btn {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	color: #fff;
	border-radius: 12px;
	padding: 14px 18px;
	text-align: left;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background 0.15s ease, border-color 0.15s ease;
	font-family: inherit;
}
.quiz-option-btn:hover {
	background: rgba(255,122,26,0.15);
	border-color: var(--accent);
}

.quiz-result__kicker {
	font-size: 12px;
	color: var(--accent);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.quiz-result__name {
	margin: 0 0 4px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
}

.quiz-result__tagline {
	margin: 0 0 14px;
	font-size: 13px;
	color: #94a3b8;
}

.quiz-result__image {
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 14px;
}

.quiz-result__specs {
	display: flex;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 12px;
	color: #cbd5e1;
	flex-wrap: wrap;
}

.quiz-retake-btn {
	margin-top: 10px;
	width: 100%;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.2);
	color: #cbd5e1;
	border-radius: var(--radius-pill);
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: border-color 0.15s ease;
}
.quiz-retake-btn:hover { border-color: rgba(255,255,255,0.5); }

/* Quiz: hidden state — requires JS */
.js .quiz-step    { display: none; }
.js .quiz-step.active { display: block; }
.js .quiz-result  { display: none; }
.js .quiz-result.active { display: block; }

/* No-JS fallbacks: show all quiz steps and open FAQ bodies */
.no-js .quiz-result { display: none; }
.no-js .faq-item__body { max-height: none; overflow: visible; }

/* --------------------------------------------------------------------------
   Buying Guide
   -------------------------------------------------------------------------- */
.buying-guide {
	padding-top: 32px;
	padding-bottom: 56px;
}

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

.guide-card {
	background: var(--card-bg);
	border-radius: var(--radius-md);
	padding: 22px;
	border: 1px solid var(--border);
}

.guide-card__icon-wrap {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #fef3e8;
	color: var(--accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.guide-card__title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
}

.guide-card__text {
	margin: 8px 0 0;
	font-size: 14px;
	color: #475569;
	line-height: 1.55;
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-section {
	padding-top: 32px;
	padding-bottom: 56px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 820px;
}

.faq-item {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
}

.faq-item__trigger {
	width: 100%;
	text-align: left;
	padding: 18px 20px;
	background: transparent;
	border: none;
	font-size: 15.5px;
	font-weight: 700;
	color: var(--ink);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-family: inherit;
}

.faq-item__icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--border-light);
	color: var(--ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	flex-shrink: 0;
	transition: background 0.15s ease, transform 0.15s ease;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
	background: var(--accent);
	transform: rotate(45deg);
}

.faq-item__body {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease;
}

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

.faq-item__answer {
	padding: 0 20px 20px;
	font-size: 14.5px;
	color: #475569;
	line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Trust Section
   -------------------------------------------------------------------------- */
.trust-section {
	padding-top: 32px;
	padding-bottom: 32px;
}

.trust-card {
	background: var(--section-bg);
	border-radius: var(--radius-xl);
	padding: 40px;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 40px;
	align-items: center;
	border: 1px solid var(--border);
}

.trust-card__kicker {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--accent);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.trust-card__title {
	font-size: clamp(26px, 3vw, 34px);
	margin: 0;
	line-height: 1.15;
	letter-spacing: -0.02em;
	font-weight: 800;
	color: var(--ink);
}

.trust-card__sub {
	margin-top: 14px;
	font-size: 16px;
	color: #475569;
	line-height: 1.6;
	max-width: 480px;
}

.trust-badges {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff;
	border: 1px solid var(--border);
	padding: 8px 12px;
	border-radius: var(--radius-pill);
	font-size: 12px;
	font-weight: 600;
	color: var(--ink);
}

.trust-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.trust-stat {
	background: #fff;
	border-radius: var(--radius-md);
	padding: 20px;
	border: 1px solid var(--border);
}

.trust-stat__n {
	font-size: 28px;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -0.03em;
}

.trust-stat__label {
	font-size: 13px;
	color: #64748b;
	margin-top: 4px;
}

/* --------------------------------------------------------------------------
   Final CTA Section
   -------------------------------------------------------------------------- */
.final-cta-section {
	padding-top: 32px;
	padding-bottom: 56px;
}

.final-cta-card {
	background: var(--accent);
	border-radius: var(--radius-xl);
	padding: 48px 40px;
	text-align: center;
	color: var(--ink);
	position: relative;
	overflow: hidden;
}

.final-cta-card__pattern {
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 12px, transparent 12px 28px);
	pointer-events: none;
}

.final-cta-card__inner {
	position: relative;
}

.final-cta-card__title {
	font-size: clamp(28px, 3.6vw, 42px);
	margin: 0;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

.final-cta-card__sub {
	margin-top: 12px;
	margin-bottom: 26px;
	font-size: 17px;
	line-height: 1.5;
	max-width: 540px;
	margin-left: auto;
	margin-right: auto;
}

.final-cta-card__btns {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-dark {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--ink);
	color: #fff;
	padding: 14px 24px;
	border-radius: var(--radius-pill);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: opacity 0.15s ease;
}
.btn-dark:hover { opacity: 0.85; }

.btn-white {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: var(--ink);
	padding: 14px 24px;
	border-radius: var(--radius-pill);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border: 1.5px solid var(--ink);
	transition: background 0.15s ease;
}
.btn-white:hover { background: var(--section-bg); }

/* --------------------------------------------------------------------------
   Compare Drawer (sticky bottom)
   -------------------------------------------------------------------------- */
.compare-drawer {
	position: fixed;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%) translateY(calc(100% + 32px));
	background: var(--ink);
	color: #fff;
	border-radius: var(--radius-md);
	padding: 12px 14px;
	box-shadow: 0 20px 50px rgba(15,23,42,0.35);
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 100;
	max-width: calc(100% - 32px);
	transition: transform 0.3s ease;
}
.compare-drawer.visible {
	transform: translateX(-50%) translateY(0);
}

.compare-drawer__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--accent);
	flex-shrink: 0;
}

.compare-drawer__items {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.compare-drawer__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255,255,255,0.08);
	padding: 6px 10px;
	border-radius: var(--radius-pill);
	font-size: 12px;
	font-weight: 600;
}

.compare-drawer__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.compare-drawer__remove {
	background: transparent;
	border: none;
	color: #94a3b8;
	cursor: pointer;
	padding: 0;
	margin-left: 2px;
	font-size: 14px;
	line-height: 1;
}

.compare-drawer__view {
	background: var(--accent);
	color: var(--ink);
	padding: 8px 14px;
	border-radius: var(--radius-pill);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.compare-drawer__clear {
	background: transparent;
	border: none;
	color: #94a3b8;
	cursor: pointer;
	font-size: 12px;
	font-family: inherit;
}

/* --------------------------------------------------------------------------
   Sticky Mobile CTA
   -------------------------------------------------------------------------- */
.sticky-mobile-cta {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 12px 16px;
	background: rgba(255,253,250,0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-top: 1px solid var(--border);
	z-index: 90;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}
.sticky-mobile-cta.visible {
	transform: translateY(0);
}

.sticky-mobile-cta__link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--accent);
	color: var(--ink);
	padding: 14px 20px;
	border-radius: var(--radius-pill);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(255,122,26,0.3);
}

/* --------------------------------------------------------------------------
   Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--ink);
	color: #cbd5e1;
	padding-top: 48px;
	padding-bottom: 32px;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 36px;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.footer-brand__icon {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: var(--accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.footer-brand__name {
	font-weight: 800;
	color: #fff;
	font-size: 17px;
}

.footer-about {
	font-size: 13px;
	line-height: 1.6;
	color: #94a3b8;
	margin: 0;
	max-width: 320px;
}

.footer-col__title {
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.footer-col__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-col__links a {
	color: #cbd5e1;
	text-decoration: none;
	font-size: 13.5px;
	transition: color 0.15s ease;
}
.footer-col__links a:hover { color: #fff; }

.footer-bottom {
	padding-top: 24px;
	border-top: 1px solid #1e293b;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 12px;
	color: #64748b;
}

.footer-disclosure {
	max-width: 600px;
	line-height: 1.6;
}

.footer-disclosure strong {
	color: #cbd5e1;
}

.footer-legal-links {
	display: flex;
	gap: 16px;
}

.footer-legal-links a {
	color: #94a3b8;
	text-decoration: none;
}
.footer-legal-links a:hover { color: #fff; }

.footer-copyright {
	margin-top: 18px;
	font-size: 11px;
	color: #475569;
}

/* --------------------------------------------------------------------------
   Blog Templates — Post Card
   -------------------------------------------------------------------------- */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.post-card {
	background: var(--card-bg);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	display: flex;
	flex-direction: column;
}
.post-card:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-2px);
}

.post-card__thumb {
	aspect-ratio: 16/9;
	overflow: hidden;
	background: var(--section-bg);
}

.post-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.post-card:hover .post-card__thumb img {
	transform: scale(1.03);
}

.post-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.post-card__cat {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 10px;
}

.post-card__title {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
}

.post-card__title a {
	text-decoration: none;
	color: var(--ink);
}
.post-card__title a:hover { color: var(--accent); }

.post-card__excerpt {
	font-size: 14px;
	color: #475569;
	line-height: 1.55;
	margin: 0 0 16px;
	flex: 1;
}

.post-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #64748b;
}

.post-meta time { font-weight: 500; }

.post-meta__sep { color: var(--ink-faint); }

.post-meta__cat {
	color: var(--accent);
	font-weight: 600;
	text-decoration: none;
}

/* --------------------------------------------------------------------------
   Single Post
   -------------------------------------------------------------------------- */
.single-post {
	max-width: 800px;
	margin: 0 auto;
}

.single-post__header {
	margin-bottom: 32px;
}

.single-post__cat {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 12px;
}

.single-post__title {
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}

.single-post__thumb {
	border-radius: var(--radius-xl);
	overflow: hidden;
	margin-bottom: 32px;
	aspect-ratio: 16/9;
}

.single-post__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.affiliate-disclosure-box {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	background: #fef3e8;
	border: 1px solid #fed7aa;
	border-radius: var(--radius-md);
	padding: 14px 16px;
	margin-bottom: 28px;
	font-size: 13px;
	color: #92400e;
}

.affiliate-disclosure-box svg {
	flex-shrink: 0;
	margin-top: 1px;
	color: #d97706;
}

.affiliate-disclosure-box p { margin: 0; line-height: 1.55; }

.post-content {
	font-size: 17px;
	line-height: 1.7;
	color: #1e293b;
}

.post-content h2 {
	font-size: clamp(22px, 3vw, 28px);
	margin-top: 2em;
	margin-bottom: 0.75em;
}

.post-content h3 {
	font-size: clamp(18px, 2.5vw, 22px);
	margin-top: 1.75em;
	margin-bottom: 0.5em;
}

.post-content p { margin-bottom: 1.25em; }

.post-content a {
	color: var(--accent);
	text-decoration: underline;
}

.post-content img {
	border-radius: var(--radius-md);
	margin: 1.5em 0;
}

.post-content ul,
.post-content ol {
	padding-left: 24px;
	margin-bottom: 1.25em;
}

.post-content li { margin-bottom: 0.5em; }

/* Related posts */
.related-posts {
	margin-top: 56px;
	padding-top: 40px;
	border-top: 1px solid var(--border);
}

.related-posts__title {
	font-size: 24px;
	font-weight: 800;
	margin: 0 0 24px;
}

.related-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* --------------------------------------------------------------------------
   Page Template
   -------------------------------------------------------------------------- */
.page-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 56px 0;
}

.page-header {
	margin-bottom: 32px;
}

.page-title {
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0;
}

/* --------------------------------------------------------------------------
   Archive & Search
   -------------------------------------------------------------------------- */
.archive-header,
.search-header {
	margin-bottom: 40px;
}

.archive-title,
.search-title {
	font-size: clamp(24px, 3.5vw, 40px);
	margin: 0;
}

.archive-desc {
	margin-top: 12px;
	font-size: 17px;
	color: #475569;
}

.search-form {
	margin-top: 16px;
	display: flex;
	gap: 8px;
}

.search-form input[type="search"] {
	flex: 1;
	padding: 12px 16px;
	border: 1.5px solid var(--border);
	border-radius: var(--radius-pill);
	font-family: inherit;
	font-size: 15px;
	background: var(--card-bg);
	color: var(--ink);
	outline: none;
	transition: border-color 0.15s ease;
}
.search-form input[type="search"]:focus {
	border-color: var(--accent);
}

.search-form button {
	padding: 12px 20px;
	background: var(--accent);
	color: var(--ink);
	border: none;
	border-radius: var(--radius-pill);
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

/* --------------------------------------------------------------------------
   404 Page
   -------------------------------------------------------------------------- */
.error-404 {
	text-align: center;
	padding: 80px 0;
}

.error-404__code {
	font-size: 120px;
	font-weight: 800;
	line-height: 1;
	color: var(--accent);
	letter-spacing: -4px;
}

.error-404__title {
	font-size: 32px;
	margin: 0 0 16px;
}

.error-404__sub {
	font-size: 17px;
	color: #475569;
	margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   No results
   -------------------------------------------------------------------------- */
.no-results {
	text-align: center;
	padding: 56px 0;
}

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */
.hbg-pagination {
	margin-top: 48px;
	display: flex;
	justify-content: center;
}

.hbg-pagination .nav-links {
	display: flex;
	gap: 8px;
	align-items: center;
}

.hbg-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-pill);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	color: #475569;
	background: var(--card-bg);
	border: 1px solid var(--border);
	transition: background 0.15s ease, color 0.15s ease;
}

.hbg-pagination .page-numbers.current {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

.hbg-pagination .page-numbers:hover:not(.current) {
	background: var(--section-bg);
}

.hbg-pagination .prev,
.hbg-pagination .next {
	width: auto;
	padding: 0 16px;
}

/* --------------------------------------------------------------------------
   Widget Areas
   -------------------------------------------------------------------------- */
.widget-area {
	padding: 56px 0;
}

.widget {
	margin-bottom: 32px;
}

.widget-title {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ink);
	margin: 0 0 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--accent);
	display: inline-block;
}

/* --------------------------------------------------------------------------
   Responsive — 900px tablet breakpoint
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.nav-links { display: none; }

	.hero__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.hero-visual {
		display: none;
	}

	.picks-grid { grid-template-columns: repeat(2, 1fr); }

	.cat-grid { grid-template-columns: repeat(2, 1fr); }

	.guide-grid { grid-template-columns: repeat(2, 1fr); }

	.footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
	}

	.trust-card {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.quiz-card {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.posts-grid { grid-template-columns: repeat(2, 1fr); }

	.related-posts__grid { grid-template-columns: repeat(2, 1fr); }

	.sticky-mobile-cta { display: block; }
}

/* --------------------------------------------------------------------------
   Responsive — 640px mobile breakpoint
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
	.picks-grid { grid-template-columns: 1fr; }

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

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

	.footer-top { grid-template-columns: 1fr; }

	.footer-bottom {
		flex-direction: column;
		gap: 12px;
	}

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

	.related-posts__grid { grid-template-columns: 1fr; }

	.quiz-card { padding: 24px 20px; }

	.trust-card { padding: 24px 20px; }

	.final-cta-card { padding: 32px 20px; }

	.hero__title { font-size: 34px; }

	.compare-controls {
		flex-direction: column;
		align-items: stretch;
	}

	.sort-controls { margin-left: 0; }
}

/* --------------------------------------------------------------------------
   Responsive — 390px small phone breakpoint
   -------------------------------------------------------------------------- */
@media (max-width: 390px) {
	.container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.hero__title { font-size: 28px; }

	.quiz-card,
	.trust-card,
	.final-cta-card { padding: 20px 16px; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
