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

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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	color: #123331;
	background: #f4f7f6;
	line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #0f6d66; text-decoration: none; }
a:hover { color: #0a4a45; text-decoration: underline; }
ul, ol { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
	background: #fff;
	border-bottom: 2px solid #0f6d66;
	position: sticky;
	top: 0;
	z-index: 100;
	transition: box-shadow 0.2s;
}

.site-header.scrolled { box-shadow: 0 2px 12px rgba(10,40,38,0.14); }

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

.logo {
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #123331;
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	text-decoration: none;
}

.logo:hover { color: #0a4a45; text-decoration: none; }

.logo-icon {
	width: 28px;
	height: 28px;
	color: #0f6d66;
}

.logo strong { color: #14a37e; }

.main-nav ul {
	display: flex;
	gap: 4px;
}

.main-nav a {
	display: block;
	padding: 8px 14px;
	border-radius: 3px;
	color: #33504e;
	font-size: 0.92rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition: background 0.15s, color 0.15s;
}

.main-nav a:hover, .main-nav a.active {
	background: #e3efec;
	color: #0f6d66;
	text-decoration: none;
}

.nav-toggle {
	display: none;
	background: none;
	border: 1px solid #c7d5d3;
	border-radius: 3px;
	padding: 6px 12px;
	font-size: 1.1rem;
	cursor: pointer;
	color: #33504e;
}

/* ===== HERO ===== */
.hero {
	background:
		radial-gradient(circle at 15% 20%, rgba(255,255,255,0.06) 0%, transparent 40%),
		radial-gradient(circle at 85% 75%, rgba(20,163,126,0.25) 0%, transparent 45%),
		linear-gradient(150deg, #0a2e2c 0%, #0f5450 55%, #12695f 100%);
	color: #fff;
	padding: 72px 0 84px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		repeating-radial-gradient(circle at 50% 120%, transparent 0, transparent 60px, rgba(255,255,255,0.035) 61px, rgba(255,255,255,0.035) 62px);
	pointer-events: none;
}

.hero-badge {
	display: inline-block;
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(196,224,220,0.5);
	border-radius: 3px;
	padding: 5px 16px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 22px;
}

.hero h1 {
	font-size: clamp(1.8rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: -0.01em;
	margin-bottom: 16px;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}

.hero p {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.88);
	max-width: 620px;
	margin: 0 auto 28px;
}

.hero-rating { display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-rating .stars { font-size: 1.3rem; }
.hero-rating .rating-text { color: rgba(255,255,255,0.9); font-size: 0.95rem; }

.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 28px;
	border-radius: 3px;
	font-weight: 700;
	font-size: 0.92rem;
	letter-spacing: 0.02em;
	cursor: pointer;
	border: none;
	transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
	text-decoration: none;
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(10,40,38,0.28); text-decoration: none; }

.btn-primary { background: linear-gradient(135deg, #17b28a, #0f6d66); color: #fff; }
.btn-primary:hover { background: linear-gradient(135deg, #14a37e, #0a4a45); color: #fff; }

.btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-secondary:hover { background: rgba(255,255,255,0.22); color: #fff; }

.btn-amazon {
	background: linear-gradient(135deg, #17b28a, #0f6d66);
	color: #fff;
	width: 100%;
	justify-content: center;
	margin-top: auto;
}

.btn-amazon:hover { background: linear-gradient(135deg, #14a37e, #0a4a45); color: #fff; }

.btn-outline {
	background: transparent;
	border: 2px solid #0f6d66;
	color: #0f6d66;
}

.btn-outline:hover { background: #0f6d66; color: #fff; }

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

.btn-detail {
	background: transparent;
	border: 1.5px solid #bcd4d1;
	color: #0f6d66;
	font-size: 0.82rem;
	padding: 7px 16px;
	width: 100%;
	justify-content: center;
	margin-bottom: 6px;
}
.btn-detail:hover { background: #e3efec; color: #0a4a45; border-color: #0f6d66; }

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section-alt { background: #fff; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.01em; color: #0d2f2c; margin-bottom: 10px; }
.section-header p { color: #4c6a67; font-size: 1.05rem; max-width: 640px; margin: 0 auto; }

.section-tag {
	display: inline-block;
	background: #e3efec;
	color: #0f6d66;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: 3px;
	margin-bottom: 10px;
}

/* ===== TL;DR / QUICK VERDICT BOX ===== */
.quick-verdict {
	background: #fff;
	border: 1px solid #cfe0dd;
	border-top: 3px solid #14a37e;
	border-radius: 4px;
	padding: 28px 32px;
	margin: 0 0 40px;
	box-shadow: 0 4px 20px rgba(10,40,38,0.07);
}

.quick-verdict h2 { font-size: 1.2rem; color: #0d2f2c; margin-bottom: 12px; }
.quick-verdict p { color: #33504e; margin-bottom: 8px; }
.quick-verdict ul { list-style: none; margin-top: 10px; }
.quick-verdict li { padding: 4px 0 4px 24px; position: relative; font-size: 0.95rem; }
.quick-verdict li::before { content: '✓'; position: absolute; left: 0; color: #14a37e; font-weight: 700; }

/* ===== PRODUCT CARDS ===== */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
}

.product-card {
	background: #fff;
	border: 1px solid #dbe7e5;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.product-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(10,40,38,0.14); border-color: #9fc7c1; }

.product-card.highlighted { border: 1px solid #14a37e; box-shadow: 0 0 0 3px rgba(20,163,126,0.14); }

.card-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 3px;
}

.card-image-wrap { position: relative; background: linear-gradient(160deg, #eef3f2 0%, #dbe7e5 100%); }
.card-image { width: 100%; aspect-ratio: 1/1; object-fit: contain; padding: 16px; }

.energy-badge {
	position: absolute;
	bottom: 12px;
	right: 12px;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 3px;
}

.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; gap: 8px; }

.card-brand { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #0f6d66; }
.card-title { font-size: 1.08rem; font-weight: 800; color: #0d2f2c; line-height: 1.3; }
.card-desc { font-size: 0.875rem; color: #4c6a67; line-height: 1.5; }

.card-meta { display: flex; gap: 8px; flex-wrap: wrap; }

.card-rating { display: flex; align-items: center; gap: 8px; }

.card-price { font-size: 1.25rem; font-weight: 800; color: #0f6d66; margin-top: 4px; }

/* ===== PRODUCT DETAIL / REVIEW BOX ===== */
.review-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	background: #fff;
	border: 1px solid #dbe7e5;
	border-radius: 6px;
	box-shadow: 0 4px 24px rgba(10,40,38,0.08);
	padding: 36px;
	align-items: start;
	margin-bottom: 20px;
}

.review-gallery-main { border-radius: 4px; overflow: hidden; margin-bottom: 12px; background: #eef3f2; }
.review-gallery-main img { width: 100%; aspect-ratio: 4/3; object-fit: contain; }

.review-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.review-thumbs img { border-radius: 3px; aspect-ratio: 1/1; object-fit: contain; background: #eef3f2; cursor: pointer; border: 2px solid transparent; transition: border-color 0.15s; }
.review-thumbs img:hover, .review-thumbs img.active { border-color: #14a37e; }

.review-info h1, .review-info h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: #0d2f2c; margin-bottom: 10px; line-height: 1.25; }

.review-price { font-size: 1.6rem; font-weight: 800; color: #0f6d66; margin: 14px 0 4px; }
.review-price small { font-size: 0.8rem; color: #6b8785; font-weight: 400; display: block; margin-top: 2px; }

.review-meta-chips { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0; }

/* ===== META CHIPS ===== */
.meta-chip {
	background: #e3efec;
	border-radius: 3px;
	padding: 4px 10px;
	font-size: 0.8rem;
	font-weight: 600;
	color: #0f6d66;
}

.stars { color: #c9a227; font-size: 0.9rem; letter-spacing: 1px; }
.rating-text { font-size: 0.85rem; color: #5c7876; }

/* ===== PROS & CONS ===== */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }

.pros-list h4 { color: #14a37e; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.cons-list h4 { color: #b3492f; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }

.pros-list li, .cons-list li { font-size: 0.88rem; color: #33504e; padding: 4px 0 4px 20px; position: relative; line-height: 1.45; }

.pros-list li::before { content: '+'; position: absolute; left: 4px; color: #14a37e; font-weight: 700; }
.cons-list li::before { content: '−'; position: absolute; left: 4px; color: #b3492f; font-weight: 700; }

/* ===== FEATURE GRID ===== */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
	margin-top: 32px;
}

.feature-card {
	background: #fff;
	border: 1px solid #dbe7e5;
	border-radius: 4px;
	padding: 24px;
	border-left: 3px solid #14a37e;
}

.feature-icon {
	width: 40px;
	height: 40px;
	background: #e3efec;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.feature-icon svg { width: 22px; height: 22px; fill: #0f6d66; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; color: #123331; margin-bottom: 6px; }
.feature-card p { font-size: 0.85rem; color: #4c6a67; line-height: 1.4; }

/* ===== LIMESCALE / FILTER CALLOUT (produktspezifisch) ===== */
.filter-spec-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.filter-spec-card {
	background: #fff;
	border: 1px solid #dbe7e5;
	border-radius: 4px;
	padding: 18px 20px;
	position: relative;
}

.filter-spec-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg, #17b28a, #0a4a45);
}

.filter-spec-rating { display: inline-block; background: #e3efec; color: #0f6d66; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 10px; border-radius: 3px; margin-bottom: 8px; }
.filter-spec-card h4 { font-size: 0.95rem; font-weight: 700; color: #0d2f2c; margin-bottom: 6px; }
.filter-spec-card p { font-size: 0.85rem; color: #4c6a67; line-height: 1.5; }

/* ===== COMPARISON TABLE ===== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid #dbe7e5; border-radius: 4px; margin-bottom: 20px; }

.comparison-table { width: 100%; border-collapse: collapse; background: #fff; font-size: 0.9rem; min-width: 640px; }

.comparison-table th {
	background: #0a2e2c;
	color: #fff;
	padding: 14px 16px;
	text-align: left;
	font-weight: 700;
	white-space: nowrap;
	font-size: 0.82rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.comparison-table th.sort-asc::after { content: ' ▲'; font-size: 0.7em; }
.comparison-table th.sort-desc::after { content: ' ▼'; font-size: 0.7em; }

.comparison-table td { padding: 13px 16px; border-bottom: 1px solid #e7f0ee; vertical-align: middle; }

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: #f4f9f8; }

.comparison-table tr.highlight-row td { background: #e3f3ee; }
.comparison-table tr.highlight-row td:first-child { border-left: 3px solid #14a37e; }

.check { color: #14a37e; font-weight: 700; }
.cross { color: #b3492f; }

.rating-cell { display: flex; align-items: center; gap: 6px; }

/* ===== FILTERS ===== */
.filters {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.filter-group { display: flex; flex-direction: column; gap: 4px; }
.filter-group label { font-size: 0.75rem; font-weight: 700; color: #4c6a67; text-transform: uppercase; letter-spacing: 0.06em; }

.filter-select {
	padding: 9px 14px;
	border-radius: 3px;
	border: 1px solid #c7d5d3;
	background: #fff;
	font-size: 0.9rem;
	color: #123331;
	cursor: pointer;
	min-width: 180px;
}

.filter-select:focus { outline: none; border-color: #14a37e; }

.filter-btn {
	padding: 7px 18px;
	border-radius: 3px;
	border: 1px solid #c7d5d3;
	background: #fff;
	color: #4c6a67;
	font-size: 0.86rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s;
}

.filter-btn:hover { border-color: #14a37e; color: #0f6d66; }
.filter-btn.active { background: #0f6d66; border-color: #0f6d66; color: #fff; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item { border: 1px solid #dbe7e5; border-radius: 4px; margin-bottom: 10px; overflow: hidden; }

.faq-question {
	width: 100%;
	text-align: left;
	background: #fff;
	padding: 18px 20px;
	font-size: 1rem;
	font-weight: 600;
	color: #123331;
	cursor: pointer;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.15s;
}

.faq-question:hover { background: #f4f9f8; }

.faq-question::after {
	content: '+';
	font-size: 1.3rem;
	color: #0f6d66;
	flex-shrink: 0;
	margin-left: 16px;
	transition: transform 0.2s;
}

.faq-item.open .faq-question { background: #f4f9f8; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }

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

.faq-answer-inner {
	padding: 0 20px 18px;
	color: #33504e;
	font-size: 0.95rem;
	line-height: 1.7;
	border-top: 1px solid #e3efec;
	padding-top: 16px;
}

/* ===== GUIDE / LONGFORM CONTENT ===== */
.guide-content { max-width: 880px; margin: 0 auto; }

.guide-section { margin-bottom: 48px; }

.guide-section h2 { font-size: 1.5rem; font-weight: 800; color: #0d2f2c; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid #e3efec; }

.guide-section h3 { font-size: 1.15rem; font-weight: 700; color: #0f6d66; margin-bottom: 10px; margin-top: 24px; }

.guide-section p { color: #33504e; margin-bottom: 14px; line-height: 1.75; }

.guide-section ul { list-style: disc; padding-left: 20px; color: #33504e; }
.guide-section ul li { margin-bottom: 6px; padding-left: 4px; }

.tip-box {
	background: #e3efec;
	border-left: 4px solid #14a37e;
	border-radius: 0 4px 4px 0;
	padding: 16px 20px;
	margin: 20px 0;
	font-size: 0.95rem;
	color: #0a4a45;
}

.tip-box strong { display: block; margin-bottom: 4px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }

.warning-box {
	background: #fdf2ea;
	border-left: 4px solid #c17a3a;
	border-radius: 0 4px 4px 0;
	padding: 16px 20px;
	margin: 20px 0;
	font-size: 0.95rem;
	color: #7a4a1a;
}

.source-note {
	font-size: 0.78rem;
	color: #6b8785;
	margin-top: 6px;
}

.source-note a { color: #6b8785; text-decoration: underline; }

/* ===== SPECS TABLE ===== */
.specs-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; background: #fff; }
.specs-table tr { border-bottom: 1px solid #e7f0ee; }
.specs-table td { padding: 10px 14px; }
.specs-table td:first-child { font-weight: 600; color: #4c6a67; width: 45%; background: #f4f9f8; }
.specs-table tr:last-child { border-bottom: none; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
	background: #fff;
	padding: 12px 0;
	border-bottom: 1px solid #dbe7e5;
	font-size: 0.85rem;
	color: #6b8785;
}

.breadcrumb a { color: #0f6d66; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span + span::before { content: ' › '; color: #a9beba; }

/* ===== RATING STARS ===== */
.star-full { color: #c9a227; }
.star-half { color: #c9a227; }
.star-empty { color: #d9e3e1; }

/* ===== TRUST BADGES ===== */
.trust-bar {
	background: #0a2e2c;
	color: rgba(255,255,255,0.9);
	padding: 12px 0;
	font-size: 0.85rem;
}

.trust-inner {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.trust-item { display: flex; align-items: center; gap: 8px; }

/* ===== AFFILIATE NOTICE ===== */
.affiliate-notice {
	background: #fdf6e8;
	border: 1px solid #e2cd8f;
	border-radius: 3px;
	padding: 12px 16px;
	font-size: 0.8rem;
	color: #7a6000;
	margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.site-footer {
	background: #0a2e2c;
	color: rgba(255,255,255,0.8);
	padding: 48px 0 24px;
	margin-top: 48px;
}

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

.footer-brand .logo { color: #fff; font-size: 1.1rem; }
.footer-brand .logo strong { color: #4fd8ae; }
.footer-brand .logo-icon { color: #4fd8ae; }
.footer-brand p { font-size: 0.875rem; margin-top: 12px; line-height: 1.6; }

.footer-col h4 { color: #fff; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.875rem; transition: color 0.15s; }
.footer-col a:hover { color: #4fd8ae; text-decoration: none; }

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.15);
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 0.8rem;
}

.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #4fd8ae; }

/* ===== GALLERY MODAL ===== */
.gallery-modal {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(6,20,19,0.94);
	z-index: 1000;
	align-items: center;
	justify-content: center;
}

.gallery-modal.open { display: flex; }
.gallery-modal img { max-width: 90vw; max-height: 85vh; border-radius: 4px; }

.gallery-modal-close {
	position: absolute;
	top: 20px;
	right: 28px;
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
	background: none;
	border: none;
	line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

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

}

@media (max-width: 640px) {

	.main-nav {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 2px solid #0f6d66;
		box-shadow: 0 8px 24px rgba(10,40,38,0.14);
	}

	.main-nav.open { display: block; }

	.main-nav ul { flex-direction: column; padding: 12px; }
	.main-nav a { padding: 12px 16px; }

	.nav-toggle { display: flex; align-items: center; justify-content: center; }

	.hero { padding: 48px 0 56px; }
	.hero h1 { font-size: 1.7rem; }
	.hero-buttons { flex-direction: column; align-items: center; }

	.section { padding: 40px 0; }
	.pros-cons { grid-template-columns: 1fr; }
	.review-thumbs { grid-template-columns: repeat(4, 1fr); }
	.footer-grid { grid-template-columns: 1fr; }
	.trust-inner { gap: 16px; }
	.footer-bottom { flex-direction: column; text-align: center; }

}

/* ===== HERO WAVE ===== */
.hero-wave {
	display: block;
	width: 100%;
	height: 64px;
	margin-bottom: -2px;
}

/* ===== STATS BAR ===== */
.stats-bar {
	background: #0a2e2c;
	color: rgba(255,255,255,0.9);
	padding: 10px 0;
	font-size: 0.82rem;
}

.stats-inner {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.stats-item {
	display: flex;
	align-items: center;
	gap: 5px;
	color: rgba(255,255,255,0.8);
}

.stats-item strong {
	color: #f5c96a;
	font-weight: 700;
}

/* ===== BRAND HERO ===== */
.brand-hero {
	background: linear-gradient(140deg, #0a2e2c 0%, #0f6d66 60%, #14a37e 100%);
	color: #fff;
	border-radius: 4px;
	padding: 48px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	margin-bottom: 48px;
}

.brand-hero h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.brand-hero p { opacity: 0.88; margin-bottom: 24px; font-size: 1rem; }
.brand-hero img { border-radius: 4px; box-shadow: 0 8px 32px rgba(0,0,0,0.35); }

/* ===== SERIES BADGES (Material) ===== */
.series-badge-edelstahl { display:inline-block; background:#c8941f; color:#fff; font-size:0.68rem; font-weight:700; padding:2px 8px; border-radius:3px; }
.series-badge-glas { display:inline-block; background:#7c3aed; color:#fff; font-size:0.68rem; font-weight:700; padding:2px 8px; border-radius:3px; }
.series-badge-premium { display:inline-block; background:#1e3a5f; color:#fff; font-size:0.68rem; font-weight:700; padding:2px 8px; border-radius:3px; }
.series-badge-design { display:inline-block; background:#059669; color:#fff; font-size:0.68rem; font-weight:700; padding:2px 8px; border-radius:3px; }

/* ===== FILTER BUTTONS ===== */
.filter-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

/* ===== ENTKALKUNG AMPEL ===== */
.entkalkung-ampel {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.82rem;
	font-weight: 600;
	color: #4c6a67;
}

.entkalkung-stufe {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.entkalkung-stufe.gruen { background: #14a37e; }
.entkalkung-stufe.gelb { background: #d4a017; }
.entkalkung-stufe.rot { background: #b3492f; }

/* ===== LIMESCALE FEATURE CARDS ===== */
.limescale-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
	margin-top: 24px;
}

.limescale-card {
	background: #fff;
	border: 1px solid #dbe7e5;
	border-radius: 4px;
	padding: 22px;
	border-left: 3px solid #14a37e;
}

.limescale-card h3 { font-size: 0.95rem; font-weight: 700; color: #123331; margin-bottom: 6px; }
.limescale-card p { font-size: 0.85rem; color: #4c6a67; line-height: 1.5; }

/* ===== BRAND ENERGY BADGES (Wasserkocher-spezifisch) ===== */
.energy-badge-wmf { background: #b38b2a; }
.energy-badge-rommelsbacher { background: #0f6d66; }
.energy-badge-philips { background: #005f8e; }
.energy-badge-bosch { background: #b32400; }
.energy-badge-sage { background: #333; }

/* ===== SEO-FRIENDLY SPECS TABLE ===== */
.specs-table-seo {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
	background: #fff;
	border: 1px solid #dbe7e5;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 20px;
}

.specs-table-seo thead th {
	background: #0a2e2c;
	color: #fff;
	padding: 12px 16px;
	text-align: left;
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.specs-table-seo tbody td {
	padding: 10px 14px;
	border-bottom: 1px solid #e7f0ee;
	vertical-align: middle;
}

.specs-table-seo tbody tr:last-child td { border-bottom: none; }
.specs-table-seo tbody tr:nth-child(even) td { background: #f4f9f8; }
.specs-table-seo tbody td:first-child { font-weight: 600; color: #4c6a67; width: 40%; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.highlight-text { color: #0f6d66; font-weight: 700; }

.notice {
	background: #f4f9f8;
	border: 1px solid #cfe0dd;
	border-radius: 3px;
	padding: 16px 20px;
	font-size: 0.875rem;
	color: #4c6a67;
	margin-bottom: 24px;
}
