/* ===== 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: #1e293b;
	background: #f0f9ff;
	line-height: 1.65;
}

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

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

/* ===== STATS BAR ===== */
.stats-bar {
	background: #0d2b4e;
	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: #38bdf8;
	font-weight: 700;
}

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

.site-header.scrolled { box-shadow: 0 2px 12px rgba(13,43,78,0.15); }

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

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

.logo:hover { color: #0284c7; text-decoration: none; }

.logo-icon {
	width: 28px;
	height: 28px;
	color: #0ea5e9;
	flex-shrink: 0;
}

.logo strong { color: #0ea5e9; }

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

.main-nav a {
	display: block;
	padding: 8px 16px;
	color: #334155;
	font-size: 0.95rem;
	font-weight: 500;
	border-bottom: 2px solid transparent;
	transition: color 0.15s, border-color 0.15s;
	text-decoration: none;
}

.main-nav a:hover, .main-nav a.active {
	color: #0284c7;
	border-bottom-color: #0ea5e9;
	text-decoration: none;
}

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

/* ===== HERO ===== */
.hero {
	background: linear-gradient(150deg, #0d2b4e 0%, #0c4a72 55%, #0284c7 100%);
	color: #fff;
	padding: 80px 0 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-content { position: relative; z-index: 1; padding-bottom: 80px; }

.hero-badge {
	display: inline-block;
	background: rgba(14,165,233,0.25);
	border: 1px solid rgba(14,165,233,0.5);
	border-radius: 4px;
	padding: 4px 16px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: #bae6fd;
}

.hero h1 {
	font-size: clamp(1.8rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 18px;
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

.hero p {
	font-size: 1.1rem;
	opacity: 0.88;
	max-width: 580px;
	margin: 0 auto 32px;
}

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

.hero-wave {
	display: block;
	width: 100%;
	height: 64px;
	margin-bottom: -2px;
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 28px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 0.95rem;
	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 4px 16px rgba(0,0,0,0.2); text-decoration: none; }

.btn-primary { background: #0ea5e9; color: #fff; }
.btn-primary:hover { background: #0284c7; color: #fff; }

.btn-secondary { background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.45); }
.btn-secondary:hover { background: rgba(255,255,255,0.28); color: #fff; }

.btn-amazon {
	background: #f07800;
	color: #fff;
	width: 100%;
	justify-content: center;
	margin-top: auto;
	border-radius: 6px;
}

.btn-amazon:hover { background: #d46800; color: #fff; }

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

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

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

/* ===== 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; color: #0d2b4e; margin-bottom: 10px; }
.section-header p { color: #475569; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.section-tag {
	display: inline-block;
	background: #e0f2fe;
	color: #0284c7;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 3px 12px;
	border-radius: 4px;
	margin-bottom: 10px;
}

/* ===== PRODUCT GRID – HORIZONTAL CARDS ===== */
.products-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.product-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 1px 6px rgba(13,43,78,0.08);
	overflow: hidden;
	display: flex;
	flex-direction: row;
	transition: transform 0.2s, box-shadow 0.2s;
	border: 1px solid #e2e8f0;
	position: relative;
}

.product-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,43,78,0.14); }

.product-card.highlighted { border-color: #0ea5e9; box-shadow: 0 3px 14px rgba(14,165,233,0.2); }

.card-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #fff;
	z-index: 2;
}

.card-image-wrap {
	position: relative;
	width: 35%;
	flex-shrink: 0;
}

.card-image {
	width: 100%;
	height: 100%;
	min-height: 200px;
	object-fit: cover;
	background: #dbeafe;
}

.energy-badge {
	position: absolute;
	bottom: 10px;
	right: 10px;
	padding: 3px 10px;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: 0.05em;
	box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

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

.card-brand {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #0284c7;
}

.card-title { font-size: 1.1rem; font-weight: 700; color: #0d2b4e; line-height: 1.3; }

.card-desc { font-size: 0.88rem; color: #475569; flex: 1; }

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

.meta-chip {
	background: #f0f9ff;
	border: 1px solid #bae6fd;
	border-radius: 4px;
	padding: 3px 10px;
	font-size: 0.78rem;
	font-weight: 600;
	color: #0284c7;
}

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

.stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 1px; }

.rating-text { font-size: 0.82rem; color: #64748b; }

.card-price { font-size: 1rem; font-weight: 700; color: #0d2b4e; }

/* ===== PROS LIST ===== */
.pros-list li { font-size: 0.83rem; color: #374151; padding: 3px 0 3px 18px; position: relative; line-height: 1.4; }
.pros-list li::before { content: '✓'; position: absolute; left: 0; color: #0ea5e9; font-weight: 700; }

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

.pros-list h4 { color: #0284c7; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.cons-list h4 { color: #c0392b; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }

.cons-list li { font-size: 0.83rem; color: #374151; padding: 3px 0 3px 18px; position: relative; line-height: 1.4; }
.cons-list li::before { content: '−'; position: absolute; left: 0; color: #c0392b; font-weight: 700; }

/* ===== BRAND HIGHLIGHT BOX ===== */
.brand-hero {
	background: linear-gradient(140deg, #0d2b4e 0%, #0c4a72 60%, #0284c7 100%);
	color: #fff;
	border-radius: 14px;
	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: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.35); }

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 18px;
	margin-top: 32px;
}

.feature-card {
	background: #fff;
	border-radius: 8px;
	padding: 22px;
	box-shadow: 0 1px 6px rgba(13,43,78,0.07);
	border-left: 4px solid #0ea5e9;
}

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

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

/* ===== COMPARISON TABLE ===== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 10px; box-shadow: 0 2px 10px rgba(13,43,78,0.1); }

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

.comparison-table th {
	background: #0d2b4e;
	color: #fff;
	padding: 13px 16px;
	text-align: left;
	font-weight: 700;
	white-space: nowrap;
	font-size: 0.82rem;
}

.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: 12px 16px; border-bottom: 1px solid #e2e8f0; vertical-align: middle; }

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

.comparison-table tr.highlight-row td { background: #e0f2fe; }
.comparison-table tr.highlight-row td:first-child { border-left: 3px solid #0ea5e9; }

.brand-logo { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }
.brand-bosch { color: #0d2b4e; }
.brand-siemens { color: #0284c7; }
.brand-miele { color: #7c3aed; }
.brand-aeg { color: #dc2626; }
.brand-samsung { color: #1e40af; }
.brand-lg { color: #c2410c; }
.brand-candy { color: #15803d; }

.check { color: #0284c7; font-weight: 700; }
.cross { color: #c0392b; }

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

/* ===== FILTER SELECTS ===== */
.filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; align-items: center; }

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

.filter-select {
	padding: 8px 14px;
	border: 2px solid #cbd5e1;
	border-radius: 6px;
	background: #fff;
	color: #334155;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.15s;
	min-width: 160px;
}

.filter-select:focus { outline: none; border-color: #0ea5e9; }

.filter-btn {
	padding: 7px 18px;
	border-radius: 6px;
	border: 2px solid #cbd5e1;
	background: #fff;
	color: #475569;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s;
}

.filter-btn:hover { border-color: #0ea5e9; color: #0284c7; }
.filter-btn.active { background: #0ea5e9; border-color: #0ea5e9; color: #fff; }

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

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

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

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

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

.faq-item.open .faq-question { background: #f0f9ff; }
.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: #374151;
	font-size: 0.93rem;
	line-height: 1.7;
	border-top: 1px solid #e2e8f0;
	padding-top: 16px;
}

/* ===== RATGEBER / GUIDE ===== */
.guide-content { max-width: 860px; margin: 0 auto; }

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

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

.guide-section h3 { font-size: 1.1rem; font-weight: 700; color: #0284c7; margin-bottom: 10px; margin-top: 24px; }

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

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

.tip-box {
	background: #e0f2fe;
	border-left: 4px solid #0ea5e9;
	border-radius: 0 8px 8px 0;
	padding: 16px 20px;
	margin: 20px 0;
	font-size: 0.93rem;
	color: #0c4a72;
}

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

.warning-box {
	background: #fff8e6;
	border-left: 4px solid #f59e0b;
	border-radius: 0 8px 8px 0;
	padding: 16px 20px;
	margin: 20px 0;
	font-size: 0.93rem;
	color: #78350f;
}

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

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

.breadcrumb a { color: #0284c7; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span + span::before { content: ' › '; color: #cbd5e1; }

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

/* ===== AFFILIATE NOTICE ===== */
.affiliate-notice {
	background: #fffbea;
	border: 1px solid #fcd34d;
	border-radius: 6px;
	padding: 12px 16px;
	font-size: 0.8rem;
	color: #78350f;
	margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.site-footer {
	background: #0d2b4e;
	color: rgba(255,255,255,0.75);
	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.05rem; }
.footer-brand .logo strong { color: #38bdf8; }
.footer-brand p { font-size: 0.85rem; margin-top: 12px; line-height: 1.6; }

.footer-col h4 { color: #fff; font-size: 0.88rem; font-weight: 700; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.85rem; transition: color 0.15s; }
.footer-col a:hover { color: #38bdf8; text-decoration: none; }

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.12);
	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.55); }
.footer-bottom a:hover { color: #38bdf8; }

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

	.brand-hero { grid-template-columns: 1fr; padding: 32px 24px; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.product-card { flex-direction: column; }
	.card-image-wrap { width: 100%; height: 220px; }

}

@media (max-width: 640px) {

	.main-nav {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 2px solid #0ea5e9;
		box-shadow: 0 8px 24px rgba(13,43,78,0.15);
	}

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

	.main-nav ul { flex-direction: column; padding: 12px; }
	.main-nav a { padding: 12px 16px; border-bottom: none; border-left: 3px solid transparent; }
	.main-nav a.active { border-left-color: #0ea5e9; }

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

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

	.section { padding: 40px 0; }
	.pros-cons { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.stats-inner { gap: 14px; }
	.footer-bottom { flex-direction: column; text-align: center; }
	.filters { flex-direction: column; align-items: stretch; }

}

/* ===== 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: #0ea5e9; font-weight: 700; }

.notice {
	background: #f0f9ff;
	border: 1px solid #bae6fd;
	border-radius: 6px;
	padding: 14px 18px;
	font-size: 0.875rem;
	color: #475569;
	margin-bottom: 24px;
}
