/* ===== 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: #262a33;
	background: #f5f3ef;
	line-height: 1.7;
}

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

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

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

.site-header.scrolled { box-shadow: 0 4px 18px rgba(27,29,34,0.08); }

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

.logo {
	font-size: 1.3rem;
	font-weight: 800;
	color: #1b1d22;
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	text-decoration: none;
	letter-spacing: -0.01em;
}

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

.logo-icon {
	width: 30px;
	height: 30px;
	color: #b8703e;
}

.logo strong { color: #b8703e; }

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

.main-nav a {
	display: block;
	padding: 10px 16px;
	border-radius: 999px;
	color: #4a4e58;
	font-size: 0.88rem;
	font-weight: 600;
	transition: background 0.15s, color 0.15s;
}

.main-nav a:hover, .main-nav a.active {
	background: #f3e7da;
	color: #96501f;
	text-decoration: none;
}

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

/* ===== HERO ===== */
.hero {
	background: radial-gradient(circle at 20% -10%, #2c3040 0%, #1b1d22 55%, #14151a 100%);
	color: #f1ede6;
	padding: 96px 0 96px;
	text-align: left;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	right: -120px;
	top: -120px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(184,112,62,0.28) 0%, transparent 70%);
	pointer-events: none;
}

.hero-content { max-width: 760px; position: relative; z-index: 1; }
.hero-wave { display: none; }

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(184,112,62,0.16);
	border: 1px solid rgba(224,164,88,0.4);
	border-radius: 999px;
	padding: 6px 16px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #e0a458;
	margin-bottom: 26px;
}

.hero h1 {
	font-size: clamp(2rem, 4.4vw, 3.2rem);
	font-weight: 800;
	line-height: 1.18;
	margin-bottom: 20px;
	max-width: 760px;
	color: #fff;
	letter-spacing: -0.01em;
}

.hero p {
	font-size: 1.12rem;
	color: #c7c4bd;
	max-width: 600px;
	margin: 0 0 32px;
}

.hero-rating { display: flex; justify-content: flex-start; align-items: center; gap: 10px; margin-bottom: 34px; flex-wrap: wrap; }
.hero-rating .stars { font-size: 1.3rem; }
.hero-rating .rating-text { color: #b4b0a8; font-size: 0.9rem; }

.hero-buttons { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 30px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.01em;
	cursor: pointer;
	border: 2px solid transparent;
	transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
	text-decoration: none;
}

.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary { background: linear-gradient(135deg, #c98a4b, #a8621f); color: #fff; box-shadow: 0 8px 20px rgba(168,98,31,0.32); }
.btn-primary:hover { box-shadow: 0 10px 26px rgba(168,98,31,0.42); color: #fff; }

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

.btn-amazon {
	background: linear-gradient(135deg, #c98a4b, #a8621f);
	color: #fff;
	width: 100%;
	justify-content: center;
	margin-top: auto;
	box-shadow: 0 6px 16px rgba(168,98,31,0.26);
}

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

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

.btn-outline:hover { background: #1b1d22; color: #fff; }

.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

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

.section-header { text-align: left; margin-bottom: 44px; max-width: 700px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #1b1d22; margin-bottom: 10px; letter-spacing: -0.01em; }
.section-header p { color: #6b6f7a; font-size: 1.02rem; max-width: 640px; margin: 0; }

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f3e7da;
	color: #96501f;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 999px;
	margin-bottom: 14px;
}

/* ===== TL;DR / QUICK VERDICT BOX ===== */
.quick-verdict {
	background: #fff;
	border-radius: 20px;
	padding: 34px 38px;
	margin: 0 0 40px;
	box-shadow: 0 12px 32px rgba(27,29,34,0.08);
	border-top: 4px solid #c98a4b;
}

.quick-verdict h2 { font-size: 1.3rem; color: #1b1d22; margin-bottom: 12px; font-weight: 800; }
.quick-verdict p { color: #444; margin-bottom: 8px; }
.quick-verdict ul { list-style: none; margin-top: 14px; }
.quick-verdict li { padding: 5px 0 5px 26px; position: relative; font-size: 0.95rem; }
.quick-verdict li::before { content: '●'; position: absolute; left: 0; top: 7px; color: #c98a4b; font-size: 0.5rem; }

/* ===== PRODUCT DETAIL / REVIEW BOX ===== */
.review-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 44px;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(27,29,34,0.1);
	padding: 42px;
	align-items: start;
	margin-bottom: 20px;
}

.review-gallery-main { border-radius: 18px; overflow: hidden; margin-bottom: 12px; background: #f0ece4; }
.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: 10px; aspect-ratio: 1/1; object-fit: cover; cursor: pointer; border: 2px solid transparent; transition: border-color 0.15s, opacity 0.15s; opacity: 0.7; }
.review-thumbs img:hover, .review-thumbs img.active { border-color: #c98a4b; opacity: 1; }

.review-info h1 { font-size: clamp(1.5rem, 2.5vw, 1.9rem); font-weight: 800; color: #1b1d22; margin-bottom: 10px; line-height: 1.28; letter-spacing: -0.01em; }

.review-price { font-size: 1.7rem; font-weight: 800; color: #a8621f; margin: 16px 0 4px; }
.review-price small { font-size: 0.78rem; color: #6b6f7a; font-weight: 400; display: block; margin-top: 4px; }

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

.meta-chip {
	background: #f5f3ef;
	border: 1px solid #e8e4dc;
	border-radius: 999px;
	padding: 5px 14px;
	font-size: 0.76rem;
	font-weight: 600;
	color: #4a4e58;
}

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

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

.pros-list h4 { color: #1b1d22; font-size: 0.78rem; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.08em; }
.cons-list h4 { color: #1b1d22; font-size: 0.78rem; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.08em; }

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

.pros-list li::before { content: '✓'; position: absolute; left: 2px; color: #2f8f5b; font-weight: 700; }
.cons-list li::before { content: '✕'; position: absolute; left: 2px; color: #b8703e; font-weight: 700; font-size: 0.8rem; top: 6px; }

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

.feature-card {
	background: #fff;
	border-radius: 18px;
	padding: 28px 26px;
	box-shadow: 0 8px 24px rgba(27,29,34,0.06);
	transition: transform 0.15s, box-shadow 0.15s;
}

.feature-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(27,29,34,0.1); }

.feature-icon {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, #f3e7da, #ecd8bf);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.feature-icon svg { width: 22px; height: 22px; fill: #a8621f; }
.feature-card h3 { font-size: 1.02rem; font-weight: 800; color: #1b1d22; margin-bottom: 8px; }
.feature-card p { font-size: 0.86rem; color: #5b5f6b; line-height: 1.55; }

/* ===== COMPARISON TABLE ===== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 18px; box-shadow: 0 10px 30px rgba(27,29,34,0.07); margin-bottom: 20px; }

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

.comparison-table th {
	background: #1b1d22;
	color: #f1ede6;
	padding: 15px 18px;
	text-align: left;
	font-weight: 700;
	white-space: nowrap;
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.comparison-table td { padding: 14px 18px; border-bottom: 1px solid #f0ece4; vertical-align: middle; }

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

.comparison-table tr.highlight-row td { background: #fbf1e3; }
.comparison-table tr.highlight-row td:first-child { border-left: 4px solid #c98a4b; font-weight: 700; }

.check { color: #2f8f5b; font-weight: 700; }
.cross { color: #b8703e; }

/* ===== KONKURRENZ-PRODUKTKARTEN ===== */
.competitor-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
	margin-top: 32px;
}

.competitor-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 28px rgba(27,29,34,0.07);
	padding: 26px;
	display: flex;
	flex-direction: column;
	transition: transform 0.15s, box-shadow 0.15s;
}

.competitor-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(27,29,34,0.11); }

.competitor-card img {
	border-radius: 14px;
	aspect-ratio: 4/3;
	object-fit: cover;
	margin-bottom: 16px;
	background: #f0ece4;
}

.competitor-card h3 { font-size: 1.08rem; font-weight: 800; color: #1b1d22; margin-bottom: 4px; }
.competitor-card .competitor-brand { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #a8621f; margin-bottom: 10px; }
.competitor-card .competitor-usp { font-size: 0.88rem; color: #444; line-height: 1.55; margin-bottom: 16px; flex-grow: 1; }
.competitor-card .competitor-price { font-size: 1.1rem; font-weight: 800; color: #1b1d22; margin-bottom: 10px; }
.competitor-card .availability-note { font-size: 0.76rem; color: #7a5500; background: #fff4de; border-radius: 10px; padding: 8px 12px; margin-bottom: 12px; }

/* ===== FILTER BUTTONS ===== */
.filter-btn {
	padding: 8px 18px;
	border-radius: 999px;
	border: 1px solid #d8d2c6;
	background: #fff;
	color: #1b1d22;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s;
}

.filter-btn:hover { border-color: #c98a4b; color: #96501f; }
.filter-btn.active { background: #1b1d22; border-color: #1b1d22; color: #fff; }

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

.faq-item { background: #fff; border-radius: 16px; margin-bottom: 10px; overflow: hidden; box-shadow: 0 4px 16px rgba(27,29,34,0.05); }

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

.faq-question:hover { background: transparent; color: #96501f; }

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

.faq-item.open .faq-question { color: #96501f; }
.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 24px 22px;
	color: #4a4e58;
	font-size: 0.95rem;
	line-height: 1.7;
}

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

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

.guide-section h2 { font-size: 1.55rem; font-weight: 800; color: #1b1d22; margin-bottom: 18px; letter-spacing: -0.01em; }

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

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

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

.tip-box {
	background: #fdf6ee;
	border-radius: 16px;
	padding: 20px 24px;
	margin: 22px 0;
	font-size: 0.95rem;
	color: #1b1d22;
	border-left: 4px solid #c98a4b;
}

.tip-box strong { display: block; margin-bottom: 6px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: #96501f; }

.warning-box {
	background: #fdf3e4;
	border-radius: 16px;
	padding: 20px 24px;
	margin: 22px 0;
	font-size: 0.95rem;
	color: #5c4813;
	border-left: 4px solid #cc9a3e;
}

.warning-box strong { display: block; margin-bottom: 6px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }

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

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

/* ===== SPECS TABLE ===== */
.specs-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.specs-table tr { border-bottom: 1px solid #f0ece4; }
.specs-table td { padding: 12px 16px; }
.specs-table td:first-child { font-weight: 700; color: #1b1d22; width: 42%; background: #faf7f2; }
.specs-table tr:last-child { border-bottom: none; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
	background: #fff;
	padding: 14px 0;
	border-bottom: 1px solid #e8e4dc;
	font-size: 0.85rem;
	color: #8b8f99;
}

.breadcrumb a { color: #b8703e; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span + span::before { content: ' / '; color: #c9c4b9; }

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

/* ===== TRUST BADGES ===== */
.trust-bar {
	background: #14151a;
	color: #b4b0a8;
	padding: 10px 0;
	font-size: 0.78rem;
	letter-spacing: 0.02em;
}

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

.trust-item { display: flex; align-items: center; gap: 8px; text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.06em; }

/* ===== AFFILIATE NOTICE ===== */
.affiliate-notice {
	background: #fff;
	border-radius: 14px;
	padding: 16px 20px;
	font-size: 0.8rem;
	color: #6b6f7a;
	margin-bottom: 32px;
	border-left: 4px solid #c98a4b;
}

/* ===== FOOTER ===== */
.site-footer {
	background: #1b1d22;
	color: #b4b0a8;
	padding: 56px 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: #f1ede6; font-size: 1.2rem; }
.footer-brand .logo strong { color: #e0a458; }
.footer-brand .logo-icon { color: #e0a458; }
.footer-brand p { font-size: 0.875rem; margin-top: 14px; line-height: 1.65; color: #9a9790; }

.footer-col h4 { color: #f1ede6; font-size: 0.8rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a { color: #9a9790; font-size: 0.875rem; transition: color 0.15s; }
.footer-col a:hover { color: #e0a458; text-decoration: none; }

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

.footer-bottom a { color: #9a9790; }
.footer-bottom a:hover { color: #e0a458; }

/* ===== GALLERY MODAL ===== */
.gallery-modal {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(20,21,26,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: 14px; }

.gallery-modal-close {
	position: absolute;
	top: 20px;
	right: 28px;
	color: #f1ede6;
	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: 72px;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid #e8e4dc;
		box-shadow: 0 10px 28px rgba(27,29,34,0.12);
	}

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

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

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

	.hero { padding: 56px 0 60px; }
	.hero h1 { font-size: 1.8rem; }
	.hero-buttons { flex-direction: column; align-items: stretch; }

	.section { padding: 48px 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: #a8621f; font-weight: 700; }

.notice {
	background: #fff;
	border-radius: 14px;
	padding: 16px 20px;
	font-size: 0.875rem;
	color: #555;
	margin-bottom: 24px;
}
