/* ===== 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: #2d1a0e;
	background: #faf6f1;
	line-height: 1.65;
}

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

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

/* ===== STATS BAR ===== */
.stats-bar {
	background: #3d1505;
	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;
}

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

.site-header.scrolled { box-shadow: 0 2px 12px rgba(61,21,5,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: #3d1505;
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	text-decoration: none;
}

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

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

.logo strong { color: #c8941f; }

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

.main-nav a {
	display: block;
	padding: 8px 16px;
	color: #5c3a1e;
	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: #c8941f;
	border-bottom-color: #c8941f;
	text-decoration: none;
}

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

/* ===== HERO ===== */
.hero {
	background: linear-gradient(150deg, #3d1505 0%, #6b2d0e 55%, #c8941f 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(245,201,106,0.25);
	border: 1px solid rgba(245,201,106,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: #fde8b8;
}

.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: #c8941f; color: #fff; }
.btn-primary:hover { background: #a07010; 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 #c8941f;
	color: #c8941f;
}

.btn-outline:hover { background: #c8941f; 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: #3d1505; margin-bottom: 10px; }
.section-header p { color: #6b4c35; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.section-tag {
	display: inline-block;
	background: #fef3e2;
	color: #c8941f;
	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 ===== */
.products-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

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

.product-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(61,21,5,0.14); }

.product-card.highlighted { border-color: #c8941f; box-shadow: 0 3px 14px rgba(200,148,31,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: #fef3e2;
}

.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: #c8941f;
}

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

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

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

.meta-chip {
	background: #fef3e2;
	border: 1px solid #fde8b8;
	border-radius: 4px;
	padding: 3px 10px;
	font-size: 0.78rem;
	font-weight: 600;
	color: #c8941f;
}

.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: #94756a; }

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

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

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

.pros-list h4 { color: #c8941f; 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: #4a3728; 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, #3d1505 0%, #6b2d0e 60%, #c8941f 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(200px, 1fr));
	gap: 18px;
	margin-top: 32px;
}

.feature-card {
	background: #fff;
	border-radius: 8px;
	padding: 22px;
	box-shadow: 0 1px 6px rgba(61,21,5,0.07);
	border-left: 4px solid #c8941f;
}

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

.feature-icon svg { width: 22px; height: 22px; fill: #c8941f; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; color: #3d1505; margin-bottom: 6px; }
.feature-card p { font-size: 0.85rem; color: #6b4c35; line-height: 1.4; }

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

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

.comparison-table th {
	background: #3d1505;
	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 #ede0ce; vertical-align: middle; }

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

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

.brand-logo { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }
.brand-delonghi { color: #c8941f; }
.brand-jura { color: #3d1505; }
.brand-philips { color: #005f8e; }

.series-badge-delonghi { display:inline-block; background:#c8941f; color:#fff; font-size:0.68rem; font-weight:700; padding:2px 8px; border-radius:3px; }
.series-badge-jura { display:inline-block; background:#3d1505; color:#fff; font-size:0.68rem; font-weight:700; padding:2px 8px; border-radius:3px; }
.series-badge-philips { display:inline-block; background:#005f8e; color:#fff; font-size:0.68rem; font-weight:700; padding:2px 8px; border-radius:3px; }

.check { color: #c8941f; 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: #6b4c35; text-transform: uppercase; letter-spacing: 0.06em; }

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

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

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

.filter-btn:hover { border-color: #c8941f; color: #c8941f; }
.filter-btn.active { background: #c8941f; border-color: #c8941f; color: #fff; }

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

.faq-item { border: 1px solid #ede0ce; 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: #3d1505;
	cursor: pointer;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.15s;
}

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

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

.faq-item.open .faq-question { background: #fef9f2; }
.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: #4a3728;
	font-size: 0.93rem;
	line-height: 1.7;
	border-top: 1px solid #ede0ce;
	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: #3d1505; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid #fde8b8; }

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

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

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

.tip-box {
	background: #fef3e2;
	border-left: 4px solid #c8941f;
	border-radius: 0 8px 8px 0;
	padding: 16px 20px;
	margin: 20px 0;
	font-size: 0.93rem;
	color: #6b2d0e;
}

.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 #ede0ce; }
.specs-table td { padding: 10px 14px; }
.specs-table td:first-child { font-weight: 600; color: #6b4c35; width: 45%; background: #faf6f1; }
.specs-table tr:last-child { border-bottom: none; }

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

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

/* ===== 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: #3d1505;
	color: rgba(255,255,255,0.75);
	padding: 48px 0 24px;
}

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

.footer-brand p { font-size: 0.88rem; opacity: 0.75; line-height: 1.7; margin-top: 12px; }

.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #f5c96a; margin-bottom: 14px; }

.footer-col ul li { margin-bottom: 8px; }

.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.footer-col a:hover { color: #f5c96a; text-decoration: none; }

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

.footer-bottom nav a { color: rgba(255,255,255,0.6); margin: 0 4px; }
.footer-bottom nav a:hover { color: #f5c96a; }

/* ===== UTILITY ===== */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.text-center { text-align: center; }
.notice { font-size: 0.82rem; color: #94756a; }

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
	.nav-toggle { display: block; }

	.main-nav {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 2px solid #c8941f;
		z-index: 200;
		box-shadow: 0 4px 12px rgba(61,21,5,0.12);
	}

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

	.main-nav ul { flex-direction: column; }

	.main-nav a { padding: 14px 20px; border-bottom: 1px solid #fde8b8; border-right: none; }

	.product-card { flex-direction: column; }
	.card-image-wrap { width: 100%; max-height: 220px; }
	.card-image { height: 220px; }

	.brand-hero { grid-template-columns: 1fr; }

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

	.stats-inner { gap: 16px; }

	.pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
	.footer-grid { grid-template-columns: 1fr; }
	.hero { padding: 48px 0 0; }
	.hero h1 { font-size: 1.6rem; }
}
