/* ===========================================================================
   Verrokit – sähkövertailuteema
   Väripaletti (lähde: verrokit.fi):
     --navy        #031853  pääväri (header, hinnat, otsikot)
     --navy-dark   #001450
     --blue        #1863dc  linkit, sekundäärinen CTA
     --yellow      #ffd700  primary CTA, badge-korostukset
     --yellow-dark #e6c200
     --tint        #f3f6ff  sinisävyinen vaalea harmaa
     --slate       #4e4b66  sekundäärinen teksti
     --border      #e1e6f0
   Fontti: Poppins (otsikot + ui), Roboto fallback
=========================================================================== */

:root {
	/* Brändi (käytetään taustoissa, logossa, valikon korostuksissa — ei tekstissä) */
	--navy:        #031853;
	--navy-dark:   #001450;
	--navy-deep:   #02103a;
	/* Linkit ja painikkeet */
	--blue:        #1d4ed8;
	--blue-dark:   #1e40af;
	/* CTA-painike (tuotekortin "Valitse") */
	--cta:         #eeac17;
	--cta-dark:    #c89010;
	/* "Vihreä energia" -ikonit (lehti, ekologinen) — säilytetään vihreänä */
	--green:       #16a34a;
	--green-dark:  #15803d;
	/* Aksentti — pieni keltainen vain badge-merkeissä ja korostuksissa */
	--yellow:      #f5b800;
	--yellow-dark: #d99e00;
	--yellow-soft: #fff8d6;
	/* Taustat */
	--bg:          #ffffff;
	--bg-alt:      #fafafa;
	--tint:        #f5f6f8;     /* hyvin vaaleansininen-harmaa */
	--tint-2:      #eceef2;
	/* Tekstit (mustaan taipuvia, ei sininen sävyjä) */
	--text:        #18181b;     /* lähes musta, neutraali */
	--text-soft:   #27272a;
	--heading:     #0f0f10;     /* otsikot — true neutraali musta */
	--slate:       #525252;     /* sekundääriset tekstit, neutraali harmaa */
	--slate-light: #a3a3a3;     /* placeholderit, label-tekstit */
	/* Reunaviivat */
	--border:      #e5e5e7;     /* neutraali vaalea harmaa */
	--border-soft: #f0f0f2;
	--shadow-sm:   0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
	--shadow:      0 4px 14px rgba(0, 0, 0, 0.05), 0 1px 4px rgba(0, 0, 0, 0.03);
	--shadow-lg:   0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
	--radius:      14px;
	--radius-sm:   8px;
	--radius-lg:   20px;
	--container:   1200px;
	--container-narrow: 880px;
	--font-sans:   'Poppins', 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* -------- Reset & base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-decoration: underline; text-decoration-color: var(--border); text-underline-offset: 3px; transition: color .15s ease, text-decoration-color .15s ease; }
a:hover { color: #000; text-decoration-color: currentColor; }
/* Sidebar- ja korttipinnoilla linkit ilman alaviivaa */
.site-brand, .primary-nav a, .lang-switcher a, .footer-col a, .footer-bottom a,
.product-row__name a, .product-card a, .company-card, .blog-card a, .filter-row select, .filter-row,
.fact-card a, .compare-check, .verrokit-breadcrumbs a, .btn, .chip, .single-hero__eyebrow a {
	text-decoration: none;
}
.site-brand:hover, .primary-nav a:hover, .footer-col a:hover, .blog-card a:hover { text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-sans);
	color: var(--heading);
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 0 0 0.6em;
	line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 2.6vw, 2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; }

.visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden;
	clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* -------- Layout -------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 20px; }

.section { padding: 64px 0; }
.section-tint { background: var(--tint); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }
.section-navy a { color: #fff; text-decoration: underline; }
.section-navy a:hover { color: var(--yellow); text-decoration-color: var(--yellow); }

/* -------- Buttons -------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 13px 24px;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 0.97rem;
	border: 2px solid transparent;
	transition: transform .12s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
	text-decoration: none;
	line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
	background: var(--cta);
	color: #fff;
	border-color: var(--cta);
}
.btn-primary:hover, .btn-primary:focus { background: var(--cta-dark); border-color: var(--cta-dark); color: #fff; }

.btn-navy {
	background: var(--navy);
	color: #fff;
	border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: #fff; }

.btn-outline {
	background: transparent;
	color: var(--text);
	border-color: var(--text);
}
.btn-outline:hover { background: var(--text); color: #fff; }

.btn-ghost {
	background: transparent;
	color: var(--text);
	border-color: var(--border);
}
.btn-ghost:hover { background: var(--tint); border-color: var(--text); color: var(--text); }

.btn-cta {
	background: var(--cta);
	color: #fff;
	border-color: var(--cta);
}
.btn-cta:hover { background: var(--cta-dark); border-color: var(--cta-dark); color: #fff; }

.btn-sm { padding: 9px 16px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* -------- Article CTA (blogiartikkelien keskelle sijoitettava ohjauspainike) -------- */
.article-cta {
	background: linear-gradient(135deg, #f5f8ff 0%, #fff8e6 100%);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 24px;
	margin: 36px 0;
	text-align: center;
	box-shadow: var(--shadow-sm);
}
.article-cta__title {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--heading);
	margin-bottom: 6px;
	line-height: 1.3;
}
.article-cta__sub {
	color: var(--slate);
	margin-bottom: 16px;
	font-size: 0.95rem;
	line-height: 1.5;
}
.article-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 28px;
	font-size: 1rem;
	font-weight: 700;
}
@media (max-width: 600px) {
	.article-cta { padding: 22px 16px; margin: 28px 0; }
	.article-cta__title { font-size: 1.1rem; }
	.article-cta__sub { font-size: 0.9rem; }
	.article-cta__btn { width: 100%; justify-content: center; }
}

/* -------- Header -------- */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: #fff;
	border-bottom: 1px solid var(--border);
	/* HUOM: ÄLÄ lisää backdrop-filter, transform tms. tähän elementtiin —
	   ne luovat containing block:in fixed-positioiduille jälkeläisille (kuten
	   mobiilivalikko), jolloin valikon position:fixed asettuu suhteessa
	   headeriin eikä viewportiin → valikko ei näy. */
}
.header-inner {
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	height: 72px;
}
.site-brand {
	display: flex; align-items: center; gap: 10px;
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: 1.4rem;
	color: var(--heading);
	text-decoration: none;
	letter-spacing: -0.02em;
}
.site-brand:hover { color: var(--heading); text-decoration: none; }
/* Custom logo (WordPress Customizer → Site Identity → Logo) */
.site-brand--custom { display: inline-flex; align-items: center; padding: 0; }
.site-brand--custom .custom-logo-link { display: inline-flex; align-items: center; line-height: 1; }
.site-brand--custom img,
.site-brand--custom .custom-logo { max-height: 50px; width: auto; display: block; }
.site-brand__mark {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px;
	background: var(--navy); color: #fff;
	border-radius: 8px;
	font-weight: 800;
	font-size: 0.95rem;
}
.site-brand__dot { color: var(--slate); font-weight: 600; }

/* Primary nav */
.primary-nav { display: flex; align-items: center; }
.primary-nav ul {
	display: flex; align-items: center; gap: 4px;
	list-style: none; margin: 0; padding: 0;
}
.primary-nav li { position: relative; }
.primary-nav a {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 10px 14px;
	color: var(--text);
	font-weight: 500;
	font-size: 0.97rem;
	border-radius: 8px;
	transition: background .15s ease, color .15s ease;
}
.primary-nav a:hover { background: var(--tint); color: var(--text); text-decoration: none; }
.primary-nav .is-active > a { color: var(--text); font-weight: 700; }
.primary-nav .has-dropdown > a::after {
	content: ''; width: 8px; height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg); margin-left: 6px; margin-top: -3px;
	transition: transform .2s ease;
}
.primary-nav .has-dropdown:hover > a::after,
.primary-nav .has-dropdown.is-open > a::after { transform: rotate(225deg); margin-top: 3px; }

.primary-nav .dropdown {
	position: absolute; top: 100%; left: 0;
	min-width: 240px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
	padding: 6px;
	margin: 0; list-style: none;
	display: flex; flex-direction: column; gap: 2px;
	opacity: 0; visibility: hidden;
	transform: translateY(8px);
	transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.primary-nav .has-dropdown:hover .dropdown,
.primary-nav .has-dropdown:focus-within .dropdown,
.primary-nav .has-dropdown.is-open .dropdown {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-nav .dropdown a {
	padding: 9px 12px;
	border-radius: 6px;
	font-size: 0.93rem;
	color: var(--text-soft);
}
.primary-nav .dropdown a:hover { background: var(--tint); color: var(--text); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.lang-switcher {
	display: flex; align-items: center;
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 2px;
	font-size: 0.78rem;
	font-weight: 600;
	background: #fff;
}
.lang-switcher a {
	padding: 5px 11px;
	border-radius: 999px;
	color: var(--slate);
	text-decoration: none;
	line-height: 1;
}
.lang-switcher a.is-active { background: var(--text); color: #fff; }
.lang-switcher a:hover { text-decoration: none; }
.lang-switcher a:not(.is-active):hover { color: var(--text); background: var(--tint); }

.menu-toggle {
	display: none;
	width: 42px; height: 42px;
	border-radius: 8px;
	background: transparent; border: 1px solid var(--border);
	color: var(--text);
	align-items: center; justify-content: center;
	cursor: pointer;
}
.menu-toggle:hover { background: var(--tint); }
.menu-toggle svg { width: 22px; height: 22px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open  { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobiilivalikon backdrop */
.nav-backdrop {
	position: fixed; inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 48;
	opacity: 0; visibility: hidden;
	transition: opacity .2s ease, visibility .2s;
}
.nav-backdrop.is-visible { opacity: 1; visibility: visible; }

/* -------- Hero -------- */
.hero {
	position: relative;
	background: var(--navy-deep);  /* fallback solid */
	color: #fff;
	overflow: hidden;
	padding: 80px 0 90px;
	isolation: isolate;
}
.hero__gradient {
	position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
	pointer-events: none;
	transition: opacity .3s ease;
}
.hero__gradient::after {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.06), transparent 50%);
	pointer-events: none;
}

/* Valinnainen taustakuva (Customizer → Etusivu – Hero → Taustakuva).
   Kuva navy-pohjan päällä, sen päällä tumma navy-overlay joka takaa
   valkoisen tekstin luettavuuden. Yksi liukuri (0–100 %) ohjaa kuvan
   voimakkuutta ja overlayn läpinäkyvyyttä käänteisesti. */
.hero__photo {
	position: absolute; inset: 0; z-index: 2;
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
	opacity: 0;            /* piilossa kunnes kuva asetetaan */
	pointer-events: none;
	transition: opacity .3s ease;
}
.hero__overlay {
	position: absolute; inset: 0; z-index: 3;
	background: linear-gradient(135deg, rgba(3, 24, 83, 0.50) 0%, rgba(2, 16, 58, 0.65) 100%);
	opacity: 0;            /* piilossa kunnes kuva asetetaan */
	pointer-events: none;
	transition: opacity .3s ease;
}
.verrokit-hero-has-photo .hero__gradient { opacity: 0; }   /* piilota gradient kun kuva päällä */
.verrokit-hero-has-photo .hero__photo    { opacity: 0.40; }
.verrokit-hero-has-photo .hero__overlay  { opacity: 1; }
@media (max-width: 700px) {
	.hero__photo { background-position: center 25%; }
}

.hero .container { position: relative; z-index: 4; }
.hero__eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 0.82rem; font-weight: 600;
	letter-spacing: 0.05em; text-transform: uppercase;
	background: rgba(255, 255, 255, 0.10);
	color: rgba(255, 255, 255, 0.92);
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 18px;
	border: 1px solid rgba(255, 255, 255, 0.20);
}
.hero h1 {
	color: #fff;
	max-width: 880px;
	font-size: clamp(2.1rem, 4.8vw, 3.4rem);
	margin-bottom: 18px;
}
.hero h1 .accent {
	background: linear-gradient(120deg, transparent 0%, transparent 8%, rgba(245, 184, 0, 0.55) 8%, rgba(245, 184, 0, 0.55) 92%, transparent 92%);
	background-size: 100% 0.4em;
	background-position: 0 88%;
	background-repeat: no-repeat;
	padding: 0 2px;
}
.hero__lead {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.85);
	max-width: 680px;
	margin: 0 0 32px;
}
.hero__actions {
	display: flex; flex-wrap: wrap; gap: 14px;
	margin-bottom: 36px;
}
.hero__stats {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	max-width: 720px;
}
.hero__stat strong {
	display: block;
	font-size: 1.85rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
}
.hero__stat span { color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; }

/* -------- Trust strip -------- */
.trust-strip {
	background: #fff;
	border-bottom: 1px solid var(--border-soft);
	padding: 22px 0;
}
.trust-strip__inner {
	display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px;
	justify-content: center;
}
.trust-strip__label {
	font-size: 0.83rem;
	font-weight: 600;
	color: var(--slate);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.trust-strip__brand {
	font-weight: 700;
	color: var(--text);
	font-size: 0.95rem;
	opacity: 0.55;
}

/* -------- Section heading -------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head__eyebrow {
	display: inline-block;
	font-size: 0.78rem; font-weight: 700;
	letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--slate);
	margin-bottom: 10px;
}
.section-head h2 { margin-bottom: 10px; }
.section-head p { color: var(--slate); font-size: 1.05rem; margin: 0; }

/* -------- Product card -------- */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px;
}
.product-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
	display: flex; flex-direction: column;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	border-color: var(--text);
}
.product-card.is-highlight {
	border-color: var(--text);
	box-shadow: var(--shadow);
}
.product-card.is-highlight::before {
	content: '⭐ SUOSITUIN';
	position: absolute; top: -10px; right: 18px;
	background: var(--yellow); color: var(--navy-deep);
	font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em;
	padding: 4px 11px; border-radius: 999px;
}

.product-card__head {
	display: flex; align-items: flex-start; gap: 14px;
	margin-bottom: 16px;
}
.product-card__logo {
	flex-shrink: 0;
	width: 56px; height: 56px;
	border-radius: 10px;
	background: var(--tint);
	display: flex; align-items: center; justify-content: center;
	overflow: hidden;
	font-weight: 800; font-size: 1.1rem;
	color: #fff;
}
.product-card__logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.product-card__title-area { flex: 1; min-width: 0; }
.product-card__company {
	font-size: 0.78rem; font-weight: 600;
	color: var(--slate);
	text-transform: uppercase; letter-spacing: 0.05em;
}
.product-card__name {
	font-size: 1.1rem; font-weight: 700;
	color: var(--heading);
	margin: 2px 0 0;
	line-height: 1.25;
}

.product-card__type {
	display: inline-block;
	font-size: 0.74rem; font-weight: 700;
	color: var(--text);
	background: var(--tint);
	padding: 3px 10px; border-radius: 999px;
	margin-bottom: 14px;
	text-transform: uppercase; letter-spacing: 0.04em;
}
.product-card__type--porssi       { color: #1e3a8a; background: #eff3fb; }
.product-card__type--kiintea      { color: #4c1d95; background: #f4f0fa; }
.product-card__type--maaraaikainen{ color: #4c1d95; background: #f4f0fa; }
.product-card__type--hybridi      { color: #9a3412; background: #fdf2ea; }
.product-card__type--toistaiseksi { color: #166534; background: #ecfdf3; }

.product-card__prices {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 8px;
	background: var(--bg-alt);
	border: 1px solid var(--border-soft);
	border-radius: var(--radius-sm);
	padding: 12px 14px;
	margin-bottom: 14px;
}
.product-card__price-block { line-height: 1.2; }
.product-card__price-label {
	font-size: 0.72rem; font-weight: 600;
	color: var(--slate);
	text-transform: uppercase; letter-spacing: 0.04em;
	margin-bottom: 4px;
}
.product-card__price-value {
	font-size: 1.45rem; font-weight: 800;
	color: var(--text);
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.01em;
}
.product-card__price-value small { font-size: 0.7rem; font-weight: 600; color: var(--slate); display: block; margin-top: 1px; }

.product-card__perks {
	list-style: none; padding: 0; margin: 0 0 16px;
	font-size: 0.85rem;
	color: var(--text);
	display: flex; flex-direction: column; gap: 6px;
}
.product-card__perks li {
	display: flex; align-items: flex-start; gap: 8px;
	line-height: 1.4;
}
.product-card__perks li::before {
	content: '✓';
	color: var(--green);
	font-weight: 800;
	flex-shrink: 0;
}
.product-card__perks li.product-card__perk--intro {
	background: var(--yellow-soft);
	color: var(--text);
	padding: 6px 10px;
	border-radius: 8px;
	font-weight: 600;
}
.product-card__perks li.product-card__perk--intro::before { content: '🎁'; color: inherit; }
.product-card__perks li.product-card__perk--green {
	background: #ecfdf5;
	color: #065f46;
	padding: 6px 10px;
	border-radius: 8px;
	font-weight: 600;
}
.product-card__perks li.product-card__perk--green::before { content: '🌿'; color: inherit; }
.product-card__perks li.product-card__perk--highlight {
	background: #f3f6ff;
	padding: 6px 10px;
	border-radius: 8px;
	font-weight: 600;
}
.product-card__perks li.product-card__perk--highlight::before { content: '★'; color: var(--text); }

.product-card__footer {
	margin-top: auto;
	display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}

/* -------- Compare layout (sahkovertailu, leveä rivinäkymä isolla näytöllä) -------- */
.compare-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}
@media (max-width: 1023px) {
	.compare-layout { grid-template-columns: 1fr; gap: 18px; }
}

.compare-sidebar {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 18px;
	position: sticky;
	top: 90px;
	display: flex; flex-direction: column;
	gap: 18px;
}

/* Mobiili / tabletti — sidebar piilossa oletuksena, avautuu painikkeella drawer-tyylillä */
.filter-drawer-toggle { display: none; }
.filter-drawer-header { display: none; }
@media (max-width: 1023px) {
	.filter-drawer-toggle {
		display: inline-flex; align-items: center; gap: 8px;
		padding: 11px 18px;
		background: #fff;
		border: 1px solid var(--border);
		border-radius: 10px;
		font: 600 0.93rem var(--font-sans);
		color: var(--text);
		margin: 0 0 16px;
		cursor: pointer;
		transition: border-color .15s ease, background .15s ease;
	}
	.filter-drawer-toggle:hover { border-color: var(--text); background: var(--tint); }
	.filter-drawer-toggle svg { width: 18px; height: 18px; }

	.compare-sidebar {
		position: fixed;
		top: 0; left: 0; bottom: 0;
		width: min(360px, 88vw);
		z-index: 60;
		margin: 0;
		border: 0;
		border-radius: 0;
		border-right: 1px solid var(--border);
		padding: 0 18px 24px;
		transform: translateX(-100%);
		transition: transform .28s cubic-bezier(.4, 0, .2, 1);
		overflow-y: auto;
		box-shadow: 8px 0 24px rgba(0, 0, 0, 0.08);
	}
	.compare-sidebar.is-open { transform: translateX(0); }

	.filter-drawer-header {
		display: flex; align-items: center; justify-content: space-between;
		position: sticky; top: 0;
		background: #fff;
		padding: 16px 0 12px;
		margin: 0 0 4px;
		border-bottom: 1px solid var(--border-soft);
		z-index: 1;
	}
	.filter-drawer-header strong { font-size: 1rem; color: var(--heading); }
	.filter-drawer-close {
		width: 36px; height: 36px;
		border: 1px solid var(--border);
		border-radius: 8px;
		background: #fff;
		cursor: pointer;
		display: inline-flex; align-items: center; justify-content: center;
		color: var(--text);
	}
	.filter-drawer-close:hover { background: var(--tint); }
	.filter-drawer-close svg { width: 18px; height: 18px; }
}
.compare-sidebar__panel {
	background: var(--bg-alt);
	border: 1px solid var(--border-soft);
	border-radius: var(--radius-sm);
	padding: 14px 14px 16px;
}
.compare-sidebar__title {
	display: flex; align-items: center; gap: 6px;
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--heading);
	margin: 0 0 12px;
	text-transform: none;
	letter-spacing: 0;
}
.compare-sidebar__title .info-dot {
	display: inline-flex; align-items: center; justify-content: center;
	width: 16px; height: 16px;
	background: var(--slate-light); color: #fff;
	font-size: 0.7rem; font-weight: 700;
	border-radius: 50%; line-height: 1;
}
.filter-group { display: flex; flex-direction: column; gap: 8px; }
.filter-row {
	display: flex; align-items: center; gap: 10px;
	padding: 11px 14px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 10px;
	font-weight: 600;
	color: var(--text);
	font-size: 0.9rem;
	cursor: pointer;
	transition: border-color .15s ease;
}
.filter-row:hover { border-color: var(--text); }
.filter-row__icon {
	width: 24px; height: 24px;
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--slate);
	flex-shrink: 0;
}
.filter-row__caret {
	margin-left: auto;
	width: 8px; height: 8px;
	border-right: 2px solid var(--slate);
	border-bottom: 2px solid var(--slate);
	transform: rotate(45deg);
	flex-shrink: 0;
}
.filter-row select,
.filter-row input {
	border: 0;
	background: transparent;
	font: inherit;
	color: inherit;
	width: 100%;
	outline: none;
	padding: 0;
	appearance: none;
	cursor: pointer;
}
.filter-row input { cursor: text; }

.filter-divider {
	height: 1px;
	background: var(--border-soft);
	margin: 4px 0;
}

.consumption-input,
.postal-input {
	display: flex; align-items: center; gap: 10px;
	padding: 11px 14px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 10px;
}
.consumption-input input,
.postal-input input {
	border: 0; background: transparent;
	font: 600 1rem var(--font-sans);
	color: var(--text);
	width: 100%; outline: none;
}
.consumption-input__unit { color: var(--slate); font-weight: 600; font-size: 0.9rem; }

.compare-checks { display: flex; flex-direction: column; gap: 10px; }
.compare-check {
	display: flex; align-items: center; gap: 10px;
	font-size: 0.92rem;
	color: var(--text);
	cursor: pointer;
	user-select: none;
}
.compare-check input { display: none; }
.compare-check__box {
	width: 18px; height: 18px;
	border: 1.5px solid var(--border);
	background: #fff;
	border-radius: 4px;
	flex-shrink: 0;
	position: relative;
	transition: background .12s ease, border-color .12s ease;
}
.compare-check input:checked + .compare-check__box {
	background: var(--text);
	border-color: var(--text);
}
.compare-check input:checked + .compare-check__box::after {
	content: '';
	position: absolute;
	left: 5px; top: 1px;
	width: 5px; height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}
.compare-check .info-dot {
	display: inline-flex; align-items: center; justify-content: center;
	width: 15px; height: 15px;
	background: var(--slate-light); color: #fff;
	font-size: 0.65rem; font-weight: 700;
	border-radius: 50%; line-height: 1;
	margin-left: auto;
}

/* Compare main column */
.compare-main__head {
	display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
	flex-wrap: wrap;
	margin: 0 0 18px;
}
.compare-main__head h2 {
	margin: 0;
	font-size: 1.5rem;
}
.compare-main__head h2 strong {
	color: var(--heading);
	font-weight: 700;
}
.compare-main__head__sort {
	font-size: 0.9rem;
	color: var(--slate);
}
.compare-main__notice {
	display: flex; align-items: center; gap: 10px;
	background: #fff;
	border: 1px solid var(--border);
	border-left: 3px solid var(--cta);
	border-radius: var(--radius-sm);
	padding: 12px 16px;
	margin: 0 0 18px;
	font-size: 0.92rem;
	color: var(--text);
}
.compare-main__notice svg { flex-shrink: 0; color: var(--cta); }

.product-list { display: flex; flex-direction: column; gap: 14px; }

/* -------- Product row (wide horizontal card) -------- */
.product-row {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}
.product-row:hover {
	border-color: #c8c8cc;
	box-shadow: var(--shadow);
}
.product-row.is-highlight { border-color: var(--text); }

.product-row__banner {
	background: var(--tint);
	color: var(--text);
	padding: 9px 22px;
	font-weight: 600;
	font-size: 0.86rem;
	display: flex; align-items: center; gap: 8px;
	border-bottom: 1px solid var(--border-soft);
}
.product-row__banner::before { content: ''; }
.product-row.is-highlight .product-row__banner {
	background: var(--yellow-soft);
	color: var(--text);
}
.product-row.is-highlight .product-row__banner::before { content: '⭐'; }

.product-row__body {
	display: grid;
	grid-template-columns: minmax(180px, 220px) minmax(170px, 1fr) minmax(160px, 1fr) minmax(150px, 180px);
	gap: 20px;
	align-items: center;
	padding: 22px 24px;
}
/* Perks-rivin sijoitus työpöydällä: koko leveys oman riviinsä body-gridissä */
.product-row__body > .product-row__perks {
	grid-column: 1 / -1;
	padding: 14px 0 0;
	margin-top: 6px;
	border-top: 1px solid var(--border-soft);
}
.product-row__brand {
	display: flex; flex-direction: column;
	gap: 8px;
}
.product-row__logo {
	width: 84px; height: 50px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 8px;
	font-weight: 800;
	font-size: 1rem;
	color: #fff;
	overflow: hidden;
}
.product-row__logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.product-row__name {
	font-size: 1.02rem; font-weight: 700;
	color: var(--heading);
	margin: 0;
	line-height: 1.3;
}
.product-row__name a { color: inherit; }
.product-row__name a:hover { color: var(--text); text-decoration: underline; }

.product-row__pricing {
	display: flex; flex-direction: column;
	gap: 10px;
	align-self: center;
	min-width: 0;
}
.pricing-item { display: flex; flex-direction: column; gap: 2px; line-height: 1.25; }
.pricing-item__label {
	color: var(--slate);
	font-size: 0.85rem;
	font-weight: 500;
}
.pricing-item__value {
	color: var(--text);
	font-weight: 700;
	font-size: 1rem;
	white-space: nowrap;
}
.pricing-item__value small {
	color: var(--slate);
	font-weight: 600;
	font-size: 0.78rem;
	margin-left: 3px;
}

.product-row__total {
	text-align: right;
	font-size: 1.85rem;
	font-weight: 800;
	color: var(--text);
	line-height: 1.1;
	letter-spacing: -0.01em;
	font-variant-numeric: tabular-nums;
}
.product-row__total .unit {
	font-size: 0.75rem;
	color: var(--slate);
	font-weight: 600;
	margin-left: 2px;
	vertical-align: super;
}
.product-row__total .label {
	display: block;
	font-size: 0.78rem;
	color: var(--slate);
	font-weight: 500;
	margin-top: 4px;
	letter-spacing: 0;
}
.product-row__total .info-dot {
	display: inline-flex; align-items: center; justify-content: center;
	width: 14px; height: 14px;
	background: var(--slate-light); color: #fff;
	font-size: 0.65rem; font-weight: 700;
	border-radius: 50%; line-height: 1;
	margin-left: 4px;
	vertical-align: middle;
}

.product-row__cta { display: flex; flex-direction: column; gap: 8px; }
.product-row__cta .btn {
	width: 100%;
	padding: 12px 16px;
	font-size: 0.95rem;
}
.product-row__cta .btn-primary {
	background: var(--cta);
	border-color: var(--cta);
	color: #fff;
}
.product-row__cta .btn-primary:hover {
	background: var(--cta-dark);
	border-color: var(--cta-dark);
	color: #fff;
}
.btn-row-secondary {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
	padding: 9px 16px;
	font-size: 0.88rem;
	font-weight: 600;
	border-radius: var(--radius-sm);
	display: inline-flex; align-items: center; justify-content: center;
	text-decoration: none;
	transition: border-color .15s ease, background .15s ease;
}
.btn-row-secondary:hover {
	border-color: var(--text);
	background: var(--tint);
	color: var(--text);
	text-decoration: none;
}

.product-row__perks {
	display: flex; gap: 10px 14px;
	padding: 0;
	font-size: 0.86rem;
	color: var(--text);
	flex-wrap: wrap;
}
.product-row__perk {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--bg-alt);
	color: var(--text);
	line-height: 1.3;
}
.product-row__perk::before {
	content: '✓';
	color: var(--green);
	font-weight: 800;
	flex-shrink: 0;
}
.product-row__perk.is-tag::before { content: ''; }

/* Erikoistilat */
.product-row__perk--type {
	background: var(--tint);
	color: var(--text);
	font-weight: 600;
}
.product-row__perk--type::before {
	content: '';
	width: 14px; height: 14px;
	background: var(--text);
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.product-row__perk--intro {
	background: var(--yellow-soft);
	color: var(--text);
	font-weight: 600;
}
.product-row__perk--intro::before {
	content: '🎁';
	font-size: 0.85em;
}
.product-row__perk--green {
	background: #ecfdf5;
	color: #065f46;
	font-weight: 600;
}
.product-row__perk--green::before {
	content: '🌿';
	font-size: 0.85em;
}
.product-row__perk--highlight {
	background: #f3f6ff;
	color: var(--text);
	font-weight: 600;
}
.product-row__perk--highlight::before {
	content: '★';
	color: var(--text);
}

.product-row__footer-strip {
	background: var(--bg-alt);
	padding: 8px 24px;
	font-size: 0.84rem;
	color: var(--text);
	font-weight: 600;
	border-top: 1px solid var(--border-soft);
}

/* Responsive: row collapses on tablet/mobile */
@media (max-width: 900px) {
	.product-row {
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
		margin-bottom: 14px;
	}
	.product-row__body {
		display: flex;
		flex-direction: column;
		gap: 14px;
		padding: 18px;
	}

	/* Brand: logo + nimi + yhtiö rivissä */
	.product-row__brand {
		flex-direction: row;
		align-items: center;
		gap: 14px;
	}
	.product-row__brand .product-row__name { flex: 1; }

	/* Pricing korostettu blokki */
	.product-row__pricing {
		flex-direction: row;
		justify-content: space-between;
		gap: 16px;
		background: var(--bg-alt);
		padding: 14px 16px;
		border-radius: 10px;
		border: 1px solid var(--border-soft);
	}
	.product-row__pricing .pricing-item { flex: 1; }

	/* Total korostettu sininen blokki */
	.product-row__total {
		text-align: center;
		font-size: 1.7rem;
		background: var(--tint);
		padding: 14px 16px;
		border-radius: 10px;
		border: 1px solid var(--border-soft);
	}
	.product-row__total .label {
		display: block;
		font-size: 0.82rem;
		margin-top: 2px;
		font-weight: 500;
	}

	/* Perks ENNEN CTA:ta — irti border-toposta */
	.product-row__body > .product-row__perks {
		grid-column: auto;
		padding: 0;
		margin-top: 0;
		border-top: 0;
		gap: 8px;
		font-size: 0.84rem;
	}

	/* CTA - mobiilissa täsmälleen samat mitat kuin etusivun tuotekortin
	   alalaidassa (.product-card__footer + .btn-sm: 9px 16px padding,
	   0.88rem fontti). Yhtenäinen visuaalinen kokemus mobiilissa. */
	.product-row__cta {
		display: flex;
		flex-direction: column;
		gap: 8px;
		margin-top: 8px;
		width: 100%;
	}
	.product-row__cta .btn,
	.product-row__cta .btn-row-secondary {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 9px 16px;
		font-size: 0.88rem;
		font-weight: 600;
	}
	.product-row__cta .btn-row-secondary {
		border-width: 1px;
	}
}

/* -------- Compare toolbar (legacy chips — kept for backward compat / small screens) -------- */
.compare-toolbar {
	display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 14px 18px;
	margin-bottom: 26px;
}
.compare-toolbar__group {
	display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.compare-toolbar__label {
	font-size: 0.84rem; font-weight: 600; color: var(--slate);
}
.chip {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 12px;
	background: var(--tint);
	color: var(--text);
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.84rem; font-weight: 600;
	cursor: pointer;
	transition: all .15s ease;
}
.chip:hover { border-color: var(--text); }
.chip.is-active { background: var(--text); color: #fff; border-color: var(--text); }
.compare-toolbar__sort {
	padding: 8px 12px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: #fff;
	font: 600 0.88rem var(--font-sans);
	color: var(--text);
}

.compare-summary {
	font-size: 0.92rem;
	color: var(--slate);
	margin: 0 0 20px;
}
.compare-summary strong { color: var(--text); }

/* -------- Company list (sahkoyhtiot) -------- */
.company-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 18px;
}
.company-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
	text-align: center;
	display: flex; flex-direction: column; align-items: center;
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
	text-decoration: none;
	color: var(--text);
}
.company-card:hover {
	transform: translateY(-2px);
	border-color: var(--text);
	box-shadow: var(--shadow);
	text-decoration: none;
}
.company-card__logo {
	width: 76px; height: 76px;
	border-radius: 14px;
	background: var(--tint);
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	font-weight: 800; font-size: 1.4rem;
	margin-bottom: 14px;
	overflow: hidden;
}
.company-card__logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.company-card__name {
	font-size: 1.1rem; font-weight: 700;
	color: var(--heading);
	margin: 0 0 4px;
}
.company-card__lead {
	font-size: 0.9rem;
	color: var(--slate);
	margin: 0 0 14px;
}
.company-card__count {
	font-size: 0.78rem;
	color: var(--text);
	font-weight: 600;
	padding: 4px 10px;
	background: var(--tint);
	border-radius: 999px;
}

/* -------- Single product / company page -------- */
.single-hero {
	background: var(--tint);
	padding: 50px 0 30px;
}
.single-hero .container { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; }
.single-hero__brand {
	flex: 0 0 auto;
	width: 110px; height: 110px;
	background: #fff;
	border-radius: 18px;
	border: 1px solid var(--border);
	display: flex; align-items: center; justify-content: center;
	font-weight: 800; font-size: 1.8rem; color: #fff;
	overflow: hidden;
}
.single-hero__brand img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.single-hero__body { flex: 1 1 280px; }
.single-hero__eyebrow {
	font-size: 0.82rem; font-weight: 700;
	color: var(--slate);
	text-transform: uppercase; letter-spacing: 0.05em;
	margin-bottom: 6px;
}
.single-hero h1 { margin: 0 0 10px; font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.single-hero__lead { color: var(--slate); margin: 0; max-width: 640px; }

.single-body { padding: 50px 0 70px; }
.single-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 40px;
	align-items: start;
}
@media (max-width: 960px) { .single-grid { grid-template-columns: 1fr; } }

.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.3em; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: 0.4em; }
/* Artikkelin kuvituskuva (featured image) — riittävä väli sisällön alkuun */
.prose img.wp-post-image,
.prose > img.attachment-large {
	display: block;
	margin: 0 0 20px;
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.fact-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
	box-shadow: var(--shadow);
	position: sticky;
	top: 90px;
}
.fact-card__head { text-align: center; margin-bottom: 18px; }
.fact-card__company { font-size: 0.82rem; color: var(--slate); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.fact-card__name { font-size: 1.2rem; font-weight: 700; color: var(--heading); margin: 4px 0 0; }
.fact-card__price {
	background: var(--text);
	color: #fff;
	border-radius: var(--radius-sm);
	padding: 18px;
	text-align: center;
	margin-bottom: 16px;
}
.fact-card__price strong {
	display: block;
	font-size: 2rem; font-weight: 800;
	color: #fff;
	letter-spacing: -0.01em;
}
.fact-card__price span { color: rgba(255, 255, 255, 0.72); font-size: 0.85rem; }
.fact-card dl {
	display: grid; grid-template-columns: 1fr auto; gap: 8px 14px;
	margin: 0 0 18px;
	font-size: 0.93rem;
}
.fact-card dt { color: var(--slate); }
.fact-card dd { margin: 0; color: var(--text); font-weight: 600; text-align: right; }

/* -------- Breadcrumbs -------- */
.verrokit-breadcrumbs {
	padding: 14px 0;
	font-size: 0.85rem;
	color: var(--slate);
}
.verrokit-breadcrumbs ol {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-wrap: wrap; gap: 6px 10px;
}
.verrokit-breadcrumbs li { display: flex; align-items: center; gap: 10px; }
.verrokit-breadcrumbs li + li::before { content: '/'; color: var(--slate-light); }
.verrokit-breadcrumbs a { color: var(--slate); }
.verrokit-breadcrumbs a:hover { color: var(--text); }
.verrokit-breadcrumbs [aria-current="page"] { color: var(--text); font-weight: 600; }

/* -------- Steps (Näin Verrokit toimii) -------- */
.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 20px;
}
.step {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 36px 24px 24px;
	position: relative;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.step:hover { border-color: var(--text); box-shadow: var(--shadow); }
.step__number {
	position: absolute;
	top: -18px; left: 24px;
	width: 40px; height: 40px;
	background: var(--cta);
	color: #fff;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-weight: 800;
	font-size: 1.15rem;
	box-shadow: 0 2px 6px rgba(238, 172, 23, 0.35);
}
.step__title { color: var(--heading); margin: 0 0 8px; font-size: 1.1rem; font-weight: 700; }
.step p { color: var(--slate); margin: 0; font-size: 0.93rem; line-height: 1.55; }
@media (max-width: 768px) {
	.steps { grid-template-columns: 1fr; gap: 18px; }
}

/* -------- Edu (SEO) -------- */
.edu-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 20px;
}
@media (max-width: 768px) { .edu-grid { grid-template-columns: 1fr; } }
.edu-block {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
}
.edu-block h3 {
	color: var(--heading);
	font-size: 1.1rem;
	margin: 0 0 10px;
}
.edu-block p { color: var(--text-soft); margin: 0 0 10px; font-size: 0.95rem; line-height: 1.6; }
.edu-block p:last-child { margin-bottom: 0; }
.edu-block a { color: var(--text); text-decoration: underline; text-decoration-color: var(--border); }
.edu-block a:hover { text-decoration-color: currentColor; }

/* -------- FAQ accordion -------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }
.faq-item {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}
.faq-item summary {
	cursor: pointer;
	padding: 18px 22px;
	font-weight: 600;
	color: var(--text);
	display: flex; align-items: center; justify-content: space-between; gap: 14px;
	list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: '+';
	font-size: 1.4rem; font-weight: 400;
	color: var(--slate);
	transition: transform .2s ease;
	line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 22px 18px; color: var(--text-soft); }

/* -------- Blog list -------- */
.blog-grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}
.blog-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.blog-card:hover { transform: translateY(-2px); border-color: var(--text); box-shadow: var(--shadow); }
.blog-card__thumb {
	aspect-ratio: 16/10;
	background: linear-gradient(135deg, var(--navy), var(--text));
	display: flex; align-items: center; justify-content: center;
	color: #fff; font-weight: 700;
}
.blog-card__body { padding: 18px 20px 22px; }
.blog-card__meta { font-size: 0.8rem; color: var(--slate); margin-bottom: 6px; }
.blog-card__title { font-size: 1.05rem; font-weight: 700; color: var(--heading); margin: 0 0 8px; line-height: 1.3; }
.blog-card__title a { color: inherit; }
.blog-card__excerpt { color: var(--slate); font-size: 0.92rem; margin: 0; }

.blog-empty {
	text-align: center; padding: 60px 20px;
	background: var(--tint);
	border-radius: var(--radius-lg);
}
.blog-empty h3 { color: var(--heading); margin-bottom: 8px; }
.blog-empty p { color: var(--slate); max-width: 520px; margin: 0 auto; }

/* -------- CTA stripe (navy-kaistale etusivulle, keskitetty pystyasettelu) -------- */
.cta-stripe {
	background: var(--navy);
	color: #fff;
	padding: 72px 0;
	text-align: center;
}
.cta-stripe__inner {
	display: flex; flex-direction: column;
	align-items: center;
	gap: 0;
	max-width: 920px;
	margin: 0 auto;
}
.cta-stripe__text { text-align: center; width: 100%; }
.cta-stripe h2 {
	color: #fff;
	margin: 0 0 10px;
	font-size: clamp(1.55rem, 2.4vw, 2.05rem);
	letter-spacing: -0.01em;
	line-height: 1.25;
	text-wrap: balance;
}
/* Manuaalinen rivinvaihto otsikossa, näkyy vain isoilla näytöillä */
.cta-stripe h2 .cta-br { display: none; }
@media (min-width: 769px) {
	.cta-stripe h2 .cta-br { display: inline; }
}
.cta-stripe p {
	color: rgba(255, 255, 255, 0.78);
	margin: 0 0 24px;
	font-size: 1.05rem;
}
.cta-stripe .btn { display: inline-flex; }

@media (max-width: 768px) {
	.cta-stripe { padding: 56px 0; }
	.cta-stripe h2 { font-size: 1.45rem; }
	.cta-stripe p { font-size: 0.98rem; margin-bottom: 20px; }
}
@media (max-width: 540px) {
	.cta-stripe { padding: 44px 0; }
	.cta-stripe h2 { font-size: 1.25rem; }
	.cta-stripe p { font-size: 0.92rem; }
}

/* -------- Newsletter (etusivun email-tilaus) -------- */
.newsletter {
	background: var(--tint);
	padding: 56px 0;
}
.newsletter__inner {
	display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px;
	align-items: center;
}
.newsletter__copy h2 {
	margin: 0 0 12px;
	font-size: clamp(1.4rem, 2.4vw, 1.7rem);
}
.newsletter__copy p {
	color: var(--slate);
	font-size: 0.97rem;
	margin: 0 0 16px;
}
.newsletter__benefits {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-direction: column; gap: 8px;
	font-size: 0.93rem;
	color: var(--text);
}
.newsletter__benefits li {
	display: flex; align-items: flex-start; gap: 8px;
}
.newsletter__benefits li::before {
	content: '✓';
	color: var(--green);
	font-weight: 800;
	flex-shrink: 0;
}
.newsletter__form {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow);
}
.newsletter__form h3 {
	margin: 0 0 12px;
	font-size: 1.05rem;
}
.newsletter__form .form-row {
	display: flex; flex-direction: column; gap: 8px;
	margin-bottom: 12px;
}
.newsletter__form label {
	font-size: 0.85rem;
	color: var(--slate);
	font-weight: 500;
}
.newsletter__form input[type="email"] {
	padding: 12px 14px;
	border: 1px solid var(--border);
	border-radius: 10px;
	font: 500 1rem var(--font-sans);
	color: var(--text);
	outline: none;
	transition: border-color .15s ease;
}
.newsletter__form input[type="email"]:focus { border-color: var(--text); }
.newsletter__form .form-consent {
	display: flex; align-items: flex-start; gap: 8px;
	font-size: 0.8rem;
	color: var(--slate);
	margin-bottom: 12px;
	cursor: pointer;
	line-height: 1.5;
}
.newsletter__form .form-consent input { margin-top: 2px; accent-color: var(--text); flex-shrink: 0; }
.newsletter__form .form-note {
	font-size: 0.78rem;
	color: var(--slate-light);
	margin: 8px 0 0;
	text-align: center;
}
.newsletter__form .form-message {
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 0.88rem;
	margin-top: 12px;
}
.newsletter__form .form-message.is-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.newsletter__form .form-message.is-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
@media (max-width: 768px) {
	.newsletter { padding: 36px 0; }
	.newsletter__inner { grid-template-columns: 1fr; gap: 20px; }
	.newsletter__copy h2 {
		font-size: 1.35rem;
		line-height: 1.25;
		margin-bottom: 10px;
	}
	.newsletter__copy p {
		font-size: 0.95rem;
		line-height: 1.5;
		margin-bottom: 14px;
	}
	.newsletter__benefits {
		font-size: 0.9rem;
		gap: 7px;
	}
	.newsletter__form {
		padding: 18px 16px;
		border-radius: 12px;
	}
	.newsletter__form h3 {
		font-size: 1.05rem;
		margin-bottom: 10px;
	}
	.newsletter__form input[type="email"] {
		font-size: 16px; /* estää iOS-zoomausta inputtiin */
		padding: 11px 12px;
	}
	.newsletter__form .form-consent {
		font-size: 0.82rem;
		gap: 7px;
		line-height: 1.45;
	}
	.newsletter__form .form-note {
		font-size: 0.78rem;
		line-height: 1.4;
	}
}
@media (max-width: 420px) {
	.newsletter { padding: 28px 0; }
	.newsletter__copy h2 { font-size: 1.25rem; }
	.newsletter__form { padding: 16px 14px; }
}

/* -------- Footer -------- */
.site-footer {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.82);
	padding: 60px 0 28px;
	font-size: 0.93rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.82); }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-grid {
	display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
}
.footer-brand { color: #fff; }
.footer-brand__name { font-size: 1.5rem; font-weight: 800; color: #fff; margin: 0 0 8px; letter-spacing: -0.02em; }
.footer-brand__name span { color: rgba(255, 255, 255, 0.55); font-weight: 600; }
.footer-brand__logo-link { display: inline-block; margin-bottom: 10px; line-height: 0; }
.footer-brand__logo { max-height: 60px; max-width: 220px; width: auto; height: auto; display: block; }
.footer-brand__desc { color: rgba(255, 255, 255, 0.72); margin: 0 0 14px; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin: 0 0 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: 44px;
	padding-top: 22px;
	display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.62);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.82); }

/* -------- Logo-kontit kun yhtiön logo on asetettu (Featured image) --------
   Logot ovat JPG 140×93 px valkoisella taustalla → näytä valkoisella pohjalla,
   kevyt reuna ja pyöristetyt kulmat jotta logo erottuu kortin valkoisesta
   taustasta. Sama tyyli kaikissa kontteissa: kortti, rivi, hero, sticky, yhtiön kortti. */
.product-card__logo--image,
.product-row__logo--image,
.company-card__logo--image,
.single-hero__brand--image,
.sticky-cta__brand--image {
	background: #fff !important;
	border: 1px solid var(--border);
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.product-card__logo--image img,
.product-row__logo--image img,
.company-card__logo--image img,
.single-hero__brand--image img,
.sticky-cta__brand--image img {
	padding: 6px;
	width: 100%; height: 100%;
	object-fit: contain;
	display: block;
}
/* Pieni säätö rivin logoon: 84×50 px – pieni padding */
.product-row__logo--image img { padding: 5px; }
/* Sticky-palkin logo: 52×52 – kompakti padding */
.sticky-cta__brand--image img { padding: 4px; }
@media (max-width: 400px) {
	.sticky-cta__brand--image img { padding: 3px; }
}

/* -------- Sticky CTA (mobile, single product) -------- */
.sticky-cta { display: none; }
@media (max-width: 768px) {
	.sticky-cta {
		display: flex;
		position: fixed;
		left: 0; right: 0; bottom: 0;
		z-index: 40;
		background: #fff;
		border-top: 1px solid var(--border);
		box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.10);
		padding: 14px 16px;
		padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
		gap: 12px;
		align-items: center;
		min-height: 80px;
		box-sizing: border-box;
	}
	.sticky-cta__brand {
		flex-shrink: 0;
		width: 52px; height: 52px;
		border-radius: 10px;
		display: flex; align-items: center; justify-content: center;
		font-weight: 800;
		font-size: 1rem;
		color: #fff;
		overflow: hidden;
	}
	.sticky-cta__brand img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
	.sticky-cta__info {
		flex: 1 1 auto; min-width: 0;
		display: flex; flex-direction: column; gap: 3px;
	}
	.sticky-cta__name {
		font-size: 0.95rem;
		font-weight: 700;
		color: var(--text);
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		line-height: 1.25;
	}
	.sticky-cta__price {
		font-size: 0.8rem;
		color: var(--slate);
		line-height: 1.3;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.sticky-cta__price strong { color: var(--text); font-weight: 700; }
	.sticky-cta__btn {
		flex-shrink: 0;
		padding: 13px 18px;
		font-size: 0.92rem;
		font-weight: 700;
		background: var(--cta);
		border: 0;
		color: #fff;
		border-radius: 10px;
		text-decoration: none;
		display: inline-flex; align-items: center; gap: 6px;
		white-space: nowrap;
		min-height: 50px;
		box-shadow: 0 2px 8px rgba(238, 172, 23, 0.30);
		transition: background .15s ease, box-shadow .15s ease, transform .12s ease;
	}
	.sticky-cta__btn:hover, .sticky-cta__btn:focus { background: var(--cta-dark); color: #fff; text-decoration: none; }
	.sticky-cta__btn:active { transform: translateY(1px); box-shadow: 0 1px 4px rgba(238, 172, 23, 0.22); }

	/* Body padding niin että sisältö ei jää sticky-palkin alle */
	body.verrokit-tuote,
	body.verrokit-yhtio { padding-bottom: 96px; }
}

/* Narrow phones — tiivistä ja lyhennä */
@media (max-width: 400px) {
	.sticky-cta {
		padding: 12px 12px;
		padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
		gap: 10px;
		min-height: 72px;
	}
	.sticky-cta__brand { width: 46px; height: 46px; }
	.sticky-cta__name { font-size: 0.88rem; }
	.sticky-cta__price { display: none; }  /* piilota hinta — näkyy jo sivulla */
	.sticky-cta__btn { padding: 12px 14px; font-size: 0.85rem; }
	body.verrokit-tuote,
	body.verrokit-yhtio { padding-bottom: 84px; }
}

/* Kun evästebanneri auki, piilota sticky CTA jotta ei tukita näkymää */
body.has-cookie-open .sticky-cta { display: none; }

/* -------- Cookie banner -------- */
.cookie-banner {
	position: fixed;
	left: 16px; right: 16px; bottom: 16px;
	max-width: 720px; margin: 0 auto;
	z-index: 1000;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: 18px 20px;
	display: none;
}
.cookie-banner.is-visible { display: block; animation: cookie-rise .35s ease both; }
@keyframes cookie-rise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner h3 { font-size: 1rem; margin: 0 0 6px; }
.cookie-banner p { color: var(--slate); margin: 0 0 12px; font-size: 0.9rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-prefs {
	border-top: 1px solid var(--border-soft);
	margin-top: 14px; padding-top: 14px;
	display: none;
}
.cookie-prefs.is-visible { display: block; }
.cookie-prefs label {
	display: flex; align-items: flex-start; gap: 10px;
	padding: 8px 0;
	font-size: 0.88rem;
	color: var(--text);
	cursor: pointer;
}
.cookie-prefs input { margin-top: 3px; accent-color: var(--text); }
.cookie-prefs label strong { display: block; color: var(--text); }
.cookie-prefs label small { color: var(--slate); display: block; }
.cookie-prefs label.is-disabled { opacity: 0.7; cursor: not-allowed; }

/* -------- Utilities -------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-8 { margin-top: 32px; }
.mt-16 { margin-top: 64px; }
.mb-0 { margin-bottom: 0 !important; }
.flex { display: flex; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.tag {
	display: inline-block;
	padding: 3px 9px;
	background: var(--tint);
	color: var(--text);
	font-size: 0.78rem;
	border-radius: 6px;
	font-weight: 600;
}
.divider {
	height: 1px;
	background: var(--border);
	margin: 36px 0;
}
.muted { color: var(--slate); }
.small { font-size: 0.88rem; }
.callout {
	background: var(--tint);
	border-left: 4px solid var(--text);
	border-radius: var(--radius-sm);
	padding: 14px 18px;
	margin: 18px 0;
	color: var(--text-soft);
}
.callout strong { color: var(--text); }

/* -------- Responsive -------- */
@media (max-width: 960px) {
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
	.section { padding: 48px 0; }
	.hero { padding: 48px 0 44px; }
	.hero__lead { font-size: 1rem; margin-bottom: 24px; }
	.hero__actions { margin-bottom: 24px; }
	.hero__stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
		padding-top: 20px;
		max-width: 100%;
	}
	.hero__stat strong { font-size: 1.3rem; }
	.hero__stat span { font-size: 0.74rem; line-height: 1.25; display: block; }
	.menu-toggle { display: inline-flex; }
	.lang-switcher { order: -1; }

	body.has-mobile-menu { overflow: hidden; }

	.primary-nav {
		position: fixed;
		top: 72px;
		left: 0; right: 0; bottom: 0;
		width: 100%;
		background: #fff;
		padding: 0;
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		transform: translateX(100%);
		transition: transform .28s cubic-bezier(.4, 0, .2, 1);
		overflow-y: auto;
		z-index: 49;
		box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
	}
	.primary-nav.is-open { transform: translateX(0); }
	.primary-nav > ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		padding: 8px 0;
	}
	.primary-nav > ul > li {
		border-bottom: 1px solid var(--border-soft);
	}
	.primary-nav > ul > li:last-child { border-bottom: 0; }
	.primary-nav > ul > li > a {
		padding: 16px 24px;
		font-size: 1.02rem;
		font-weight: 600;
		border-radius: 0;
		color: var(--text);
	}
	.primary-nav > ul > li > a:hover { background: var(--tint); }

	/* Dropdown — collapsible accordion */
	.primary-nav .has-dropdown > a {
		position: relative;
	}
	.primary-nav .has-dropdown > a::after {
		margin-left: auto;
		margin-top: -2px;
		transition: transform .2s ease;
	}
	.primary-nav .has-dropdown.is-open > a::after {
		transform: rotate(225deg);
		margin-top: 2px;
	}
	.primary-nav .has-dropdown .dropdown {
		position: static;
		opacity: 1; visibility: visible;
		transform: none;
		max-height: 0;
		overflow: hidden;
		padding: 0;
		margin: 0;
		background: var(--bg-alt);
		border: 0;
		box-shadow: none;
		transition: max-height .3s ease, padding .2s ease;
	}
	.primary-nav .has-dropdown.is-open .dropdown {
		max-height: 800px;
		padding: 6px 0;
	}
	.primary-nav .dropdown li { border-bottom: 0; }
	.primary-nav .dropdown a {
		padding: 11px 36px;
		font-size: 0.95rem;
		color: var(--text-soft);
		border-radius: 0;
	}

	.compare-toolbar { flex-direction: column; align-items: stretch; }
	.compare-toolbar__group { flex-wrap: wrap; }
	.product-card__footer { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
	.hero { padding: 40px 0 36px; }
	.hero__stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
		padding-top: 16px;
	}
	.hero__stat strong { font-size: 1.1rem; }
	.hero__stat span { font-size: 0.68rem; }
	.footer-grid { grid-template-columns: 1fr; }
	.product-card__prices { grid-template-columns: 1fr; }
	.hero h1 { font-size: 1.85rem; margin-bottom: 12px; }
	.hero__lead { font-size: 0.95rem; margin-bottom: 20px; }
}

/* -------- Print -------- */
@media print {
	.site-header, .site-footer, .cookie-banner, .compare-toolbar { display: none; }
	body { background: #fff; color: #000; }
	.product-card { break-inside: avoid; }
}
