/* =========================================================================
   ENWIMO – 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) */
	--enwimo-primary: #de8b2d;
	--enwimo-primary-deep: #c37a28;
	/* 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. */
	--enwimo-primary-text: #a06420;
	--enwimo-primary-soft: #de8b2d14;
	--enwimo-green: #2f7d5b;
	--enwimo-green-soft: #2f7d5b14;
	--enwimo-ink: #193d68;
	--enwimo-bg: #eef3f6;

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

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

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

	/* Rhythmus */
	--enwimo-section-pad: clamp(2.75rem, 5vw, 4.25rem);
	--enwimo-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(--enwimo-font-body);
	font-size: 1.0625rem; /* 17 px – bewusst großzügig für die Zielgruppe */
	line-height: 1.65;
	color: var(--enwimo-ink);
	background: var(--enwimo-white);
	-webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--enwimo-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(--enwimo-primary);
	outline-offset: 2px;
	border-radius: 4px;
}

::selection {
	background: var(--enwimo-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 ------------------------------------------------------- */
.enwimo-wrap {
	width: min(100% - 2.5rem, 1200px);
	margin-inline: auto;
}

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

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

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

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

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

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

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

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

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

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

/* ---- 05 Buttons --------------------------------------------------------- */
.enwimo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55em;
	padding: 0.78em 1.5em;
	border: 0;
	border-radius: var(--enwimo-radius-pill);
	font-family: var(--enwimo-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;
}

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

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

.enwimo-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(222, 139, 45, 0.4);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.enwimo-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(--enwimo-radius-pill, 999px);
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.82rem;
	white-space: nowrap;
}

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

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

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

.enwimo-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(--enwimo-line);
	transition: box-shadow 0.2s ease;
}

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

.enwimo-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. */
.enwimo-header.is-scrolled .enwimo-header__row {
	min-height: 3.6rem;
}

/* Logo – die ENWIMO-Bildmarke (Oval mit Kolibri) als Bilddatei. */
.enwimo-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 0;
}

.enwimo-logo__img {
	height: 3.2rem;
	width: auto;
	display: block;
}

/* Auf dunklem Grund liegt die Bildmarke auf einem hellen Passepartout. */
.enwimo-logo--light {
	background: #fff;
	padding: 0.55rem 0.9rem;
	border-radius: 12px;
	box-shadow: 0 10px 26px -18px rgba(0, 0, 0, 0.55);
}

.enwimo-logo--light .enwimo-logo__img {
	height: 2.9rem;
}

@media (max-width: 640px) {
	.enwimo-logo__img { height: 2.7rem; }
}

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

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

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

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

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

/* Untermenüs (Desktop) */
.enwimo-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(--enwimo-line);
	border-radius: var(--enwimo-radius);
	box-shadow: var(--enwimo-shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.enwimo-nav__list li {
	position: relative;
}

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

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

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

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

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

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

.enwimo-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(--enwimo-line);
	border-radius: 12px;
	background: #fff;
	transition: padding 0.25s ease;
	color: var(--enwimo-ink);
	cursor: pointer;
}

.enwimo-burger__close {
	display: none;
}

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

.enwimo-burger[aria-expanded='true'] .enwimo-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. */
.enwimo-burger__label {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--enwimo-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.enwimo-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(--enwimo-primary), var(--enwimo-primary-deep));
	color: #fff;
	box-shadow: var(--enwimo-shadow-primary);
	transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.enwimo-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(--enwimo-primary);
	color: var(--enwimo-primary-deep);
	font-family: var(--enwimo-font-display);
	font-weight: 700;
	font-size: 1.35rem;
}

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

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

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

/* ---- 12 Versprechen-Band ---------------------------------------------------- */
.enwimo-band {
	padding-block: var(--enwimo-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(47, 125, 91, 0.18), transparent 60%),
		var(--enwimo-ink);
	color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

.enwimo-faq__answer p {
	margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.enwimo-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(--enwimo-primary-deep);
}

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

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

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

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

.enwimo-article__thumb {
	margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ---- 15 Abschluss-CTA -------------------------------------------------------------- */
.enwimo-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(--enwimo-radius-lg) + 6px);
	background:
		radial-gradient(30rem 16rem at 100% 0%, rgba(255, 255, 255, 0.16), transparent 55%),
		linear-gradient(135deg, var(--enwimo-primary), var(--enwimo-primary-deep));
	color: #fff;
	box-shadow: 0 22px 48px rgba(222, 139, 45, 0.35);
}

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

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

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

.enwimo-cta .enwimo-btn--primary {
	background: #fff;
	color: var(--enwimo-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. */
.enwimo-tel--cta {
	color: var(--enwimo-ink);
	font-size: 1.1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.enwimo-footer__bottom p {
	margin: 0;
}

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

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

.enwimo-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(--enwimo-font-body) !important;
}

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

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

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

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

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

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

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

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

html.enwimo-js .enwimo-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.enwimo-js .enwimo-reveal {
		opacity: 1;
		transform: none;
	}
}

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

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

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

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

	.enwimo-hero__visual {
		order: 0;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ---- 4. Die Preis-Anzeige: der Moment, auf den alles zuläuft ---------- */
.enwimo-pricebox {
	position: relative;
	margin: 14px 0 20px;
	padding: 22px 20px;
	border-radius: var(--enwimo-radius);
	background:
		radial-gradient(520px 200px at 80% -10%, rgba(255, 92, 26, .16), transparent 60%),
		var(--enwimo-ink);
	color: #fff;
	overflow: hidden;
}
.enwimo-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;
}
.enwimo-pricebox__main { position: relative; z-index: 1; }
.enwimo-pricebox__pre {
	display: block;
	font-size: .78rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #94a3b8;
	margin-bottom: 2px;
}
.enwimo-pricebox__value {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 2px;
	font-family: var(--enwimo-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;
}
.enwimo-pricebox__dash { color: #64748b; margin: 0 .12em; }
.enwimo-pricebox__cur { color: var(--enwimo-primary); margin-left: .12em; }
.enwimo-pricebox__note {
	display: block;
	margin-top: 8px;
	font-size: .84rem;
	color: #cbd5e1;
}
.enwimo-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: enwimo-step-in .3s ease both;
}
.enwimo-pricebox__subsidy-line {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .88rem;
	color: #cbd5e1;
}
.enwimo-pricebox__subsidy-line .enwimo-icon { color: var(--enwimo-green); }
.enwimo-pricebox__subsidy-line strong {
	color: var(--enwimo-green);
	font-variant-numeric: tabular-nums;
	margin-left: auto;
}
.enwimo-pricebox__net {
	font-family: var(--enwimo-font-display);
	font-weight: 700;
	font-size: 1.02rem;
	color: #fff;
	font-variant-numeric: tabular-nums;
}
.enwimo-calc.is-covered .enwimo-pricebox__net { color: var(--enwimo-green); }
.enwimo-pricebox__fineprint {
	font-size: .74rem;
	line-height: 1.5;
	color: #94a3b8;
	margin-top: 4px;
}

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

.enwimo-opt { position: relative; cursor: pointer; }
.enwimo-opt input { position: absolute; opacity: 0; pointer-events: none; }
.enwimo-opt--chip > span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--enwimo-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;
}
.enwimo-opt--chip:hover > span { border-color: var(--enwimo-line); }
.enwimo-opt--chip:has(input:checked) > span {
	border-color: var(--enwimo-primary);
	background: var(--enwimo-primary-soft);
	color: var(--enwimo-primary);
}
.enwimo-opt--chip-green:has(input:checked) > span {
	border-color: var(--enwimo-green);
	background: var(--enwimo-green-soft);
	color: var(--enwimo-green);
}
.enwimo-opt input:focus-visible ~ span { outline: 3px solid var(--enwimo-primary); outline-offset: 2px; }
.enwimo-opt__save {
	font-size: .76rem;
	font-weight: 700;
	color: var(--enwimo-green);
	font-variant-numeric: tabular-nums;
}
.enwimo-opt--chip:has(input:checked) .enwimo-opt__save { color: inherit; }

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

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

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

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

/* ---- 7. Erfolg -------------------------------------------------------- */
.enwimo-calc__success {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 8px;
	padding: clamp(16px, 3vw, 28px) 8px;
}
.enwimo-calc__success-icon {
	display: grid;
	place-items: center;
	width: 64px; height: 64px;
	border-radius: 50%;
	background: var(--enwimo-green-soft);
	color: var(--enwimo-green);
	margin-bottom: 4px;
}
.enwimo-calc__success-icon .enwimo-icon { width: 32px; height: 32px; }
.enwimo-calc__success h3 { margin: 0; font-size: 1.28rem; }
.enwimo-calc__success p { color: var(--enwimo-steel); margin: 0; font-size: .92rem; }
.enwimo-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 ----------------------------------------- */
.enwimo-shopfront {
	background: #fff;
	border: 1px solid var(--enwimo-line);
	border-radius: var(--enwimo-radius);
	box-shadow: var(--enwimo-shadow-sm);
	padding: clamp(10px, 2vw, 22px);
	min-height: 420px;
}
.enwimo-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(--enwimo-line);
	border-radius: var(--enwimo-radius);
	box-shadow: var(--enwimo-shadow-sm);
	padding: clamp(22px, 3.5vw, 34px) clamp(22px, 4vw, 40px);
}
.enwimo-bridge__title { font-size: 1.3rem; margin-bottom: .25em; }
.enwimo-bridge__text { color: var(--enwimo-steel); margin: 0; max-width: 44em; }
.enwimo-bridge__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

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

/* ---- 10. Zahlen-Leiste ------------------------------------------------ */
.enwimo-stats {
	background: var(--enwimo-ink);
	color: #fff;
	padding: clamp(2.4rem, 5vw, 3.6rem) 0;
	position: relative;
	overflow: hidden;
}
.enwimo-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;
}
.enwimo-stats__list {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(18px, 3vw, 34px);
}
.enwimo-stat { text-align: center; }
.enwimo-stat__value {
	display: block;
	font-family: var(--enwimo-font-display);
	font-weight: 700;
	font-size: clamp(1.7rem, 3.6vw, 2.4rem);
	line-height: 1.1;
	letter-spacing: -.02em;
	color: var(--enwimo-primary);
	font-variant-numeric: tabular-nums;
}
.enwimo-stat__label {
	display: block;
	margin-top: 6px;
	font-size: .86rem;
	color: #cbd5e1;
	line-height: 1.4;
}

/* ---- 11. Artikel-Boxen ------------------------------------------------ */
.enwimo-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 */
	.enwimo-inquiry .enwimo-calc__stairs { grid-template-columns: repeat(3, 1fr); }
	.enwimo-inquiry .enwimo-stairpick {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: 8px;
		padding: 20px 14px;
	}
	.enwimo-inquiry .enwimo-stairpick__art { width: 76px; height: 76px; }
	.enwimo-inquiry .enwimo-stair { width: 54px; height: 54px; }
}

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

@media (max-width: 560px) {
	.enwimo-calc__fields { grid-template-columns: 1fr; }
	.enwimo-calc__tune-row { grid-template-columns: 1fr; gap: 6px; }
	.enwimo-calc__nav { flex-wrap: wrap; }
	.enwimo-calc__nav .enwimo-btn { flex: 1; }
	.enwimo-compare__head { display: none; }
	.enwimo-compare__row { grid-template-columns: 1fr; }
	.enwimo-compare__cell--them { text-decoration: line-through; opacity: .7; font-size: .86rem; padding-bottom: 4px; }
	.enwimo-compare__cell--us { padding-top: 4px; }
	.enwimo-compare__row + .enwimo-compare__row .enwimo-compare__cell--us { border-top: 0; }
	.enwimo-stairpick { grid-template-columns: 48px minmax(0, 1fr); }
	.enwimo-stairpick__art { width: 48px; height: 48px; }
	.enwimo-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. */
.enwimo-btn--text {
	background: none;
	border: 0;
	color: var(--enwimo-steel);
	padding-inline: .4em;
	box-shadow: none;
}
.enwimo-btn--text:hover { color: var(--enwimo-primary); background: rgba(15, 23, 42, .04); }
.enwimo-btn--text .enwimo-icon { transform: rotate(-90deg); }

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

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

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

/* ---- 14. Rechner: offene Spanne & nicht kalkulierbare Fälle ------------ */
.enwimo-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. */
.enwimo-pricebox__individual {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 6px;
	padding: 6px 4px;
	animation: enwimo-step-in .3s ease both;
}
.enwimo-pricebox__individual-icon {
	display: grid;
	place-items: center;
	width: 52px; height: 52px;
	border-radius: 14px;
	background: rgba(255, 92, 26, .14);
	color: var(--enwimo-primary);
	margin-bottom: 4px;
}
.enwimo-pricebox__individual-icon .enwimo-icon { width: 26px; height: 26px; }
.enwimo-pricebox__individual strong {
	font-family: var(--enwimo-font-display);
	font-size: 1.05rem;
	line-height: 1.35;
	color: #fff;
}
.enwimo-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 */
.enwimo-calc.is-individual .enwimo-pricebox { padding: 20px; }

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

/* ---- 15. Hervorhebung beim Sprung zum Rechner ------------------------- */
.enwimo-hero__calc.is-flash {
	animation: enwimo-flash 1.5s ease;
}
@keyframes enwimo-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) {
	.enwimo-hero__calc.is-flash { animation: none; outline: 3px solid var(--enwimo-primary); outline-offset: 4px; }
}

/* ---- 16. Hero-Punkte: jetzt Aussagen mit eigenem Symbol ---------------- */
.enwimo-hero__bullets {
	flex-direction: column;
	gap: .6rem;
	align-items: flex-start;
}
.enwimo-hero__bullets li {
	align-items: flex-start;
	gap: .6rem;
	line-height: 1.4;
	font-size: .95rem;
}
.enwimo-icon--bullet {
	width: 20px;
	height: 20px;
	flex: none;
	margin-top: 1px;
	color: var(--enwimo-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(--enwimo-font-display) !important;
	font-weight: 700 !important;
	border-radius: var(--enwimo-radius-sm) !important;
	border: 1.5px solid var(--enwimo-line) !important;
	background: #fff !important;
	color: var(--enwimo-ink) !important;
	box-shadow: var(--enwimo-shadow-sm);
}

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

.ec-size .ec-menu-item--active > .ec-menu-item__link,
.ec-size .ec-menu-item__link:hover {
	color: var(--enwimo-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(--enwimo-radius) !important;
		box-shadow: var(--enwimo-shadow-md) !important;
		padding: 8px !important;
		background: #fff !important;
	}

	.ec-size .ec-menu-item {
		border-bottom: 1px solid var(--enwimo-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(--enwimo-radius-sm) !important;
	font-family: var(--enwimo-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(.enwimo-shop-cart) .ec-minicart,
body:not(.enwimo-shop-cart) .ec-cart-widget {
	display: none !important;
}

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

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

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

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

/* Nur für Screenreader */
.enwimo-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 */
.enwimo-wrap--faq {
	max-width: 880px;
	margin-inline: auto;
	padding-inline: var(--enwimo-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 ---- */
.enwimo-faqg__search {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 22px;
}
.enwimo-faqg__search input {
	width: 100%;
	font: inherit;
	font-size: 1.02rem;
	padding: 1em 3.2em 1em 1.6em;
	border: 1.5px solid var(--enwimo-line);
	border-radius: var(--enwimo-radius-pill);
	background: #fff;
	box-shadow: var(--enwimo-shadow-sm);
	transition: border-color .15s ease, box-shadow .15s ease;
}
.enwimo-faqg__search input:focus {
	outline: none;
	border-color: var(--enwimo-primary);
	box-shadow: 0 0 0 4px var(--enwimo-primary-soft);
}
.enwimo-faqg__search input::-webkit-search-cancel-button { display: none; }
.enwimo-faqg__search-icon {
	position: absolute;
	right: 22px;
	width: 20px; height: 20px;
	color: var(--enwimo-steel);
	pointer-events: none;
}

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

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

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

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

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

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

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

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

.enwimo-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(--enwimo-line);
	flex: none;
}
.enwimo-faqm__title {
	font-size: clamp(1.2rem, 2.4vw, 1.5rem);
	margin: 0;
	line-height: 1.25;
}
.enwimo-faqm__count {
	font-family: var(--enwimo-font-body);
	font-weight: 500;
	font-size: .92rem;
	color: var(--enwimo-steel);
	margin-left: .5em;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}
.enwimo-faqm__close {
	display: grid;
	place-items: center;
	width: 40px; height: 40px;
	border: 1px solid var(--enwimo-line);
	border-radius: 50%;
	background: #fff;
	color: var(--enwimo-steel);
	cursor: pointer;
	flex: none;
	transition: background .15s ease, color .15s ease;
}
.enwimo-faqm__close:hover { background: var(--enwimo-ink); color: #fff; border-color: var(--enwimo-ink); }

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

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

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

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

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

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

.enwimo-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(--enwimo-line);
	font-size: .93rem;
	color: var(--enwimo-steel);
	flex: none;
}

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

@media (prefers-reduced-motion: reduce) {
	.enwimo-faqm[open], .enwimo-faqc__a { animation: none; }
	.enwimo-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. */
.enwimo-pagehero + .enwimo-section,
.enwimo-pagehero + .enwimo-article,
.enwimo-pagehero + .enwimo-wrap {
	padding-top: clamp(1.6rem, 2.6vw, 2.2rem);
}

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

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

/* ---- Aufruf ---- */
.enwimo-artfoot__cta {
	margin-top: clamp(1.6rem, 3vw, 2.4rem);
	padding: clamp(1.8rem, 3.5vw, 2.6rem);
	border-radius: var(--enwimo-radius-lg);
	background:
		radial-gradient(30rem 16rem at 100% 0%, rgba(255, 92, 26, .18), transparent 60%),
		var(--enwimo-ink);
	color: #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.enwimo-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;
}
.enwimo-artfoot__cta-title {
	position: relative;
	z-index: 1;
	font-size: clamp(1.3rem, 2.6vw, 1.7rem);
	margin: 0 0 .4em;
	color: #fff;
}
.enwimo-artfoot__cta-text {
	position: relative;
	z-index: 1;
	color: #cbd5e1;
	margin: 0 auto 1.4em;
	max-width: 34em;
}
.enwimo-artfoot__cta-actions {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
}
.enwimo-artfoot__cta .enwimo-tel--cta,
.enwimo-artfoot__cta .enwimo-tel--cta .enwimo-icon { color: #fff; }

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

@media (max-width: 560px) {
	.enwimo-artfoot__share { gap: 8px; }
	.enwimo-artfoot__share-label { width: 100%; margin-bottom: 2px; }
	.enwimo-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.
 * ---------------------------------------------------------------------- */
.enwimo-carousel { position: relative; }

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

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

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

/* Abschluss-Karte im Karussell: der Weg zur kompletten Übersicht */
.enwimo-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(--enwimo-font-display);
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--enwimo-ink);
	background: transparent;
	border: 2px dashed var(--enwimo-line);
	border-radius: var(--enwimo-radius);
	box-shadow: none;
	transition: border-color .15s ease, color .15s ease, transform .15s ease;
}
.enwimo-morecard:hover {
	border-color: var(--enwimo-primary);
	color: var(--enwimo-primary-text);
	transform: translateY(-2px);
}
.enwimo-morecard__icon { width: 34px; height: 34px; color: var(--enwimo-primary); }
.enwimo-morecard__sub {
	font-family: var(--enwimo-font-body);
	font-weight: 500;
	font-size: .9rem;
	color: var(--enwimo-steel);
}

/* Versprechen-Chips im Band: die drei Zusagen als greifbare Punkte */
.enwimo-band__checks {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 12px;
	list-style: none;
	margin: 0.2rem 0 0.3rem;
	padding: 0;
}
.enwimo-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(--enwimo-radius-pill, 999px);
	background: rgba(255, 255, 255, 0.07);
	font-weight: 600;
	font-size: 0.95rem;
	color: #fff;
}
.enwimo-band__checks .enwimo-icon {
	color: var(--enwimo-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.
 * ---------------------------------------------------------------------- */
.enwimo-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;
}
.enwimo-pagepop[hidden] { display: none !important; }

.enwimo-pagepop__card {
	background: var(--enwimo-white, #fff);
	border-radius: var(--enwimo-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;
}

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

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

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

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

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

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

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

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

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

.enwimo-blogbar__empty {
	text-align: center;
	padding: clamp(2rem, 5vw, 3.5rem) 1rem;
	border: 2px dashed var(--enwimo-line);
	border-radius: var(--enwimo-radius-lg, 24px);
	color: var(--enwimo-steel);
}
.enwimo-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.
 * ---------------------------------------------------------------------- */
.enwimo-reader {
	border: 0;
	padding: 0;
	width: min(860px, calc(100vw - 24px));
	max-height: calc(100dvh - 24px);
	border-radius: var(--enwimo-radius-lg, 24px);
	box-shadow: 0 30px 90px rgba(15, 23, 42, 0.4);
	background: var(--enwimo-white, #fff);
	color: var(--enwimo-ink);
	overflow: hidden;
	display: none;
	flex-direction: column;
}
.enwimo-reader[open] { display: flex; }
.enwimo-reader::backdrop {
	background: rgba(15, 23, 42, 0.6);
	backdrop-filter: blur(3px);
}
@media (max-width: 700px) {
	.enwimo-reader {
		width: 100vw;
		height: 100dvh;
		max-height: 100dvh;
		border-radius: 0;
	}
}

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

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

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

.enwimo-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));
}
.enwimo-reader__body h1 {
	font-family: var(--enwimo-font-display);
	font-size: calc(1.55rem * var(--ldr-fs, 1));
	line-height: 1.25;
	margin: 0 0 0.7em;
}
.enwimo-reader__body .enwimo-entry { font-size: inherit; }

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

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

/* Lesemodus: Teilen-Zeile und Eigenwerbung am Artikelende */
.enwimo-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(--enwimo-line);
	font-size: 0.9rem;
	color: var(--enwimo-steel);
}
.enwimo-reader__pill {
	font: inherit;
	font-size: 0.88rem;
	font-weight: 700;
	padding: 8px 15px;
	border: 1.5px solid var(--enwimo-line);
	border-radius: var(--enwimo-radius-pill, 999px);
	background: var(--enwimo-white, #fff);
	color: var(--enwimo-ink);
	text-decoration: none;
	cursor: pointer;
}
.enwimo-reader__pill:hover { border-color: var(--enwimo-primary); color: var(--enwimo-primary-text, #a06420); }
.enwimo-reader__pill--wa { border-color: rgba(47, 125, 91, 0.4); color: #0b7c49; }

.enwimo-reader__cta {
	background:
		radial-gradient(26rem 15rem at 12% 120%, rgba(255, 92, 26, 0.28), transparent 60%),
		var(--enwimo-ink, #193d68);
	color: #fff;
	border-radius: var(--enwimo-radius-lg, 24px);
	padding: clamp(24px, 4vw, 36px) 22px;
	text-align: center;
}
.enwimo-reader__cta h2 {
	font-family: var(--enwimo-font-display);
	font-size: clamp(1.25rem, 2.6vw, 1.6rem);
	margin: 0 0 8px;
	color: #fff;
}
.enwimo-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;
}
.enwimo-reader__cta-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
}
.enwimo-reader__cta-tel {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

/* -------------------------------------------------------------------------
 * Über uns & Service-Netzwerk
 * ---------------------------------------------------------------------- */
.enwimo-about { position: relative; overflow: hidden; }
.enwimo-about > .enwimo-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). */
.enwimo-about__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.enwimo-about__shape {
	position: absolute;
	color: var(--enwimo-ink);
	opacity: 0.065;
	transition: translate 0.4s ease-out;
	will-change: translate;
}
.enwimo-about__shape svg {
	display: block;
	width: 100%;
	height: auto;
	animation: enwimo-about-float 17s ease-in-out infinite alternate;
}
.enwimo-about__shape:nth-child(2) svg { animation-duration: 23s; animation-delay: -6s; }
.enwimo-about__shape:nth-child(3) svg { animation-duration: 14s; animation-delay: -3s; }
.enwimo-about__shape:nth-child(4) svg { animation-duration: 26s; animation-delay: -11s; }
.enwimo-about__shape:nth-child(5) svg { animation-duration: 19s; animation-delay: -8s; }
@keyframes enwimo-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) {
	.enwimo-about__shape svg { animation: none; }
}
@media (max-width: 760px) {
	.enwimo-about__shape { opacity: 0.04; }
}

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

.enwimo-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);
}
.enwimo-about__member {
	background: var(--enwimo-white, #fff);
	border: 1px solid var(--enwimo-line);
	border-radius: var(--enwimo-radius-lg, 24px);
	box-shadow: var(--enwimo-shadow-sm);
	padding: 26px 18px 22px;
	text-align: center;
	display: grid;
	justify-items: center;
	gap: 4px;
}
.enwimo-about__face {
	width: 92px;
	height: 92px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--enwimo-white, #fff);
	box-shadow: 0 0 0 2px var(--enwimo-line), var(--enwimo-shadow-sm);
	margin-bottom: 10px;
}
.enwimo-about__face--ini {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--enwimo-font-display);
	font-weight: 700;
	font-size: 1.6rem;
	color: #fff;
	background: linear-gradient(135deg, var(--enwimo-primary, #de8b2d), var(--enwimo-primary-deep, #c37a28));
}
.enwimo-about__name { font-family: var(--enwimo-font-display); font-size: 1.05rem; }
.enwimo-about__role { font-size: 0.9rem; color: var(--enwimo-steel); }

.enwimo-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(--enwimo-ink, #193d68);
	background-size: 36px 36px, 36px 36px, auto, auto;
	color: #fff;
	border: 0;
	border-radius: var(--enwimo-radius-lg, 24px);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
	padding: clamp(24px, 4.5vw, 48px);
}
@media (max-width: 900px) {
	.enwimo-netz { grid-template-columns: 1fr; }
}

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

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

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

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

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

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

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

.enwimo-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);
}
.enwimo-netz__legend li { display: flex; align-items: center; gap: 8px; }
.enwimo-netz__legend strong { color: #fff; }
.enwimo-netz__dot-legend { width: 11px; height: 11px; border-radius: 50%; flex: none; }
.enwimo-netz__dot-legend--hq { background: var(--enwimo-primary, #de8b2d); }
.enwimo-netz__dot-legend--lager { background: #fff; }

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

.enwimo-revs__card {
	flex: 0 0 min(340px, 82vw);
	scroll-snap-align: start;
	background: var(--enwimo-white, #fff);
	border: 1px solid var(--enwimo-line);
	border-radius: var(--enwimo-radius-lg, 24px);
	box-shadow: var(--enwimo-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;
}
.enwimo-revs__card:hover {
	box-shadow: var(--enwimo-shadow-md, 0 14px 34px rgba(15, 23, 42, 0.12));
	transform: translateY(-2px);
}
.enwimo-revs__card:focus-visible {
	outline: 2px solid var(--enwimo-primary);
	outline-offset: 3px;
}

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

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

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

.enwimo-revs__name {
	margin-top: auto;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--enwimo-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.
 * ---------------------------------------------------------------------- */
.enwimo-stickybar { display: none; }

@media (max-width: 760px) {
	.enwimo-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(--enwimo-line);
		box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
		transform: translateY(110%);
		transition: transform 0.3s ease;
	}
	.enwimo-stickybar.is-on { transform: translateY(0); }

	.enwimo-stickybar__call,
	.enwimo-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;
	}
	.enwimo-stickybar__call {
		color: #fff;
		background: var(--enwimo-ink);
	}
	.enwimo-stickybar__call svg { width: 17px; height: 17px; }
	.enwimo-stickybar__cta {
		flex: 1.15;
		color: #fff;
		background: linear-gradient(135deg, var(--enwimo-primary), var(--enwimo-primary-deep, #c37a28));
		box-shadow: var(--enwimo-shadow-primary, 0 8px 22px rgba(222, 139, 45, 0.32));
	}

	/* Der KI-Beratungs-Knopf und seine Hinweis-Blase rücken über die Leiste. */
	body:has(.enwimo-stickybar) .ldc-ki-launch { bottom: calc(70px + env(safe-area-inset-bottom, 0px)) !important; }
	body:has(.enwimo-stickybar) .ldc-ki-hint {
		bottom: calc(136px + env(safe-area-inset-bottom, 0px)) !important;
		transition: bottom 0.35s ease;
	}
	body.enwimo-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(.enwimo-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.enwimo-calc-in-view ai-voicereceptionist { bottom: env(safe-area-inset-bottom, 0px); }
	body:has(.enwimo-stickybar) .ldc-ki-launch { transition: bottom 0.35s ease; }
	body.enwimo-calc-in-view .ldc-ki-launch { bottom: calc(14px + env(safe-area-inset-bottom, 0px)) !important; }
}

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