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

img { max-width: 100%; height: auto; display: block; }
a { color: #2f6feb; text-decoration: none; }
a:hover { color: #14171c; text-decoration: underline; }
ul, ol { list-style: none; }

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

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

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

.trust-item { color: rgba(255,255,255,0.75); }

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

.site-header.scrolled { box-shadow: 0 2px 12px rgba(20,23,28,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: #14171c;
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	text-decoration: none;
}

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

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

.logo strong { color: #2f6feb; }

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

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

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

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

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

/* ===== HERO ===== */
.hero {
	background: linear-gradient(150deg, #14171c 0%, #1e2938 55%, #2f6feb 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(110,168,254,0.2);
	border: 1px solid rgba(110,168,254,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: #a9c6ff;
}

.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-rating { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }

.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: #2f6feb; color: #fff; }
.btn-primary:hover { background: #1e56c4; 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, .btn-outline.btn-amazon { background: #f07800; color: #fff; }
.btn-amazon:hover { background: #d46800; color: #fff; }

.btn-outline { background: transparent; border: 2px solid #2f6feb; color: #2f6feb; }
.btn-outline:hover { background: #2f6feb; 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: #14171c; margin-bottom: 10px; }
.section-header p { color: #4b5563; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

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

/* ===== 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;
}

/* ===== QUICK VERDICT ===== */
.quick-verdict {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-left: 4px solid #2f6feb;
	border-radius: 0 10px 10px 0;
	padding: 24px 28px;
	margin: 32px 0;
}

.quick-verdict h2 { font-size: 1.2rem; font-weight: 800; color: #14171c; margin-bottom: 12px; }
.quick-verdict p { color: #4b5563; margin-bottom: 12px; }
.quick-verdict ul { list-style: disc; padding-left: 20px; color: #374151; }
.quick-verdict ul li { margin-bottom: 6px; padding-left: 4px; }

/* ===== REVIEW BOX ===== */
.review-box {
	display: grid;
	grid-template-columns: 42% 1fr;
	gap: 40px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	padding: 32px;
	box-shadow: 0 2px 16px rgba(20,23,28,0.06);
}

.review-gallery-main { border-radius: 14px; overflow: hidden; margin-bottom: 12px; background: #f4f6f9; }
.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, opacity 0.15s; opacity: 0.7; }
.review-thumbs img:hover, .review-thumbs img.active { border-color: #2f6feb; opacity: 1; }

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

.review-price { font-size: 1.7rem; font-weight: 800; color: #2f6feb; margin: 16px 0 4px; }
.review-price small { font-size: 0.78rem; color: #94a3b8; font-weight: 400; display: block; margin-top: 4px; }

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

.meta-chip {
	background: #e8f0ff;
	border: 1px solid #cddcff;
	border-radius: 4px;
	padding: 3px 10px;
	font-size: 0.78rem;
	font-weight: 600;
	color: #2f6feb;
}

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

.pros-list h4 { color: #2f6feb; 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 { 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: #2f6feb; font-weight: 700; }

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

/* ===== RATING STARS ===== */
.stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 1px; }
.star-full { color: #f59e0b; }
.star-half { color: #f59e0b; }
.star-empty { color: #d1d5db; }
.rating-text { font-size: 0.82rem; color: #94a3b8; }

/* ===== FEATURE GRID ===== */
.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(20,23,28,0.07);
	border-left: 4px solid #2f6feb;
}

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

.feature-icon svg { width: 22px; height: 22px; fill: #2f6feb; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; color: #14171c; margin-bottom: 6px; }
.feature-card p { font-size: 0.85rem; color: #4b5563; line-height: 1.4; }

/* ===== GUIDE / RATGEBER CONTENT ===== */
.guide-content { max-width: 860px; margin: 0 auto; }
.guide-section { margin-bottom: 48px; }
.guide-section h2 { font-size: 1.45rem; font-weight: 800; color: #14171c; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid #cddcff; }
.guide-section h3 { font-size: 1.1rem; font-weight: 700; color: #2f6feb; 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: #e8f0ff;
	border-left: 4px solid #2f6feb;
	border-radius: 0 8px 8px 0;
	padding: 16px 20px;
	margin: 20px 0;
	font-size: 0.93rem;
	color: #1e3a6e;
}

.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: #4b5563; width: 45%; background: #f4f6f9; }
.specs-table tr:last-child { border-bottom: none; }

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

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

.comparison-table th {
	background: #14171c;
	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: #f8fafc; }

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

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

/* ===== FILTER SELECTS / BUTTONS ===== */
.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: #4b5563; text-transform: uppercase; letter-spacing: 0.06em; }

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

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

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

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

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

.competitor-card {
	background: #fff;
	border-radius: 14px;
	padding: 20px;
	box-shadow: 0 2px 12px rgba(20,23,28,0.08);
	display: flex;
	flex-direction: column;
	transition: transform 0.2s, box-shadow 0.2s;
	border: 1px solid #e2e8f0;
}

.competitor-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(20,23,28,0.11); }

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

.competitor-card h3 { font-size: 1.08rem; font-weight: 800; color: #14171c; margin-bottom: 4px; }
.competitor-card .competitor-brand { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #2f6feb; margin-bottom: 10px; }
.competitor-card .competitor-usp { font-size: 0.88rem; color: #4b5563; line-height: 1.55; margin-bottom: 16px; flex-grow: 1; }
.competitor-card .competitor-price { font-size: 1.1rem; font-weight: 800; color: #14171c; margin-bottom: 10px; }

/* ===== 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: #14171c;
	cursor: pointer;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.15s;
}

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

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

.faq-item.open .faq-question { background: #f8fafc; }
.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;
}

/* ===== SOURCE NOTE ===== */
.source-note { font-size: 0.8rem; color: #94a3b8; margin-top: 12px; }
.source-note a { color: #94a3b8; text-decoration: underline; }

/* ===== GALLERY MODAL ===== */
.gallery-modal {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(10,12,16,0.9);
	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: 24px;
	right: 28px;
	background: rgba(255,255,255,0.1);
	color: #fff;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 1.4rem;
	cursor: pointer;
}

/* ===== FOOTER ===== */
.site-footer {
	background: #14171c;
	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: #6ea8fe; 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: #6ea8fe; 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: #6ea8fe; }

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

/* ===== 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 #2f6feb;
		z-index: 200;
		box-shadow: 0 4px 12px rgba(20,23,28,0.12);
	}

	.main-nav.open { display: block; }
	.main-nav ul { flex-direction: column; }
	.main-nav a { padding: 14px 20px; border-bottom: 1px solid #e8f0ff; border-right: none; }

	.review-box { grid-template-columns: 1fr; }
	.review-thumbs { grid-template-columns: repeat(4, 1fr); }

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

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