/* =====================================================================
   Trippe Brennholz – Feinschliff
   NUR Dinge, die nicht sauber über Elementor (Global Kit / Widgets) gehen.
   Layout, Farben, Typo, Abstände kommen aus dem Elementor Global Kit.
   ===================================================================== */

/* =====================================================================
   Dunkle Flächen (Buttons, Footer-Band, Preisrechner) in Waldgrün statt
   Anthrazit. „primary" ist das Flächen-Token (Buttons + Footer nutzen es),
   „text" bleibt Anthrazit für Fließtext – daher wird NUR primary umgefärbt.
   ===================================================================== */
:root {
	--tb-forest: #24402F;         /* tiefes Waldgrün für große Flächen */
	--tb-forest-deep: #1E3527;    /* etwas dunkler, z. B. Hover */
	--tb-forest-soft: #4A6B55;    /* aufgehelltes Waldgrün für die Rechner-Bänder */
}
/* Elementor definiert --e-global-color-primary auf body (.elementor-kit-…),
   daher muss die Umfärbung ebenfalls auf body greifen (!important schlägt die
   nicht-wichtige Kit-Deklaration). */
:root, body { --e-global-color-primary: #24402F !important; }

/* Preis- und Lieferkostenrechner nutzen eine eigene Inline-Variable (--tb-bg),
   nicht das primary-Token. Die Bänder sind großflächig, deshalb bekommen sie
   das aufgehellte Waldgrün: klar als eigener Block erkennbar, aber deutlich
   ruhiger als die tiefdunkle Fläche. Kontrast zum Text (#FBF8EE) bleibt > 5:1. */
.tb-calc, .tb-liefer { --tb-bg: var(--tb-forest-soft) !important; }
::selection { background: #24402F; color: #FFFDF4; }
img { display: block; }

/* Formularfelder: weicher Fokus statt Browser-Outline (A11y-Fokus bleibt via :focus-visible) */
input:focus, textarea:focus, select:focus { outline: none; }
:focus-visible { outline: 2px solid #2C5238; outline-offset: 2px; }

/* Sanfteres Font-Rendering passend zur Referenz */
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* =====================================================================
   Typo-Skala (Headlines) gemäß DESIGN_SYSTEM.md – clamp()-Responsives.
   ===================================================================== */
.elementor-widget-heading h1.elementor-heading-title {
	font-size: clamp(34px, 5vw, 64px);
	line-height: 1.02;
	letter-spacing: -0.02em;
}
.tb-hero h1.elementor-heading-title {
	font-size: clamp(38px, 5.6vw, 76px);
	line-height: 0.98;
}
.elementor-widget-heading h2.elementor-heading-title {
	font-size: clamp(28px, 3.6vw, 46px);
	line-height: 1.05;
	letter-spacing: -0.015em;
}
/* Karten-/Tile-Titel (span/div mit Schibsted 600) */
.tb-card-title .elementor-heading-title { font-size: 21px; line-height: 1.1; letter-spacing: -0.01em; }

/* ---------------------------------------------------------------------
   Helfer-Klassen (im Elementor-Feld „CSS-Klassen“ eintragbar), falls ein
   Effekt im Editor umständlich wäre. Optional einsetzbar.
   --------------------------------------------------------------------- */

/* Bild-Overlay-Verlauf unten (Karten, Galerie, Hero) – als Container-Klasse */
.tb-overlay-bottom { position: relative; }
.tb-overlay-bottom::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20,19,18,0) 50%, rgba(20,19,18,0.55) 100%);
	pointer-events: none;
	border-radius: inherit;
}

/* Inhalte (Label/Pfeil/Text) über dem Overlay-Verlauf halten */
.tb-overlay-bottom > *, .tb-overlay-card > *, .tb-overlay-hero > * { position: relative; z-index: 2; }

/* Die Status-Pill oben rechts ist absolut positioniert und liegt als
   Geschwister der Overlay-Ebene im Container – explizit anheben. */
.tb-overlay-hero .tb-hero-pill, .tb-hero .tb-hero-pill { z-index: 3 !important; }

/* Hero-Overlay: bewusst zurückhaltend, damit Video und Standbild hell und
   freundlich wirken. Nach links und nach unten etwas kräftiger, weil dort der
   weiße Text steht – oben rechts bleibt das Bild nahezu unangetastet. */
.tb-overlay-hero { position: relative; }
.tb-overlay-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	border-radius: inherit;
	background:
		linear-gradient(90deg, rgba(20,19,18,0.48) 0%, rgba(20,19,18,0.22) 55%, rgba(20,19,18,0.08) 100%),
		linear-gradient(180deg, rgba(20,19,18,0.18) 0%, rgba(20,19,18,0.14) 40%, rgba(20,19,18,0.56) 100%);
}

/* Bildpaare in einem Raster auf ein gemeinsames Format bringen (4:3), damit
   Hoch- und Querformat nebeneinander gleich hoch stehen. */
.tb-img-43 img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }

/* Leichteres Overlay für Service-Karten (Referenz 0.28) */
.tb-overlay-card { position: relative; }
.tb-overlay-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20,19,18,0) 58%, rgba(20,19,18,0.28) 100%);
	pointer-events: none;
	border-radius: inherit;
}

/* Hero-Höhe exakt wie Referenz: min(76vh,720px), min 520 */
.tb-hero { height: min(76vh, 720px); min-height: 520px; position: relative; }
@media (max-width: 767px) { .tb-hero { height: auto; min-height: 60vh; } }

/* Status-Pill oben rechts im Hero */
.tb-hero-pill .elementor-heading-title {
	display: inline-flex;
	align-items: center;
	background: rgba(20,19,18,0.4);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	padding: 8px 14px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 500;
	color: #FBF8EE;
	letter-spacing: 0.02em;
}

/* Karten-Pfeil (Service-Karten) – Kreis unten rechts auf dem Bild */
.tb-card-arrow .elementor-heading-title {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #FBF8EE;
	color: #242325;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	line-height: 1;
}

/* Galerie-/Karten-Label (unten links auf Bild) */
.tb-tile-label .elementor-heading-title {
	font-family: 'Schibsted Grotesk', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #FBF8EE;
}

/* Header: halbtransparentes Papierweiß mit Blur (sticky) – auf den Header-Container legen */
.tb-header-blur {
	background: rgba(251,248,238,0.86) !important;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

/* Preiszeilen-Hover (Sortiment/Preise) */
.tb-price-row { transition: background-color .2s ease; position: relative; }
.tb-price-row:hover { background: #F1EBDD; }

/* Anklickbare Holzsorten-Einträge (ganzer Eintrag = Link zur Anfrage).
   Der Container selbst ist das <a> (html_tag=a). */
.tb-price-link { cursor: pointer; text-decoration: none; }
.tb-price-link:hover .tb-price-mid .elementor-heading-title { color: #C1421E; }

/* Anklickbare Service-Karten auf der Startseite (ganze Karte = Link). */
.tb-home-card { cursor: pointer; text-decoration: none; }

/* Holzsorten-Zeilen mit Foto links (Sortiment). Drei direkte Flex-Kinder:
   Foto (feste Größe), Textspalte (wächst), Preisspalte (feste Größe).
   Foto-Container per !important fixieren, da Elementor Container-Breiten mobil
   sonst auf 100 % zurücksetzt. Textspalte: width:auto + flex:1, damit sie die
   freie Breite füllt (sonst bricht der Text einwort-pro-Zeile um). */
.tb-price-photo {
	flex: 0 0 88px !important;
	width: 88px !important;
	height: 88px;
	min-height: 88px;
	align-self: center;
}
.tb-price-body { flex: 1 1 auto !important; width: auto !important; min-width: 0; }
.tb-price-mid { flex: 1 1 auto !important; width: auto !important; min-width: 0; }
.tb-price-val { flex: 0 0 auto !important; width: auto !important; white-space: nowrap; }
@media (max-width: 600px) {
	/* Elementor stellt Flex-Container mobil auf Spalte – Foto-Zeile bleibt eine
	   Reihe (Foto links), der Body stapelt: Text voll breit, Preis darunter. */
	.tb-price-row--photo {
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		align-items: flex-start !important;
		gap: 12px !important;
		padding-top: 18px !important;
		padding-bottom: 18px !important;
	}
	.tb-price-row--photo .tb-price-body {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 8px !important;
	}
	.tb-price-row--photo .tb-price-val {
			flex-direction: row !important;
			flex-wrap: wrap;
			align-items: baseline !important;
			gap: 2px 8px !important;
			text-align: left;
		}
		.tb-price-row--photo .tb-price-val > * { width: auto !important; }
	.tb-price-photo { flex-basis: 56px !important; width: 56px !important; height: 56px; min-height: 56px; align-self: flex-start; margin-top: 3px; }
}

/* =====================================================================
   Preisrechner-Widget (.tb-calc) – Look gemäß Design-Referenz.
   Farben kommen aus den CSS-Variablen, die das Widget inline setzt
   (im Editor unter „Farben" pflegbar).
   ===================================================================== */
.tb-calc {
	background: var(--tb-bg, #242325);
	color: var(--tb-light, #FBF8EE);
	border-radius: 24px;
	padding: 56px 52px;
}
.tb-calc__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 52px;
	align-items: center;
}
.tb-calc__eyebrow {
	font-family: 'Hanken Grotesk', system-ui, sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.16em;
	color: #C9D3B8;
	margin-bottom: 14px;
	text-transform: uppercase;
}
.tb-calc__heading {
	font-family: 'Schibsted Grotesk', system-ui, sans-serif;
	font-weight: 500;
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1.05;
	letter-spacing: -0.01em;
	margin: 0 0 16px;
	color: var(--tb-light, #FBF8EE);
}
.tb-calc__desc {
	font-size: 16px;
	line-height: 1.65;
	margin: 0 0 24px;
	color: var(--tb-light, #FBF8EE);
	opacity: 0.76;
}
/* Die beiden Eingabeblöcke stehen als helle Karten auf dem grünen Band, damit
   im Vergleichsbereich nicht alles grün in grün liegt (Pendant zur Ergebnis-
   Karte rechts, nur eine Nuance wärmer). */
.tb-calc__field {
	background: #F1EBDD;
	border: 1px solid #E2DACB;
	border-radius: 14px;
	padding: 22px;
}
.tb-calc__field-label {
	display: block;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6B655C;
	margin-bottom: 12px;
}
.tb-calc__field-row {
	display: flex;
	align-items: center;
	gap: 12px;
}
.tb-calc__input {
	flex: 1;
	width: 100%;
	font-family: 'Schibsted Grotesk', system-ui, sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #242325;
	border: 1px solid #E2DACB;
	border-radius: 10px;
	padding: 12px 16px;
	background: #FBF8EE;
}
.tb-calc__unit {
	font-family: 'Schibsted Grotesk', system-ui, sans-serif;
	font-size: 18px;
	color: #6B655C;
	white-space: nowrap;
}
/* Zwei Felder (Scheitlänge + Eingabe) untereinander */
.tb-calc__field + .tb-calc__field { margin-top: 14px; }
/* Scheitlängen-Umschalter (Pills) */
.tb-calc__lengths { display: flex; gap: 8px; flex-wrap: wrap; }
/* Die Pills sind <button>-Elemente: die Button-Regel aus dem Elementor-Kit
   (Klasse + Element) ist spezifischer als eine einzelne Klasse und würde sie
   anthrazit einfärben. Deshalb hier durchgängig mit Eltern-Klasse schreiben. */
.tb-calc .tb-calc__len {
	flex: 1 1 0;
	min-width: 92px;
	font-family: 'Schibsted Grotesk', system-ui, sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #242325;
	background: #FBF8EE;
	border: 1px solid #E2DACB;
	border-radius: 100px;
	padding: 11px 16px;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.tb-calc .tb-calc__len:hover,
.tb-calc .tb-calc__len:focus { background: #FFFDF4; color: #242325; border-color: #CFC5B0; }
/* Aktiv = Waldgrün: der einzige grüne Akzent in den Eingabefeldern, damit die
   Auswahl trotzdem sofort erkennbar bleibt. */
.tb-calc .tb-calc__len.is-active,
.tb-calc .tb-calc__len.is-active:hover,
.tb-calc .tb-calc__len.is-active:focus {
	background: var(--tb-forest, #24402F);
	color: #FBF8EE;
	border-color: var(--tb-forest, #24402F);
}
/* eigener Preis in srm */
.tb-calc__ownsrm {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid #E2DACB;
	font-size: 14px;
	line-height: 1.5;
	color: #5b574e;
}
.tb-calc__ownsrm strong { color: #242325; }
.tb-calc__card {
	background: #FBF8EE;
	border-radius: 16px;
	padding: 30px;
	color: #242325;
}
.tb-calc__card-title {
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #9a958a;
	margin-bottom: 22px;
}
.tb-calc__bar-block { margin-bottom: 22px; }
.tb-calc__bar-block:last-of-type { margin-bottom: 0; }
.tb-calc__bar-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 8px;
}
.tb-calc__bar-name {
	font-weight: 600;
	font-size: 15px;
	color: #6B655C;
}
.tb-calc__bar-name--own { color: var(--tb-own, #2C5238); }
.tb-calc__bar-val {
	font-family: 'Schibsted Grotesk', system-ui, sans-serif;
	font-size: 22px;
	font-weight: 600;
	color: #6B655C;
}
.tb-calc__own-val { color: var(--tb-own, #2C5238); }
.tb-calc__track {
	height: 14px;
	border-radius: 8px;
	background: #EDE6D9;
	overflow: hidden;
}
.tb-calc__fill {
	height: 100%;
	border-radius: 8px;
	transition: width .4s ease;
}
.tb-calc__fill--own  { background: var(--tb-own, #2C5238); }
.tb-calc__fill--comp { background: var(--tb-comp, #B7AE9C); }
.tb-calc__note {
	margin-top: 22px;
	border-radius: 12px;
	padding: 16px 18px;
	font-size: 14.5px;
	line-height: 1.5;
}
.tb-calc__note[hidden] { display: none; }
.tb-calc__note--warn {
	background: #FBE7DF;
	border: 1px solid #EAC2B2;
	color: #5c2417;
}
.tb-calc__note--warn strong { color: #C1421E; }
.tb-calc__note--neutral {
	background: #EFE8DA;
	border: 1px solid #E2DACB;
	color: #6B655C;
	font-size: 14px;
}

/* Tablet / Mobil: einspaltig */
@media (max-width: 880px) {
	.tb-calc { padding: 40px 28px; }
	.tb-calc__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* =====================================================================
   Helfer für die importierten Elementor-Templates
   (kann im Editor jederzeit überschrieben werden).
   ===================================================================== */

/* Orts-Chips (Lieferung) */
.tb-chip {
	display: inline-block;
	background: #fff;
	border: 1px solid #E2DACB;
	border-radius: 100px;
	padding: 9px 18px;
	font-size: 14.5px;
	font-weight: 500;
	color: #242325;
}

/* Schritt-Badge (Lieferung) – grünes, abgerundetes Quadrat mit Zahl */
.tb-step-badge {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #2C5238;
	color: #F4EFE0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}
.tb-step-badge .elementor-heading-title { color: #F4EFE0 !important; }

/* Header-Layout: linke/rechte Gruppe wachsen gleich, Logo bleibt mittig */
.tb-hdr-side { flex: 1 1 0 !important; min-width: 0; }
.tb-hdr-center { flex: 0 0 auto !important; }
/* Inline-Nav nie umbrechen */
.tb-inline-nav, .tb-inline-nav .elementor-nav-menu, .tb-inline-nav ul { flex-wrap: nowrap !important; white-space: nowrap; }

/* Header: inline-Navlinks + Menü-Pill */
.tb-inline-nav .elementor-item { font-size: 14px; font-weight: 500; color: #242325; }
.tb-inline-nav .elementor-item:hover { color: #C1421E; }
.tb-menu-trigger:hover .elementor-button { background: #F1EBDD !important; }
.tb-menu-trigger .elementor-button { white-space: nowrap; }

/* Nav-Menüs mit Breakpoint „None“ (Footer + Overlay): Liste IMMER zeigen,
   nie auf Hamburger umschalten – Elementor versteckt die Haupt-Liste sonst mobil. */
.elementor-nav-menu--dropdown-none .elementor-nav-menu--main { display: block !important; }
.elementor-nav-menu--dropdown-none .elementor-nav-menu--dropdown,
.elementor-nav-menu--dropdown-none .elementor-menu-toggle { display: none !important; }

/* Footer-Nav: Links in Creme (sonst charcoal auf charcoal = unsichtbar) */
.elementor-location-footer .elementor-nav-menu .elementor-item {
	color: #FBF8EE !important;
	opacity: 0.85;
	padding: 4px 0;
	font-size: 14.5px;
}
.elementor-location-footer .elementor-nav-menu .elementor-item:hover { opacity: 1; color: #FBF8EE !important; }
/* Aktiver Footer-Link: helles Creme statt Orange (Orange auf Grün vermeiden) */
.elementor-location-footer .elementor-nav-menu .elementor-item.elementor-item-active { opacity: 1; color: #FBF8EE !important; }

/* Menü-Overlay: große Schibsted-Links */
.tb-overlay-menu .elementor-item {
	font-family: 'Schibsted Grotesk', system-ui, sans-serif;
	font-size: clamp(30px, 6vw, 46px);
	font-weight: 500;
	letter-spacing: -0.02em;
	color: #242325;
	padding: 4px 0;
}
/* line-height auf allen Zuständen fixieren: ein Hover-Stylesheet setzt sie sonst
   auf 20px → Item kollabiert von 78px auf 46px und die Items darunter springen hoch. */
.tb-overlay-menu .elementor-item,
.tb-overlay-menu .elementor-item:hover,
.tb-overlay-menu .elementor-item:focus { line-height: 1.12 !important; }
.tb-overlay-menu .elementor-item:hover { color: #C1421E !important; background-color: transparent !important; }
/* Global-Kit-Hover entfernen: KEIN ember-Hintergrund, KEIN Pointer-/Hover-Strich (:before/:after).
   So springt nichts mehr beim Hover; nur die aktive Seite behält ihren Text-Unterstrich. */
.tb-overlay-menu .elementor-item::before, .tb-overlay-menu .elementor-item::after,
.elementor-location-footer .elementor-nav-menu .elementor-item::before,
.elementor-location-footer .elementor-nav-menu .elementor-item::after { display: none !important; }
.elementor-location-footer .elementor-nav-menu .elementor-item:hover { background-color: transparent !important; }
/* Footer-Nav: Padding auf allen Zuständen fixieren. Beim Hover setzt sonst ein
   Stylesheet Padding (0→20px horiz., Höhe 28→46px) → das Item wächst und schiebt
   die darunter liegenden Items nach unten. Konstantes Padding = kein Springen. */
.elementor-location-footer .elementor-nav-menu .elementor-item,
.elementor-location-footer .elementor-nav-menu .elementor-item:hover,
.elementor-location-footer .elementor-nav-menu .elementor-item:focus { padding: 4px 0 !important; }

/* Schließen-Pille (Menü-Overlay): nicht umbrechen („× Schließen“ einzeilig) */
.tb-menu-close .elementor-button { white-space: nowrap; }

/* Popup-Einblendung: weicher Fade/Slide (zusätzlich zur Popup-Animation) */
.elementor-popup-modal .dialog-widget-content { transition: transform .42s cubic-bezier(.4,0,.2,1), opacity .42s cubic-bezier(.4,0,.2,1); }

/* Kontaktformular (Elementor Pro Form) an das Design angleichen */
.tb-form .elementor-field {
	background: #FBF8EE;
	border: 1.5px solid #DAD3C4;
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 15px;
	color: #242325;
}
.tb-form .elementor-field-label { font-size: 13px; font-weight: 600; color: #42433a; margin-bottom: 7px; }
.tb-form .elementor-button, .tb-form button[type="submit"] {
	background-color: var(--tb-forest) !important;
	color: #FBF8EE !important;
	border-radius: 100px;
	padding: 16px;
	font-weight: 600;
	font-size: 16px;
}
.tb-form .elementor-button:hover, .tb-form button[type="submit"]:hover { background-color: var(--tb-forest-deep) !important; }

/* reCAPTCHA v3 arbeitet unsichtbar (Badge unten rechts). Elementor rendert dafür
   trotzdem eine leere Feld-Hülle, die durch das Feld-Styling als leerer Kasten
   erscheint – daher ausblenden. Die Token-Erzeugung läuft per JS unabhängig weiter. */
.tb-form .elementor-field-type-recaptcha_v3 {
	display: none !important;
}

/* Datenschutz-Einwilligung: Checkbox zuerst, Text direkt daneben, oben ausgerichtet */
.tb-form .elementor-field-group-consent { align-items: flex-start; flex-wrap: nowrap; }
.tb-form .elementor-field-group-consent > .elementor-field-label { display: none; }
.tb-form .elementor-field-group-consent .elementor-field-subgroup { width: 100%; }
.tb-form .elementor-field-group-consent .elementor-field-option {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.tb-form .elementor-field-group-consent .elementor-acceptance-field {
	flex: 0 0 auto;
	width: 18px;
	min-width: 0;
	height: 18px;
	margin: 2px 0 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 4px;
	accent-color: var(--tb-accent, #E8956B);
	cursor: pointer;
}
.tb-form .elementor-field-group-consent .elementor-field-option label {
	margin: 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
	color: #42433a;
}

/* Preisvergleichstabelle (Sortiment & Preise): Rm + Schüttraummeter je Scheitlänge */
.tb-preistab { display: flex; flex-direction: column; gap: 26px; width: 100%; }
.tb-preistab__cap {
	font-family: 'Schibsted Grotesk', system-ui, sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #242325;
	margin-bottom: 12px;
}
.tb-preistab__scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid #E2DACB;
	border-radius: 14px;
}
.tb-preistab__table {
	width: 100%;
	min-width: 520px;
	border-collapse: collapse;
	font-family: 'Hanken Grotesk', system-ui, sans-serif;
	font-size: 15px;
}
.tb-preistab__table th,
.tb-preistab__table td {
	padding: 12px 16px;
	text-align: right;
	white-space: nowrap;
	border-bottom: 1px solid #ECE5D6;
}
.tb-preistab__table thead th {
	background: var(--tb-forest);
	color: #FBF8EE;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.01em;
	border-bottom: none;
}
.tb-preistab__table thead th:first-child,
.tb-preistab__table tbody th { text-align: left; }
.tb-preistab__table tbody th {
	font-weight: 700;
	color: #242325;
	background: #FBF8EE;
}
.tb-preistab__table tbody td { color: #42433a; background: #FFFFFF; }
.tb-preistab__table tbody tr:last-child th,
.tb-preistab__table tbody tr:last-child td { border-bottom: none; }
.tb-preistab__table thead .tb-col-own { background: #2C5238 !important; color: #FBF8EE; }
.tb-preistab__table tbody td.tb-col-own {
	background: rgba(232,149,107,0.16) !important;
	color: #242325;
	font-weight: 700;
}
.tb-preistab__legend {
	margin: 2px 0 0;
	font-size: 13px;
	line-height: 1.55;
	color: #6b6253;
}
.tb-preistab__legend a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* Adress-Autocomplete am Lieferadresse-Feld im Kontaktformular */
.tb-ac-wrap { position: relative; width: 100%; }
.tb-form .tb-ac-wrap .elementor-field { width: 100%; }

/* Live-Preisschätzung im Kontaktformular */
.tb-preis-est {
	flex: 0 0 100%;
	width: 100%;
	box-sizing: border-box;
	margin: 4px 0 6px;
	padding: 18px 20px;
	background: #F6F1E4;
	border: 1.5px solid #E2DACB;
	border-radius: 14px;
	font-family: 'Hanken Grotesk', system-ui, sans-serif;
	color: #42433a;
}
.tb-preis-est[hidden] { display: none; }
.tb-preis-est__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #9A8F78;
	margin-bottom: 10px;
}
.tb-preis-est__total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid #E2DACB;
}
.tb-preis-est__total > span { font-size: 14px; font-weight: 600; color: #42433a; }
.tb-preis-est__total > strong {
	font-family: 'Schibsted Grotesk', system-ui, sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #242325;
	white-space: nowrap;
}
.tb-preis-est__rows { display: flex; flex-direction: column; gap: 7px; }
.tb-preis-est__row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.tb-preis-est__row > span:last-child { font-weight: 600; color: #242325; white-space: nowrap; }
.tb-preis-est__schuett,
.tb-preis-est__sub {
	margin-top: 2px;
	font-size: 12px;
	font-style: italic;
	color: #A89E8C;
}
.tb-preis-est__row--muted { color: #9A8F78; }
.tb-preis-est__row--muted > span:last-child { color: #9A8F78; font-weight: 500; }
.tb-preis-est__free { color: #2C5238; font-weight: 700; }
.tb-preis-est__note { margin-top: 12px; font-size: 12px; line-height: 1.5; color: #9A8F78; }
.tb-preis-est__note a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.tb-preis-est__note a:hover { color: #6b6253; }

/* Kontakt: Formular-Spalte breiter als Sidebar (1.3fr / 1fr) */
.tb-form-grid > .e-con-inner { grid-template-columns: 1.3fr 1fr !important; }
@media (max-width: 767px) {
	.tb-form-grid > .e-con-inner { grid-template-columns: 1fr !important; }
}

/* =====================================================================
   Schmale Lese-Sektionen (max-width-Override für boxed/full Container)
   ===================================================================== */
.tb-w-1180 > .e-con-inner { max-width: 1180px; margin-inline: auto; }
.tb-w-1000 > .e-con-inner { max-width: 1000px; margin-inline: auto; }
.tb-w-920  > .e-con-inner { max-width: 920px;  margin-inline: auto; }

/* =====================================================================
   Responsive – Tablet & Mobil
   ===================================================================== */
/* Header NIE umbrechen – gilt für Root UND alle inneren Container
   (Elementor setzt mobil sonst flex-wrap:wrap → Logo „Brennholz“ würde abreißen) */
.tb-header-blur, .tb-header-blur .e-con, .tb-header-blur .e-con-inner { flex-wrap: nowrap !important; }
.tb-hdr-center { white-space: nowrap; }
/* Header-Gruppen content-basiert statt 100% breit (sonst schiebt's das Logo off-screen) */
.tb-hdr-side, .tb-hdr-center,
.tb-hdr-side > .e-con-inner, .tb-hdr-center > .e-con-inner { width: auto !important; }

/* Ab Tablet: Inline-Nav weicht der „Menü“-Pill (Vollbild-Overlay = Navigation) */
@media (max-width: 1024px) {
	.tb-inline-nav { display: none !important; }
	.tb-hdr-side { flex: 0 0 auto !important; }
	.tb-hdr-center { flex: 1 1 auto !important; }
}

@media (max-width: 767px) {
	/* Mobiler Header: nur Menü-Pill (links) + Logo (rechts); CTA steckt im Overlay.
	   Mitte = natürliche Breite, dann schiebt space-between das Logo nach rechts. */
	.tb-hdr-cta { display: none !important; }
	.tb-hdr-center { flex: 0 0 auto !important; justify-content: flex-end !important; }
	.tb-header-blur { padding: 7px 18px !important; }

	/* Hero kompakter */
	.tb-hero { height: auto !important; min-height: 72vh; padding: 26px 22px !important; }
	.tb-hero-pill .elementor-heading-title { font-size: 11px; padding: 6px 11px; }

	/* Dunkle Blöcke: weniger Innenabstand */
	/* Inhaltsbänder (dunkel wie creme) brauchen mobil weniger Innenabstand */
	.tb-dark, .tb-band { padding: 36px 22px !important; }
	.tb-calc { padding: 32px 20px; }

	/* Footer stapeln */
	.tb-footer-row { flex-direction: column !important; align-items: flex-start !important; gap: 30px !important; }
	.tb-footer-cols { flex-direction: column !important; gap: 26px !important; }
}

/* Menü-Overlay (Popup): mobil einspaltig, Bildspalte aus */
@media (max-width: 767px) {
	.tb-overlay-menu .elementor-item { font-size: clamp(28px, 9vw, 40px); }
	.tb-popup-img { display: none !important; }
}

/* =====================================================================
   Menü-Overlay (Popup) – Fullscreen-Split 50/50
   ===================================================================== */
/* Exit-Animation nachrüsten: Elementor enqueued NUR die fadeIn-Keyframes –
   es gibt weder fadeOut- noch reverse-CSS auf der Seite, daher verschwindet das
   Popup beim Schließen ohne Animation. Die JS-Logik vergibt beim Schließen die
   Klasse .fadeOut auf .dialog-widget-content und entfernt das Element erst nach
   entrance_animation_duration (0.3s) – wir liefern nur die fehlende Animation.
   animation-duration:0.3s liegt bereits auf .dialog-widget-content → identisch
   schnell wie die Eingangsanimation. */
@keyframes tb-popup-fadeOut { from { opacity: 1; } to { opacity: 0; } }
/* Elementor setzt beim Schließen zusätzlich .reverse → .animated.reverse erzwingt
   animation-direction:reverse. Unsere 1→0-Keyframes würden dadurch zu 0→1 (Einblenden).
   Deshalb Richtung explizit auf normal zwingen → echtes Ausblenden 1→0. */
.elementor-popup-modal .dialog-widget-content.fadeOut {
	animation-name: tb-popup-fadeOut !important;
	animation-direction: normal !important;
	animation-fill-mode: forwards !important;
}
/* „Fade to black" verhindern: Würde nur das Panel ausgeblendet, käme der dunkle
   Backdrop (rgba(0,0,0,.8)) zum Vorschein. Stattdessen das GESAMTE Modal (Backdrop
   + Panel) gemeinsam ausblenden → es faded direkt zur Seite. :has greift nur beim
   Schließen (Klasse .fadeOut), nicht beim Öffnen (.fadeIn). */
.elementor-popup-modal:has(.dialog-widget-content.fadeOut) {
	animation: tb-popup-fadeOut 0.3s ease forwards !important;
}
.elementor-popup-modal:has(.dialog-widget-content.fadeOut) .dialog-widget-content.fadeOut {
	animation: none !important;   /* kein doppeltes Ausblenden (Modal faded bereits) */
	opacity: 1 !important;
}
.elementor-popup-modal .dialog-message { padding: 0 !important; max-height: 100vh !important; }
.elementor-popup-modal .dialog-widget-content { background: #FBF8EE; }
.tb-popup-root { min-height: 100vh; }
.tb-popup-left { background: #FBF8EE; }
.tb-popup-left .tb-menu-close .elementor-button { background: transparent !important; color: #242325 !important; }
.tb-popup-left .tb-menu-close .elementor-button:hover { background: #F1EBDD !important; }
.tb-popup-brand .elementor-heading-title { font-size: 21px; }

/* Kopfzeile (Logo + ×) immer einzeilig – sonst wickelt Elementor auf Mobile um
   und das × rutscht links unter die Wortmarke. */
.tb-popup-top { flex-wrap: nowrap !important; }

/* Großes „×“ als Schließen-Button (statt Pille): fester Kreis, zentriertes Glyph. */
.tb-menu-x .elementor-button {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px !important;
	line-height: 1 !important;
	font-weight: 400 !important;
	padding: 0 !important;
	background: transparent !important;
	color: #242325 !important;
	border: 1px solid #DAD3C4 !important;
	border-radius: 50% !important;
}
.tb-menu-x .elementor-button:hover { background: #F1EBDD !important; color: #C1421E !important; }
.tb-menu-x .elementor-button:focus { outline: none !important; }

/* Anruf-FAB: runder Button mit feinem Phone-SVG, fix unten rechts – NUR mobil.
   Global im Footer eingehängt (jede Seite). z-index unter dem Menü-Overlay
   (Popup ~9999) → im offenen Menü verdeckt, sonst sichtbar. */
.tb-fab-call {
	position: fixed !important;
	right: 18px;
	bottom: 18px;
	width: 58px !important;
	height: 58px !important;
	min-height: 58px;
	border-radius: 50% !important;
	display: none;              /* Desktop: aus */
	z-index: 100;
	box-shadow: 0 10px 26px rgba(20,19,18,0.30);
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tb-fab-call:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(20,19,18,0.36); }
.tb-fab-call img { width: 24px; height: 24px; display: block; }
/* Responsive-Sichtbarkeit: Menü-CTA mobil oben, desktop über den Kontaktdaten. */
.tb-only-mobile { display: none !important; }
@media (max-width: 767px) {
	.tb-fab-call { display: flex !important; }
	.tb-only-mobile { display: block !important; }
	.tb-only-desktop { display: none !important; }
	/* CTA prägnant: volle Breite + zentriert */
	.tb-menu-cta.tb-only-mobile .elementor-button { width: 100%; justify-content: center; }
	/* Mehr Luft: schmaleres Seiten-Padding der Menüspalte */
	.tb-popup-left { padding: 26px 24px !important; }
}

/* Overlay-Menü: aktiver/aktueller Link in Ember + Unterstrich (wie Design) */
.tb-overlay-menu .elementor-item.elementor-item-active {
	color: #C1421E !important;
	text-decoration: underline;
	text-underline-offset: 6px;
	text-decoration-color: #C1421E;
}
@media (max-width: 767px) {
	/* Popup mobil: Bildspalte aus, Menü füllt die Breite */
	.tb-popup-img { display: none !important; }
	.tb-popup-root { grid-template-columns: 1fr !important; }
}

/* =====================================================================
   Preise – „Zwei Maße“-Karten: Badge-Pille, Eyebrow-Label, Titel
   ===================================================================== */
/* „UNSER MASS“ als grünes Badge (hugt links statt volle Breite). */
.tb-card-badge { align-self: flex-start; }
.tb-card-badge .elementor-heading-title {
	display: inline-block;
	background: #2C5238;
	color: #F4EFE0;
	padding: 5px 14px;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
/* Unsichtbarer Platzhalter (zweite Karte startet auf gleicher Linie). */
.tb-card-badge-ghost { visibility: hidden; }
/* Balkenfüllung: Breite auf ALLEN Breakpoints erzwingen (Elementor setzt --width
   mobil sonst auf 100% zurück → Balken wären wieder randvoll). */
.tb-bar-fill { flex: 0 0 auto !important; }
.tb-bar-70 { width: 70% !important; }
.tb-bar-50 { width: 50% !important; }
/* Karten-Titel („Sauber geschichtet“ / „Lose geschüttet“) etwas größer/fett. */
.tb-card-sub .elementor-heading-title { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }

/* =====================================================================
   Über-uns-Zitat
   ===================================================================== */
.tb-quote .elementor-heading-title {
	font-family: 'Schibsted Grotesk', system-ui, sans-serif;
	font-weight: 500;
	font-size: clamp(24px, 3.2vw, 36px);
	line-height: 1.25;
	letter-spacing: -0.015em;
}
.tb-quote-author .elementor-heading-title { font-size: 16px; font-weight: 600; }

/* =====================================================================
   Footer – Links sichtbar (Creme), Legal-Links, kein Hamburger
   ===================================================================== */
.elementor-location-footer .elementor-nav-menu .elementor-item,
.elementor-location-footer .elementor-widget-text-editor a {
	color: #FBF8EE !important;
	opacity: 0.85;
	text-decoration: none;
}
.elementor-location-footer .elementor-nav-menu .elementor-item:hover,
.elementor-location-footer .elementor-nav-menu .elementor-item.elementor-item-active,
.elementor-location-footer .elementor-widget-text-editor a:hover {
	opacity: 1;
	color: #FBF8EE !important;
}
.tb-footer-legal { font-size: 13px; }
.tb-footer-legal .elementor-widget-text-editor { color: rgba(251,248,238,0.6); }
@media (max-width: 767px) {
	.tb-footer-legal { flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; }
}

/* =====================================================================
   Styleguide-Feinheiten: per-Seite-H1, Footer-CTA-Link, Bento-Titel
   ===================================================================== */
/* Seiten-H1-Größen (Styleguide §2) – !important, da universelle h1-Regel spezifischer ist */
.tb-h1-56 .elementor-heading-title { font-size: clamp(32px, 4.4vw, 56px) !important; }
.tb-h1-60 .elementor-heading-title { font-size: clamp(34px, 5vw, 60px) !important; }
.tb-h1-62 .elementor-heading-title { font-size: clamp(34px, 5vw, 62px) !important; }

/* Footer-CTA-H2 + „Jetzt anfragen“ als Ember-Unterstrich-Link */
.tb-footer-cta .elementor-heading-title { font-size: clamp(30px, 4vw, 56px) !important; line-height: 1.0; letter-spacing: -0.02em; }
.tb-footer-cta .elementor-heading-title a {
	color: #FBF8EE;
	text-decoration: underline;
	text-underline-offset: 6px;
	text-decoration-color: #C9D3B8;
	cursor: pointer;
	transition: text-decoration-color .2s ease, color .2s ease;
}
.tb-footer-cta .elementor-heading-title a:hover { color: #FBF8EE; text-decoration-color: #FBF8EE; }

/* Bento-Holzart-Titel 30px (Styleguide §6.5) */
.tb-bento-title .elementor-heading-title { font-size: 30px; letter-spacing: -0.01em; }

/* Bento-Verfügbarkeits-Badge (z. B. „AB 2027“ bei Esche) – Pille oben überm Titel */
.tb-bento-badge { align-self: flex-start; margin-bottom: 6px; }
.tb-bento-badge .elementor-heading-title {
	display: inline-block;
	font-family: 'Hanken Grotesk', system-ui, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #242325;
	background: #E8956B;
	border-radius: 999px;
	padding: 5px 12px;
	line-height: 1.1;
}

/* =====================================================================
   Buttons: Pfeil-Glyphen, Glas-Blur, exakte Maße (Styleguide-Ergänzung)
   ===================================================================== */
/* Pfeil „→“ als CSS-Glyph mit eigener Farbe + 9px Abstand (gap) */
.tb-arrow-ember .elementor-button-text::after,
.tb-arrow-fire  .elementor-button-text::after,
.tb-form .elementor-button .elementor-button-text::after {
	content: "\2192";
	margin-left: 9px;
	display: inline-block;
	line-height: 1;
}
.tb-arrow-ember .elementor-button-text::after { color: #C9D3B8; }
.tb-arrow-fire  .elementor-button-text::after { color: #C1421E; }
.tb-form .elementor-button .elementor-button-text::after { color: #C9D3B8; } /* Submit „Anfrage absenden →“ */

/* Glas-Button (Hero-sekundär) */
.tb-glass .elementor-button { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }

/* Weiche Umbrüche per max-width (Styleguide §A) */
.tb-mw-14ch .elementor-heading-title { max-width: 14ch; }
.tb-mw-20ch .elementor-heading-title { max-width: 20ch; }
.tb-mw-18ch .elementor-heading-title { max-width: 18ch; }
.tb-mw-560 { max-width: 560px !important; margin-left: auto; margin-right: auto; }
.tb-mw-580 { max-width: 580px !important; margin-left: auto; margin-right: auto; }
.tb-mw-640 { max-width: 640px !important; }
.tb-mw-760 { max-width: 760px !important; }

/* Footer-Unterbau: Spalten links / Logo rechts content-basiert (sonst 100% breit) */
.tb-footer-cols, .tb-footer-logo { width: auto !important; }
.tb-footer-logo { cursor: pointer; }
.tb-footer-logo .elementor-heading-title { color: #FBF8EE; }
/* Header-Mittellogo klickbar (zur Startseite) */
.tb-hdr-center { cursor: pointer; }

/* =====================================================================
   Kontakt: Anruf-Band (Icon-Kreis, content-basierte Gruppen) + Selects
   ===================================================================== */
.tb-auto { width: auto !important; }
.tb-call > .e-con-inner > .e-con, .tb-call > .e-con { width: auto !important; }
.tb-call > .e-con-inner { width: 100% !important; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }

/* Mobil: Anruf-Karte sauber stapeln. .tb-call ist ein „full"-Container
   (kein .e-con-inner) → Flex-Richtung direkt auf .tb-call setzen. Knapperes
   Innen-Padding schafft Platz, damit Icon + Text in EINER Reihe bleiben
   (statt dass der Text unters Icon rutscht). Button darunter, volle Breite. */
@media (max-width: 767px) {
	.tb-call { flex-direction: column !important; align-items: stretch !important; gap: 24px !important; padding: 28px 24px !important; }
	.tb-call-left { flex-direction: column !important; align-items: flex-start !important; gap: 16px !important; }
	.tb-call .tb-arrow-fire { align-self: stretch; }
	.tb-call .tb-arrow-fire .elementor-button { width: 100%; justify-content: center; }
}

/* Telefon-Icon-Kreis 54×54 (Tannengrün, weißes Icon) */
.tb-phone-circle { width: 54px !important; height: 54px !important; min-height: 54px; flex: 0 0 auto !important; }
.tb-phone-glyph .elementor-icon { color: #FBF8EE; font-size: 22px; }

/* Mehr Luft zwischen den Textzeilen im Anrufblock (Eyebrow, Anrede, Nummer,
   Öffnungszeiten). call_txt ist das einzige direkte .tb-auto-Kind von
   .tb-call-left → Spaltenabstand gezielt erhöhen. Die Öffnungszeiten bekommen
   zusätzlich etwas mehr Abstand nach oben. */
.tb-call-left > .tb-auto { gap: 12px !important; }
.tb-call-left > .tb-auto > .elementor-widget-text-editor:last-child { margin-top: 4px; }

/* Select-Felder: native Doppelrahmen weg, eigener Chevron */
.tb-form select,
.tb-form .elementor-field-type-select select.elementor-field {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23242325' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px !important;
}
/* Elementors eigenes Volldreieck-SVG (e-eicon-caret-down) ausblenden –
   sonst Doppelpfeil neben dem eigenen Chevron. */
.tb-form .select-caret-down-wrapper { display: none !important; }

/* Honeypot-Feld „website“: für Menschen unsichtbar (Bots füllen es aus →
   serverseitig im mu-Plugin tb-brevo-mailer.php abgewiesen). aria/tab raus. */
.tb-form .elementor-field-group-website {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
}

/* =====================================================================
   Lieferkostenrechner-Widget (.tb-liefer) – PLZ-Eingabe, serverseitige
   Prüfung. Look identisch zum Preisrechner (dunkle Karte). Farben kommen
   aus den inline gesetzten CSS-Variablen (--tb-bg / --tb-accent).
   ===================================================================== */
.tb-liefer {
	background: var(--tb-bg, #242325);
	color: #FBF8EE;
	border-radius: 24px;
	padding: 56px 52px;
}
.tb-liefer__inner {
	max-width: 620px;
	margin: 0 auto;
	text-align: center;
}
.tb-liefer__eyebrow {
	font-family: 'Hanken Grotesk', system-ui, sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.16em;
	color: #C9D3B8;
	margin-bottom: 14px;
	text-transform: uppercase;
}
.tb-liefer__heading {
	font-family: 'Schibsted Grotesk', system-ui, sans-serif;
	font-weight: 500;
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1.05;
	letter-spacing: -0.01em;
	margin: 0 0 16px;
	color: #FBF8EE;
}
.tb-liefer__desc {
	font-size: 16px;
	line-height: 1.65;
	margin: 0 0 28px;
	color: #FBF8EE;
	opacity: 0.76;
}
.tb-liefer__form { text-align: left; }
.tb-liefer__label {
	display: block;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #D9CFB6;
	margin-bottom: 12px;
	text-align: center;
}
.tb-liefer__row {
	display: flex;
	gap: 12px;
	align-items: stretch;
	max-width: 560px;
	margin: 0 auto;
}
/* Eingabefeld + Autocomplete-Liste (Liste absolut unter dem Feld). */
.tb-liefer__field { position: relative; flex: 1 1 auto; min-width: 0; text-align: left; }
.tb-liefer .tb-liefer__input,
.tb-liefer__input {
	width: 100%;
	font-family: 'Schibsted Grotesk', system-ui, sans-serif;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: #242325 !important;
	border: none !important;
	border-radius: 14px !important;
	padding: 14px 18px;
	background: #FBF8EE !important;
}
.tb-liefer__input::placeholder { color: #B7AE9C; font-weight: 500; letter-spacing: 0; }

/* Autocomplete-Dropdown */
.tb-liefer__suggest {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 20;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: #FBF8EE;
	border-radius: 12px;
	box-shadow: 0 16px 40px rgba(20,19,18,0.28);
	max-height: 280px;
	overflow-y: auto;
}
.tb-liefer__suggest[hidden] { display: none; }
.tb-liefer__option {
	padding: 11px 14px;
	border-radius: 8px;
	font-family: 'Hanken Grotesk', system-ui, sans-serif;
	font-size: 15px;
	line-height: 1.35;
	color: #242325;
	cursor: pointer;
}
.tb-liefer__option:hover,
.tb-liefer__option.is-active { background: #EDE6D9; }
.tb-liefer .tb-liefer__btn,
.tb-liefer__btn {
	flex: 0 0 auto;
	font-family: 'Schibsted Grotesk', system-ui, sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #24402F !important;
	background: #FBF8EE !important;
	border: none !important;
	border-radius: 14px !important;
	padding: 14px 24px;
	cursor: pointer;
	transition: filter 0.15s ease, transform 0.15s ease;
}
.tb-liefer .tb-liefer__btn:hover,
.tb-liefer__btn:hover { filter: brightness(1.06); }
.tb-liefer .tb-liefer__btn:active,
.tb-liefer__btn:active { transform: translateY(1px); }

.tb-liefer__result {
	margin: 22px auto 0;
	max-width: 460px;
	border-radius: 14px;
	padding: 18px 20px;
	font-size: 15px;
	line-height: 1.6;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.16);
	text-align: left;
}
.tb-liefer__result[hidden] { display: none; }
.tb-liefer__result--loading { opacity: 0.85; }
.tb-liefer__result--within {
	background: rgba(44,82,56,0.22);
	border-color: rgba(122,168,116,0.5);
}
.tb-liefer__result--outside {
	background: rgba(193,66,30,0.14);
	border-color: rgba(232,149,107,0.5);
}
.tb-liefer__result--error {
	background: rgba(255,255,255,0.05);
	border-color: rgba(255,255,255,0.2);
	color: #E9E2D2;
}
.tb-liefer__badge {
	display: inline-block;
	font-family: 'Hanken Grotesk', system-ui, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #FBF8EE;
	background: #2C5238;
	border-radius: 999px;
	padding: 5px 12px;
	margin-bottom: 10px;
}
.tb-liefer__badge--warn { background: #C1421E; }
.tb-liefer__msg { color: #FBF8EE; }
.tb-liefer__msg strong { color: #FBF8EE; }
/* CTA „Jetzt Anfrage starten" im Ergebnis */
.tb-liefer .tb-liefer__cta,
.tb-liefer__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	font-family: 'Schibsted Grotesk', system-ui, sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #24402F !important;
	background: #FBF8EE !important;
	border-radius: 14px;
	padding: 11px 20px;
	text-decoration: none !important;
	transition: filter 0.15s ease, transform 0.15s ease;
}
.tb-liefer .tb-liefer__cta:hover,
.tb-liefer__cta:hover { filter: brightness(1.06); }
.tb-liefer .tb-liefer__cta:active,
.tb-liefer__cta:active { transform: translateY(1px); }
.tb-liefer__spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255,255,255,0.3);
	border-top-color: #FBF8EE;
	border-radius: 50%;
	vertical-align: -2px;
	animation: tb-liefer-spin 0.7s linear infinite;
}
@keyframes tb-liefer-spin { to { transform: rotate(360deg); } }
.tb-liefer__hint {
	margin: 18px auto 0;
	max-width: 460px;
	font-size: 13px;
	line-height: 1.5;
	color: #D9CFB6;
	opacity: 0.72;
	text-align: center;
}

/* Tablet / Mobil: Eingabe + Button untereinander, weniger Padding */
@media (max-width: 880px) {
	.tb-liefer { padding: 40px 26px; }
}
@media (max-width: 560px) {
	.tb-liefer { padding: 32px 20px; }
	.tb-liefer__row { flex-direction: column; }
	.tb-liefer__btn { width: 100%; padding: 15px 24px; }
}

/* =====================================================================
   Partner-Logo-Slider (Startseite)
   CSS liegt bewusst hier statt im HTML-Widget: Elementor entfernt @keyframes
   aus Inline-<style>, dadurch lief die Animation nicht. Markup steht im
   HTML-Widget (.tb-partner-marquee), die Bewegung kommt von hier.
   ===================================================================== */
.tb-partner-marquee { overflow: hidden; padding: 6px 0;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.tb-partner-track { display: flex; align-items: center; gap: 20px; width: max-content;
	animation: tb-partner-scroll 48s linear infinite; }
.tb-partner-marquee:hover .tb-partner-track { animation-play-state: paused; }
.tb-partner-chip { flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
	height: 84px; padding: 0 28px; background: #fff; border: 1px solid #EAE3D3;
	border-radius: 14px; box-shadow: 0 2px 10px rgba(40,30,15,.05); text-decoration: none; }
.tb-partner-chip img { height: 44px; width: auto; display: block; object-fit: contain;
	filter: grayscale(1); opacity: .72; transition: filter .25s ease, opacity .25s ease; }
/* Nahezu quadratische Logos wirken bei gleicher Höhe deutlich kleiner als die
   breiten Schriftzüge. Das Kirwel-Signet bekommt daher mehr Höhe. */
.tb-partner-chip img[src*="kirwel"] { height: 64px; }
.tb-partner-chip--link { transition: transform .2s ease, box-shadow .2s ease; }
.tb-partner-chip--link:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(40,30,15,.12); }
.tb-partner-chip--link:hover img { filter: grayscale(0); opacity: 1; }
.tb-partner-chip--text { background: #F6F1E4; }
.tb-partner-chip--text .tb-partner-name { font-family: inherit; font-weight: 600; font-size: 16px;
	letter-spacing: .01em; color: #6B6152; white-space: nowrap; }
@media (max-width: 767px) {
	.tb-partner-chip { height: 62px; padding: 0 18px; }
	.tb-partner-chip img { height: 32px; }
	.tb-partner-chip img[src*="kirwel"] { height: 46px; }
	.tb-partner-chip--text .tb-partner-name { font-size: 14px; }
}
@keyframes tb-partner-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =====================================================================
   Flammen-Aufzählung – ersetzt Standard-Bullets durch die Trippe-Flamme
   (exakt die Flamme aus der Word-Vorlage, flame_red.svg). Wiederverwendbar:
   <ul class="tb-flame-list"> im HTML-Widget.
   ===================================================================== */
.tb-flame-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.tb-flame-list li {
	position: relative;
	padding-left: 40px;
	font-size: 17px;
	line-height: 1.55;
	color: #3E3A33;
}
.tb-flame-list li::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 1px;
	width: 17px;
	height: 24px;
	background: url("/wp-content/uploads/2026/06/flame_red.svg") center/contain no-repeat;
}
@media (max-width: 600px) { .tb-flame-list li { font-size: 16px; padding-left: 34px; } .tb-flame-list li::before { left: 2px; } }

/* =====================================================================
   Marken-Logo (logo_icon.png) in Header, Footer und Menü-Overlay.
   Dunkle Variante auf hellen Flächen, weiße Variante auf dem Waldgrün.
   ===================================================================== */
.tb-brandlogo img { width: auto !important; display: block; }
.tb-hdr-center .tb-brandlogo img { height: 50px; }
.tb-footer-logo .tb-brandlogo img { height: 78px; }
.tb-popup-brand .tb-brandlogo img { height: 54px; }
@media (max-width: 767px) {
	.tb-hdr-center .tb-brandlogo img { height: 42px; }
	.tb-popup-brand .tb-brandlogo img { height: 46px; }
}

/* =====================================================================
   Mobiles Hero-Standbild: das Video läuft auf Mobilgeräten standardmäßig
   nicht (Elementor-Voreinstellung). Statt des Video-Posters zeigen wir dort
   ein eigenes, aufbereitetes Bild. Das Hero-Overlay (.tb-overlay-hero::after)
   greift wie gehabt, der Text bleibt lesbar.
   ===================================================================== */
@media (max-width: 767px) {
	.tb-hero {
		background-image: url("/wp-content/uploads/hero-mobile.jpg") !important;
		background-size: cover !important;
		background-position: center center !important;
		background-repeat: no-repeat !important;
	}
	/* Leere Video-Hülle (Video spielt mobil nicht) nicht über das Bild legen */
	.tb-hero .elementor-background-video-container { display: none !important; }
}
