/* =========================================================================
   LIFT.DISCOUNT – Theme-Stylesheet
   -------------------------------------------------------------------------
   Aufbau:
   01 Fonts (lokal, DSGVO-konform)
   02 Design-Tokens
   03 Reset & Basis
   04 Utilities (Wrap, Skip-Link, Icons, Links)
   05 Buttons
   06 Coupon-Chip (Signatur-Element)
   07 Topbar & Header & Navigation
   08 Hero & Produktkarte
   09 Vertrauensleiste
   10 Sektionen & Grids & Karten
   11 USPs · Kategorien · Schritte
   12 Versprechen-Band
   13 FAQ (Accordion)
   14 Blog: Karten, Listing, Artikel, Prosa
   15 CTA
   16 Seiten-Hero, Suche, Pagination, 404, Kontakt
   17 Kommentare
   18 Footer
   19 Ecwid-Feinschliff
   20 Animationen & Reduced Motion
   21 Responsive
   ========================================================================= */

/* ---- 01 Fonts ---------------------------------------------------------- */
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
}
@font-face {
	font-family: 'Space Grotesk';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/space-grotesk-v22-latin-500.woff2') format('woff2');
}
@font-face {
	font-family: 'Space Grotesk';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/space-grotesk-v22-latin-700.woff2') format('woff2');
}

/* ---- 02 Design-Tokens --------------------------------------------------- */
:root {
	/* Farben (werden vom Customizer überschrieben) */
	--ld-primary: #ff5c1a;
	--ld-primary-deep: #e34a0c;
	/* Orange für kleinen Text auf hellem Grund. Das Flächen-Orange kommt
	   nur auf Kontrast 4,0 – für Text sind 4,5 nötig. */
	--ld-primary-text: #c33d07;
	--ld-primary-soft: #ff5c1a14;
	--ld-green: #0ea35f;
	--ld-green-soft: #0ea35f14;
	--ld-ink: #0f172a;
	--ld-bg: #f4f6f9;

	--ld-steel: #55657a;
	--ld-line: rgba(15, 23, 42, 0.09);
	--ld-white: #ffffff;

	/* Typografie */
	--ld-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--ld-font-display: 'Space Grotesk', var(--ld-font-body);

	/* Form & Tiefe */
	--ld-radius: 16px;
	--ld-radius-sm: 12px;
	--ld-radius-lg: 24px;
	--ld-radius-pill: 999px;
	--ld-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05), 0 4px 14px rgba(15, 23, 42, 0.06);
	--ld-shadow-md: 0 2px 6px rgba(15, 23, 42, 0.06), 0 14px 34px rgba(15, 23, 42, 0.1);
	--ld-shadow-primary: 0 8px 22px rgba(240, 78, 10, 0.32);

	/* Rhythmus */
	--ld-section-pad: clamp(2.75rem, 5vw, 4.25rem);
	--ld-gap: clamp(1.1rem, 2.2vw, 1.5rem);
}

/* ---- 03 Reset & Basis --------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--ld-font-body);
	font-size: 1.0625rem; /* 17 px – bewusst großzügig für die Zielgruppe */
	line-height: 1.65;
	color: var(--ld-ink);
	background: var(--ld-white);
	-webkit-font-smoothing: antialiased;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ld-font-display);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.015em;
	margin: 0 0 0.5em;
	text-wrap: balance;
}

p {
	margin: 0 0 1em;
}

a {
	color: inherit;
}

button {
	font: inherit;
}

:focus-visible {
	outline: 3px solid var(--ld-primary);
	outline-offset: 2px;
	border-radius: 4px;
}

::selection {
	background: var(--ld-primary);
	color: #fff;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* ---- 04 Utilities ------------------------------------------------------- */
.ld-wrap {
	width: min(100% - 2.5rem, 1200px);
	margin-inline: auto;
}

.ld-wrap--narrow {
	width: min(100% - 2.5rem, 780px);
}

.ld-wrap--wide {
	width: min(100% - 2.5rem, 1400px);
}

.ld-skip {
	position: absolute;
	left: 1rem;
	top: -4rem;
	z-index: 200;
	padding: 0.7em 1.2em;
	background: var(--ld-ink);
	color: #fff;
	border-radius: var(--ld-radius-pill);
	text-decoration: none;
	transition: top 0.2s ease;
}

.ld-skip:focus {
	top: 1rem;
}

.ld-icon {
	width: 1.35em;
	height: 1.35em;
	flex: none;
}

.ld-icon--sm {
	width: 1.1em;
	height: 1.1em;
}

.ld-icon--check {
	color: var(--ld-green);
}

.ld-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	font-weight: 600;
	color: var(--ld-primary-deep);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: border-color 0.15s ease;
}

.ld-link:hover {
	border-bottom-color: currentColor;
}

.ld-kicker {
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ld-primary-text);
	margin: 0 0 0.9em;
}

/* ---- 05 Buttons --------------------------------------------------------- */
.ld-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55em;
	padding: 0.78em 1.5em;
	border: 0;
	border-radius: var(--ld-radius-pill);
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.01em;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.ld-btn--lg {
	padding: 0.95em 1.9em;
	font-size: 1.08rem;
}

.ld-btn--primary {
	background: linear-gradient(135deg, var(--ld-primary), var(--ld-primary-deep));
	color: #fff;
	box-shadow: var(--ld-shadow-primary);
}

.ld-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(240, 78, 10, 0.4);
}

.ld-btn--primary:active {
	transform: translateY(0);
}

.ld-btn--ghost {
	background: #fff;
	color: var(--ld-ink);
	box-shadow: inset 0 0 0 2px var(--ld-line), var(--ld-shadow-sm);
}

.ld-btn--ghost:hover {
	box-shadow: inset 0 0 0 2px var(--ld-ink), var(--ld-shadow-sm);
	transform: translateY(-2px);
}

.ld-btn--light {
	background: #fff;
	color: var(--ld-ink);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.ld-btn--light:hover {
	transform: translateY(-2px);
}

/* ---- 06 Coupon-Chip (Signatur) ------------------------------------------ */
.ld-coupon {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 0.4em 1em 0.4em 1.75em;
	border: 1.5px dashed var(--ld-green);
	border-radius: 10px;
	background: var(--ld-green-soft);
	color: var(--ld-green);
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: 0.95rem;
	white-space: nowrap;
}

.ld-coupon__hole {
	position: absolute;
	left: 0.6em;
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	box-shadow: inset 0 0 0 1.6px currentColor;
}

.ld-coupon--sticker {
	position: absolute;
	top: -14px;
	right: 20px;
	z-index: 2;
	transform: rotate(-3deg);
	background: linear-gradient(135deg, var(--ld-primary), var(--ld-primary-deep));
	border-color: rgba(255, 255, 255, 0.65);
	color: #fff;
	box-shadow: 0 6px 16px rgba(240, 78, 10, 0.35);
}

.ld-coupon--invert,
.ld-coupon--footer {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.45);
	color: #fff;
}

.ld-coupon--footer {
	margin-top: 1.1rem;
	font-size: 0.85rem;
}

/* ---- 07 Topbar, Header, Navigation -------------------------------------- */
.ld-topbar {
	background: var(--ld-ink);
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.9rem;
}

.ld-topbar__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 2.6rem;
}

.ld-topbar p {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.7em;
}

.ld-topbar .ld-tel {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.ld-topbar .ld-tel .ld-icon {
	color: var(--ld-primary);
}

.ld-topbar__hours {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.26em 0.85em;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--ld-radius-pill, 999px);
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.82rem;
	white-space: nowrap;
}

.ld-topbar__hours::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #4ade80;
	box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.16);
}

.ld-topbar__note {
	color: rgba(255, 255, 255, 0.65);
	white-space: nowrap;
}

@media (max-width: 760px) {
	/* Wichtig: „.ld-topbar p" (Element+Klasse) sticht eine einzelne Klasse
	   aus – deshalb hier mit mindestens gleicher Gewichtung ausblenden. */
	.ld-topbar p.ld-topbar__note { display: none; }
	.ld-topbar__row {
		justify-content: center;
		flex-wrap: wrap;
	}
	.ld-topbar p {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 0.35em;
		padding-block: 0.4em;
		min-width: 0;
	}
}

.ld-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--ld-line);
	transition: box-shadow 0.2s ease;
}

.ld-header.is-scrolled {
	box-shadow: var(--ld-shadow-sm);
}

.ld-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 4.75rem;
	transition: min-height 0.25s ease;
}

/* Beim Scrollen wird der Sticky-Bereich schlanker – Platz fürs Wesentliche. */
.ld-header.is-scrolled .ld-header__row {
	min-height: 3.6rem;
}

/* Logo */
.ld-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	text-decoration: none;
}

.ld-logo__mark {
	display: inline-flex;
	filter: drop-shadow(0 3px 8px rgba(240, 78, 10, 0.3));
}

.ld-logo__text {
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: -0.02em;
	color: var(--ld-ink);
	line-height: 1;
}

.ld-logo__dot {
	color: var(--ld-primary);
	font-size: 1.2em;
	line-height: 0;
}

.ld-logo__accent {
	color: var(--ld-primary);
}

.ld-logo--light .ld-logo__text {
	color: #fff;
}

.custom-logo {
	max-height: 3.4rem;
	width: auto;
}

/* Navigation */
.ld-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(0.4rem, 1.6vw, 1.1rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.ld-nav__list a {
	display: inline-block;
	white-space: nowrap;
	padding: 0.45em 0.55em;
	font-weight: 600;
	font-size: 1rem;
	color: var(--ld-ink);
	text-decoration: none;
	border-radius: 8px;
	position: relative;
}

.ld-nav__list a::after {
	content: '';
	position: absolute;
	left: 0.55em;
	right: 0.55em;
	bottom: 0.1em;
	height: 2.5px;
	border-radius: 2px;
	background: var(--ld-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.18s ease;
}

.ld-nav__list a:hover::after,
.ld-nav__list a.is-inview::after,
.ld-nav__list .current-menu-item > a::after,
.ld-nav__list .current_page_item > a::after {
	transform: scaleX(1);
}

/* Untermenüs (Desktop) */
.ld-nav__list .sub-menu {
	position: absolute;
	min-width: 220px;
	margin: 0.4rem 0 0;
	padding: 0.5rem;
	list-style: none;
	background: #fff;
	border: 1px solid var(--ld-line);
	border-radius: var(--ld-radius);
	box-shadow: var(--ld-shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.ld-nav__list li {
	position: relative;
}

.ld-nav__list li:hover > .sub-menu,
.ld-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ld-nav__list .sub-menu a {
	display: block;
	padding: 0.5em 0.75em;
}

.ld-nav__list .sub-menu a::after {
	display: none;
}

.ld-nav__list .sub-menu a:hover {
	background: var(--ld-bg);
}

.ld-nav__mobile-extra {
	display: none;
}

.ld-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.ld-burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 2.9rem;
	height: 2.9rem;
	padding: 0 0.75rem;
	border: 1px solid var(--ld-line);
	border-radius: 12px;
	background: #fff;
	transition: padding 0.25s ease;
	color: var(--ld-ink);
	cursor: pointer;
}

.ld-burger__close {
	display: none;
}

.ld-burger[aria-expanded='true'] .ld-burger__open {
	display: none;
}

.ld-burger[aria-expanded='true'] .ld-burger__close {
	display: inline-flex;
}

/* „Menü" steht ausgeschrieben dran, solange man oben ist. Beim Scrollen
   klappt die Beschriftung weich ein und nur das Symbol bleibt. */
.ld-burger__label {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--ld-ink);
	white-space: nowrap;
	overflow: hidden;
	max-width: 5rem;
	margin-right: 0.5rem;
	opacity: 1;
	transition: max-width 0.25s ease, margin 0.25s ease, opacity 0.18s ease;
}

.ld-header.is-scrolled .ld-burger__label {
	max-width: 0;
	margin-right: 0;
	opacity: 0;
}

.ld-header.is-scrolled .ld-burger {
	padding: 0;
}

/* Telefon-Link generisch */
.ld-tel {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-weight: 700;
	text-decoration: none;
	color: var(--ld-ink);
}

.ld-tel .ld-icon {
	color: var(--ld-primary);
}

/* ---- 08 Hero ------------------------------------------------------------- */
.ld-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(52rem 30rem at 85% -18%, var(--ld-primary-soft), transparent 60%),
		linear-gradient(180deg, var(--ld-bg), #fff);
	border-bottom: 1px solid var(--ld-line);
}

.ld-hero__steps {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='620' height='620'%3E%3Cpath d='M0 620h155V465h155V310h155V155h155V0' fill='none' stroke='%230f172a' stroke-width='3'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right -60px bottom -40px;
	opacity: 0.06;
}

.ld-hero__grid {
	position: relative;
	display: grid;
	/* Textspalte minimal breiter als der Rechner: So passt die Kernzeile
	   der Überschrift („Ihr Treppenlift-Preis.", 10,08 em) einzeilig hinein
	   und der Lauftext füllt die Fläche, statt rechts ein Loch zu lassen. */
	grid-template-columns: 1.06fr 0.94fr;
	align-items: center;
	gap: clamp(2rem, 5vw, 4.5rem);
	padding-block: clamp(2.5rem, 5vw, 4.25rem);
}

.ld-kicker--hero {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	padding: 0.45em 1em;
	border-radius: var(--ld-radius-pill);
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--ld-line);
}

.ld-kicker--hero::before {
	content: '';
	width: 0.55em;
	height: 0.55em;
	border-radius: 50%;
	background: var(--ld-green);
}

.ld-hero__title {
	/* 4,4vw statt 5vw: gemessen an „Ihr Treppenlift-Preis." (10,08 em),
	   damit die Zeile von 901 px bis zum Cap einzeilig bleibt und die
	   Überschrift als zwei ruhige Zeilen steht statt als drei Fetzen. */
	font-size: clamp(2.3rem, 4.4vw, 3.4rem);
	text-wrap: balance;
	margin-bottom: 0.35em;
}

.ld-hero__sub {
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	color: var(--ld-steel);
	max-width: 34em;
	margin-bottom: 1.6em;
}

.ld-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-bottom: 1.6rem;
}

.ld-hero__bullets {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-weight: 600;
	font-size: 0.98rem;
}

.ld-hero__bullets li {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
}

/* Produktkarte */
.ld-hero__visual {
	display: flex;
	justify-content: center;
}
.ld-hero__visual > .ld-hero__calc { width: 100%; }

.ld-product-card {
	position: relative;
	display: block;
	width: min(100%, 400px);
	background: #fff;
	border: 1px solid var(--ld-line);
	border-radius: var(--ld-radius-lg);
	box-shadow: var(--ld-shadow-md);
	text-decoration: none;
	color: var(--ld-ink);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ld-product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 44px rgba(15, 23, 42, 0.16);
}

.ld-product-card__media {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	margin: 10px;
	background: var(--ld-bg);
	border-radius: calc(var(--ld-radius-lg) - 8px);
	overflow: hidden;
}

.ld-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ld-product-card__placeholder {
	width: 62%;
	color: var(--ld-primary);
}

.ld-product-card__body {
	display: grid;
	gap: 0.3rem;
	padding: 0.6rem 1.4rem 1.4rem;
}

.ld-product-card__title {
	font-family: var(--ld-font-display);
	font-weight: 500;
	font-size: 1.05rem;
	color: var(--ld-steel);
}

.ld-price {
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: 2rem;
	letter-spacing: -0.02em;
	color: var(--ld-ink);
}

.ld-product-card__note {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--ld-steel);
}

.ld-product-card__go {
	position: absolute;
	right: 1.2rem;
	bottom: 1.2rem;
	display: grid;
	place-items: center;
	width: 2.9rem;
	height: 2.9rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--ld-primary), var(--ld-primary-deep));
	color: #fff;
	box-shadow: var(--ld-shadow-primary);
	transition: transform 0.2s ease;
}

.ld-product-card:hover .ld-product-card__go {
	transform: translateX(4px);
}

/* ---- 09 Vertrauensleiste -------------------------------------------------- */
.ld-trust {
	background: var(--ld-ink);
	color: #fff;
}

.ld-trust__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem 2rem;
	list-style: none;
	margin: 0;
	padding: 1.1rem 0;
	font-weight: 600;
	font-size: 0.97rem;
}

.ld-trust__list li {
	display: inline-flex;
	align-items: center;
	gap: 0.55em;
	justify-content: center;
	text-align: left;
}

/* ---- 10 Sektionen, Grids, Karten ------------------------------------------ */
.ld-section {
	padding-block: var(--ld-section-pad);
}

.ld-section--tint {
	background: var(--ld-bg);
	border-block: 1px solid var(--ld-line);
}

.ld-section__head {
	max-width: 46em;
	margin-bottom: clamp(1.4rem, 2.6vw, 2.1rem);
}

.ld-section__head--center {
	margin-inline: auto;
	text-align: center;
}

.ld-section__title {
	font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}

.ld-section__sub {
	color: var(--ld-steel);
	font-size: 1.08rem;
	margin: 0;
}

.ld-grid {
	display: grid;
	gap: var(--ld-gap);
}

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

.ld-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.ld-card {
	background: #fff;
	border: 1px solid var(--ld-line);
	border-radius: var(--ld-radius-lg);
	box-shadow: var(--ld-shadow-sm);
}

/* ---- 11 USPs · Kategorien · Schritte --------------------------------------- */
.ld-usp {
	padding: 1.7rem 1.5rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ld-usp:hover {
	transform: translateY(-4px);
	box-shadow: var(--ld-shadow-md);
}

.ld-usp__icon {
	display: inline-grid;
	place-items: center;
	width: 3.1rem;
	height: 3.1rem;
	margin-bottom: 1rem;
	border-radius: 14px;
	background: var(--ld-primary-soft);
	color: var(--ld-primary-deep);
}

.ld-usp__icon .ld-icon {
	width: 1.5rem;
	height: 1.5rem;
}

.ld-usp__title {
	font-size: 1.18rem;
	margin-bottom: 0.4em;
}

.ld-usp__text {
	color: var(--ld-steel);
	font-size: 0.99rem;
	margin: 0;
}

/* Kategorien */
.ld-cat {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	text-decoration: none;
	color: var(--ld-ink);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ld-cat:hover {
	transform: translateY(-4px);
	box-shadow: var(--ld-shadow-md);
}

.ld-cat__media {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	background: var(--ld-bg);
	border-bottom: 1px solid var(--ld-line);
	overflow: hidden;
}

.ld-cat__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.ld-cat:hover .ld-cat__media img {
	transform: scale(1.05);
}

.ld-cat__fallback {
	width: 3.4rem;
	height: 3.4rem;
	color: var(--ld-primary);
	opacity: 0.75;
}

.ld-cat__body {
	display: grid;
	gap: 0.45rem;
	padding: 1.2rem 1.3rem 1.3rem;
}

.ld-cat__title {
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: 1.12rem;
	letter-spacing: -0.01em;
}

.ld-cat__text {
	color: var(--ld-steel);
	font-size: 0.95rem;
}

.ld-cat__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	margin-top: 0.35rem;
}

.ld-cat__go {
	display: grid;
	place-items: center;
	width: 2.3rem;
	height: 2.3rem;
	border-radius: 50%;
	background: var(--ld-bg);
	color: var(--ld-ink);
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ld-cat:hover .ld-cat__go {
	background: var(--ld-primary);
	color: #fff;
	transform: translateX(3px);
}

/* Schritte */
.ld-steps__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--ld-gap);
	counter-reset: steps;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ld-step {
	position: relative;
	padding: 0 1rem 0 0;
}

.ld-step__num {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 3.4rem;
	height: 3.4rem;
	margin-bottom: 1.1rem;
	border-radius: 50%;
	background: #fff;
	border: 2px dashed var(--ld-primary);
	color: var(--ld-primary-deep);
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: 1.35rem;
}

.ld-step:not(:last-child)::before {
	content: '';
	position: absolute;
	top: 1.7rem;
	left: 3.8rem;
	right: 0.4rem;
	border-top: 2px dashed var(--ld-line);
}

.ld-step__title {
	font-size: 1.2rem;
	margin-bottom: 0.35em;
}

.ld-step__text {
	color: var(--ld-steel);
	font-size: 0.99rem;
	margin: 0;
}

/* ---- 12 Versprechen-Band ---------------------------------------------------- */
.ld-band {
	padding-block: var(--ld-section-pad);
	background:
		radial-gradient(40rem 22rem at 15% 115%, rgba(255, 92, 26, 0.25), transparent 60%),
		radial-gradient(36rem 20rem at 90% -20%, rgba(14, 163, 95, 0.18), transparent 60%),
		var(--ld-ink);
	color: #fff;
}

.ld-band__inner {
	max-width: 780px;
	text-align: center;
	display: grid;
	justify-items: center;
	gap: 1.1rem;
}

.ld-band__title {
	font-size: clamp(1.7rem, 3.6vw, 2.5rem);
	margin: 0;
}

.ld-band__text {
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.08rem;
	margin: 0;
}

/* ---- 13 FAQ ------------------------------------------------------------------- */
.ld-faq__list {
	display: grid;
	gap: 0.8rem;
}

.ld-faq__item {
	background: #fff;
	border: 1px solid var(--ld-line);
	border-radius: var(--ld-radius);
	box-shadow: var(--ld-shadow-sm);
	overflow: hidden;
	transition: border-color 0.2s ease;
}

.ld-faq__item[open] {
	border-color: var(--ld-primary);
}

.ld-faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.05rem 1.3rem;
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: 1.05rem;
	cursor: pointer;
	list-style: none;
}

.ld-faq__item summary::-webkit-details-marker {
	display: none;
}

.ld-faq__chev {
	color: var(--ld-primary);
	transition: transform 0.2s ease;
}

.ld-faq__item[open] .ld-faq__chev {
	transform: rotate(180deg);
}

.ld-faq__answer {
	padding: 0 1.3rem 1.2rem;
	color: var(--ld-steel);
}

.ld-faq__answer p {
	margin: 0;
}

.ld-faq__more {
	margin: 1.6rem 0 0;
	text-align: center;
}

/* ---- 14 Blog: Karten, Artikel, Prosa --------------------------------------------- */
.ld-post-card {
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ld-post-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ld-shadow-md);
}

.ld-post-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: var(--ld-ink);
}

.ld-post-card__media {
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 10;
	background: var(--ld-bg);
	border-bottom: 1px solid var(--ld-line);
	overflow: hidden;
}

.ld-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.ld-post-card:hover .ld-post-card__media img {
	transform: scale(1.04);
}

.ld-post-card__fallback {
	width: 3rem;
	height: 3rem;
	color: var(--ld-primary);
	opacity: 0.6;
}

.ld-post-card__body {
	display: grid;
	gap: 0.5rem;
	padding: 1.2rem 1.3rem 1.4rem;
}

.ld-post-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5em;
	font-size: 0.85rem;
	color: var(--ld-steel);
}

.ld-post-card__meta .ld-icon {
	color: var(--ld-primary);
}

.ld-post-card__cat {
	padding: 0.15em 0.7em;
	border-radius: var(--ld-radius-pill);
	background: var(--ld-primary-soft);
	color: var(--ld-primary-deep);
	font-weight: 600;
}

.ld-post-card__title {
	font-size: 1.15rem;
	margin: 0;
}

.ld-post-card__excerpt {
	color: var(--ld-steel);
	font-size: 0.95rem;
}

.ld-post-card__more {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	margin-top: 0.2rem;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--ld-primary-deep);
}

.ld-blogteaser__more {
	margin: 2rem 0 0;
	text-align: center;
}

/* Artikel */
.ld-article__meta {
	display: flex;
	align-items: center;
	gap: 0.55em;
	margin: 0;
	color: var(--ld-steel);
	font-size: 0.95rem;
}

.ld-article__meta .ld-icon {
	color: var(--ld-primary);
}

.ld-wrap--article-img {
	margin-top: -1.5rem;
}

.ld-article__thumb {
	margin: 0;
}

.ld-article__thumb img {
	width: 100%;
	border-radius: var(--ld-radius-lg);
	box-shadow: var(--ld-shadow-md);
}

/* Der Abstand zum Seitenkopf wird zentral geregelt (siehe unten,
   ".ld-pagehero + …"). Hier nochmal aufzuschlagen ergab in Summe
   über 120 px zwischen Überschrift und erstem Satz. */
.ld-article .ld-entry {
	padding-top: 0;
}

.ld-article__foot {
	margin-block: clamp(1.8rem, 3vw, 2.4rem) clamp(2.5rem, 4vw, 3.5rem);
}

.ld-article__shopbox {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.2rem;
	padding: 1.6rem 1.8rem;
	background: var(--ld-bg);
	border: 1px solid var(--ld-line);
	border-radius: var(--ld-radius-lg);
}

.ld-article__shopbox h2 {
	font-size: 1.25rem;
	margin: 0 0 0.2em;
}

.ld-article__shopbox p {
	margin: 0;
	color: var(--ld-steel);
}

.ld-article__shopbox--faq {
	margin-top: 2.5rem;
}

/* Prosa (Gutenberg-Inhalte) */
.ld-entry {
	font-size: 1.0625rem;
	line-height: 1.75;
}

.ld-entry > * {
	margin-block: 0 1.15em;
}

.ld-entry h2 {
	font-size: 1.65rem;
	margin-top: 1.7em;
}

.ld-entry h3 {
	font-size: 1.3rem;
	margin-top: 1.5em;
}

.ld-entry a {
	color: var(--ld-primary-deep);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.ld-entry a:hover {
	color: var(--ld-primary);
}

.ld-entry ul,
.ld-entry ol {
	padding-left: 1.3em;
}

.ld-entry li {
	margin-bottom: 0.4em;
}

.ld-entry li::marker {
	color: var(--ld-primary);
	font-weight: 700;
}

.ld-entry blockquote {
	margin: 1.5em 0;
	padding: 1em 1.4em;
	border-left: 4px solid var(--ld-primary);
	border-radius: 0 var(--ld-radius) var(--ld-radius) 0;
	background: var(--ld-bg);
	font-style: italic;
}

.ld-entry blockquote p:last-child {
	margin-bottom: 0;
}

.ld-entry img {
	border-radius: var(--ld-radius);
}

.ld-entry figure {
	margin-inline: 0;
}

.ld-entry figcaption {
	font-size: 0.88rem;
	color: var(--ld-steel);
	margin-top: 0.5em;
}

.ld-entry table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.98rem;
}

.ld-entry th,
.ld-entry td {
	padding: 0.65em 0.8em;
	border: 1px solid var(--ld-line);
	text-align: left;
}

.ld-entry th {
	background: var(--ld-bg);
	font-family: var(--ld-font-display);
}

.ld-entry .wp-block-button__link {
	border-radius: var(--ld-radius-pill);
	background: linear-gradient(135deg, var(--ld-primary), var(--ld-primary-deep));
	font-family: var(--ld-font-display);
	font-weight: 700;
	text-decoration: none;
}

.ld-entry__pages {
	font-weight: 600;
}

/* ---- 15 Abschluss-CTA -------------------------------------------------------------- */
.ld-cta__card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.5rem;
	padding: clamp(2rem, 4.5vw, 3.2rem);
	border-radius: calc(var(--ld-radius-lg) + 6px);
	background:
		radial-gradient(30rem 16rem at 100% 0%, rgba(255, 255, 255, 0.16), transparent 55%),
		linear-gradient(135deg, var(--ld-primary), var(--ld-primary-deep));
	color: #fff;
	box-shadow: 0 22px 48px rgba(240, 78, 10, 0.35);
}

.ld-cta__title {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	margin: 0 0 0.25em;
}

.ld-cta__text {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	max-width: 32em;
}

.ld-cta__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.2rem;
}

.ld-cta .ld-btn--primary {
	background: #fff;
	color: var(--ld-primary-deep);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

/* Telefon-Link im Aufruf-Kontext.
   Vorher war die Farbe hart auf Weiß gesetzt – das stimmte nur in der
   orangen CTA-Karte. Auf hellen Flächen (Brücke, Erfolgsmeldung) war die
   Nummer damit unsichtbar. Reines Orange wäre auf Weiß nur Kontrast 3,1 –
   zu wenig für Text. Deshalb: dunkler Text, oranges Icon als Akzent
   (Kontrast ~16). Invertiert nur auf wirklich dunklem Grund. */
.ld-tel--cta {
	color: var(--ld-ink);
	font-size: 1.1rem;
}

.ld-tel--cta .ld-icon {
	color: var(--ld-primary);
}

/* Dunkle Flächen: Nummer und Symbol invertieren */
.ld-inquiry__phonebox .ld-tel--cta,
.ld-inquiry__phonebox .ld-tel--cta .ld-icon,
.ld-pricebox .ld-tel--cta,
.ld-pricebox .ld-tel--cta .ld-icon {
	color: #fff;
}

/* Orange Karte: dunkler Text hält den Kontrast, Symbol wird weiß */
.ld-cta__card .ld-tel--cta {
	color: var(--ld-ink);
}

.ld-cta__card .ld-tel--cta .ld-icon {
	color: #fff;
}

.ld-cta .ld-tel--cta .ld-icon {
	color: #fff;
}

.ld-article__shopbox .ld-tel--cta {
	color: var(--ld-ink);
}

.ld-article__shopbox .ld-tel--cta .ld-icon {
	color: var(--ld-primary);
}

/* ---- 16 Seiten-Hero, Suche, Pagination, 404, Kontakt ------------------------------- */
.ld-pagehero {
	padding-block: clamp(2rem, 3.6vw, 2.8rem);
	background: linear-gradient(180deg, var(--ld-bg), #fff);
	border-bottom: 1px solid var(--ld-line);
}

.ld-pagehero__title {
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	margin: 0;
}

.ld-pagehero__sub {
	display: flex;
	align-items: center;
	gap: 0.5em;
	margin: 0.7em 0 0;
	color: var(--ld-steel);
	font-size: 1.05rem;
}

.ld-crumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5em;
	margin-bottom: 0.9rem;
	font-size: 0.88rem;
	color: var(--ld-steel);
}

.ld-crumbs a {
	color: inherit;
	text-decoration: none;
}

.ld-crumbs a:hover {
	color: var(--ld-primary-deep);
	text-decoration: underline;
}

.ld-crumbs [aria-current] {
	font-weight: 600;
	color: var(--ld-ink);
}

.ld-search {
	display: flex;
	gap: 0.6rem;
	max-width: 480px;
}

.ld-empty--404 .ld-search,
.ld-empty .ld-search {
	margin-inline: auto;
}

.ld-search__input {
	flex: 1;
	padding: 0.75em 1.2em;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius-pill);
	font: inherit;
	background: #fff;
}

.ld-search__input:focus {
	outline: none;
	border-color: var(--ld-primary);
	box-shadow: 0 0 0 3px var(--ld-primary-soft);
}

.ld-search__btn {
	padding: 0.75em 1.15em;
}

.ld-pagination {
	margin-top: 3rem;
}

.ld-pagination .nav-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.ld-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 2.7rem;
	height: 2.7rem;
	padding: 0 0.9em;
	border: 1px solid var(--ld-line);
	border-radius: var(--ld-radius-pill);
	background: #fff;
	color: var(--ld-ink);
	font-weight: 600;
	text-decoration: none;
}

.ld-pagination .page-numbers.current {
	background: var(--ld-ink);
	border-color: var(--ld-ink);
	color: #fff;
}

.ld-pagination .page-numbers:hover:not(.current) {
	border-color: var(--ld-primary);
	color: var(--ld-primary-deep);
}

.ld-empty {
	text-align: center;
	display: grid;
	justify-items: center;
	gap: 1.1rem;
	padding-block: clamp(1rem, 4vw, 2.5rem);
}

.ld-empty h1,
.ld-empty h2 {
	margin: 0;
}

.ld-empty p {
	margin: 0;
	color: var(--ld-steel);
	max-width: 34em;
}

.ld-contact__card {
	padding: 1.7rem 1.5rem;
	text-align: left;
}

.ld-contact__card h2 {
	font-size: 1.2rem;
	margin-bottom: 0.3em;
}

.ld-contact__card p {
	color: var(--ld-steel);
	font-size: 0.97rem;
}

.ld-tel--card {
	font-size: 1.15rem;
}

.ld-adminnote {
	margin-bottom: 1.6rem;
	padding: 1rem 1.3rem;
	border: 1.5px dashed var(--ld-primary);
	border-radius: var(--ld-radius);
	background: var(--ld-primary-soft);
	font-size: 0.95rem;
}

/* ---- 17 Kommentare ------------------------------------------------------------------- */
.ld-comments {
	margin-block: 2rem var(--ld-section-pad);
	padding-top: 2rem;
	border-top: 1px solid var(--ld-line);
}

.ld-comments__list {
	list-style: none;
	padding: 0;
}

.ld-comments .comment-body {
	padding: 1rem 1.2rem;
	margin-bottom: 1rem;
	background: var(--ld-bg);
	border-radius: var(--ld-radius);
}

.ld-comments .avatar {
	border-radius: 50%;
}

.ld-comments input[type='text'],
.ld-comments input[type='email'],
.ld-comments input[type='url'],
.ld-comments textarea {
	width: 100%;
	padding: 0.7em 1em;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius);
	font: inherit;
}

.ld-comments input[type='submit'] {
	padding: 0.75em 1.6em;
	border: 0;
	border-radius: var(--ld-radius-pill);
	background: linear-gradient(135deg, var(--ld-primary), var(--ld-primary-deep));
	color: #fff;
	font-family: var(--ld-font-display);
	font-weight: 700;
	cursor: pointer;
}

/* ---- 18 Footer ------------------------------------------------------------------------ */
.ld-footer {
	background: var(--ld-ink);
	color: rgba(255, 255, 255, 0.82);
	padding-block: clamp(3rem, 6vw, 4.5rem) 1.6rem;
}

.ld-footer__grid {
	display: grid;
	grid-template-columns: 1.7fr 1fr 1.25fr 1.25fr;
	gap: clamp(1.8rem, 4vw, 3rem);
	padding-bottom: 2.6rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ld-footer__about {
	margin: 1.1rem 0 0;
	font-size: 0.97rem;
	max-width: 30em;
}

.ld-footer__head {
	font-size: 0.82rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 1.1rem;
}

.ld-footer__menu,
.ld-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
	font-size: 0.98rem;
}

.ld-footer__menu a {
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
}

.ld-footer__menu a:hover {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.ld-footer__contact li,
.ld-footer__contact a {
	display: flex;
	align-items: flex-start;
	gap: 0.55em;
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
}

.ld-footer__contact a:hover {
	color: #fff;
}

.ld-footer__contact .ld-icon {
	color: var(--ld-primary);
	margin-top: 0.15em;
}

.ld-tel--footer {
	font-size: 1.12rem;
	color: #fff !important;
}

.ld-footer__cta-text {
	font-size: 0.95rem;
	margin: 0 0 1.1rem;
}

.ld-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.8rem;
	padding-top: 1.5rem;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.55);
}

.ld-footer__bottom p {
	margin: 0;
}

.ld-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ld-footer__legal a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}

.ld-footer__legal a:hover {
	color: #fff;
	text-decoration: underline;
}

/* ---- 19 Ecwid-Feinschliff ---------------------------------------------------------------
   Der Ecwid-Store erbt Schrift & Markenfarben, damit er wie ein Teil
   des Themes wirkt. (Feintuning zusätzlich möglich über Ecwid → Design.) */
.ecwid,
.ec-size {
	font-family: var(--ld-font-body) !important;
}

.ec-size .form-control__button,
.ec-size .form-control--button {
	border-radius: var(--ld-radius-pill) !important;
	font-family: var(--ld-font-display) !important;
	font-weight: 700 !important;
}

.ec-size .form-control__button--icon-center,
.ec-size .form-control--primary {
	background: var(--ld-primary) !important;
}

.ec-size .form-control--primary:hover {
	background: var(--ld-primary-deep) !important;
}

.ec-size .grid-product__title,
.ec-size .details-product-title {
	font-family: var(--ld-font-display) !important;
	letter-spacing: -0.01em;
}

.ec-size .grid-product__price,
.ec-size .details-product-price {
	color: var(--ld-primary-deep) !important;
	font-weight: 700;
}

.ec-size .grid-product__image {
	border-radius: var(--ld-radius) !important;
	overflow: hidden;
}

.ld-entry--shop {
	font-size: 1rem;
}

/* ---- 20 Animationen & Reduced Motion ------------------------------------------------------ */
html.ld-js .ld-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

html.ld-js .ld-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}

	html.ld-js .ld-reveal {
		opacity: 1;
		transform: none;
	}
}

/* ---- 21 Responsive -------------------------------------------------------------------------- */
@media (max-width: 1040px) {
	.ld-grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.ld-trust__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.ld-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 1080px) {
	.ld-hero__grid {
		grid-template-columns: 1fr;
	}

	.ld-hero__visual {
		order: 0;
	}

	.ld-product-card {
		width: min(100%, 440px);
	}

	.ld-grid--3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.ld-steps__list {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ld-step:not(:last-child)::before {
		display: none;
	}

	/* Mobile Navigation */
	.ld-burger {
		display: inline-flex;
	}

	.ld-header .ld-btn--header {
		display: none;
	}

	.ld-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		background: #fff;
		border-bottom: 1px solid var(--ld-line);
		box-shadow: var(--ld-shadow-md);
		padding: 1rem 1.25rem 1.4rem;
		max-height: calc(100vh - 5rem);
		overflow: auto;
	}

	.ld-nav.is-open {
		display: block;
	}

	.ld-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0.15rem;
	}

	.ld-nav__list a {
		display: block;
		padding: 0.8em 0.6em;
		font-size: 1.08rem;
		border-radius: 10px;
	}

	.ld-nav__list a::after {
		display: none;
	}

	.ld-nav__list a:hover {
		background: var(--ld-bg);
	}

	.ld-nav__list .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		border-left: 2px solid var(--ld-line);
		border-radius: 0;
		margin: 0 0 0 1rem;
		padding: 0;
	}

	.ld-nav__mobile-extra {
		display: block;
		margin-top: 1rem;
		padding-top: 1rem;
		border-top: 1px solid var(--ld-line);
	}

	.ld-tel--nav {
		font-size: 1.15rem;
	}
}

@media (max-width: 640px) {
	.ld-topbar__note {
		display: none;
	}

	.ld-grid--4,
	.ld-grid--3 {
		grid-template-columns: 1fr;
	}

	.ld-trust__list {
		grid-template-columns: 1fr;
		gap: 0.65rem;
		padding: 1rem 0;
	}

	.ld-trust__list li {
		justify-content: flex-start;
	}

	.ld-hero__actions .ld-btn {
		width: 100%;
	}

	.ld-cta__card {
		flex-direction: column;
		align-items: flex-start;
	}

	.ld-footer__grid {
		grid-template-columns: 1fr;
	}

	.ld-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}


/* =========================================================================
   Festpreis-Rechner, Shop auf der Startseite, Vergleich & Zahlen
   ========================================================================= */

#shop, #anfrage, #ratgeber, #faq, #ueber-uns { scroll-margin-top: 96px; }
[hidden] { display: none !important; }

/* ---- 1. Der Rechner im Hero ------------------------------------------- */
.ld-hero__calc {
	position: relative;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: calc(var(--ld-radius) + 6px);
	box-shadow: 0 30px 70px rgba(2, 6, 23, .35), 0 2px 0 rgba(255, 255, 255, .5) inset;
	overflow: hidden;
}
.ld-hero__calc-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 18px;
	background: var(--ld-ink);
	color: #fff;
}
.ld-hero__calc-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: .82rem;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.ld-hero__calc-badge .ld-icon { color: var(--ld-primary); }
.ld-hero__calc-live {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #94a3b8;
}
.ld-dot-live {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--ld-green);
	box-shadow: 0 0 0 0 rgba(14, 163, 95, .7);
	animation: ld-pulse 2s infinite;
}
@keyframes ld-pulse {
	70%  { box-shadow: 0 0 0 7px rgba(14, 163, 95, 0); }
	100% { box-shadow: 0 0 0 0 rgba(14, 163, 95, 0); }
}

/* ---- 2. Rechner-Grundgerüst ------------------------------------------- */
.ld-calc { padding: clamp(18px, 2.5vw, 26px); }
.ld-calc__hp {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	margin: -1px;
}
.ld-calc__step { border: 0; margin: 0; padding: 0; min-width: 0; }
.ld-calc__q {
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: 1.12rem;
	line-height: 1.3;
	padding: 0;
	margin: 0 0 4px;
	color: var(--ld-ink);
	display: block;
	width: 100%;
}
.ld-calc__q-note {
	display: block;
	font-family: var(--ld-font-body);
	font-weight: 500;
	font-size: .86rem;
	color: var(--ld-steel);
	margin-top: 3px;
}
.ld-calc__q--result { color: var(--ld-steel); font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }

.ld-calc__alert {
	background: #fdecec;
	border: 1px solid #f3b1b1;
	color: #9b1c1c;
	border-radius: var(--ld-radius-sm);
	padding: 11px 14px;
	font-size: .9rem;
	margin: 0 0 14px;
}

/* Ohne JavaScript: ein durchgehendes Formular */
html:not(.ld-js) .ld-calc__step + .ld-calc__step { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--ld-line); }
html:not(.ld-js) .ld-calc__nav,
html:not(.ld-js) .ld-pricebox,
html:not(.ld-js) .ld-calc__recap { display: none; }
html.ld-js .ld-calc__nojs { display: none; }
.ld-calc__nojs { margin-top: 22px; }

html.ld-js .ld-calc__step { display: none; }
html.ld-js .ld-calc__step.is-active { display: block; animation: ld-step-in .28s ease both; }
@keyframes ld-step-in {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: none; }
}

/* ---- 3. Treppen-Auswahl: der erste und wichtigste Klick ---------------- */
.ld-calc__stairs {
	display: grid;
	gap: 10px;
	margin-top: 16px;
}
.ld-stairpick {
	position: relative;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	padding: 12px 14px;
	background: var(--ld-bg);
	border: 2px solid transparent;
	border-radius: var(--ld-radius-sm);
	cursor: pointer;
	transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.ld-stairpick:hover { transform: translateX(2px); border-color: rgba(255, 92, 26, .35); }
.ld-stairpick input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.ld-stairpick input:focus-visible ~ * { outline: 3px solid var(--ld-primary); outline-offset: 3px; }
.ld-stairpick__art {
	display: grid;
	place-items: center;
	width: 58px; height: 58px;
	background: #fff;
	border-radius: 12px;
	box-shadow: var(--ld-shadow-sm);
}
.ld-stairpick__label { display: block; font-weight: 700; font-size: .96rem; line-height: 1.25; }
.ld-stairpick__note { display: block; font-size: .8rem; color: var(--ld-steel); margin-top: 2px; }
.ld-stairpick__from {
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: .88rem;
	color: var(--ld-steel);
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}
.ld-stairpick:has(input:checked) {
	border-color: var(--ld-primary);
	background: var(--ld-primary-soft);
}
.ld-stairpick:has(input:checked) .ld-stairpick__from { color: var(--ld-primary); }

/* Treppen-Grundrisse */
.ld-stair { width: 40px; height: 40px; }
.ld-stair__floor { fill: rgba(15, 23, 42, .06); stroke: rgba(15, 23, 42, .18); stroke-width: 1.5; }
.ld-stair__treads { stroke: rgba(15, 23, 42, .3); stroke-width: 1.6; stroke-linecap: round; }
.ld-stair__pad { fill: rgba(15, 23, 42, .12); stroke: rgba(15, 23, 42, .22); stroke-width: 1.5; }
.ld-stair__rail { stroke: var(--ld-steel); stroke-width: 3.5; stroke-linecap: round; fill: none; transition: stroke .2s ease; }
.ld-stair__car { fill: var(--ld-steel); transition: fill .2s ease; }
.ld-stair__arrow { stroke: rgba(15, 23, 42, .35); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.ld-stairpick:has(input:checked) .ld-stair__rail { stroke: var(--ld-primary); }
.ld-stairpick:has(input:checked) .ld-stair__car { fill: var(--ld-primary); }
.ld-stairpick:hover .ld-stair__car { fill: var(--ld-primary-deep); }

/* ---- 4. Die Preis-Anzeige: der Moment, auf den alles zuläuft ---------- */
.ld-pricebox {
	position: relative;
	margin: 14px 0 20px;
	padding: 22px 20px;
	border-radius: var(--ld-radius);
	background:
		radial-gradient(520px 200px at 80% -10%, rgba(255, 92, 26, .16), transparent 60%),
		var(--ld-ink);
	color: #fff;
	overflow: hidden;
}
.ld-pricebox::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 22px 22px;
	pointer-events: none;
}
.ld-pricebox__main { position: relative; z-index: 1; }
.ld-pricebox__pre {
	display: block;
	font-size: .78rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #94a3b8;
	margin-bottom: 2px;
}
.ld-pricebox__value {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 2px;
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: clamp(1.9rem, 5vw, 2.5rem);
	line-height: 1.05;
	letter-spacing: -.02em;
	font-variant-numeric: tabular-nums;
	color: #fff;
}
.ld-pricebox__dash { color: #64748b; margin: 0 .12em; }
.ld-pricebox__cur { color: var(--ld-primary); margin-left: .12em; }
.ld-pricebox__note {
	display: block;
	margin-top: 8px;
	font-size: .84rem;
	color: #cbd5e1;
}
.ld-pricebox__subsidy {
	position: relative;
	z-index: 1;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px dashed rgba(255, 255, 255, .18);
	display: grid;
	gap: 4px;
	animation: ld-step-in .3s ease both;
}
.ld-pricebox__subsidy-line {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .88rem;
	color: #cbd5e1;
}
.ld-pricebox__subsidy-line .ld-icon { color: var(--ld-green); }
.ld-pricebox__subsidy-line strong {
	color: var(--ld-green);
	font-variant-numeric: tabular-nums;
	margin-left: auto;
}
.ld-pricebox__net {
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: 1.02rem;
	color: #fff;
	font-variant-numeric: tabular-nums;
}
.ld-calc.is-covered .ld-pricebox__net { color: var(--ld-green); }
.ld-pricebox__fineprint {
	font-size: .74rem;
	line-height: 1.5;
	color: #94a3b8;
	margin-top: 4px;
}

/* ---- 5. Feinjustierung ------------------------------------------------ */
.ld-calc__tune-head {
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--ld-steel);
	margin: 0 0 12px;
}
.ld-calc__tune-row {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	padding: 8px 0;
}
.ld-calc__tune-row + .ld-calc__tune-row { border-top: 1px solid var(--ld-line); }
.ld-calc__tune-label { font-size: .86rem; font-weight: 600; color: var(--ld-steel); }
.ld-calc__chips { display: flex; flex-wrap: wrap; gap: 7px; }

.ld-opt { position: relative; cursor: pointer; }
.ld-opt input { position: absolute; opacity: 0; pointer-events: none; }
.ld-opt--chip > span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--ld-bg);
	border: 1.5px solid transparent;
	border-radius: 999px;
	padding: .42em .9em;
	font-weight: 600;
	font-size: .87rem;
	white-space: nowrap;
	transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.ld-opt--chip:hover > span { border-color: var(--ld-line); }
.ld-opt--chip:has(input:checked) > span {
	border-color: var(--ld-primary);
	background: var(--ld-primary-soft);
	color: var(--ld-primary);
}
.ld-opt--chip-green:has(input:checked) > span {
	border-color: var(--ld-green);
	background: var(--ld-green-soft);
	color: var(--ld-green);
}
.ld-opt input:focus-visible ~ span { outline: 3px solid var(--ld-primary); outline-offset: 2px; }
.ld-opt__save {
	font-size: .76rem;
	font-weight: 700;
	color: var(--ld-green);
	font-variant-numeric: tabular-nums;
}
.ld-opt--chip:has(input:checked) .ld-opt__save { color: inherit; }

/* ---- 6. Kontakt-Schritt ----------------------------------------------- */
.ld-calc__recap {
	display: block;
	background: var(--ld-green-soft);
	border: 1px solid rgba(14, 163, 95, .25);
	border-radius: var(--ld-radius-sm);
	padding: 10px 14px;
	margin: 14px 0 18px;
	font-weight: 600;
	font-size: .9rem;
	color: var(--ld-green);
	font-variant-numeric: tabular-nums;
}
.ld-calc__fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 14px;
}
.ld-calc__field { margin: 0; }
.ld-calc__field--full { grid-column: 1 / -1; }
.ld-calc__field label {
	display: block;
	font-weight: 600;
	font-size: .85rem;
	margin-bottom: 5px;
}
.ld-calc__field input,
.ld-calc__field textarea {
	width: 100%;
	font: inherit;
	font-size: .95rem;
	padding: .65em .9em;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius-sm);
	background: #fff;
	transition: border-color .15s ease;
}
.ld-calc__field input:focus,
.ld-calc__field textarea:focus { outline: none; border-color: var(--ld-primary); }
.ld-calc__field input.is-invalid,
.ld-calc__field textarea.is-invalid { border-color: #d64545; background: #fff8f8; }

.ld-calc__privacy {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-top: 14px;
	font-size: .82rem;
	line-height: 1.5;
	color: var(--ld-steel);
	cursor: pointer;
}
.ld-calc__privacy input {
	width: 17px; height: 17px;
	margin-top: 2px;
	accent-color: var(--ld-primary);
	flex: none;
}
.ld-calc__privacy input.is-invalid { outline: 2px solid #d64545; outline-offset: 2px; }

.ld-calc__nav {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}
.ld-calc__nav [data-calc-next],
.ld-calc__nav [data-calc-submit] { margin-left: auto; }
.ld-btn.is-busy { opacity: .6; pointer-events: none; }

.ld-calc__reassure {
	display: flex;
	align-items: center;
	gap: .5em;
	justify-content: center;
	margin: 14px 0 0;
	font-size: .8rem;
	color: var(--ld-steel);
	text-align: center;
}
.ld-calc__reassure .ld-icon { color: var(--ld-green); flex: none; }

/* ---- 7. Erfolg -------------------------------------------------------- */
.ld-calc__success {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 8px;
	padding: clamp(16px, 3vw, 28px) 8px;
}
.ld-calc__success-icon {
	display: grid;
	place-items: center;
	width: 64px; height: 64px;
	border-radius: 50%;
	background: var(--ld-green-soft);
	color: var(--ld-green);
	margin-bottom: 4px;
}
.ld-calc__success-icon .ld-icon { width: 32px; height: 32px; }
.ld-calc__success h3 { margin: 0; font-size: 1.28rem; }
.ld-calc__success p { color: var(--ld-steel); margin: 0; font-size: .92rem; }
.ld-calc__success-phone {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 8px !important;
}

/* ---- 8. Shop-Bereich & Brücke ----------------------------------------- */
.ld-shopfront {
	background: #fff;
	border: 1px solid var(--ld-line);
	border-radius: var(--ld-radius);
	box-shadow: var(--ld-shadow-sm);
	padding: clamp(10px, 2vw, 22px);
	min-height: 420px;
}
.ld-bridge {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(20px, 3vw, 40px);
	margin-top: clamp(24px, 3.5vw, 40px);
	background: radial-gradient(600px 240px at 100% 0%, rgba(255, 92, 26, .1), transparent 55%), #fff;
	border: 1px solid var(--ld-line);
	border-radius: var(--ld-radius);
	box-shadow: var(--ld-shadow-sm);
	padding: clamp(22px, 3.5vw, 34px) clamp(22px, 4vw, 40px);
}
.ld-bridge__title { font-size: 1.3rem; margin-bottom: .25em; }
.ld-bridge__text { color: var(--ld-steel); margin: 0; max-width: 44em; }
.ld-bridge__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

/* ---- 9. Vergleich ----------------------------------------------------- */
.ld-compare__table {
	border: 1px solid var(--ld-line);
	border-radius: var(--ld-radius);
	overflow: hidden;
	background: #fff;
	box-shadow: var(--ld-shadow-sm);
}
.ld-compare__head,
.ld-compare__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.ld-compare__head { background: var(--ld-bg); }
.ld-compare__col {
	padding: 14px 20px;
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: .92rem;
	display: flex;
	align-items: center;
	gap: 8px;
}
.ld-compare__col--them { color: var(--ld-steel); }
.ld-compare__col--us {
	background: var(--ld-ink);
	color: #fff;
}
.ld-compare__col--us .ld-icon { color: var(--ld-primary); }
.ld-compare__row + .ld-compare__row .ld-compare__cell { border-top: 1px solid var(--ld-line); }
.ld-compare__cell {
	padding: 14px 20px;
	font-size: .92rem;
	line-height: 1.45;
	display: flex;
	align-items: center;
}
.ld-compare__cell--them { color: var(--ld-steel); text-decoration-color: rgba(85, 101, 122, .3); }
.ld-compare__cell--us {
	font-weight: 600;
	color: var(--ld-ink);
	background: var(--ld-primary-soft);
	border-left: 2px solid var(--ld-primary);
}

/* ---- 10. Zahlen-Leiste ------------------------------------------------ */
.ld-stats {
	background: var(--ld-ink);
	color: #fff;
	padding: clamp(2.4rem, 5vw, 3.6rem) 0;
	position: relative;
	overflow: hidden;
}
.ld-stats::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
	background-size: 26px 26px;
}
.ld-stats__list {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(18px, 3vw, 34px);
}
.ld-stat { text-align: center; }
.ld-stat__value {
	display: block;
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: clamp(1.7rem, 3.6vw, 2.4rem);
	line-height: 1.1;
	letter-spacing: -.02em;
	color: var(--ld-primary);
	font-variant-numeric: tabular-nums;
}
.ld-stat__label {
	display: block;
	margin-top: 6px;
	font-size: .86rem;
	color: #cbd5e1;
	line-height: 1.4;
}

/* ---- 11. Artikel-Boxen ------------------------------------------------ */
.ld-article__shopbox-actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
}

/* ---- 12. Responsive --------------------------------------------------- */
@media (min-width: 1100px) {
	/* Auf großen Schirmen bekommen die Grundrisse mehr Bühne */
	.ld-inquiry .ld-calc__stairs { grid-template-columns: repeat(3, 1fr); }
	.ld-inquiry .ld-stairpick {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: 8px;
		padding: 20px 14px;
	}
	.ld-inquiry .ld-stairpick__art { width: 76px; height: 76px; }
	.ld-inquiry .ld-stair { width: 54px; height: 54px; }
}

@media (max-width: 900px) {
	.ld-bridge { grid-template-columns: 1fr; }
	.ld-bridge__actions { align-items: flex-start; }
	.ld-stats__list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
	.ld-calc__fields { grid-template-columns: 1fr; }
	.ld-calc__tune-row { grid-template-columns: 1fr; gap: 6px; }
	.ld-calc__nav { flex-wrap: wrap; }
	.ld-calc__nav .ld-btn { flex: 1; }
	.ld-compare__head { display: none; }
	.ld-compare__row { grid-template-columns: 1fr; }
	.ld-compare__cell--them { text-decoration: line-through; opacity: .7; font-size: .86rem; padding-bottom: 4px; }
	.ld-compare__cell--us { padding-top: 4px; }
	.ld-compare__row + .ld-compare__row .ld-compare__cell--us { border-top: 0; }
	.ld-stairpick { grid-template-columns: 48px minmax(0, 1fr); }
	.ld-stairpick__art { width: 48px; height: 48px; }
	.ld-stairpick__from { grid-column: 2; font-size: .84rem; }
}

/* ---- 13. Nachträge: Button-Variante & Anfrage-Seite -------------------- */
/* Sekundärer Textlink neben dem Hauptbutton.
   War auf helles Grau (#cbd5e1) gesetzt – gedacht für einen dunklen Hero,
   den es nie gab. Auf hellem Grund praktisch unsichtbar. */
.ld-btn--text {
	background: none;
	border: 0;
	color: var(--ld-steel);
	padding-inline: .4em;
	box-shadow: none;
}
.ld-btn--text:hover { color: var(--ld-primary); background: rgba(15, 23, 42, .04); }
.ld-btn--text .ld-icon { transform: rotate(-90deg); }

/* Eigenständige Anfrage-Seite */
.ld-inquiry__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(240px, 1fr);
	gap: clamp(20px, 3vw, 36px);
	align-items: start;
	max-width: 1080px;
	margin-inline: auto;
}
.ld-inquiry__grid > .ld-calc {
	background: #fff;
	border: 1px solid var(--ld-line);
	border-radius: calc(var(--ld-radius) + 4px);
	box-shadow: var(--ld-shadow-md);
	padding: clamp(22px, 3.5vw, 32px);
}
.ld-inquiry__points {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: grid;
	gap: 12px;
}
.ld-inquiry__points li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	background: #fff;
	border: 1px solid var(--ld-line);
	border-radius: var(--ld-radius-sm);
	padding: 13px 15px;
	font-size: .92rem;
	font-weight: 500;
}
.ld-inquiry__points .ld-icon {
	width: 21px; height: 21px;
	color: var(--ld-primary);
	flex: none;
	margin-top: 1px;
}
.ld-inquiry__phonebox {
	background: var(--ld-ink);
	color: #cbd5e1;
	border-radius: var(--ld-radius);
	padding: 20px 22px;
	display: grid;
	gap: 7px;
	justify-items: start;
}
.ld-inquiry__phonebox-title {
	font-family: var(--ld-font-display);
	font-weight: 700;
	color: #fff;
	margin: 0;
}
.ld-inquiry__phonebox .ld-tel { color: #fff; }
.ld-inquiry__phonebox .ld-tel:hover { color: #ffb694; }
.ld-inquiry__phonebox-hours { font-size: .85rem; margin: 0; }

.ld-entry--intro {
	margin-bottom: clamp(24px, 3vw, 36px);
	text-align: center;
}

@media (max-width: 900px) {
	.ld-inquiry__grid { grid-template-columns: 1fr; }
}

/* ---- 14. Rechner: offene Spanne & nicht kalkulierbare Fälle ------------ */
.ld-pricebox__open {
	display: block;
	margin-top: 8px;
	font-size: .78rem;
	line-height: 1.5;
	color: #94a3b8;
	position: relative;
	z-index: 1;
}

/* Kurvig über mehrere Etagen: der Rechner sagt ehrlich, dass er passt. */
.ld-pricebox__individual {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 6px;
	padding: 6px 4px;
	animation: ld-step-in .3s ease both;
}
.ld-pricebox__individual-icon {
	display: grid;
	place-items: center;
	width: 52px; height: 52px;
	border-radius: 14px;
	background: rgba(255, 92, 26, .14);
	color: var(--ld-primary);
	margin-bottom: 4px;
}
.ld-pricebox__individual-icon .ld-icon { width: 26px; height: 26px; }
.ld-pricebox__individual strong {
	font-family: var(--ld-font-display);
	font-size: 1.05rem;
	line-height: 1.35;
	color: #fff;
}
.ld-pricebox__individual span:last-child {
	font-size: .85rem;
	line-height: 1.5;
	color: #cbd5e1;
	max-width: 34em;
}
/* Ohne Zahl braucht die Box kein Preis-Layout */
.ld-calc.is-individual .ld-pricebox { padding: 20px; }

/* Kategorie-Raster kann auch ein- oder zweispaltig auftreten */
.ld-grid--1 { grid-template-columns: minmax(0, 420px); justify-content: center; }
.ld-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 720px) {
	.ld-grid--2 { grid-template-columns: 1fr; }
}

/* ---- 15. Hervorhebung beim Sprung zum Rechner ------------------------- */
.ld-hero__calc.is-flash {
	animation: ld-flash 1.5s ease;
}
@keyframes ld-flash {
	0%   { box-shadow: 0 30px 70px rgba(2, 6, 23, .35), 0 0 0 0 rgba(255, 92, 26, .55); }
	35%  { box-shadow: 0 30px 70px rgba(2, 6, 23, .35), 0 0 0 10px rgba(255, 92, 26, 0); }
	55%  { box-shadow: 0 30px 70px rgba(2, 6, 23, .35), 0 0 0 0 rgba(255, 92, 26, .45); }
	100% { box-shadow: 0 30px 70px rgba(2, 6, 23, .35), 0 0 0 12px rgba(255, 92, 26, 0); }
}
@media (prefers-reduced-motion: reduce) {
	.ld-hero__calc.is-flash { animation: none; outline: 3px solid var(--ld-primary); outline-offset: 4px; }
}

/* ---- 16. Hero-Punkte: jetzt Aussagen mit eigenem Symbol ---------------- */
.ld-hero__bullets {
	flex-direction: column;
	gap: .6rem;
	align-items: flex-start;
}
.ld-hero__bullets li {
	align-items: flex-start;
	gap: .6rem;
	line-height: 1.4;
	font-size: .95rem;
}
.ld-icon--bullet {
	width: 20px;
	height: 20px;
	flex: none;
	margin-top: 1px;
	color: var(--ld-primary);
}

/* =========================================================================
   Ecwid im Theme-Look
   -------------------------------------------------------------------------
   Farben, Schrift und abschaltbare Bausteine laufen über die offizielle
   Ecwid-Konfiguration (siehe inc/ecwid.php) – das ist stabiler als CSS.
   Hier steht nur, was sich darüber nicht regeln lässt.
   ========================================================================= */

/* ---- Kategorie-Navigation (das "Menü" über dem Shop) ---- */
.ec-size .ec-menu,
.ec-size .ec-menu__inner {
	background: transparent !important;
	border: 0 !important;
}

.ec-size .ec-menu__toggle,
.ec-size .ec-menu-item__toggle {
	font-family: var(--ld-font-display) !important;
	font-weight: 700 !important;
	border-radius: var(--ld-radius-sm) !important;
	border: 1.5px solid var(--ld-line) !important;
	background: #fff !important;
	color: var(--ld-ink) !important;
	box-shadow: var(--ld-shadow-sm);
}

.ec-size .ec-menu-item__link,
.ec-size .ec-menu-item a {
	font-weight: 600 !important;
	color: var(--ld-ink) !important;
	border-radius: var(--ld-radius-sm);
}

.ec-size .ec-menu-item--active > .ec-menu-item__link,
.ec-size .ec-menu-item__link:hover {
	color: var(--ld-primary) !important;
}

/* Das aufklappende Menü auf dem Handy: Ecwid legt es als volle Fläche über
   die Seite. Ohne Rahmen und Abstand wirkt es wie eine nackte Linkliste. */
@media (max-width: 900px) {
	.ec-size .ec-menu__list,
	.ec-size .ec-menu-panel {
		border-radius: var(--ld-radius) !important;
		box-shadow: var(--ld-shadow-md) !important;
		padding: 8px !important;
		background: #fff !important;
	}

	.ec-size .ec-menu-item {
		border-bottom: 1px solid var(--ld-line) !important;
	}

	.ec-size .ec-menu-item:last-child {
		border-bottom: 0 !important;
	}

	.ec-size .ec-menu-item__link,
	.ec-size .ec-menu-item a {
		padding: 14px 12px !important;
		font-size: 1rem !important;
	}
}

/* ---- Suchfeld ---- */
.ec-size .ec-store__search-panel input,
.ec-size .form-control--search input,
.ec-size .form-control__text {
	border-radius: var(--ld-radius-sm) !important;
	font-family: var(--ld-font-body) !important;
}

/* ---- Schwebender Warenkorb ----
   Ecwid blendet ihn ein, sobald etwas im Korb liegt. In einem Shop, über den
   nicht gekauft wird, ist er Ablenkung. Über den Customizer wieder
   einschaltbar (Schalter "Warenkorb-Leiste im Shop anzeigen"). */
body:not(.ld-shop-cart) .ec-minicart,
body:not(.ld-shop-cart) .ec-cart-widget {
	display: none !important;
}

/* ---- Produktkacheln ---- */
.ec-size .grid-product__title,
.ec-size .details-product-title {
	font-family: var(--ld-font-display) !important;
	letter-spacing: -0.01em;
}

.ec-size .grid-product__price,
.ec-size .details-product-price {
	font-family: var(--ld-font-display) !important;
	font-weight: 700 !important;
	font-variant-numeric: tabular-nums;
}

.ec-size .grid-product__image {
	border-radius: var(--ld-radius) !important;
	overflow: hidden;
}

/* ---- Buttons ---- */
.ec-size .form-control__button,
.ec-size .form-control--button {
	border-radius: var(--ld-radius-pill) !important;
	font-family: var(--ld-font-display) !important;
	font-weight: 700 !important;
}

/* Nur für Screenreader */
.ld-sr-only {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* FAQ-Seite: etwas breiter als Fließtext, damit Filter und Kacheln atmen */
.ld-wrap--faq {
	max-width: 880px;
	margin-inline: auto;
	padding-inline: var(--ld-gap);
}

/* =========================================================================
   FAQ: Kartenraster + Popup
   -------------------------------------------------------------------------
   Zwei Spalten statt Liste. Der komplette Bestand steckt im Popup – im
   HTML, nicht nachgeladen. Ohne JavaScript klappen die Karten inline auf.
   ========================================================================= */

/* ---- Suchfeld über dem Raster ---- */
.ld-faqg__search {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 22px;
}
.ld-faqg__search input {
	width: 100%;
	font: inherit;
	font-size: 1.02rem;
	padding: 1em 3.2em 1em 1.6em;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius-pill);
	background: #fff;
	box-shadow: var(--ld-shadow-sm);
	transition: border-color .15s ease, box-shadow .15s ease;
}
.ld-faqg__search input:focus {
	outline: none;
	border-color: var(--ld-primary);
	box-shadow: 0 0 0 4px var(--ld-primary-soft);
}
.ld-faqg__search input::-webkit-search-cancel-button { display: none; }
.ld-faqg__search-icon {
	position: absolute;
	right: 22px;
	width: 20px; height: 20px;
	color: var(--ld-steel);
	pointer-events: none;
}

/* ---- Das Raster ---- */
.ld-faqg__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.ld-faqg__more {
	display: flex;
	justify-content: center;
	margin: 26px 0 0;
}

/* ---- Karte ---- */
.ld-faqc {
	background: #fff;
	border: 1px solid var(--ld-line);
	border-radius: var(--ld-radius);
	box-shadow: var(--ld-shadow-sm);
	transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease;
	scroll-margin-top: 100px;
}
.ld-faqc:hover {
	border-color: rgba(255, 92, 26, .45);
	box-shadow: var(--ld-shadow-md);
	transform: translateY(-1px);
}
.ld-faqc__q {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 22px;
	cursor: pointer;
	list-style: none;
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: 1.02rem;
	line-height: 1.35;
	color: var(--ld-ink);
}
.ld-faqc__q::-webkit-details-marker { display: none; }
.ld-faqc__q-text { flex: 1; }

.ld-faqc__tag {
	font-family: var(--ld-font-body);
	font-size: .74rem;
	font-weight: 600;
	color: var(--ld-steel);
	background: var(--ld-bg);
	padding: .3em .8em;
	border-radius: 999px;
	white-space: nowrap;
	flex: none;
}

/* Plus, das sich beim Öffnen zum Minus dreht */
.ld-faqc__plus {
	position: relative;
	width: 16px; height: 16px;
	flex: none;
}
.ld-faqc__plus::before,
.ld-faqc__plus::after {
	content: "";
	position: absolute;
	background: var(--ld-primary);
	border-radius: 2px;
	transition: transform .22s ease, opacity .22s ease;
}
.ld-faqc__plus::before {
	top: 7px; left: 0;
	width: 16px; height: 2.4px;
}
.ld-faqc__plus::after {
	top: 0; left: 7px;
	width: 2.4px; height: 16px;
}
.ld-faqc[open] .ld-faqc__plus::after { transform: rotate(90deg); opacity: 0; }
.ld-faqc[open] .ld-faqc__plus::before { transform: rotate(180deg); }

.ld-faqc__a {
	padding: 0 22px 20px;
	color: var(--ld-steel);
	line-height: 1.7;
	animation: ld-faq-open .2s ease both;
}
@keyframes ld-faq-open {
	from { opacity: 0; transform: translateY(-4px); }
	to   { opacity: 1; transform: none; }
}
.ld-faqc__a p { margin: 0 0 .85em; }
.ld-faqc__a p:last-child { margin-bottom: 0; }

/* Im Raster öffnen die Karten das Popup – sie klappen dort nicht auf */
.ld-faqg.is-live .ld-faqg__grid .ld-faqc__a { display: none; }

/* ---- Popup ---- */
.ld-faqm {
	width: min(1000px, calc(100vw - 40px));
	max-height: min(88vh, 900px);
	padding: 0;
	border: 0;
	border-radius: calc(var(--ld-radius-lg) + 4px);
	box-shadow: 0 40px 100px rgba(2, 6, 23, .45);
	overflow: hidden;
	background: var(--ld-bg);
}
.ld-faqm::backdrop {
	background: rgba(15, 23, 42, .6);
	backdrop-filter: blur(4px);
}
.ld-faqm[open] { animation: ld-faqm-in .24s ease both; }
@keyframes ld-faqm-in {
	from { opacity: 0; transform: translateY(16px) scale(.985); }
	to   { opacity: 1; transform: none; }
}
/* Ohne JavaScript ist das Popup einfach ein weiterer Abschnitt */
.ld-faqg:not(.is-live) .ld-faqm {
	display: block;
	position: static;
	width: 100%;
	max-width: 100%;
	max-height: none;
	margin-top: 30px;
	box-shadow: none;
	background: transparent;
}
.ld-faqg:not(.is-live) .ld-faqm__close,
.ld-faqg:not(.is-live) .ld-faqm__toggles { display: none; }

.ld-faqm__inner {
	display: flex;
	flex-direction: column;
	max-height: min(88vh, 900px);
	background: var(--ld-bg);
}
.ld-faqg:not(.is-live) .ld-faqm__inner { max-height: none; }

.ld-faqm__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 24px 18px;
	background: #fff;
	border-bottom: 1px solid var(--ld-line);
	flex: none;
}
.ld-faqm__title {
	font-size: clamp(1.2rem, 2.4vw, 1.5rem);
	margin: 0;
	line-height: 1.25;
}
.ld-faqm__count {
	font-family: var(--ld-font-body);
	font-weight: 500;
	font-size: .92rem;
	color: var(--ld-steel);
	margin-left: .5em;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}
.ld-faqm__close {
	display: grid;
	place-items: center;
	width: 40px; height: 40px;
	border: 1px solid var(--ld-line);
	border-radius: 50%;
	background: #fff;
	color: var(--ld-steel);
	cursor: pointer;
	flex: none;
	transition: background .15s ease, color .15s ease;
}
.ld-faqm__close:hover { background: var(--ld-ink); color: #fff; border-color: var(--ld-ink); }

.ld-faqm__tools {
	padding: 18px 24px;
	background: #fff;
	border-bottom: 1px solid var(--ld-line);
	flex: none;
	display: grid;
	gap: 14px;
}

.ld-faqm__search {
	position: relative;
	display: flex;
	align-items: center;
}
.ld-faqm__search-icon {
	position: absolute;
	left: 16px;
	width: 19px; height: 19px;
	color: var(--ld-steel);
	pointer-events: none;
}
.ld-faqm__search input {
	width: 100%;
	font: inherit;
	padding: .8em 2.8em .8em 3em;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius-pill);
	background: #fff;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.ld-faqm__search input:focus {
	outline: none;
	border-color: var(--ld-primary);
	box-shadow: 0 0 0 4px var(--ld-primary-soft);
}
.ld-faqm__search input::-webkit-search-cancel-button { display: none; }
.ld-faqm__clear {
	position: absolute;
	right: 12px;
	display: grid;
	place-items: center;
	width: 28px; height: 28px;
	border: 0;
	border-radius: 50%;
	background: var(--ld-bg);
	color: var(--ld-steel);
	cursor: pointer;
}
.ld-faqm__clear:hover { background: var(--ld-line); color: var(--ld-ink); }

/* Chips: waagerecht scrollbar, wenn es eng wird */
.ld-faqm__chips {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 2px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.ld-faqm__chips::-webkit-scrollbar { display: none; }
.ld-faqm__chip {
	font: inherit;
	font-weight: 600;
	font-size: .88rem;
	white-space: nowrap;
	padding: .5em 1.1em;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius-pill);
	background: #fff;
	color: var(--ld-ink);
	cursor: pointer;
	flex: none;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.ld-faqm__chip:hover { border-color: var(--ld-steel); }
.ld-faqm__chip.is-active {
	background: var(--ld-ink);
	color: #fff;
	border-color: var(--ld-ink);
}

.ld-faqm__toggles {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: .9rem;
	color: var(--ld-line);
}
.ld-faqm__toggle {
	font: inherit;
	font-weight: 600;
	border: 0;
	background: none;
	padding: 0;
	cursor: pointer;
	color: var(--ld-primary-text);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.ld-faqm__toggle:hover { color: var(--ld-ink); }

.ld-faqm__body {
	padding: 20px 24px 24px;
	overflow-y: auto;
	flex: 1;
	-webkit-overflow-scrolling: touch;
}
.ld-faqg:not(.is-live) .ld-faqm__body { overflow: visible; }
.ld-faqm__list {
	display: grid;
	gap: 10px;
}
.ld-faqm__list .ld-faqc__q { padding: 17px 20px; font-size: .98rem; }
.ld-faqm__list .ld-faqc__a { padding: 0 20px 18px; }

.ld-faqm__empty {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 8px;
	padding: 50px 20px;
	margin: 0;
}
.ld-faqm__empty strong { font-family: var(--ld-font-display); font-size: 1.1rem; }
.ld-faqm__empty span { color: var(--ld-steel); font-size: .93rem; }

.ld-faqm__foot {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	padding: 16px 24px;
	background: #fff;
	border-top: 1px solid var(--ld-line);
	font-size: .93rem;
	color: var(--ld-steel);
	flex: none;
}

@media (max-width: 860px) {
	.ld-faqg__grid { grid-template-columns: 1fr; }
	.ld-faqm {
		width: 100vw;
		max-width: 100vw;
		max-height: 94vh;
		margin: auto 0 0;
		border-radius: var(--ld-radius-lg) var(--ld-radius-lg) 0 0;
	}
	.ld-faqm__inner { max-height: 94vh; }
	.ld-faqm[open] { animation: ld-faqm-sheet .26s ease both; }
	@keyframes ld-faqm-sheet {
		from { transform: translateY(100%); }
		to   { transform: none; }
	}
	.ld-faqm__head { padding: 18px 18px 14px; }
	.ld-faqm__tools { padding: 14px 18px; }
	.ld-faqm__body { padding: 16px 18px 20px; }
	.ld-faqm__count { display: block; margin: 4px 0 0; }
	.ld-faqm__foot { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
	.ld-faqm[open], .ld-faqc__a { animation: none; }
	.ld-faqc:hover { transform: none; }
}

/* Nach dem Seitenkopf: Der Abschnitt bringt seinen eigenen Innenabstand mit.
   Zusammen ergaben beide eine Lücke, in der man den Bezug verliert. */
.ld-pagehero + .ld-section,
.ld-pagehero + .ld-article,
.ld-pagehero + .ld-wrap {
	padding-top: clamp(1.6rem, 2.6vw, 2.2rem);
}

/* =========================================================================
   Fuß unter Ratgeber-Beiträgen
   ========================================================================= */
.ld-artfoot {
	margin-top: clamp(2rem, 4vw, 3rem);
}

/* ---- Weiterempfehlen ---- */
.ld-artfoot__share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	padding: 18px 0;
	border-top: 1px solid var(--ld-line);
	border-bottom: 1px solid var(--ld-line);
}
.ld-artfoot__share-label {
	font-size: .9rem;
	color: var(--ld-steel);
	margin-right: 4px;
}
.ld-share {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font: inherit;
	font-size: .88rem;
	font-weight: 700;
	font-family: var(--ld-font-display);
	padding: .5em 1.1em;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius-pill);
	background: #fff;
	color: var(--ld-ink);
	text-decoration: none;
	cursor: pointer;
	transition: border-color .15s ease, background .15s ease, transform .12s ease;
}
.ld-share:hover {
	border-color: var(--ld-steel);
	transform: translateY(-1px);
}
.ld-share .ld-icon { color: var(--ld-steel); }
/* WhatsApp bekommt seine Farbe – dort wird tatsächlich geteilt */
.ld-share--wa { border-color: rgba(37, 211, 102, .4); background: rgba(37, 211, 102, .07); }
.ld-share--wa .ld-icon { color: #1da851; }
.ld-share--wa:hover { border-color: #25d366; background: rgba(37, 211, 102, .14); }
.ld-share--copy.is-done {
	border-color: var(--ld-green);
	background: var(--ld-green-soft);
	color: var(--ld-green);
}
.ld-share--copy.is-done .ld-icon { color: var(--ld-green); }

/* ---- Aufruf ---- */
.ld-artfoot__cta {
	margin-top: clamp(1.6rem, 3vw, 2.4rem);
	padding: clamp(1.8rem, 3.5vw, 2.6rem);
	border-radius: var(--ld-radius-lg);
	background:
		radial-gradient(30rem 16rem at 100% 0%, rgba(255, 92, 26, .18), transparent 60%),
		var(--ld-ink);
	color: #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.ld-artfoot__cta::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
	background-size: 24px 24px;
	pointer-events: none;
}
.ld-artfoot__cta-title {
	position: relative;
	z-index: 1;
	font-size: clamp(1.3rem, 2.6vw, 1.7rem);
	margin: 0 0 .4em;
	color: #fff;
}
.ld-artfoot__cta-text {
	position: relative;
	z-index: 1;
	color: #cbd5e1;
	margin: 0 auto 1.4em;
	max-width: 34em;
}
.ld-artfoot__cta-actions {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
}
.ld-artfoot__cta .ld-tel--cta,
.ld-artfoot__cta .ld-tel--cta .ld-icon { color: #fff; }

/* ---- Zurück ---- */
.ld-artfoot__back {
	margin: clamp(1.4rem, 2.6vw, 2rem) 0 0;
}
.ld-icon--back { transform: rotate(180deg); }

@media (max-width: 560px) {
	.ld-artfoot__share { gap: 8px; }
	.ld-artfoot__share-label { width: 100%; margin-bottom: 2px; }
	.ld-share { flex: 1; justify-content: center; }
}

/* -------------------------------------------------------------------------
 * Karussell (Ratgeber-Teaser)
 * Natives Scrollen mit Snap – wischbar auf Touch, Pfeile am Desktop.
 * Die Pfeile erscheinen nur, wenn der Inhalt wirklich übersteht (JS setzt
 * .has-overflow); mit wenigen Beiträgen bleibt es eine ruhige Reihe.
 * ---------------------------------------------------------------------- */
.ld-carousel { position: relative; }

.ld-carousel__track {
	display: flex;
	gap: var(--ld-gap);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 6px 6px 16px;
	margin: -6px -6px 0;
	scrollbar-width: thin;
	scrollbar-color: var(--ld-line) transparent;
}
.ld-carousel__track::-webkit-scrollbar { height: 6px; }
.ld-carousel__track::-webkit-scrollbar-track { background: transparent; }
.ld-carousel__track::-webkit-scrollbar-thumb { background: var(--ld-line); border-radius: 999px; }
.ld-carousel__track:focus-visible { outline: 2px solid var(--ld-primary); outline-offset: 4px; }

.ld-carousel__track > * {
	flex: 0 0 clamp(272px, calc((100% - 2 * var(--ld-gap)) / 3), 460px);
	scroll-snap-align: start;
}
@media (max-width: 900px) {
	.ld-carousel__track > * { flex-basis: min(84%, 340px); }
}

.ld-carousel__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--ld-line);
	background: var(--ld-white);
	color: var(--ld-ink);
	box-shadow: var(--ld-shadow-sm);
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: box-shadow .15s ease, color .15s ease, opacity .15s ease;
}
.ld-carousel.has-overflow .ld-carousel__btn { display: inline-flex; }
.ld-carousel__btn:hover { color: var(--ld-primary-text); box-shadow: var(--ld-shadow-md); }
.ld-carousel__btn[disabled] { opacity: .35; cursor: default; box-shadow: var(--ld-shadow-sm); color: var(--ld-ink); }
.ld-carousel__btn--prev { left: -12px; }
.ld-carousel__btn--next { right: -12px; }
.ld-carousel__btn svg { width: 20px; height: 20px; }
@media (max-width: 700px) {
	.ld-carousel__btn { display: none !important; }
}

/* Abschluss-Karte im Karussell: der Weg zur kompletten Übersicht */
.ld-morecard {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 220px;
	padding: 24px;
	text-align: center;
	text-decoration: none;
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--ld-ink);
	background: transparent;
	border: 2px dashed var(--ld-line);
	border-radius: var(--ld-radius);
	box-shadow: none;
	transition: border-color .15s ease, color .15s ease, transform .15s ease;
}
.ld-morecard:hover {
	border-color: var(--ld-primary);
	color: var(--ld-primary-text);
	transform: translateY(-2px);
}
.ld-morecard__icon { width: 34px; height: 34px; color: var(--ld-primary); }
.ld-morecard__sub {
	font-family: var(--ld-font-body);
	font-weight: 500;
	font-size: .9rem;
	color: var(--ld-steel);
}

/* Versprechen-Chips im Band: die drei Zusagen als greifbare Punkte */
.ld-band__checks {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 12px;
	list-style: none;
	margin: 0.2rem 0 0.3rem;
	padding: 0;
}
.ld-band__checks li {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.55em 1.05em;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--ld-radius-pill, 999px);
	background: rgba(255, 255, 255, 0.07);
	font-weight: 600;
	font-size: 0.95rem;
	color: #fff;
}
.ld-band__checks .ld-icon {
	color: var(--ld-primary);
	flex: none;
}

/* -------------------------------------------------------------------------
 * Seiten-Popup (data-ld-pagepop)
 * Zeigt Seiteninhalte (z. B. die Datenschutzerklärung) als Overlay, damit
 * ein halb ausgefülltes Formular nicht verloren geht.
 * ---------------------------------------------------------------------- */
.ld-pagepop {
	position: fixed;
	inset: 0;
	z-index: 100001;
	background: rgba(15, 23, 42, 0.55);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
}
.ld-pagepop[hidden] { display: none !important; }

.ld-pagepop__card {
	background: var(--ld-white, #fff);
	border-radius: var(--ld-radius-lg, 24px);
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.35);
	max-width: 760px;
	width: 100%;
	max-height: 88vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.ld-pagepop__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 22px;
	border-bottom: 1px solid var(--ld-line);
	flex: none;
}

.ld-pagepop__title {
	font-family: var(--ld-font-display);
	font-size: 1.2rem;
	line-height: 1.3;
	margin: 0;
}

.ld-pagepop__close {
	flex: none;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--ld-line);
	background: var(--ld-white, #fff);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	color: var(--ld-ink);
}

.ld-pagepop__body {
	padding: 20px 22px 28px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	font-size: 0.95rem;
}

/* -------------------------------------------------------------------------
 * Ratgeber-Übersicht: Suchleiste, Sortierung, Leerzustand
 * ---------------------------------------------------------------------- */
.ld-blogbar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-bottom: 10px;
}

.ld-blogbar__search {
	flex: 1 1 320px;
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--ld-white, #fff);
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius-pill, 999px);
	padding: 0 18px;
	color: var(--ld-steel);
}
.ld-blogbar__search:focus-within {
	border-color: var(--ld-primary);
	box-shadow: 0 0 0 3px rgba(255, 92, 26, 0.14);
}
.ld-blogbar__search input {
	flex: 1;
	border: 0;
	background: none;
	font: inherit;
	font-size: 15px;
	padding: 13px 0;
	color: var(--ld-ink);
	outline: none;
	min-width: 0;
}

.ld-blogbar__sort select {
	font: inherit;
	font-size: 15px;
	padding: 12px 16px;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius-pill, 999px);
	background: var(--ld-white, #fff);
	color: var(--ld-ink);
	cursor: pointer;
}

.ld-blogbar__count {
	margin: 0 0 18px;
	font-size: 0.9rem;
	color: var(--ld-steel);
}

.ld-bloglist__item.is-hidden { display: none; }

.ld-blogbar__empty {
	text-align: center;
	padding: clamp(2rem, 5vw, 3.5rem) 1rem;
	border: 2px dashed var(--ld-line);
	border-radius: var(--ld-radius-lg, 24px);
	color: var(--ld-steel);
}
.ld-blogbar__empty p { margin: 0 0 14px; }

/* -------------------------------------------------------------------------
 * Lesemodus (Ratgeber-Reader)
 * Natives <dialog> wie beim FAQ. Großer Lesebereich, Schriftgröße
 * verstellbar, Vorlesen über die Sprachausgabe des Browsers, Wechsel
 * zwischen Artikeln per Buttons, Pfeiltasten oder Wischen.
 * ---------------------------------------------------------------------- */
.ld-reader {
	border: 0;
	padding: 0;
	width: min(860px, calc(100vw - 24px));
	max-height: calc(100dvh - 24px);
	border-radius: var(--ld-radius-lg, 24px);
	box-shadow: 0 30px 90px rgba(15, 23, 42, 0.4);
	background: var(--ld-white, #fff);
	color: var(--ld-ink);
	overflow: hidden;
	display: none;
	flex-direction: column;
}
.ld-reader[open] { display: flex; }
.ld-reader::backdrop {
	background: rgba(15, 23, 42, 0.6);
	backdrop-filter: blur(3px);
}
@media (max-width: 700px) {
	.ld-reader {
		width: 100vw;
		height: 100dvh;
		max-height: 100dvh;
		border-radius: 0;
	}
}

.ld-reader__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--ld-line);
	flex: none;
}
.ld-reader__kicker {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--ld-primary-text, #c33d07);
}
.ld-reader__pos { font-size: 0.85rem; color: var(--ld-steel); white-space: nowrap; }
.ld-reader__close {
	flex: none;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--ld-line);
	background: var(--ld-white, #fff);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	color: var(--ld-ink);
}

.ld-reader__tools {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-bottom: 1px solid var(--ld-line);
	flex: none;
	flex-wrap: wrap;
}
.ld-reader__tbtn {
	font: inherit;
	font-weight: 700;
	font-size: 14px;
	padding: 8px 14px;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius-pill, 999px);
	background: var(--ld-white, #fff);
	color: var(--ld-ink);
	cursor: pointer;
}
.ld-reader__tbtn[disabled] { opacity: 0.4; cursor: default; }
.ld-reader__tbtn.is-active {
	border-color: var(--ld-primary);
	color: var(--ld-primary-text, #c33d07);
	background: var(--ld-primary-soft, rgba(255, 92, 26, 0.08));
}
.ld-reader__tools-note {
	margin-left: auto;
	font-size: 0.78rem;
	color: var(--ld-steel);
}

.ld-reader__progress {
	height: 3px;
	background: var(--ld-line);
	flex: none;
}
.ld-reader__progress span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--ld-primary, #ff5c1a), var(--ld-primary-deep, #e34a0c));
	transition: width 0.1s linear;
}

.ld-reader__body {
	padding: 22px clamp(18px, 4vw, 40px) 32px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	flex: 1;
	font-size: calc(1.02rem * var(--ldr-fs, 1));
}
.ld-reader__body h1 {
	font-family: var(--ld-font-display);
	font-size: calc(1.55rem * var(--ldr-fs, 1));
	line-height: 1.25;
	margin: 0 0 0.7em;
}
.ld-reader__body .ld-entry { font-size: inherit; }

.ld-reader__foot {
	display: flex;
	gap: 10px;
	padding: 12px 18px;
	border-top: 1px solid var(--ld-line);
	flex: none;
}
.ld-reader__nav {
	flex: 1;
	font: inherit;
	font-weight: 700;
	font-size: 15px;
	padding: 13px 10px;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius-pill, 999px);
	background: var(--ld-white, #fff);
	color: var(--ld-ink);
	cursor: pointer;
}
.ld-reader__nav[disabled] { opacity: 0.35; cursor: default; }
.ld-reader__nav--next {
	background: linear-gradient(135deg, var(--ld-primary, #ff5c1a), var(--ld-primary-deep, #e34a0c));
	border: 0;
	color: #fff;
	box-shadow: var(--ld-shadow-primary, 0 8px 22px rgba(240, 78, 10, 0.32));
}
.ld-reader__nav--next[disabled] { box-shadow: none; }

/* Lesemodus: Artikel-Übersicht im Reader */
.ld-reader__listpanel {
	flex: none;
	max-height: 38vh;
	overflow-y: auto;
	border-bottom: 1px solid var(--ld-line);
	background: var(--ld-bg, #f4f6f9);
	padding: 8px;
}
.ld-reader__listpanel[hidden] { display: none; }
.ld-reader__listitem {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	text-align: left;
	font: inherit;
	font-size: 14.5px;
	padding: 11px 12px;
	border: 0;
	border-radius: var(--ld-radius-sm, 12px);
	background: none;
	color: var(--ld-ink);
	cursor: pointer;
}
.ld-reader__listitem:hover { background: var(--ld-white, #fff); }
.ld-reader__listitem.is-current {
	background: var(--ld-white, #fff);
	box-shadow: inset 3px 0 0 var(--ld-primary);
	font-weight: 700;
}
.ld-reader__listnum {
	flex: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--ld-white, #fff);
	border: 1px solid var(--ld-line);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--ld-primary-text, #c33d07);
}
.ld-reader__listitem.is-current .ld-reader__listnum {
	background: var(--ld-primary);
	border-color: var(--ld-primary);
	color: #fff;
}
.ld-reader__listtitle { flex: 1; line-height: 1.35; }
.ld-reader__listmin { flex: none; font-size: 12.5px; color: var(--ld-steel); }

/* Lesemodus: Teilen-Zeile und Eigenwerbung am Artikelende */
.ld-reader__share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 2.2em 0 1.2em;
	padding-top: 1.2em;
	border-top: 1px solid var(--ld-line);
	font-size: 0.9rem;
	color: var(--ld-steel);
}
.ld-reader__pill {
	font: inherit;
	font-size: 0.88rem;
	font-weight: 700;
	padding: 8px 15px;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius-pill, 999px);
	background: var(--ld-white, #fff);
	color: var(--ld-ink);
	text-decoration: none;
	cursor: pointer;
}
.ld-reader__pill:hover { border-color: var(--ld-primary); color: var(--ld-primary-text, #c33d07); }
.ld-reader__pill--wa { border-color: rgba(14, 163, 95, 0.4); color: #0b7c49; }

.ld-reader__cta {
	background:
		radial-gradient(26rem 15rem at 12% 120%, rgba(255, 92, 26, 0.28), transparent 60%),
		var(--ld-ink, #0f172a);
	color: #fff;
	border-radius: var(--ld-radius-lg, 24px);
	padding: clamp(24px, 4vw, 36px) 22px;
	text-align: center;
}
.ld-reader__cta h2 {
	font-family: var(--ld-font-display);
	font-size: clamp(1.25rem, 2.6vw, 1.6rem);
	margin: 0 0 8px;
	color: #fff;
}
.ld-reader__cta p {
	margin: 0 auto 18px;
	max-width: 460px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.95rem;
	line-height: 1.55;
}
.ld-reader__cta-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
}
.ld-reader__cta-tel {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

/* -------------------------------------------------------------------------
 * Über uns & Service-Netzwerk
 * ---------------------------------------------------------------------- */
.ld-about { position: relative; overflow: hidden; }
.ld-about > .ld-wrap { position: relative; z-index: 1; }

/* Schwebende Treppen-Kulisse: sehr dezent, bewegt sich von selbst und
   folgt am Desktop sanft der Maus (JavaScript setzt die Verschiebung
   auf den äußeren Rahmen, die Schwebe-Animation liegt auf dem SVG –
   so kommen sich beide Bewegungen nicht in die Quere). */
.ld-about__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.ld-about__shape {
	position: absolute;
	color: var(--ld-ink);
	opacity: 0.065;
	transition: translate 0.4s ease-out;
	will-change: translate;
}
.ld-about__shape svg {
	display: block;
	width: 100%;
	height: auto;
	animation: ld-about-float 17s ease-in-out infinite alternate;
}
.ld-about__shape:nth-child(2) svg { animation-duration: 23s; animation-delay: -6s; }
.ld-about__shape:nth-child(3) svg { animation-duration: 14s; animation-delay: -3s; }
.ld-about__shape:nth-child(4) svg { animation-duration: 26s; animation-delay: -11s; }
.ld-about__shape:nth-child(5) svg { animation-duration: 19s; animation-delay: -8s; }
@keyframes ld-about-float {
	0%   { transform: translate(-20px, -24px) rotate(-3.5deg); }
	50%  { transform: translate(14px, 6px) rotate(1deg); }
	100% { transform: translate(24px, 26px) rotate(4deg); }
}
@media (prefers-reduced-motion: reduce) {
	.ld-about__shape svg { animation: none; }
}
@media (max-width: 760px) {
	.ld-about__shape { opacity: 0.04; }
}

.ld-about__lead {
	max-width: 720px;
	margin: 0 auto clamp(1.8rem, 4vw, 2.6rem);
	text-align: center;
	color: var(--ld-steel);
	font-size: 1.05rem;
	line-height: 1.65;
}
.ld-about__lead p { margin: 0 0 1em; }
.ld-about__lead p:last-child { margin-bottom: 0; }

.ld-about__team {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: clamp(14px, 2.5vw, 24px);
	max-width: 860px;
	margin: 0 auto clamp(2.4rem, 5vw, 3.6rem);
}
.ld-about__member {
	background: var(--ld-white, #fff);
	border: 1px solid var(--ld-line);
	border-radius: var(--ld-radius-lg, 24px);
	box-shadow: var(--ld-shadow-sm);
	padding: 26px 18px 22px;
	text-align: center;
	display: grid;
	justify-items: center;
	gap: 4px;
}
.ld-about__face {
	width: 92px;
	height: 92px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--ld-white, #fff);
	box-shadow: 0 0 0 2px var(--ld-line), var(--ld-shadow-sm);
	margin-bottom: 10px;
}
.ld-about__face--ini {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ld-font-display);
	font-weight: 700;
	font-size: 1.6rem;
	color: #fff;
	background: linear-gradient(135deg, var(--ld-primary, #ff5c1a), var(--ld-primary-deep, #e34a0c));
}
.ld-about__name { font-family: var(--ld-font-display); font-size: 1.05rem; }
.ld-about__role { font-size: 0.9rem; color: var(--ld-steel); }

.ld-netz {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: clamp(1.8rem, 4vw, 3.5rem);
	align-items: center;
	background:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		radial-gradient(32rem 22rem at 85% 115%, rgba(255, 92, 26, 0.26), transparent 62%),
		var(--ld-ink, #0f172a);
	background-size: 36px 36px, 36px 36px, auto, auto;
	color: #fff;
	border: 0;
	border-radius: var(--ld-radius-lg, 24px);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
	padding: clamp(24px, 4.5vw, 48px);
}
@media (max-width: 900px) {
	.ld-netz { grid-template-columns: 1fr; }
}

.ld-netz__title {
	color: #fff;
	font-family: var(--ld-font-display);
	font-size: clamp(1.4rem, 2.8vw, 1.9rem);
	line-height: 1.25;
	margin: 0 0 12px;
}
.ld-netz__text { color: rgba(255, 255, 255, 0.75); line-height: 1.6; margin: 0 0 18px; }

.ld-netz__bullets {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	display: grid;
	gap: 10px;
}
.ld-netz__bullets li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; }
.ld-netz__bullets .ld-icon { color: var(--ld-primary); flex: none; margin-top: 3px; }

.ld-netz__plz {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.ld-netz__plz input {
	flex: 1 1 160px;
	font: inherit;
	font-size: 16px;
	padding: 12px 16px;
	background: #fff;
	color: var(--ld-ink);
	border: 1.5px solid transparent;
	border-radius: var(--ld-radius-pill, 999px);
	min-width: 0;
	font-variant-numeric: tabular-nums;
}
.ld-netz__plz input:focus {
	outline: none;
	border-color: var(--ld-primary);
	box-shadow: 0 0 0 3px rgba(255, 92, 26, 0.14);
}
.ld-netz__result {
	margin: 12px 0 0;
	padding: 12px 16px;
	border-radius: var(--ld-radius-sm, 12px);
	background: rgba(255, 255, 255, 0.09);
	border: 1px dashed var(--ld-primary);
	color: #fff;
	font-weight: 600;
	line-height: 1.5;
}
.ld-netz__result[hidden] { display: none; }

.ld-netz__mapwrap { min-width: 0; }
.ld-netz__map { width: 100%; height: auto; display: block; }

.ld-netz__map .netz-dot { fill: rgba(255, 255, 255, 0.16); }
.ld-netz__map .netz-city { fill: var(--ld-primary, #ff5c1a); cursor: pointer; }
.ld-netz__map .netz-city:hover { fill: var(--ld-primary-deep, #e34a0c); }
.ld-netz__map .netz-route {
	fill: none;
	stroke: var(--ld-primary, #ff5c1a);
	stroke-opacity: 0.45;
	stroke-width: 0.55;
	stroke-dasharray: 2.2 2.6;
	stroke-linecap: round;
}
.ld-netz__map .netz-route--lager { stroke: rgba(255, 255, 255, 0.85); stroke-opacity: 0.4; }
.ld-netz.in-view .netz-route { animation: ld-netz-flow 1.6s linear infinite; }
.ld-netz__map .netz-hub-core { fill: var(--ld-primary, #ff5c1a); }
.ld-netz__map .netz-hub-core--lager { fill: #fff; }
.ld-netz__map .netz-hub-ring {
	fill: none;
	stroke: var(--ld-primary, #ff5c1a);
	stroke-width: 0.6;
	opacity: 0.9;
	transform-box: fill-box;
	transform-origin: center;
}
.ld-netz__map .netz-hub-ring--lager { stroke: #fff; }
.ld-netz.in-view .netz-hub-ring { animation: ld-netz-pulse 2.2s ease-out infinite; }
.ld-netz__map .netz-user { fill: #4ade80; }
.ld-netz__map .netz-user-ring {
	fill: none;
	stroke: #4ade80;
	stroke-width: 0.6;
	transform-box: fill-box;
	transform-origin: center;
	animation: ld-netz-pulse 1.8s ease-out infinite;
}
.ld-netz__map .netz-city.is-found {
	transform-box: fill-box;
	transform-origin: center;
	animation: ld-netz-found 1.4s ease-in-out infinite;
}

/* Kundenspur: grüne Verbindungen bauen sich vom Standort zum Kunden auf. */
.ld-netz__map .netz-userroute {
	fill: none;
	stroke: #4ade80;
	stroke-width: 0.7;
	stroke-linecap: round;
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	opacity: 0.9;
	animation: ld-netz-build 0.8s ease-out forwards;
}
.ld-netz__map .netz-linkring {
	fill: none;
	stroke: #4ade80;
	stroke-width: 0.5;
	opacity: 0;
	animation: ld-netz-linkin 0.5s ease-out forwards;
}
@keyframes ld-netz-build { to { stroke-dashoffset: 0; } }
@keyframes ld-netz-linkin { to { opacity: 0.85; } }

@keyframes ld-netz-flow { to { stroke-dashoffset: -9.6; } }
@keyframes ld-netz-pulse {
	0% { transform: scale(0.6); opacity: 0.9; }
	100% { transform: scale(2.4); opacity: 0; }
}
@keyframes ld-netz-found {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.8); }
}
@media (prefers-reduced-motion: reduce) {
	.ld-netz.in-view .netz-route,
	.ld-netz.in-view .netz-hub-ring,
	.ld-netz__map .netz-user-ring,
	.ld-netz__map .netz-city.is-found { animation: none; }
	.ld-netz__map .netz-userroute { animation: none; stroke-dashoffset: 0; }
	.ld-netz__map .netz-linkring { animation: none; opacity: 0.85; }
}

.ld-netz__legend {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.7);
}
.ld-netz__legend li { display: flex; align-items: center; gap: 8px; }
.ld-netz__legend strong { color: #fff; }
.ld-netz__dot-legend { width: 11px; height: 11px; border-radius: 50%; flex: none; }
.ld-netz__dot-legend--hq { background: var(--ld-primary, #ff5c1a); }
.ld-netz__dot-legend--lager { background: #fff; }

/* -------------------------------------------------------------------------
 * Bewertungen
 * ---------------------------------------------------------------------- */
.ld-revs__sub {
	text-align: center;
	color: var(--ld-steel);
	max-width: 640px;
	margin: -0.6rem auto 0.9rem;
	line-height: 1.6;
}
.ld-revs__avg {
	text-align: center;
	margin: 0 0 1.8rem;
	font-weight: 700;
	color: var(--ld-ink);
}
.ld-revs__avg-stars {
	color: var(--ld-primary);
	letter-spacing: 0.06em;
	margin-right: 0.5em;
	font-size: 1.1em;
}

.ld-revs__card {
	flex: 0 0 min(340px, 82vw);
	scroll-snap-align: start;
	background: var(--ld-white, #fff);
	border: 1px solid var(--ld-line);
	border-radius: var(--ld-radius-lg, 24px);
	box-shadow: var(--ld-shadow-sm);
	padding: 22px 22px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	cursor: pointer;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ld-revs__card:hover {
	box-shadow: var(--ld-shadow-md, 0 14px 34px rgba(15, 23, 42, 0.12));
	transform: translateY(-2px);
}
.ld-revs__card:focus-visible {
	outline: 2px solid var(--ld-primary);
	outline-offset: 3px;
}

.ld-revs__stars { font-size: 1.15rem; letter-spacing: 0.08em; }
.ld-revs__stars-on { color: var(--ld-primary); }
.ld-revs__stars-off { color: var(--ld-line); }

.ld-revs__text {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.6;
	color: var(--ld-ink);
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ld-revs__card.is-open .ld-revs__text {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}

.ld-revs__more {
	align-self: flex-start;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--ld-primary-text, #c33d07);
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.ld-revs__card.is-open .ld-revs__more::after { content: ''; }

.ld-revs__name {
	margin-top: auto;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ld-steel);
}

/* -------------------------------------------------------------------------
 * Mobile Aktionsleiste: schmale Sticky-Leiste am unteren Rand (nur
 * Smartphone). Erscheint erst, wenn der Preisrechner aus dem Bild
 * gescrollt ist, und macht dem Home-Balken des Geräts Platz.
 * ---------------------------------------------------------------------- */
.ld-stickybar { display: none; }

@media (max-width: 760px) {
	.ld-stickybar {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 9980;
		display: flex;
		gap: 8px;
		padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
		background: rgba(255, 255, 255, 0.92);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		border-top: 1px solid var(--ld-line);
		box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
		transform: translateY(110%);
		transition: transform 0.3s ease;
	}
	.ld-stickybar.is-on { transform: translateY(0); }

	/* Solange der Consent-Banner unten offen ist (html.ldc-open vom
	   Consent-Plugin), heftet sich die Leiste OBEN direkt unter den
	   Header - sonst laegen beide uebereinander. Die Zustandslogik
	   (is-on / is-calcmode) bleibt unveraendert. */
	html.ldc-open .ld-stickybar {
		bottom: auto;
		top: var(--ld-headh, 64px);
		left: 8px;
		right: 8px;
		padding: 8px 10px 10px;
		border: 0;
		/* Roberts Mock: glasige weisse Karte, die unterm Header ausfaehrt -
		   oben buendig, unten normal gerundete Ecken, weicher Wurfschatten. */
		background: rgba(255, 255, 255, 0.78);
		border-radius: 0 0 20px 20px;
		box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
		/* Unter dem Header (z 100) einsortiert: beim Ausblenden gleitet
		   die Karte HINTER ihm nach oben hinaus. Der Weg muss top +
		   Eigenhoehe ueberwinden - -130% allein liess am oberen Anker
		   einen sichtbaren Rest stehen (Roberts Befund, kleines Handy). */
		z-index: 90;
		transform: translateY(calc(-100% - var(--ld-headh, 64px) - 16px));
	}
	/* Anrufen als reiner Icon-Knopf (Text bleibt fuer Screenreader),
	   Sofortangebot nimmt die Breite - beide als runde Rechtecke. */
	html.ldc-open .ld-stickybar__call {
		flex: 0 0 40px;
		width: 40px;
		min-height: 40px;
		padding: 0;
		gap: 0;
		font-size: 0;
		border-radius: 12px;
	}
	html.ldc-open .ld-stickybar__call svg { width: 17px; height: 17px; }
	html.ldc-open .ld-stickybar__cta {
		position: relative;
		overflow: hidden;
		min-height: 40px;
		font-size: 14px;
		border-radius: 12px;
	}
	/* Solo-Zustand (im Rechner): nicht mehr randvoll, sondern schmal
	   und mittig. */
	html.ldc-open .ld-stickybar.is-calcmode .ld-stickybar__cta {
		max-width: 340px;
		margin: 0 auto;
	}
	/* Dezenter Glanz-Sweep als werbender Akzent - alle paar Sekunden
	   einmal, respektiert reduzierte Bewegung. */
	html.ldc-open .ld-stickybar__cta::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: -70px;
		width: 46px;
		background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
		animation: ldShine 5.5s ease-in-out infinite;
	}
	@keyframes ldShine {
		0%, 72% { left: -70px; }
		88%, 100% { left: calc(100% + 40px); }
	}
	@media (prefers-reduced-motion: reduce) {
		html.ldc-open .ld-stickybar__cta::after { animation: none; display: none; }
	}
	/* Der Header-Scrollschatten laege sonst als Kante AUF der Karte. */
	html.ldc-open .ld-header.is-scrolled { box-shadow: none; }
	html.ldc-open .ld-stickybar.is-on { transform: translateY(0); }
	/* Ganz oben: hinterm Header geparkt, auch im is-on-Zustand -
	   die Regel steht NACH is-on und gewinnt bei gleicher Spezifitaet. */
	html.ldc-open .ld-stickybar.is-topdock { transform: translateY(calc(-100% - var(--ld-headh, 64px) - 16px)); }

	/* Seitenende: Die Rechtszeile im Footer muss ueber Leiste UND
	   KI-Knopf frei stehen - fixe Elemente brauchen echten Scrollweg. */
	body:has(.ld-stickybar) .ld-footer {
		padding-bottom: calc(150px + env(safe-area-inset-bottom, 0px));
	}

	.ld-stickybar__call,
	.ld-stickybar__cta {
		flex: 1;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		min-height: 46px;
		border-radius: 999px;
		font-weight: 700;
		font-size: 15px;
		text-decoration: none;
	}
	.ld-stickybar__call {
		color: #fff;
		background: var(--ld-ink);
	}
	.ld-stickybar__call svg { width: 17px; height: 17px; }
	.ld-stickybar__cta {
		flex: 1.15;
		color: #fff;
		background: linear-gradient(135deg, var(--ld-primary), var(--ld-primary-deep, #e34a0c));
		box-shadow: var(--ld-shadow-primary, 0 8px 22px rgba(240, 78, 10, 0.32));
	}

	/* Der KI-Beratungs-Knopf und seine Hinweis-Blase rücken über die Leiste. */
	body:has(.ld-stickybar) .ldc-ki-launch { bottom: calc(70px + env(safe-area-inset-bottom, 0px)) !important; }
	body:has(.ld-stickybar) .ldc-ki-hint {
		bottom: calc(136px + env(safe-area-inset-bottom, 0px)) !important;
		transition: bottom 0.35s ease;
	}
	body.ld-calc-in-view .ldc-ki-hint { bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important; }

	/* STRATO-Widget <ai-voicereceptionist>: geschlossenes Shadow-DOM, die
	   Blase darin ist FIXED positioniert. Ein transformierter Vorfahr wird
	   laut CSS-Spezifikation zum Bezugsrahmen auch für fixed-Nachfahren –
	   deshalb macht transform:translateZ(0) den Wirt zum Käfig, in dem die
	   Blase mobil zuverlässig ÜBER der Leiste landet, ohne ins Widget
	   einzugreifen. (Technik aus dem Treppenheld-Theme übernommen.) */
	body:has(.ld-stickybar) ai-voicereceptionist {
		position: fixed;
		left: 0;
		right: 0;
		top: auto;
		bottom: calc(48px + env(safe-area-inset-bottom, 0px));
		width: 100vw;
		height: 0;
		display: block;
		transform: translateZ(0);
		z-index: 9979;
		transition: bottom 0.35s ease;
	}

	/* Weicht die Leiste dem Preisrechner, sinken Widget und
	   Platzhalter-Knopf sanft wieder an den unteren Rand. */
	body.ld-calc-in-view ai-voicereceptionist { bottom: env(safe-area-inset-bottom, 0px); }
	body:has(.ld-stickybar) .ldc-ki-launch { transition: bottom 0.35s ease; }
	body.ld-calc-in-view .ldc-ki-launch { bottom: calc(14px + env(safe-area-inset-bottom, 0px)) !important; }
}

@media (prefers-reduced-motion: reduce) {
	.ld-stickybar { transition: none; }
}

/* ---------- Zustellweg-Wahl (Kontaktschritt) ---------- */
.ld-deliver {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 0 0 18px;
}
.ld-deliver label { position: relative; cursor: pointer; }
.ld-deliver input { position: absolute; opacity: 0; pointer-events: none; }
.ld-deliver__card {
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius, 14px);
	padding: 12px 14px;
	background: var(--ld-bg);
	transition: border-color .15s ease, background-color .15s ease;
}
.ld-deliver__card svg { width: 26px; height: 26px; flex: none; color: var(--ld-primary); }
.ld-deliver__title { display: block; font-weight: 700; }
.ld-deliver__note { display: block; font-size: .82rem; color: var(--ld-muted, #55657a); }
.ld-deliver label:hover .ld-deliver__card { border-color: var(--ld-primary); }
.ld-deliver label:has(input:checked) .ld-deliver__card {
	border-color: var(--ld-primary);
	background: var(--ld-primary-soft, rgba(255, 92, 26, .07));
}
.ld-deliver input:focus-visible ~ .ld-deliver__card { outline: 3px solid var(--ld-primary); outline-offset: 2px; }

/* Strassenfeld: nur bei "Per Post" sichtbar. Zwei Wege decken alles ab:
   :has() greift auch ganz ohne JavaScript, is-post setzt das Skript. */
.ld-street { display: none; }
.ld-calc__step.is-post .ld-street,
.ld-calc__step:has(input[name="ld_delivery"][value="post"]:checked) .ld-street { display: block; }

@media (max-width: 560px) {
	.ld-deliver { grid-template-columns: 1fr; }
}

/* ---------- Vertrauens-Notiz als Overlay am Telefonfeld ---------- */
/* Kein Platz im Layout: Das Feld behaelt seine normale Hoehe, die Zeile
   bleibt buendig mit "Ihr Name". Die Notiz schwebt absolut - im leeren
   Feld liegt sie als Inlay mittendrin, beim Fokus gleitet sie als kleine
   Karte unter die Feldkante (ueberlagert per z-index, schiebt nichts).
   Ist das Feld ausgefuellt und verlassen, blendet sie aus. Der leere
   placeholder=" " am Input existiert nur, damit :placeholder-shown den
   Leer-Zustand erkennen kann. */
.ld-field-note {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	font-size: .78rem;
	line-height: 1.4;
	color: var(--ld-muted, #55657a);
}
.ld-field-note svg { width: 14px; height: 14px; flex: none; margin-top: 2px; }

.ld-phone-wrap { position: relative; display: block; }
.ld-phone-wrap .ld-field-note {
	position: absolute;
	left: 6px;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	padding: 6px 9px;
	border: 1px solid transparent;
	border-radius: calc(var(--ld-radius-sm) - 3px);
	background: transparent;
	pointer-events: none;
	z-index: 2;
	transition: top .28s ease, transform .28s ease, color .25s ease,
		opacity .25s ease, background-color .25s ease,
		border-color .25s ease, box-shadow .25s ease;
}
.ld-phone-wrap:focus-within .ld-field-note {
	top: calc(100% + 5px);
	transform: translateY(0);
	color: var(--ld-green);
	background: #fff;
	border-color: var(--ld-line);
	box-shadow: 0 6px 18px rgba(15, 23, 42, .10);
}
/* Ausgefuellt und verlassen: Dienst getan, Platz freigeben. */
.ld-phone-wrap:has(input:not(:placeholder-shown)):not(:focus-within) .ld-field-note {
	top: calc(100% + 5px);
	transform: translateY(0);
	opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
	.ld-phone-wrap .ld-field-note { transition: color .25s ease, opacity .25s ease; }
}

/* ---------- Sofortangebot-Konfigurator ---------- */
.ld-sofort { background: var(--ld-ink); }
.ld-sofort [hidden] { display: none !important; }
.ld-sofort .ld-section__title { color: #fff; }
.ld-sofort__hl { color: var(--ld-primary); }
.ld-sofort__sub { color: rgba(255, 255, 255, .78); max-width: 660px; margin-inline: auto; }
.ld-sofort__badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 14px;
	padding: 6px 14px;
	border-radius: var(--ld-radius-pill);
	background: rgba(255, 255, 255, .09);
	border: 1px solid rgba(255, 255, 255, .16);
	color: #fff;
	font-size: .82rem;
	font-weight: 600;
}
.ld-sofort__badge svg { color: var(--ld-primary); }

.ld-sofort__card {
	background: #fff;
	border-radius: var(--ld-radius-lg);
	padding: clamp(18px, 3.4vw, 34px);
	max-width: 1000px;
	margin: 26px auto 0;
	box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}
.ld-sofort__step { border: 0; margin: 0 0 20px; padding: 0; }
.ld-sofort__q { display: block; font-weight: 700; font-size: 1.04rem; margin: 0 0 12px; color: var(--ld-ink); }
.ld-sofort__q-note { display: block; font-weight: 400; font-size: .84rem; color: #5b6472; margin-top: 2px; }

.ld-sofort__ways, .ld-sofort__forms { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.ld-sofort__way,
.ld-sofort__formpick {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius-sm);
	background: #fff;
	cursor: pointer;
	text-align: left;
	font: inherit;
	transition: border-color .15s ease, background-color .15s ease, transform .15s ease;
}
.ld-sofort__way:hover, .ld-sofort__formpick:hover { border-color: var(--ld-primary); }
.ld-sofort__way.is-active, .ld-sofort__formpick.is-active { border-color: var(--ld-primary); background: #fff7f2; }
.ld-sofort__way > svg { flex: none; width: 26px; height: 26px; color: var(--ld-primary); }
.ld-sofort__way-title { display: block; font-weight: 700; }
.ld-sofort__way-note { display: block; font-size: .82rem; color: #5b6472; }
.ld-sofort__formart { flex: none; width: 54px; height: 54px; color: var(--ld-ink); }
.ld-sofort__formart svg { width: 100%; height: 100%; }
.ld-sofort__formlabel { font-weight: 700; }

.ld-sofort__slots { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.ld-sofort__slot { position: relative; display: block; }
.ld-sofort__slot input, .ld-sofort__prod input { position: absolute; opacity: 0; pointer-events: none; }
.ld-sofort__slotcard {
	display: flex;
	flex-direction: column;
	gap: 5px;
	height: 100%;
	padding: 14px;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius-sm);
	background: #fff;
	cursor: pointer;
	transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.ld-sofort__slot:hover .ld-sofort__slotcard { border-color: var(--ld-primary); }
.ld-sofort__slot input:checked + .ld-sofort__slotcard { border-color: var(--ld-primary); background: #fff7f2; box-shadow: 0 6px 18px rgba(240, 90, 30, .14); }
.ld-sofort__slot input:focus-visible + .ld-sofort__slotcard,
.ld-sofort__prod input:focus-visible + .ld-sofort__prodcard { outline: 3px solid var(--ld-primary); outline-offset: 2px; }
.ld-sofort__slotkind { font-size: .8rem; font-weight: 600; color: #5b6472; text-transform: uppercase; letter-spacing: .02em; }
.ld-sofort__pl { display: block; font-style: normal; color: var(--ld-green); font-size: .78rem; text-transform: none; letter-spacing: 0; }
.ld-sofort__slotname { font-weight: 700; color: var(--ld-ink); }
.ld-sofort__slotprice { color: var(--ld-primary); font-weight: 700; }

.ld-sofort__filter { margin-bottom: 14px; }
.ld-sofort__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.ld-sofort__prod { position: relative; display: block; }
.ld-sofort__prodcard {
	display: flex;
	flex-direction: column;
	gap: 8px;
	height: 100%;
	padding: 12px;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius-sm);
	background: #fff;
	cursor: pointer;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.ld-sofort__prod:hover .ld-sofort__prodcard { border-color: var(--ld-primary); }
.ld-sofort__prod input:checked + .ld-sofort__prodcard { border-color: var(--ld-primary); box-shadow: 0 6px 18px rgba(240, 90, 30, .14); }
.ld-sofort__prodimg {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	border-radius: 9px;
	background: var(--ld-bg);
	overflow: hidden;
}
.ld-sofort__prodimg img { width: 100%; height: 100%; object-fit: contain; }
.ld-sofort__prodimg svg { width: 34px; height: 34px; color: #9aa4b2; }
.ld-sofort__prodname { font-weight: 600; font-size: .92rem; color: var(--ld-ink); }
.ld-sofort__prodmeta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.ld-sofort__prodprice { color: var(--ld-primary); font-weight: 700; }
.ld-sofort__prodtag { font-size: .74rem; font-weight: 600; padding: 2px 8px; border-radius: var(--ld-radius-pill); background: #eef2f6; color: #46505c; }

.ld-sofort__hit {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 4px 0 20px;
	padding: 12px 14px;
	border: 1.5px solid var(--ld-green);
	border-radius: var(--ld-radius-sm);
	background: #f2faf5;
}
.ld-sofort__hitimg { flex: none; width: 58px; height: 46px; border-radius: 8px; background: #fff; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.ld-sofort__hitimg img { width: 100%; height: 100%; object-fit: contain; }
.ld-sofort__hitbody { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ld-sofort__hitlabel { font-size: .76rem; font-weight: 600; text-transform: uppercase; letter-spacing: .02em; color: var(--ld-green); }
.ld-sofort__hitprice { color: var(--ld-primary); font-weight: 700; font-size: .92rem; }
.ld-sofort__hitcheck { margin-left: auto; color: var(--ld-green); }

.ld-sofort__q--contact { margin-top: 4px; }
.ld-sofort__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 14px; }
.ld-sofort__field { margin: 0; display: flex; flex-direction: column; gap: 5px; }
.ld-sofort__field--full { grid-column: 1 / -1; }
.ld-sofort__field label, .ld-sofort__grouplabel { font-size: .88rem; font-weight: 600; color: var(--ld-ink); }
.ld-sofort__field input, .ld-sofort__field textarea {
	width: 100%;
	font: inherit;
	font-size: .95rem;
	padding: .65em .9em;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius-sm);
	background: #fff;
	transition: border-color .15s ease;
}
.ld-sofort__field input:focus, .ld-sofort__field textarea:focus { outline: none; border-color: var(--ld-primary); }
.ld-sofort__hint { display: flex; align-items: flex-start; gap: 6px; font-size: .78rem; line-height: 1.4; color: #55657a; }
.ld-sofort__hint svg { flex: none; width: 14px; height: 14px; margin-top: 2px; color: var(--ld-green); }

.ld-sofort__privacy { display: flex; align-items: flex-start; gap: 9px; margin: 16px 0 0; font-size: .82rem; line-height: 1.5; color: #46505c; }
.ld-sofort__privacy input { margin-top: 3px; }
.ld-sofort__submit { width: 100%; justify-content: center; margin-top: 16px; }
.ld-sofort__trust { display: flex; align-items: flex-start; justify-content: center; gap: 7px; margin: 12px 0 0; font-size: .8rem; color: #5b6472; text-align: left; }
.ld-sofort__trust svg { flex: none; width: 15px; height: 15px; margin-top: 1px; color: var(--ld-green); }

.ld-sofort__alert {
	margin: 0 0 16px;
	padding: 11px 14px;
	border: 1.5px solid #d64545;
	border-radius: var(--ld-radius-sm);
	background: #fff5f5;
	color: #a02626;
	font-size: .9rem;
}
.ld-sofort__success { text-align: center; padding: 26px 10px; }
.ld-sofort__success-icon { display: inline-flex; align-items: center; justify-content: center; width: 62px; height: 62px; border-radius: 50%; background: #e9f7ef; color: var(--ld-green); margin-bottom: 12px; }
.ld-sofort__success-icon svg { width: 30px; height: 30px; }
.ld-sofort__success h3 { margin: 0 0 8px; font-size: 1.3rem; }
.ld-sofort__success p { margin: 0 auto 8px; max-width: 520px; color: #46505c; }
.ld-sofort__success-tip { font-size: .84rem; color: #5b6472; }
.ld-sofort__hp { position: absolute !important; left: -9999px; opacity: 0; height: 0; width: 0; }

@media (max-width: 760px) {
	.ld-sofort__fields { grid-template-columns: 1fr; }
	.ld-sofort__ways, .ld-sofort__forms, .ld-sofort__slots { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
	.ld-sofort__way, .ld-sofort__formpick, .ld-sofort__slotcard, .ld-sofort__prodcard { transition: none; }
}

/* ---------- Kompakte Kopfleiste (schmalere Desktops) ----------
   Sechs Menuepunkte plus Angebots-Knopf brauchen Platz: zwischen
   Burger-Grenze (1080px) und 1260px ruecken Schrift, Abstaende und
   Knopf enger zusammen, damit nichts zweizeilig umbricht. */
.ld-btn--header { white-space: nowrap; }
@media (min-width: 1081px) and (max-width: 1260px) {
	.ld-nav__list { gap: 0.15rem; }
	.ld-nav__list a { font-size: 0.88rem; padding: 0.45em 0.4em; }
	.ld-header .ld-btn--header { font-size: 0.88rem; padding-left: 15px; padding-right: 15px; }
}

/* ---------- Sofortangebot: Pflegekassen-Feld entfaltet sich bei "Ja" ----------
   Reines CSS ueber :has, gespiegelt von der JS-Klasse is-ja (Muster
   Zustellweg-Wahl). Das Feld erscheint in der Chip-Zeile und waechst
   dort auf - die Chips bleiben sichtbar, damit der Weg zurueck zu
   "Nein" nie verloren geht. */
.ld-sofort__pflegerow { display: flex; align-items: flex-end; flex-wrap: wrap; gap: 10px 14px; }
.ld-sofort__kasse { display: none; flex: 1 1 240px; min-width: 220px; flex-direction: column; gap: 5px; }
.ld-sofort__pflege:has(input[value="ja"]:checked) .ld-sofort__kasse,
.ld-sofort__pflege.is-ja .ld-sofort__kasse {
	display: flex;
	animation: ld-step-in .3s ease;
}
.ld-sofort__kasselabel { font-size: .82rem; font-weight: 600; color: var(--ld-ink); }
.ld-sofort__kasse input {
	width: 100%;
	font: inherit;
	font-size: .95rem;
	padding: .55em .9em;
	border: 1.5px solid var(--ld-line);
	border-radius: var(--ld-radius-sm);
	background: #fff;
	transition: border-color .15s ease;
}
.ld-sofort__kasse input:focus { outline: none; border-color: var(--ld-primary); }
@media (prefers-reduced-motion: reduce) {
	.ld-sofort__pflege:has(input[value="ja"]:checked) .ld-sofort__kasse,
	.ld-sofort__pflege.is-ja .ld-sofort__kasse { animation: none; }
}

/* Erfolgsmeldung: zustellwegabhaengige Zusatzzeile */
.ld-calc__success-note { margin: 6px auto 0; max-width: 480px; font-size: .92rem; color: #46505c; }

/* ---------- Sofortangebot: integrierter Lift-Konfigurator (Stepper + Slider) ---------- */
.ld-sofort__hit { flex-wrap: wrap; }
.ld-sofort__hitkonfig { width: 100%; margin-top: 12px; border-top: 1px dashed rgba(14, 163, 95, 0.35); padding-top: 4px; }
.ld-sofort__hitkonfig-toggle { display: flex; align-items: center; gap: 9px; width: 100%; padding: 9px 2px 5px; background: none; border: 0; cursor: pointer; font: inherit; text-align: left; color: var(--ld-ink); }
.ld-sofort__hitkonfig-icon { display: inline-flex; color: var(--ld-primary); flex: none; }
.ld-sofort__hitkonfig-icon svg { width: 17px; height: 17px; }
.ld-sofort__hitkonfig-title { font-weight: 700; font-size: 0.93rem; }
.ld-sofort__hitkonfig-title em { font-style: normal; font-weight: 500; color: #55657a; font-size: 0.86em; margin-left: 6px; }
.ld-sofort__hitkonfig-chev { margin-left: auto; width: 9px; height: 9px; border-right: 2px solid #55657a; border-bottom: 2px solid #55657a; transform: rotate(45deg); transition: transform 0.25s ease; flex: none; }
.ld-sofort__hitkonfig.is-open .ld-sofort__hitkonfig-chev { transform: rotate(225deg); }
.ld-sofort__hitkonfig.is-aktiv:not(.is-open) .ld-sofort__hitkonfig-toggle::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ld-green); flex: none; animation: ld-konfig-puls 1.6s ease-in-out 2; }
@keyframes ld-konfig-puls { 0%, 100% { box-shadow: 0 0 0 0 rgba(14, 163, 95, 0.5); } 50% { box-shadow: 0 0 0 7px rgba(14, 163, 95, 0); } }
.ld-sofort__hitkonfig-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.32s ease; }
.ld-sofort__hitkonfig.is-open .ld-sofort__hitkonfig-panel { grid-template-rows: 1fr; }
.ld-sofort__hitkonfig-inner { overflow: hidden; display: grid; gap: 18px; }
.ld-sofort__hitkonfig.is-open .ld-sofort__hitkonfig-inner { padding: 10px 2px 14px; }

.ld-sfk-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 14px; }
.ld-sfk-row:has(.ld-sfk-slider) { align-items: flex-start; }
.ld-sfk-row:has(.ld-sfk-slider) .ld-sfk-label { padding-top: 4px; }
.ld-sfk-label { flex: none; min-width: 150px; color: #55657a; font-size: 0.92rem; font-weight: 600; }
.ld-sfk-chips { margin: 0; }
.ld-sfk-wert { display: inline-flex; align-items: baseline; gap: 8px; min-width: 150px; }
.ld-sfk-wert b { color: var(--ld-ink); font-size: 1.02rem; }
.ld-sfk-delta { font-style: normal; font-size: 0.8rem; font-weight: 700; color: #55657a; white-space: nowrap; background: rgba(15, 23, 42, 0.06); padding: 2px 9px; border-radius: var(--ld-radius-pill); }
.ld-sfk-delta.is-frei { color: var(--ld-green); background: var(--ld-green-soft); }

.ld-sfk-stepper { display: inline-grid; grid-template-columns: auto auto auto; align-items: center; justify-content: start; gap: 0 16px; flex: none; }
.ld-sfk-btn { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--ld-line); background: #fff; color: var(--ld-ink); font-size: 1.35rem; line-height: 1; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: border-color 0.15s ease, color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease; }
@media (hover: hover) and (pointer: fine) {
	.ld-sfk-btn:hover { border-color: var(--ld-primary); color: var(--ld-primary); box-shadow: 0 0 0 3px var(--ld-primary-soft); }
}
.ld-sfk-btn:active { transform: scale(0.92); }
.ld-sfk-stepper .ld-sfk-wert { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-width: 96px; gap: 3px; }

.ld-sfk-slider { flex: 1; min-width: 230px; max-width: 440px; display: grid; gap: 7px; }
.ld-sfk-range { -webkit-appearance: none; appearance: none; width: 100%; height: 26px; background: transparent; cursor: pointer; --sfk-p: 0%; }
.ld-sfk-range::-webkit-slider-runnable-track { height: 7px; border-radius: 999px; background: linear-gradient(to right, var(--ld-primary) var(--sfk-p), rgba(15, 23, 42, 0.12) var(--sfk-p)); }
.ld-sfk-range::-moz-range-track { height: 7px; border-radius: 999px; background: rgba(15, 23, 42, 0.12); }
.ld-sfk-range::-moz-range-progress { height: 7px; border-radius: 999px; background: var(--ld-primary); }
.ld-sfk-range::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; margin-top: -9.5px; border-radius: 50%; background: #fff; border: 3.5px solid var(--ld-primary); box-shadow: 0 2px 6px rgba(15, 23, 42, 0.22); transition: transform 0.12s ease; }
.ld-sfk-range::-moz-range-thumb { width: 19px; height: 19px; border-radius: 50%; background: #fff; border: 3.5px solid var(--ld-primary); box-shadow: 0 2px 6px rgba(15, 23, 42, 0.22); }
.ld-sfk-range:active::-webkit-slider-thumb { transform: scale(1.12); }
.ld-sfk-range:focus-visible { outline: 3px solid var(--ld-primary-soft); outline-offset: 2px; border-radius: 999px; }

.ld-sofort__hitprice.is-preisneu { animation: ld-preis-blitz 0.5s ease; }
@keyframes ld-preis-blitz { 0% { color: var(--ld-green); transform: scale(1.07); } 100% { transform: scale(1); } }
@media (max-width: 640px) {
	.ld-sfk-label { min-width: 100%; }
	.ld-sfk-slider { max-width: 100%; }
	.ld-sofort__hitkonfig-title em { display: block; margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.ld-sofort__hitkonfig-panel, .ld-sofort__hitkonfig-chev, .ld-sfk-btn, .ld-sofort__hitprice.is-preisneu { transition: none; animation: none; }
	.ld-sofort__hitkonfig.is-aktiv:not(.is-open) .ld-sofort__hitkonfig-toggle::after { animation: none; }
}

/* Mehretagen-Hinweis im Konfigurator (erscheint bei "3 oder mehr") */
.ld-sfk-mehrhinweis { margin: 2px 0 0; padding: 10px 13px; border-left: 3px solid var(--ld-green); background: var(--ld-green-soft); border-radius: var(--ld-radius-sm); color: #0a6b41; font-size: 0.88rem; line-height: 1.5; animation: ld-step-in 0.3s ease; }
@media (prefers-reduced-motion: reduce) { .ld-sfk-mehrhinweis { animation: none; } }

/* "Weitere Anfrage"-Knopf in den Erfolgsmeldungen */
.ld-again { display: inline-flex; align-items: center; margin-top: 14px; padding: 10px 20px; border: 1.5px solid var(--ld-line); border-radius: var(--ld-radius-pill); background: #fff; color: var(--ld-ink); font-weight: 600; font-size: 0.92rem; text-decoration: none; transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease; }
@media (hover: hover) and (pointer: fine) {
	.ld-again:hover { border-color: var(--ld-primary); color: var(--ld-primary); box-shadow: 0 0 0 3px var(--ld-primary-soft); }
}

/* Mobile Leiste im Rechner-Modus: nur der Sofortangebot-Knopf, volle Breite */
@media (max-width: 767px) {
	.ld-stickybar.is-calcmode .ld-stickybar__call { display: none; }
	.ld-stickybar.is-calcmode .ld-stickybar__cta { flex: 1 1 100%; width: 100%; }
}

/* Zustellweg-Karten im Sofortangebot (2.14.15) */
.ld-deliver--sofort { margin: 4px 0 16px; }
.ld-sofort__postnote { margin: -6px 0 16px; }

/* Sofortangebot-Produktliste als Raster + MwSt-Zeile (2.14.17):
   zwei Spalten wie im Shop (ab Tablet drei), kompakte Bildkacheln
   statt bildschirmfuellender Einzelkarten. */
.ld-sofort__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
.ld-sofort__prodcard { padding: 8px 8px 12px; }
.ld-sofort__prodimg { aspect-ratio: 4 / 3; height: auto; border-radius: 12px; overflow: hidden; }
.ld-sofort__prodimg img { width: 100%; height: 100%; object-fit: cover; }
.ld-sofort__prodname { font-size: 14px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.7em; }
.ld-sofort__prodmeta { flex-wrap: wrap; gap: 4px 8px; }
.ld-sofort__prodprice { font-size: 15.5px; }
.ld-sofort__prodtag { font-size: 11px; padding: 2px 8px; }
.ld-sofort__mwst { display: block; font-size: 11.5px; font-weight: 500; color: var(--ld-steel, #55657a); margin-top: 2px; }
@media (min-width: 720px) {
	.ld-sofort__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
	.ld-sofort__prodname { font-size: 15px; }
}

/* MwSt-Zeile dichter an den Preis (2.14.18) */
.ld-sofort__mwst { margin-top: 0; }
.ld-sofort__prodmeta .ld-sofort__mwst { flex-basis: 100%; }
.ld-sofort__slotcard .ld-sofort__mwst { margin-top: -4px; }

/* MwSt-Zeile: noch dichter (2.14.19) */
.ld-sofort__mwst { line-height: 1.2; }
.ld-sofort__prodmeta .ld-sofort__mwst { margin-top: -4px; }
.ld-sofort__slotcard .ld-sofort__mwst { margin-top: -5px; }

/* MwSt-Zeile kleiner (2.14.20) */
.ld-sofort__mwst { font-size: 10px; }

/* ---------- Echte Einbauten: Fotostrecke (2.15.0) ---------- */
.ld-ref__strecke { position: relative; margin-top: 24px; }
.ld-ref__rail { display: flex; gap: 14px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; padding: 2px 2px 14px; scrollbar-width: thin; scrollbar-color: rgba(15, 23, 42, 0.22) transparent; }
.ld-ref__rail::-webkit-scrollbar { height: 6px; }
.ld-ref__rail::-webkit-scrollbar-track { background: transparent; }
.ld-ref__rail::-webkit-scrollbar-thumb { background: rgba(15, 23, 42, 0.18); border-radius: 99px; }
.ld-ref__rail:focus-visible { outline: 2px solid var(--ld-primary); outline-offset: 4px; border-radius: 18px; }
.ld-ref__card { position: relative; flex: 0 0 clamp(250px, 78vw, 360px); margin: 0; scroll-snap-align: start; border-radius: 16px; overflow: hidden; background: var(--ld-ink); box-shadow: 0 6px 20px rgba(15, 23, 42, 0.10); }
.ld-ref__img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.ld-ref__cap { position: absolute; inset: auto 0 0 0; padding: 36px 14px 13px; color: #fff; font-size: 13.5px; font-weight: 600; line-height: 1.35; background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.6) 45%, rgba(15, 23, 42, 0.92)); }
.ld-ref__nav { display: none; }
@media (min-width: 900px) {
	.ld-ref__card { flex: 0 0 340px; }
	.ld-ref__cap { font-size: 14px; }
}
/* Blätterpfeile nur für echte Zeigergeräte - am Touchgerät wird gewischt. */
@media (hover: hover) and (pointer: fine) and (min-width: 900px) {
	.ld-ref__nav { display: grid; place-items: center; position: absolute; top: calc(50% - 30px); width: 44px; height: 44px; padding: 0; border: 1px solid var(--ld-line); border-radius: 50%; background: #fff; color: var(--ld-ink); box-shadow: 0 6px 18px rgba(15, 23, 42, 0.16); cursor: pointer; z-index: 2; transition: transform .15s ease, box-shadow .15s ease; }
	.ld-ref__nav svg { width: 22px; height: 22px; }
	.ld-ref__nav--prev { left: 10px; }
	.ld-ref__nav--next { right: 10px; }
	.ld-ref__nav:hover { transform: scale(1.06); box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22); }
	.ld-ref__nav:disabled { opacity: .3; pointer-events: none; }
}

/* Fotostrecke im Hochformat (2.15.2): Treppenfotos entstehen fast immer
   hochkant - ein 4:3-Beschnitt würde Lift oder Schienenverlauf kappen. */
.ld-ref__img { aspect-ratio: 3 / 4; }
.ld-ref__card { flex: 0 0 clamp(230px, 66vw, 300px); }
@media (min-width: 900px) {
	.ld-ref__card { flex: 0 0 300px; }
}

/* ---------- Pflegekassen-Auswahl: Feld-Knopf + Suchdialog (2.16.0) ---------- */
.ld-sofort__kassenbtn { display: flex; align-items: center; gap: 10px; width: 100%; padding: 12px 14px; border: 1.5px solid var(--ld-line); border-radius: 12px; background: #fff; font: inherit; font-size: 15px; color: var(--ld-steel); cursor: pointer; text-align: left; transition: border-color .15s ease, box-shadow .15s ease; }
.ld-sofort__kassenbtn:hover { border-color: var(--ld-primary); }
.ld-sofort__kassenbtn:focus-visible { outline: none; border-color: var(--ld-primary); box-shadow: 0 0 0 3px var(--ld-primary-soft); }
.ld-sofort__kassenbtn .ld-kbtn__lupe { width: 19px; height: 19px; flex: 0 0 auto; color: var(--ld-steel); }
.ld-sofort__kassenbtn .ld-kbtn__chev { width: 18px; height: 18px; flex: 0 0 auto; margin-left: auto; color: var(--ld-steel); }
.ld-sofort__kassenbtn [data-sa-kassenbtn-txt] { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ld-sofort__kassenbtn.is-set { color: var(--ld-ink); font-weight: 600; border-color: var(--ld-green); }
.ld-sofort__kassenbtn.is-set .ld-kbtn__lupe { color: var(--ld-green); }

.ld-kassen { border: 0; padding: 0; width: min(520px, calc(100vw - 20px)); max-height: min(640px, calc(100dvh - 32px)); border-radius: var(--ld-radius-lg, 24px); box-shadow: 0 30px 90px rgba(15, 23, 42, 0.4); background: #fff; color: var(--ld-ink); overflow: hidden; flex-direction: column; }
.ld-kassen[open] { display: flex; }
.ld-kassen::backdrop { background: rgba(15, 23, 42, 0.55); backdrop-filter: blur(3px); }
@media (max-width: 719px) {
	.ld-kassen { margin: auto 0 0; width: 100vw; max-width: 100vw; max-height: 84dvh; border-radius: 22px 22px 0 0; }
}
.ld-kassen__kopf { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px 12px; }
.ld-kassen__titel { margin: 0; font-family: var(--ld-font-head, inherit); font-size: 20px; }
.ld-kassen__x { display: grid; place-items: center; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--ld-bg); color: var(--ld-ink); cursor: pointer; }
.ld-kassen__x svg { width: 20px; height: 20px; }
.ld-kassen__x:hover { background: var(--ld-line); }
.ld-kassen__such { position: relative; padding: 0 20px 12px; }
.ld-kassen__such svg { position: absolute; left: 34px; top: 14px; width: 19px; height: 19px; color: var(--ld-steel); pointer-events: none; }
.ld-kassen__feld { width: 100%; padding: 13px 14px 13px 42px; border: 1.5px solid var(--ld-line); border-radius: 12px; font: inherit; font-size: 16px; }
.ld-kassen__feld:focus { outline: none; border-color: var(--ld-primary); box-shadow: 0 0 0 3px var(--ld-primary-soft); }
.ld-kassen__liste { overflow-y: auto; padding: 2px 12px 10px; display: flex; flex-direction: column; gap: 2px; min-height: 120px; }
.ld-kassen__opt { display: flex; align-items: center; border: 0; background: none; font: inherit; font-size: 15.5px; color: var(--ld-ink); text-align: left; padding: 13px 14px; border-radius: 12px; cursor: pointer; }
.ld-kassen__opt:hover { background: var(--ld-bg); }
.ld-kassen__opt:focus-visible { outline: none; box-shadow: inset 0 0 0 2px var(--ld-primary); }
.ld-kassen__opt.is-akt { background: var(--ld-primary-soft); font-weight: 600; }
.ld-kassen__opt.is-akt::after { content: ""; margin-left: auto; width: 10px; height: 16px; border-right: 3px solid var(--ld-primary); border-bottom: 3px solid var(--ld-primary); transform: rotate(45deg) translateY(-2px); }
.ld-kassen__leer { margin: 8px 8px 4px; padding: 16px; border: 1.5px dashed var(--ld-line); border-radius: 14px; text-align: center; }
.ld-kassen__leer p { margin: 0 0 10px; color: var(--ld-steel); font-size: 14px; }
.ld-kassen__uebernehmen { border: 0; border-radius: 999px; background: var(--ld-primary); color: #fff; font: inherit; font-size: 14.5px; font-weight: 600; padding: 11px 18px; cursor: pointer; }
.ld-kassen__uebernehmen:hover { background: var(--ld-primary-deep); }
.ld-kassen__fuss { padding: 10px 20px 18px; border-top: 1px solid var(--ld-line); display: flex; flex-direction: column; gap: 6px; }
.ld-kassen__eigen { align-self: flex-start; border: 0; background: none; font: inherit; font-size: 14.5px; font-weight: 600; color: var(--ld-primary-text); cursor: pointer; padding: 4px 0; text-decoration: underline; text-underline-offset: 3px; }
.ld-kassen__note { font-size: 12.5px; color: var(--ld-steel); line-height: 1.45; }

/* ---------- Übernommene Kundendaten nach „Weiteres Angebot“ (2.16.4) ---------- */
.ld-merker { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 14px; margin: 0 0 14px; padding: 10px 14px; border: 1px solid var(--ld-green); border-radius: 12px; background: var(--ld-green-soft); font-size: 14px; line-height: 1.45; color: var(--ld-ink); }
.ld-merker__leeren { margin-left: auto; border: 0; background: none; padding: 2px 0; font: inherit; font-size: 13.5px; font-weight: 600; color: var(--ld-steel); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.ld-merker__leeren:hover { color: var(--ld-ink); }
@media (max-width: 560px) { .ld-merker__leeren { margin-left: 0; } }

/* ---------- EU-Gewährleistungslabel im Shop (2.16.7) ---------- */
/* Sofortangebot-Knopf auf der Ecwid-Produktseite (inc/ecwid.php) */
.ld-pcta { box-sizing: border-box; margin: 14px 0 10px; padding: 14px 16px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; border: 1.5px solid var(--ld-green); border-radius: 12px; background: #f2faf5; background: color-mix(in srgb, var(--ld-green) 8%, #fff); font-family: inherit; }
.ld-pcta * { box-sizing: border-box; }
.ld-pcta__txt { display: flex; flex-direction: column; gap: 2px; flex: 1 1 220px; min-width: 0; }
.ld-pcta__txt strong { font-size: 15px; font-weight: 700; color: var(--ld-ink); line-height: 1.3; }
.ld-pcta__txt span { font-size: 12.5px; color: var(--ld-steel); line-height: 1.4; }
.ld-pcta__btn { flex: 0 0 auto; border: 0; border-radius: 999px; background: var(--ld-green); color: #fff; font-weight: 700; font-size: 14.5px; padding: 11px 20px; cursor: pointer; font-family: inherit; transition: filter .15s ease, transform .15s ease; }
.ld-pcta__btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
@media (max-width: 560px) { .ld-pcta__btn { flex: 1 1 100%; } }

.ld-gwl { box-sizing: border-box; display: flex; align-items: center; gap: 12px; width: 100%; max-width: 100%; margin: 18px 0 6px; padding: 10px 12px; border: 1px solid var(--ld-line); border-radius: 12px; background: #fff; }
.ld-gwl * { box-sizing: border-box; }
.ld-gwl__mini { width: 34px; height: auto; flex: 0 0 auto; border-radius: 3px; }
.ld-gwl__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ld-gwl__txt strong { font-size: 13.5px; font-weight: 600; color: var(--ld-ink); line-height: 1.3; }
.ld-gwl__txt span { font-size: 12px; color: var(--ld-steel); line-height: 1.3; }
.ld-gwl__btn { margin-left: auto; flex: 0 0 auto; border: 1px solid var(--ld-line); border-radius: 999px; background: #fff; font: inherit; font-size: 13px; font-weight: 600; color: var(--ld-primary-text, var(--ld-ink)); padding: 7px 14px; cursor: pointer; }
.ld-gwl__btn:hover { border-color: var(--ld-primary); }
.ld-gwl.is-voll { display: block; padding: 0; border: 0; background: none; }
.ld-gwl__voll { width: 100%; max-width: 340px; height: auto; display: block; border: 1px solid var(--ld-line); border-radius: 10px; }
@media (max-width: 480px) {
	.ld-gwl { flex-wrap: wrap; }
	.ld-gwl__btn { margin-left: 0; width: 100%; text-align: center; }
}
.ld-gwl-dlg { border: 0; padding: 0; width: min(560px, calc(100vw - 24px)); max-height: min(92dvh, 980px); border-radius: 18px; background: #fff; box-shadow: 0 30px 90px rgba(15, 23, 42, .42); overflow: hidden; }
.ld-gwl-dlg[open] { display: flex; flex-direction: column; }
.ld-gwl-dlg::backdrop { background: rgba(15, 23, 42, .55); }
.ld-gwl-dlg__kopf { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px 10px; border-bottom: 1px solid var(--ld-line); }
.ld-gwl-dlg__kopf h3 { margin: 0; font-size: 17px; font-family: var(--ld-font-head, inherit); color: var(--ld-ink); }
.ld-gwl-dlg__x { width: 36px; height: 36px; border: 0; border-radius: 50%; background: var(--ld-bg); font-size: 22px; line-height: 1; color: var(--ld-ink); cursor: pointer; }
.ld-gwl-dlg__bild { overflow: auto; padding: 14px; }
.ld-gwl-dlg__bild img { width: 100%; height: auto; display: block; }
