/* Weihnachtsfieber — Editorial Theme 2026
 * Magazin-Layout, nicht klassischer Blog.
 */

/* ========== BASE ========== */
:root {
	--tanne: #1d4433;
	--tanne-dunkel: #12291e;
	--burgunder: #7a2231;
	--burgunder-dunkel: #571622;
	--creme: #faf6ee;
	--creme-dunkel: #f0e9da;
	--gold: #b98a2e;
	--ink: #26211c;
	--ink-soft: #5a5248;
	--radius: 8px;
	--radius-lg: 16px;
	--schatten: 0 4px 24px rgba(38, 33, 28, 0.08);
	--schatten-hover: 0 12px 40px rgba(38, 33, 28, 0.12);
	--sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	--serif: Georgia, 'Times New Roman', serif;
}

html, body {
	overflow-x: hidden;
	max-width: 100vw;
}

body {
	font-family: var(--serif);
	color: var(--ink);
	background: var(--creme);
	line-height: 1.6;
}

/* ========== COUNTDOWN-BAR ========== */
.wf-countdown-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1001; /* über dem Header */
	background: var(--tanne-dunkel);
	color: var(--creme);
	text-align: center;
	padding: 0.4rem 1rem;
	font-family: var(--sans);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	border-bottom: 1px solid var(--gold);
}
.wf-countdown-text {
	display: inline-block;
}

/* Header sitzt unter der Countdown-Bar */
.site-header {
	position: fixed;
	top: 32px; /* Höhe der Countdown-Bar */
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(250, 246, 238, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--creme-dunkel);
	padding: 0.75rem 0;
}

/* Content muss beide fixe Elemente ausgleichen */
.wf-editorial {
	padding-top: 32px; /* Countdown-Bar */
}
.wf-hero {
	margin-top: 60px;
	padding: 6rem 2rem 4rem;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}
.wf-breadcrumbs {
	padding: 7.5rem 0 1rem; /* mehr Platz wegen Countdown + Header */
}
.wf-category-hero {
	padding: 9rem 0 3rem; /* mehr Platz wegen Countdown + Header */
}
.header-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.site-logo {
	font-family: 'Mrs Saint Delafield', Georgia, serif;
	font-size: 2.8rem;
	font-weight: 400;
	color: var(--tanne);
	line-height: 1;
	text-decoration: none;
	letter-spacing: 0.02em;
}
.site-logo span { color: var(--gold); }

/* Navigation */
.main-navigation ul {
	display: flex;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.main-navigation a {
	font-family: var(--sans);
	font-size: 0.85rem;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	transition: all 0.2s;
	color: var(--ink);
	text-decoration: none;
	white-space: nowrap; /* niemals zweizeilig */
}
.main-navigation a:hover {
	background: var(--tanne);
	color: var(--creme);
}
.main-navigation .current-menu-item a {
	background: var(--burgunder);
	color: var(--creme);
}

/* Header-Aktionen: Suche + Hamburger */
.header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

/* Hamburger-Button */
.wf-menu-toggle {
	display: none; /* Desktop: versteckt */
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0.4rem;
	background: rgba(29, 68, 51, 0.06);
	border: 1px solid rgba(29, 68, 51, 0.25);
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.2s;
}
.wf-menu-toggle:hover {
	background: var(--tanne);
}
.wf-menu-toggle:hover .wf-menu-toggle-bar {
	background: var(--creme);
}
.wf-menu-toggle-bar {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--tanne);
	border-radius: 2px;
	transition: background 0.2s;
}

/* Mobile Menü Overlay */
.wf-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: var(--tanne-dunkel);
	display: flex;
	align-items: center;
	justify-content: center;
}
.wf-mobile-menu[hidden] {
	display: none;
}
.wf-mobile-menu-inner {
	text-align: center;
	padding: 2rem;
	max-width: 480px;
	width: 100%;
}
.wf-mobile-menu-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	font-size: 2.5rem;
	line-height: 1;
	background: transparent;
	border: none;
	color: var(--creme);
	cursor: pointer;
	padding: 0.5rem;
}
.wf-mobile-nav ul {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.wf-mobile-nav a {
	display: block;
	font-family: var(--sans);
	font-size: 1.35rem;
	font-weight: 500;
	color: var(--creme);
	text-decoration: none;
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	transition: background 0.2s;
	white-space: nowrap;
}
.wf-mobile-nav a:hover {
	background: var(--burgunder);
}
.wf-mobile-nav .current-menu-item a {
	background: var(--burgunder);
}
.wf-mobile-search .search-field {
	font-family: var(--sans);
	font-size: 1rem;
	padding: 0.75rem 1.25rem;
	border: 1px solid rgba(250, 246, 238, 0.3);
	border-radius: 999px 0 0 999px;
	background: rgba(250, 246, 238, 0.1);
	color: var(--creme);
	width: 60%;
}
.wf-mobile-search .search-field::placeholder {
	color: rgba(250, 246, 238, 0.5);
}
.wf-mobile-search .search-submit {
	font-family: var(--sans);
	font-size: 1rem;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	border: 1px solid var(--gold);
	border-left: none;
	border-radius: 0 999px 999px 0;
	background: var(--gold);
	color: var(--tanne-dunkel);
	cursor: pointer;
}
.search-form {
	display: flex;
	align-items: center;
	gap: 0;
	flex-wrap: nowrap;
}
.header-search .search-field {
	font-family: var(--sans);
	font-size: 0.85rem;
	padding: 0.5rem 1rem;
	border: 1px solid var(--creme-dunkel);
	border-right: none;
	border-radius: 999px 0 0 999px;
	background: #fff;
	width: 180px;
	transition: width 0.2s;
	white-space: nowrap;
	height: 36px;
	box-sizing: border-box;
	margin: 0;
}
.header-search .search-field:focus {
	width: 240px;
	outline: none;
	border-color: var(--gold);
}
.header-search .search-submit {
	font-family: var(--sans);
	font-size: 0.85rem;
	font-weight: 600;
	padding: 0.5rem 1rem;
	border: 1px solid var(--tanne);
	border-left: none;
	border-radius: 0 999px 999px 0;
	background: var(--tanne);
	color: var(--creme);
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	flex-shrink: 0;
	height: 36px;
	box-sizing: border-box;
	margin: 0;
}
.header-search .search-submit:hover {
	background: var(--tanne-dunkel);
}
.header-search .search-submit svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	fill: none;
}

/* Mobile Header: Hamburger statt umbrechendem Menü */
@media (max-width: 1220px) {
	.main-navigation {
		display: none; /* Desktop-Nav aus */
	}
	.wf-menu-toggle {
		display: flex; /* Hamburger an */
	}
	.header-inner {
		flex-wrap: nowrap; /* nie umbrechen */
	}
	.header-search .search-field {
		width: 160px;
	}
	.header-search .search-field:focus {
		width: 200px;
	}
}
@media (max-width: 640px) {
	/* Auf dem Handy: Suche nur im Hamburger-Menü, nicht im Header */
	.header-search {
		display: none;
	}
	.site-logo {
		font-size: 2.2rem;
	}
}

/* ========== HERO — Editorial mit Karussell ========== */
.wf-hero-inner {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 4rem;
	align-items: center;
}
.wf-hero-content h1 {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 400;
	line-height: 1.1;
	color: var(--tanne-dunkel);
	margin-bottom: 1.5rem;
}
.wf-hero-content h1 em {
	font-style: normal;
	color: var(--burgunder);
}
.wf-hero-content p {
	font-size: 1.25rem;
	color: var(--ink-soft);
	max-width: 480px;
	line-height: 1.7;
}

/* Karussell */
.wf-hero-carousel {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: 0 20px 60px rgba(38, 33, 28, 0.15);
}
.wf-carousel-track {
	display: flex;
	transition: transform 0.5s ease;
}
.wf-carousel-slide {
	flex: 0 0 100%;
	position: relative;
	aspect-ratio: 4/3;
	background: var(--creme-dunkel);
}
.wf-carousel-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
	position: relative;
}
.wf-carousel-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wf-carousel-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--tanne) 0%, var(--tanne-dunkel) 100%);
	color: var(--creme);
	font-family: var(--sans);
	font-size: 1rem;
	text-align: center;
	padding: 2rem;
}
.wf-carousel-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(18, 41, 30, 0.9));
	color: var(--creme);
	padding: 2rem 1.5rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.wf-carousel-title {
	font-family: var(--sans);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.3;
	max-width: 70%;
}
.wf-carousel-price {
	font-family: var(--sans);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--gold);
	white-space: nowrap;
}

/* Karussell-Dots */
.wf-carousel-dots {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 2;
}
.wf-carousel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(250, 246, 238, 0.4);
	border: none;
	cursor: pointer;
	transition: background 0.2s;
	padding: 0;
}
.wf-carousel-dot.active {
	background: var(--gold);
}
.wf-carousel-dot:hover {
	background: rgba(250, 246, 238, 0.8);
}

/* ========== SECTIONS ========== */
.wf-section-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}
/* Artikel-Seiten: 960px für bessere Lesbarkeit */
.wf-single .wf-section-inner,
.wf-article .wf-section-inner {
	max-width: 960px;
}
.wf-section-title {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.5rem;
	font-family: var(--sans);
}
.wf-section-heading {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 400;
	color: var(--tanne-dunkel);
	margin-bottom: 2rem;
	line-height: 1.2;
	text-transform: none;
}

/* ========== FEATURED CARD ========== */
.wf-featured {
	padding: 4rem 0;
}
.wf-featured-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--schatten);
}
.wf-featured-image {
	position: relative;
	min-height: 400px;
}
.wf-featured-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wf-featured-content {
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.wf-category {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--burgunder);
	margin-bottom: 1rem;
	font-family: var(--sans);
}
.wf-featured-content h2 {
	font-size: 2rem;
	font-weight: 400;
	color: var(--tanne-dunkel);
	margin-bottom: 1rem;
	line-height: 1.2;
}
.wf-featured-content h2 a {
	color: inherit;
	text-decoration: none;
}
.wf-featured-content h2 a:hover {
	color: var(--burgunder);
}
.wf-featured-content p {
	color: var(--ink-soft);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

/* Buttons */
.wf-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--sans);
	font-size: 0.9rem;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	transition: all 0.2s;
	text-decoration: none;
}
.wf-btn-primary {
	background: var(--burgunder);
	color: #fff;
}
.wf-btn-primary:hover {
	background: var(--burgunder-dunkel);
	transform: translateY(-1px);
}

/* ========== POSTS GRID — Asymmetrisch ========== */
.wf-posts {
	padding: 4rem 0;
}
.wf-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	align-items: stretch;
}
.wf-post-card {
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--schatten);
	transition: transform 0.2s, box-shadow 0.2s;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.wf-post-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--schatten-hover);
}
.wf-post-offset {
	margin-top: 2rem;
}
.wf-post-image {
	aspect-ratio: 16/10;
	overflow: hidden;
	flex-shrink: 0;
}
.wf-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}
.wf-post-card:hover .wf-post-image img {
	transform: scale(1.03);
}
.wf-post-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 220px;
}
.wf-post-category {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	font-family: var(--sans);
}
.wf-post-content h3 {
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--tanne-dunkel);
	margin: 0.5rem 0;
	line-height: 1.3;
	text-transform: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.wf-post-content h3 a {
	color: inherit;
	text-decoration: none;
}
.wf-post-content h3 a:hover {
	color: var(--burgunder);
}
.wf-post-content p {
	font-size: 0.9rem;
	color: var(--ink-soft);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
	text-transform: none;
}
.wf-post-meta {
	font-size: 0.8rem;
	color: #8a8378;
	margin-top: auto;
	padding-top: 1rem;
	font-family: var(--sans);
	border-top: 1px solid var(--creme-dunkel);
}

/* ========== PRODUKTBOX ========== */
.wf-product {
	padding: 4rem 0;
}
.wf-product-box {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	box-shadow: var(--schatten);
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}
.wf-product-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--tanne), var(--gold), var(--burgunder));
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.wf-product-badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	border: 1.5px solid var(--gold);
	border-radius: 999px;
	padding: 0.25rem 0.75rem;
	margin-bottom: 1rem;
	font-family: var(--sans);
}
.wf-product-box h3 {
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--tanne-dunkel);
	margin-bottom: 0.5rem;
}
.wf-product-rating {
	font-size: 1.1rem;
	margin-bottom: 1rem;
}
.wf-stars {
	color: var(--gold);
	letter-spacing: 0.1em;
}
.wf-stars .wf-stern.leer {
	color: var(--creme-dunkel);
}
.wf-product-fazit {
	font-style: italic;
	color: var(--ink-soft);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}
.wf-product-pros-cons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	font-family: var(--sans);
	font-size: 0.9rem;
}
.wf-product-pros ul, .wf-product-cons ul {
	list-style: none;
}
.wf-product-pros li, .wf-product-cons li {
	padding: 0.4rem 0;
	padding-left: 1.5rem;
	position: relative;
}
.wf-product-pros li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--tanne);
	font-weight: 700;
}
.wf-product-cons li::before {
	content: "✗";
	position: absolute;
	left: 0;
	color: var(--burgunder);
	font-weight: 700;
}
.wf-product-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1.5rem;
	border-top: 1px solid var(--creme-dunkel);
}
.wf-product-price {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--tanne-dunkel);
}
.wf-product-price s {
	font-size: 1rem;
	color: #999;
	font-weight: 400;
	margin-right: 0.5rem;
}

/* Produktbox Grid (mehrere Produkte) — bleibt im Content-Bereich */
.wf-produktbox-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.5rem;
	margin: 2rem 0;
	max-width: 100%;
}
.wf-produktbox-grid .wf-produktbox {
	max-width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.wf-produktbox-grid .wf-produktbox-bild {
	aspect-ratio: 4/3;
	overflow: hidden;
	display: block;
	flex-shrink: 0;
}
.wf-produktbox-grid .wf-produktbox-bild img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wf-produktbox-grid[data-anzahl="1"] {
	grid-template-columns: 1fr;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
/* Mobile: 1 Spalte, volle Breite */
@media (max-width: 640px) {
	.wf-produktbox-grid {
		grid-template-columns: 1fr !important;
		gap: 1.5rem;
	}
}
.wf-produktbox-grid .wf-produktbox {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.wf-produktbox-grid .wf-produktbox-body {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.wf-produktbox-grid .wf-product-footer {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--creme-dunkel);
}

/* Produkt-Einzelseite: Preis + Button in einer Zeile (wie Artikelseite) */
.wf-produkt-single-box .wf-product-footer {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 1.5rem 0 0;
}
.wf-produkt-single-box .wf-product-price {
	margin: 0;
}
.wf-produkt-single-box .wf-product-cta {
	margin-left: auto;
}

.wf-product-cta {
	font-family: var(--sans);
	font-size: 0.9rem;
	font-weight: 600;
	padding: 0.75rem 1.75rem;
	border-radius: 999px;
	background: var(--burgunder);
	color: #fff;
	text-decoration: none;
	transition: all 0.2s;
}
.wf-product-cta:hover {
	background: var(--burgunder-dunkel);
	transform: translateY(-1px);
}

/* ========== FOOTER ========== */
.site-footer {
	background: var(--tanne-dunkel);
	color: var(--creme);
	padding: 4rem 2rem 2rem;
	margin-top: 4rem;
}
.footer-inner {
	max-width: 1400px;
	margin: 0 auto;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 4rem;
	margin-bottom: 3rem;
}
.footer-brand h2 {
	font-family: 'Mrs Saint Delafield', Georgia, serif;
	font-size: 2.5rem;
	color: var(--creme);
	margin-bottom: 1rem;
}
.footer-brand p {
	color: rgba(250, 246, 238, 0.7);
	line-height: 1.7;
	max-width: 400px;
}
.footer-links h3 {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
	font-family: var(--sans);
}
.footer-links ul {
	list-style: none;
}
.footer-links li {
	margin-bottom: 0.5rem;
}
.footer-links a {
	color: rgba(250, 246, 238, 0.8);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-links a:hover {
	color: var(--gold);
}
.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(250, 246, 238, 0.1);
	font-size: 0.85rem;
	color: rgba(250, 246, 238, 0.5);
	font-family: var(--sans);
}

/* ========== COOKIE BANNER ========== */
.wf-cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: var(--tanne-dunkel);
	color: var(--creme);
	border-top: 2px solid var(--gold);
	padding: 1.25rem 1.5rem;
	font-family: var(--sans);
	font-size: 0.9rem;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}
.wf-cookie-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	gap: 1.5rem;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.wf-cookie-text { flex: 1 1 480px; }
.wf-cookie-text strong { display: block; margin-bottom: 0.25rem; color: var(--gold); }
.wf-cookie-text p { margin: 0; line-height: 1.6; }
.wf-cookie-text a { color: var(--creme); text-decoration: underline; }
.wf-cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; flex-wrap: nowrap; }
.wf-cookie-btn {
	display: inline-block;
	font: inherit;
	font-weight: 600;
	padding: 0.6rem 1.4rem;
	border-radius: 999px;
	border: 1px solid var(--creme);
	cursor: pointer;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
	white-space: nowrap;
}
.wf-cookie-accept {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--tanne-dunkel);
}
.wf-cookie-accept:hover { background: var(--creme); border-color: var(--creme); }
.wf-cookie-essential {
	background: transparent;
	color: var(--creme);
}
.wf-cookie-essential:hover { background: rgba(255, 255, 255, 0.12); }
.wf-cookie-more {
	background: transparent;
	color: var(--creme);
	border-color: transparent;
	text-decoration: underline;
}
.wf-cookie-more:hover { color: var(--gold); }

/* Cookie-Details (Inline-Expand) */
.wf-cookie-details {
	border-top: 1px solid rgba(250, 246, 238, 0.2);
	margin-top: 1rem;
	padding-top: 1rem;
}
.wf-cookie-details-inner {
	max-width: 720px;
	margin: 0 auto;
}
.wf-cookie-details h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--gold);
	margin-bottom: 1rem;
	font-family: var(--sans);
}
.wf-cookie-groups {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1rem;
}
.wf-cookie-group {
	background: rgba(250, 246, 238, 0.05);
	border-radius: var(--radius);
	padding: 1rem;
}
.wf-cookie-group-title {
	font-family: var(--sans);
	font-size: 0.9rem;
	font-weight: 600;
	display: block;
	margin-bottom: 0.5rem;
}
.wf-cookie-essential-title { color: var(--gold); }
.wf-cookie-affiliate-title { color: var(--creme); }
.wf-cookie-group p {
	font-size: 0.85rem;
	color: rgba(250, 246, 238, 0.8);
	margin-bottom: 0.75rem;
	line-height: 1.5;
}
.wf-cookie-group ul {
	list-style: none;
	font-size: 0.85rem;
	color: rgba(250, 246, 238, 0.7);
}
.wf-cookie-group li {
	padding: 0.25rem 0;
}
.wf-cookie-group code {
	background: rgba(250, 246, 238, 0.1);
	padding: 0.15rem 0.4rem;
	border-radius: 4px;
	font-size: 0.8rem;
}
.wf-cookie-details-note {
	font-size: 0.85rem;
	color: rgba(250, 246, 238, 0.7);
	text-align: center;
	margin: 0;
}
.wf-cookie-details-note a {
	color: var(--gold);
	text-decoration: underline;
}

/* Mobile: kompakt, nicht die ganze Seite */
@media (max-width: 640px) {
	.wf-cookie-banner {
		padding: 1rem;
		font-size: 0.85rem;
		max-height: 50vh;
		overflow-y: auto;
	}
	.wf-cookie-inner {
		flex-direction: column;
		text-align: center;
		gap: 0.75rem;
	}
	.wf-cookie-text {
		flex: 1 1 auto;
	}
	.wf-cookie-actions {
		justify-content: center;
		flex-wrap: wrap;
	}
	.wf-cookie-btn {
		padding: 0.5rem 1rem;
		font-size: 0.85rem;
	}
	.wf-cookie-groups {
		grid-template-columns: 1fr;
	}
}

/* ========== CATEGORY PAGE ========== */
.wf-category-hero {
	background: linear-gradient(180deg, var(--creme) 0%, var(--creme-dunkel) 100%);
}
.wf-category-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 400;
	color: var(--tanne-dunkel);
	margin-bottom: 1rem;
	line-height: 1.1;
	text-transform: none;
}
.wf-category-desc {
	font-size: 1.15rem;
	color: var(--ink-soft);
	max-width: 640px;
	line-height: 1.7;
	margin-bottom: 2rem;
}

/* Filter-Pills */
.wf-filter-pills {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	align-items: center;
}
.wf-filter-label {
	font-family: var(--sans);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ink-soft);
	margin-right: 0.5rem;
}
.wf-filter-pill {
	font-family: var(--sans);
	font-size: 0.85rem;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--creme-dunkel);
	color: var(--ink);
	text-decoration: none;
	transition: all 0.2s;
}
.wf-filter-pill:hover {
	border-color: var(--gold);
	color: var(--tanne);
}
.wf-filter-pill.active {
	background: var(--tanne);
	color: var(--creme);
	border-color: var(--tanne);
}

/* Top Products List */
.wf-top-products {
	padding: 3rem 0;
}
.wf-product-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.wf-product-list-item {
	display: grid;
	grid-template-columns: 40px 1fr auto auto;
	gap: 1.5rem;
	align-items: center;
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 1.5rem 2rem;
	box-shadow: var(--schatten);
	transition: transform 0.2s, box-shadow 0.2s;
}
.wf-product-list-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--schatten-hover);
}
.wf-rank {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--gold);
	font-family: var(--sans);
}
.wf-product-info h3 {
	font-size: 1.1rem;
	font-weight: 400;
	color: var(--tanne-dunkel);
	margin-bottom: 0.25rem;
	text-transform: none;
}
.wf-product-info .wf-product-rating {
	color: var(--gold);
}
.wf-product-cta-small {
	font-family: var(--sans);
	font-size: 0.85rem;
	font-weight: 600;
	padding: 0.5rem 1.25rem;
	border-radius: 999px;
	background: var(--burgunder);
	color: #fff;
	text-decoration: none;
	transition: all 0.2s;
	white-space: nowrap;
}
.wf-product-cta-small:hover {
	background: var(--burgunder-dunkel);
}

/* Pagination */
.wf-pagination {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}
.wf-pagination a, .wf-pagination span {
	font-family: var(--sans);
	font-size: 0.9rem;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	text-decoration: none;
	transition: all 0.2s;
}
.wf-pagination a {
	background: #fff;
	border: 1px solid var(--creme-dunkel);
	color: var(--ink);
}
.wf-pagination a:hover {
	background: var(--tanne);
	color: var(--creme);
	border-color: var(--tanne);
}
.wf-pagination .current {
	background: var(--tanne);
	color: var(--creme);
	border: 1px solid var(--tanne);
}

/* Kategorie-Seite: Produkte-Sektion */
.wf-produkte-sektion {
	padding: 3rem 0;
	background: #fff;
	border-top: 1px solid var(--creme-dunkel);
}
.wf-produkte-sektion .wf-produktbox-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 1200px) {
	.wf-produkte-sektion .wf-produktbox-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
@media (max-width: 640px) {
	.wf-produkte-sektion .wf-produktbox-grid {
		grid-template-columns: 1fr !important;
	}
}

/* Kategorie-Seite: Artikel-Sektion */
.wf-category .wf-posts {
	padding: 3rem 0 4rem;
}

/* ========== BREADCRUMBS ========== */
.wf-breadcrumbs {
	font-family: var(--sans);
	font-size: 0.85rem;
	color: var(--ink-soft);
}
.wf-breadcrumbs a {
	color: var(--burgunder);
	text-decoration: none;
	transition: color 0.2s;
}
.wf-breadcrumbs a:hover {
	color: var(--burgunder-dunkel);
}
.wf-breadcrumb-sep {
	margin: 0 0.5rem;
	color: var(--creme-dunkel);
}
.wf-breadcrumb-current {
	color: var(--ink-soft);
}

/* ========== SINGLE ARTICLE ========== */
.wf-article {
	padding: 2rem 0 4rem;
}
.wf-article > .wf-section-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.wf-article-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 2rem;
	box-shadow: var(--schatten);
	width: 100%;
	max-width: 960px;
	aspect-ratio: 21/9;
}
.wf-article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.wf-article-header {
	max-width: 960px;
	width: 100%;
	margin-bottom: 2rem;
}
.wf-article-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	color: var(--tanne-dunkel);
	line-height: 1.2;
	margin: 0.5rem 0 1rem;
}
.wf-article-meta {
	font-family: var(--sans);
	font-size: 0.9rem;
	color: var(--ink-soft);
	display: flex;
	gap: 1rem;
}
.wf-article-content {
	max-width: 960px;
	width: 100%;
	font-size: 1.1rem;
	line-height: 1.8;
}
.wf-article-content h2 {
	font-size: 1.75rem;
	font-weight: 400;
	color: var(--tanne-dunkel);
	margin: 2.5rem 0 1rem;
}
.wf-article-content h3 {
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--tanne-dunkel);
	margin: 2rem 0 1rem;
}
.wf-article-content p {
	margin-bottom: 1.5rem;
}
.wf-article-content ul, .wf-article-content ol {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}
.wf-article-content li {
	margin-bottom: 0.5rem;
}
/* Tabellen dürfen breiter als Text — Produktboxen NICHT (bleiben im Content) */
.wf-article-content .wp-block-table,
.wf-article-content figure {
	max-width: 1100px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.wf-author-box {
	max-width: 960px;
	width: 100%;
	margin: 3rem 0;
	padding: 2rem;
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--schatten);
	border-left: 4px solid var(--gold);
}
.wf-author-info {
	font-family: var(--sans);
	font-size: 0.95rem;
	margin-bottom: 0.5rem;
}
.wf-author-info strong {
	color: var(--ink-soft);
	font-weight: 500;
	margin-right: 0.5rem;
}
.wf-author-name {
	color: var(--tanne);
	font-weight: 600;
}
.wf-author-desc {
	font-size: 0.9rem;
	color: var(--ink-soft);
	line-height: 1.6;
	margin: 0;
}

/* Affiliate-Hinweis */
.wf-affiliate-notice {
	max-width: 960px;
	width: 100%;
	margin: 2rem 0;
	padding: 1.5rem;
	background: var(--creme-dunkel);
	border-radius: var(--radius);
	font-size: 0.9rem;
	color: var(--ink-soft);
}

/* Related Posts */
.wf-related {
	padding: 3rem 0 4rem;
	background: #fff;
}

/* ========== PAGE (Impressum, Datenschutz) ========== */
.wf-page-content {
	padding: 2rem 0 4rem;
}
.wf-page-content .wf-article-title {
	margin-bottom: 2rem;
}
.wf-page-content .wf-article-content h2 {
	font-size: 1.5rem;
	margin: 2rem 0 1rem;
}

/* ========== SEARCH PAGE ========== */
.wf-search-hero {
	padding: 2rem 0 1rem;
	background: linear-gradient(180deg, var(--creme) 0%, var(--creme-dunkel) 100%);
}
.wf-search-empty {
	max-width: 640px;
	margin: 3rem auto;
	text-align: center;
	padding: 3rem 2rem;
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--schatten);
}
.wf-search-empty h2 {
	font-size: 1.75rem;
	font-weight: 400;
	color: var(--tanne-dunkel);
	margin-bottom: 1rem;
}
.wf-search-empty p {
	color: var(--ink-soft);
	line-height: 1.7;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
	.wf-product-list-item {
		grid-template-columns: 30px 1fr auto;
		gap: 1rem;
	}
	.wf-product-price {
		display: none;
	}
}
@media (max-width: 640px) {
	.wf-category-hero {
		padding: 6rem 0 2rem;
	}
	.wf-filter-pills {
		gap: 0.35rem;
	}
	.wf-filter-pill {
		font-size: 0.8rem;
		padding: 0.4rem 0.8rem;
	}
	.wf-product-list-item {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.wf-rank {
		font-size: 1.25rem;
	}
	.wf-breadcrumbs {
		padding: 5rem 0 1rem;
	}
	.wf-article-meta {
		flex-direction: column;
		gap: 0.25rem;
	}
}
@media (max-width: 1024px) {
	.wf-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
	.wf-hero { padding: 4rem 1.5rem 3rem; }
	.wf-hero-carousel { max-width: 640px; margin: 0 auto; width: 100%; }
	.wf-featured-card { grid-template-columns: 1fr; }
	.wf-featured-image { min-height: 300px; }
	.wf-posts-grid { grid-template-columns: repeat(2, 1fr); }
	.wf-post-offset { margin-top: 0; }
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
	.wf-hero { padding: 4rem 1.5rem 2rem; }
	.wf-posts-grid { grid-template-columns: 1fr; }
	.wf-product-pros-cons { grid-template-columns: 1fr; }
	.wf-product-footer { flex-direction: column; gap: 1rem; align-items: stretch; }
	.wf-product-cta { text-align: center; }
	.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
	.wf-cookie-inner { flex-direction: column; text-align: center; }
	.wf-cookie-actions { justify-content: center; }
}
