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

img { max-width: 100%; height: auto; display: block; }
a { color: #2f7d3d; text-decoration: none; }
a:hover { color: #1a4d24; 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 #4a9c3e;
	position: sticky;
	top: 0;
	z-index: 100;
	transition: box-shadow 0.2s;
}

.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.12); }

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

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

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

.logo-icon {
	width: 28px;
	height: 28px;
	color: #4a9c3e;
}

.logo strong { color: #4a9c3e; }

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

.main-nav a {
	display: block;
	padding: 8px 14px;
	border-radius: 6px;
	color: #333;
	font-size: 0.95rem;
	font-weight: 500;
	transition: background 0.15s, color 0.15s;
}

.main-nav a:hover, .main-nav a.active {
	background: #eef7e0;
	color: #2f7d3d;
	text-decoration: none;
}

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

/* ===== HERO ===== */
.hero {
	background: linear-gradient(135deg, #142219 0%, #2f7d3d 55%, #8ed14f 130%);
	color: #fff;
	padding: 72px 0 80px;
	text-align: center;
}

.hero-badge {
	display: inline-block;
	background: rgba(255,255,255,0.2);
	border: 1px solid rgba(255,255,255,0.4);
	border-radius: 20px;
	padding: 4px 16px;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

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

.hero p {
	font-size: 1.1rem;
	opacity: 0.9;
	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: 8px;
	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: #ff7a00; color: #fff; }
.btn-primary:hover { background: #d96600; color: #fff; }

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

.btn-amazon {
	background: #ff7a00;
	color: #fff;
	width: 100%;
	justify-content: center;
	margin-top: auto;
}

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

.btn-outline {
	background: transparent;
	border: 2px solid #4a9c3e;
	color: #2f7d3d;
}

.btn-outline:hover { background: #4a9c3e; 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: #142219; margin-bottom: 10px; }
.section-header p { color: #555; font-size: 1.05rem; max-width: 640px; margin: 0 auto; }

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

/* ===== TL;DR / QUICK VERDICT BOX ===== */
.quick-verdict {
	background: #fff;
	border: 2px solid #4a9c3e;
	border-radius: 14px;
	padding: 28px 32px;
	margin: 0 0 40px;
	box-shadow: 0 4px 20px rgba(20,34,25,0.08);
}

.quick-verdict h2 { font-size: 1.2rem; color: #142219; margin-bottom: 12px; }
.quick-verdict p { color: #333; 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: #4a9c3e; font-weight: 700; }

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

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

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

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

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

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

/* ===== TOP-EMPFEHLUNGS-KARTE (Meta-Chips, Sterne etc. wiederverwendet) ===== */
.meta-chip {
	background: #f0f4ea;
	border-radius: 6px;
	padding: 4px 10px;
	font-size: 0.8rem;
	font-weight: 600;
	color: #2f7d3d;
}

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

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

.pros-list h4 { color: #2f7d3d; 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; }

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

.pros-list li::before { content: '+'; position: absolute; left: 4px; color: #4a9c3e; font-weight: 700; }
.cons-list li::before { content: '−'; position: absolute; left: 4px; color: #c0392b; 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-radius: 10px;
	padding: 24px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	border-left: 4px solid #4a9c3e;
}

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

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

/* ===== COMPARISON TABLE ===== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); margin-bottom: 20px; }

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

.comparison-table th {
	background: #142219;
	color: #fff;
	padding: 14px 16px;
	text-align: left;
	font-weight: 700;
	white-space: nowrap;
	font-size: 0.85rem;
}

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

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

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

.check { color: #4a9c3e; font-weight: 700; }
.cross { color: #c0392b; }

/* ===== FILTER BUTTONS ===== */
.filter-btn {
	padding: 7px 18px;
	border-radius: 24px;
	border: 2px solid #ddd;
	background: #fff;
	color: #555;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s;
}

.filter-btn:hover { border-color: #4a9c3e; color: #2f7d3d; }
.filter-btn.active { background: #4a9c3e; border-color: #4a9c3e; color: #fff; }

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

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

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

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

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

.faq-item.open .faq-question { background: #f7faf2; }
.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: #444;
	font-size: 0.95rem;
	line-height: 1.7;
	border-top: 1px solid #eef2ea;
	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: #142219; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid #eef7e0; }

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

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

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

.tip-box {
	background: #eef7e0;
	border-left: 4px solid #4a9c3e;
	border-radius: 0 8px 8px 0;
	padding: 16px 20px;
	margin: 20px 0;
	font-size: 0.95rem;
	color: #1a4d24;
}

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

.warning-box {
	background: #fff8e6;
	border-left: 4px solid #e6a800;
	border-radius: 0 8px 8px 0;
	padding: 16px 20px;
	margin: 20px 0;
	font-size: 0.95rem;
	color: #7a5500;
}

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

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

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

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

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

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

/* ===== TRUST BADGES ===== */
.trust-bar {
	background: #142219;
	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: #fffbea;
	border: 1px solid #f0d060;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 0.8rem;
	color: #7a6000;
	margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.site-footer {
	background: #142219;
	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: #8ed14f; }
.footer-brand .logo-icon { color: #8ed14f; }
.footer-brand p { font-size: 0.875rem; margin-top: 12px; line-height: 1.6; }

.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; 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: #8ed14f; 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: #8ed14f; }

/* ===== GALLERY MODAL ===== */
.gallery-modal {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(10,16,12,0.92);
	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: 8px; }

.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 #4a9c3e;
		box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	}

	.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; }

}

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

.notice {
	background: #f7faf2;
	border: 1px solid #d5e8c4;
	border-radius: 8px;
	padding: 16px 20px;
	font-size: 0.875rem;
	color: #555;
	margin-bottom: 24px;
}