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

img { max-width: 100%; height: auto; display: block; }
a { color: #1a6e3e; text-decoration: none; }
a:hover { color: #0f3d22; 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 #2d8a4e;
	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: #1a6e3e;
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	text-decoration: none;
}

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

.logo-leaf {
	width: 28px;
	height: 28px;
	fill: #2d8a4e;
}

.logo strong { color: #2d8a4e; }

.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: #e8f5ee;
	color: #1a6e3e;
	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, #0f3d22 0%, #2d8a4e 60%, #3daa64 100%);
	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: 760px;
	margin-left: auto;
	margin-right: auto;
}

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

.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: #f07800; color: #fff; }
.btn-primary:hover { background: #d46800; 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: #f07800;
	color: #fff;
	width: 100%;
	justify-content: center;
	margin-top: auto;
}

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

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

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

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

/* ===== PRODUCT GRID ===== */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
}

.product-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.07);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s, box-shadow 0.2s;
	border: 1px solid #e8ede8;
	position: relative;
}

.product-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.product-card.highlighted { border-color: #2d8a4e; box-shadow: 0 4px 16px rgba(45,138,78,0.2); }

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

.card-image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	background: #f0f4f0;
}

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

.card-brand {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2d8a4e;
}

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

.card-desc { font-size: 0.9rem; color: #555; flex: 1; }

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

.meta-chip {
	background: #f0f4f0;
	border-radius: 6px;
	padding: 4px 10px;
	font-size: 0.8rem;
	font-weight: 600;
	color: #1a6e3e;
}

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

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

.rating-text { font-size: 0.85rem; color: #666; }

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

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

.pros-list, .cons-list { }

.pros-list h4 { color: #1a6e3e; 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.85rem; color: #444; padding: 4px 0 4px 20px; position: relative; line-height: 1.4; }

.pros-list li::before { content: '+'; position: absolute; left: 4px; color: #2d8a4e; font-weight: 700; }
.cons-list li::before { content: '−'; position: absolute; left: 4px; color: #c0392b; font-weight: 700; }

/* ===== EINHELL HIGHLIGHT BOX ===== */
.einhell-hero {
	background: linear-gradient(135deg, #0f3d22, #2d8a4e);
	color: #fff;
	border-radius: 16px;
	padding: 48px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	margin-bottom: 48px;
}

.einhell-hero h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.einhell-hero p { opacity: 0.9; margin-bottom: 24px; font-size: 1rem; }
.einhell-hero img { border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

.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 #2d8a4e;
}

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

.feature-icon svg { width: 22px; height: 22px; fill: #2d8a4e; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; color: #1e2a1e; 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); }

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

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

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

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

.brand-logo { font-weight: 700; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; }
.brand-einhell { color: #2d8a4e; }
.brand-bosch { color: #1a6eb4; }
.brand-makita { color: #007dc3; }
.brand-stihl { color: #c85000; }

.check { color: #2d8a4e; font-weight: 700; }
.cross { color: #c0392b; }

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

/* ===== FILTER BUTTONS ===== */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }

.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: #2d8a4e; color: #2d8a4e; }
.filter-btn.active { background: #2d8a4e; border-color: #2d8a4e; color: #fff; }

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

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

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

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

.faq-item.open .faq-question { background: #f4f9f4; }
.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 #e8ede8;
	padding-top: 16px;
}

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

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

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

.guide-section h3 { font-size: 1.15rem; font-weight: 700; color: #1a6e3e; 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: #e8f5ee;
	border-left: 4px solid #2d8a4e;
	border-radius: 0 8px 8px 0;
	padding: 16px 20px;
	margin: 20px 0;
	font-size: 0.95rem;
	color: #1a6e3e;
}

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

/* ===== 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: #f9fbf9; }
.specs-table tr:last-child { border-bottom: none; }

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

.breadcrumb a { color: #1a6e3e; }
.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: #0f3d22;
	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: #0f3d22;
	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: #5bc87a; }
.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: #5bc87a; 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: #5bc87a; }

/* ===== DETAIL PAGE ===== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 64px; }

.product-detail-image { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.product-detail-image img { width: 100%; }

.product-detail-info h1 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: #0f3d22; margin-bottom: 12px; }

.detail-price { font-size: 1.5rem; font-weight: 800; color: #f07800; margin: 16px 0; }
.detail-price small { font-size: 0.85rem; color: #888; font-weight: 400; }

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

	.einhell-hero { grid-template-columns: 1fr; padding: 32px 24px; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.product-detail { grid-template-columns: 1fr; }

}

@media (max-width: 640px) {

	.main-nav {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 2px solid #2d8a4e;
		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; }
	.products-grid { grid-template-columns: 1fr; }
	.pros-cons { grid-template-columns: 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: #2d8a4e; font-weight: 700; }

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