/**
 * Editorial Blog Content — visuelle Schicht für die migrierten Blog-Posts.
 *
 * Wird vom Renderer-Group-Patch in template-parts/acf-renderer.php aktiviert.
 * Klassen entstehen dynamisch beim Rendern, basieren auf section.variant aus
 * dem UxToAcfMapper (default | primary | beige | dark).
 *
 * Token: $primary-color = var(--hzr-color-primary,#2c111d) (aus Mo's resources/sass/variables.scss)
 */

/* ===== Section-Groups (visuelle Wrapper) ===== */

/* Die farbige Flaeche liegt auf der Section SELBST und laeuft damit ueber die
   volle Seitenbreite — so wie auf der Live-Seite. Der Inner begrenzt nur noch
   den Inhalt auf die zentrierte Spalte.
   Jede Variante hat eine eigene, deckende Palette-Farbe: eine Aenderung im
   Admin schlaegt dadurch sofort auf jede Seite durch, die diese Variante
   verwendet. */
/* Buttons ausserhalb der acf-block-button-Huelle (Hero, Karte) folgen
   demselben Set. */
.hzr-section-group .btn-primary,
.hzr-section-group .hzr-btn--primary {
	border-color: var(--hzr-sec-btn-bg);
	background-color: var(--hzr-sec-btn-bg);
	color: var(--hzr-sec-btn-text);
}

/* Jede Variante setzt drei lokale Werte: Schrift, Buttonflaeche und
   Button-Schrift. Weil sie AUF der Section stehen, gelten sie ausschliesslich
   fuer deren Inhalt — eine Section daneben bleibt unberuehrt. Die Regeln
   weiter unten lesen nur noch diese drei Werte, nicht mehr die Variante. */
.hzr-section-group {
	padding: 0;
	margin: 0;

	--hzr-sec-text: var(--hzr-color-primary, #2c111d);
	--hzr-sec-btn-bg: var(--hzr-color-accent, #bd5182);
	--hzr-sec-btn-text: #fff;
}

.hzr-section-group--primary {
	background: var(--hzr-color-surface-rose, #f7ebf1);

	--hzr-sec-text: var(--hzr-color-surface-rose-text, #2c111d);
	--hzr-sec-btn-bg: var(--hzr-color-surface-rose-btn, #bd5182);
	--hzr-sec-btn-text: var(--hzr-color-surface-rose-btn-text, #ffffff);
}

.hzr-section-group--beige {
	background: var(--hzr-color-surface-beige, #f8f1ec);

	--hzr-sec-text: var(--hzr-color-surface-beige-text, #2c111d);
	--hzr-sec-btn-bg: var(--hzr-color-surface-beige-btn, #bd5182);
	--hzr-sec-btn-text: var(--hzr-color-surface-beige-btn-text, #ffffff);
}

.hzr-section-group--pink {
	background: var(--hzr-color-surface-pink, #bd5182);
	color: var(--hzr-sec-text);

	--hzr-sec-text: var(--hzr-color-surface-pink-text, #ffffff);
	--hzr-sec-btn-bg: var(--hzr-color-surface-pink-btn, #ffffff);
	--hzr-sec-btn-text: var(--hzr-color-surface-pink-btn-text, #bd5182);
}

.hzr-section-group--gray {
	background: var(--hzr-color-surface-gray, #e9e9e9);

	--hzr-sec-text: var(--hzr-color-surface-gray-text, #2c111d);
	--hzr-sec-btn-bg: var(--hzr-color-surface-gray-btn, #bd5182);
	--hzr-sec-btn-text: var(--hzr-color-surface-gray-btn-text, #ffffff);
}

.hzr-section-group--dark {
	background: var(--hzr-color-surface-dark, #2e2e2e);
	color: var(--hzr-sec-text);

	--hzr-sec-text: var(--hzr-color-surface-dark-text, #ffffff);
	--hzr-sec-btn-bg: var(--hzr-color-surface-dark-btn, #bd5182);
	--hzr-sec-btn-text: var(--hzr-color-surface-dark-btn-text, #ffffff);
}


/* Kein Aussenabstand: sonst blitzt zwischen zwei farbigen Baendern Weiss
   durch. Die vertikalen Abstaende macht die Innenflaeche (sections.css).
   flow-root: bei padding 0 (space-none) wuerde der Rand des letzten Kind-
   Elements sonst aus der Section herauskollabieren — zwischen zwei
   gleichfarbigen Baendern entsteht dann ein weisser Streifen. */
.hzr-section-group-inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 56px 32px;
	background: transparent;
	display: flow-root;
}

.hzr-section-group--default .hzr-section-group-inner {
	padding-left: 0;
	padding-right: 0;
}

.hzr-section-group-heading {
	text-align: center;
	color: var(--hzr-sec-text);
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 32px;
	line-height: 1.3;
}


/* Content-Pages rendern ACF-Sections full-bleed. Die eigentliche
   Inhaltsbreite bleibt begrenzt, aber farbige Section-Hintergruende laufen
   ueber die gesamte Viewport-Breite wie auf den Live-Content-Seiten. */
.acf-page-content--blocks {
	overflow: hidden;
}

.acf-page-content--blocks .hzr-section-group {
	margin: 0;
}

/* Die Variantenfarben stehen jetzt weiter oben an der Section selbst und
   gelten fuer beide Inhaltsmodelle. Hier bleibt nur die abweichende
   Innengeometrie der migrierten Content-Seiten. */
.acf-page-content--blocks .hzr-section-group-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 80px 32px;
}

.acf-page-content--blocks .hzr-section-group--default .hzr-section-group-inner {
	padding-top: 64px;
	padding-bottom: 64px;
}

/* ===== Pair: adjacent text + image side-by-side ===== */
/* Wird vom acf-renderer um direkt benachbarte text+image / image+text Bloecke
   gelegt. Rekonstruiert das 2-Col-Layout, das emit_row beim Flatten verliert. */

.hzr-section-group .hzr-pair {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
	margin: 0 0 28px;
}

/* --reverse ist nur noch semantischer Marker fuer "image kam zuerst in den
   Daten" — kein flex-direction-Override mehr, weil der Renderer die DOM-
   Reihenfolge bereits korrekt setzt (image-first → image links, sonst rechts). */

.hzr-section-group .hzr-pair > .acf-block {
	flex: 1 1 0;
	min-width: 0;
	margin: 0;
}

.hzr-section-group .hzr-pair > .hzr-pair-content {
	flex: 1 1 0;
	min-width: 0;
}

.hzr-section-group .hzr-pair > .hzr-pair-content > .acf-block:last-child {
	margin-bottom: 0;
}

.hzr-section-group .hzr-pair > .acf-block-image {
	max-width: 100%;
}

.hzr-section-group .hzr-pair > .acf-block-image img {
	width: 100%;
	height: auto;
}

@media (max-width: 768px) {
	.hzr-section-group .hzr-pair {
		flex-direction: column;
		gap: 24px;
	}
}

/* ===== ACF-Blöcke innerhalb einer Section-Group ===== */

.hzr-section-group .acf-block-text {
	color: var(--hzr-sec-text);
	font-size: 17px;
	line-height: 1.7;
	margin: 0 0 28px;
}


.hzr-section-group .acf-block-text p {
	margin: 0 0 1.2em;
}

.hzr-section-group .acf-block-text h1,
.hzr-section-group .acf-block-text h2,
.hzr-section-group .acf-block-text h3,
.hzr-section-group .acf-block-text h4 {
	color: var(--hzr-sec-text);
	margin: 1.6em 0 0.6em;
	font-weight: 600;
}

/* Legacy-WYSIWYG hat oft <strong>Headline</strong> in <h2>/<h3> verschachtelt.
   <strong> erzwingt sonst font-weight: bold (700) und ueberschreibt die
   Heading-Regel. Wir normalisieren auf 600 fuer alle Headline-Levels. */
.hzr-section-group .acf-block-text h1 strong,
.hzr-section-group .acf-block-text h2 strong,
.hzr-section-group .acf-block-text h3 strong,
.hzr-section-group .acf-block-text h4 strong {
	font-weight: 600;
}


.hzr-section-group .acf-block-text h2 {
	font-size: 24px;
}

.hzr-section-group .acf-block-text h3 {
	font-size: 19px;
}

.hzr-section-group .acf-block-text h4 {
	font-size: 17px;
}

.hzr-section-group .acf-block-text a {
	color: var(--hzr-color-accent,#bd5182);
	text-decoration: underline;
}

/* ===== Standalone-Heading (eigener Block) ===== */

.hzr-section-group .acf-block-heading {
	color: var(--hzr-sec-text);
	text-align: center;
	margin: 32px 0 16px;
	font-weight: 600;
}

/* ===== Bilder ===== */

.hzr-section-group .acf-block-image {
	margin: 42px auto;
	text-align: center;
	border-radius: 12px;
	transition: transform 0.45s ease;
	transform-origin: center;
	will-change: transform;
}

.hzr-section-group .acf-block-image img {
	max-width: 100%;
	height: auto;
	border-radius: inherit;
	display: block;
	margin: 0 auto;
}

.hzr-section-group .acf-block-image:hover {
	transform: scale(1.045);
}

.hzr-section-group .hzr-image-grid {
	display: grid;
	gap: 16px;
	margin: 36px auto 0;
}

.hzr-section-group .hzr-image-grid > .acf-block-image {
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

.hzr-section-group .hzr-image-grid > .acf-block-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hzr-section-group .hzr-image-grid--count-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
}

.hzr-section-group .hzr-image-grid--count-3 > .acf-block-image {
	height: auto;
}

.hzr-section-group .hzr-image-grid--count-3 > .acf-block-image img {
	height: auto;
	object-fit: contain;
}

.hzr-section-group .hzr-image-grid--count-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hzr-section-group .hzr-image-grid--count-5 {
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: repeat(2, minmax(0, 375px));
}

.hzr-section-group .hzr-image-grid--count-5 > .acf-block-image:first-child {
	grid-row: 1 / span 2;
}

.hzr-section-group .hzr-image-grid--equal {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	grid-template-rows: none;
}

.hzr-section-group .hzr-image-grid--equal > .acf-block-image:first-child {
	grid-row: auto;
}

.hzr-section-group .hzr-image-grid--equal > .acf-block-image,
.hzr-section-group .hzr-image-grid--equal > .acf-block-image img {
	height: auto;
}

.hzr-section-group .acf-block-image--full {
	max-width: 100%;
}

.hzr-section-group .acf-block-image figcaption {
	margin-top: 12px;
	font-size: 14px;
	color: color-mix(in srgb,var(--hzr-color-primary,#2c111d) 70%,transparent);
	font-style: italic;
}

/* ===== Buttons (CTA) ===== */

.hzr-section-group .acf-block-button {
	text-align: center;
	margin: 32px 0;
}

/* Primary-CTA-Button im Stil von Mos Live-Flatsome (Pille, rosa-pink,
   uppercase, soft glow). Properties aus den Live-DevTools entnommen. */
.hzr-section-group .acf-block-button .btn {
	display: inline-block;
	padding: 5px 20px;
	min-height: 2.5em;
	line-height: 2.4em;
	border-color: var(--hzr-sec-btn-bg);
	background-color: var(--hzr-sec-btn-bg);
	color: var(--hzr-sec-btn-text);
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.97em;
	font-weight: 600;
	border: 1px solid transparent;
	border-radius: 50px;
	box-shadow: 0 4px 30px color-mix(in srgb,var(--hzr-color-accent,#bd5182) 31%,transparent);
	transition: transform 0.3s, border 0.3s, background 0.3s, box-shadow 0.3s, opacity 0.3s, color 0.3s;
	cursor: pointer;
	box-sizing: border-box;
}

.hzr-section-group .acf-block-button .btn .mdi {
	display: inline-block;
	font-size: 1.18em;
	line-height: 1;
	margin-right: 0.45em;
	vertical-align: -0.12em;
}

/* Hover leitet sich aus der Buttonfarbe der Section ab, damit kein zweiter
   Farbwert gepflegt werden muss. */
.hzr-section-group .acf-block-button .btn:hover,
.hzr-section-group .acf-block-button .btn:focus {
	background-color: var(--hzr-sec-btn-bg);
	box-shadow: 0 6px 36px color-mix(in srgb, var(--hzr-sec-btn-bg) 42%, transparent);
	color: var(--hzr-sec-btn-text);
	filter: brightness(0.9);
}

.hzr-section-group .hzr-button-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 32px 0;
}

.hzr-section-group .hzr-button-row > .acf-block-button {
	margin: 0;
}

/* ===== Divider ===== */

.hzr-section-group .acf-block-divider {
	border: none;
	height: 1px;
	background: linear-gradient(90deg, transparent, color-mix(in srgb,var(--hzr-color-primary,#2c111d) 25%,transparent), transparent);
	margin: 48px auto;
	max-width: 240px;
}

.hzr-section-group--dark .acf-block-divider {
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

/* ===== Spacer (height kommt inline) ===== */

.hzr-section-group .acf-block-spacer {
	display: block;
	width: 100%;
}

/* ===== Feature-Box ===== */

.hzr-section-group .acf-block-feature-box {
	background: color-mix(in srgb,var(--hzr-color-primary,#2c111d) 4%,transparent);
	border-radius: 12px;
	padding: 32px;
	margin: 32px auto;
	max-width: 720px;
	text-align: center;
}

.hzr-section-group--primary .acf-block-feature-box {
	background: rgba(255, 255, 255, 0.6);
}

.hzr-section-group .acf-block-feature-box-image {
	width: 80px;
	height: 80px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hzr-section-group .acf-block-feature-box img,
.hzr-section-group .acf-block-feature-box-image__img {
	width: 100% !important;
	height: 100% !important;
	max-width: 80px;
	max-height: 80px;
	object-fit: contain;
	border-radius: 0;
}

.hzr-section-group .acf-block-feature-box-title {
	color: var(--hzr-color-primary,#2c111d);
	font-size: 20px;
	margin: 0 0 8px;
	font-weight: 600;
}

.hzr-section-group .acf-block-feature-box-text {
	color: var(--hzr-color-primary,#2c111d);
	font-size: 15px;
	line-height: 1.6;
}

/* ===== Feature-Grid (auto-gruppierte feature_box-Reihe) ===== */
/* Wird vom acf-renderer um 2+ adjacent feature_box-Bloecke gelegt.
   --cols-N kommt aus der Anzahl der Bloecke in der Reihe (max. 4). */

.hzr-section-group .hzr-feature-grid {
	display: grid;
	gap: 24px;
	margin: 32px 0;
}

.hzr-section-group .hzr-feature-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.hzr-section-group .hzr-feature-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.hzr-section-group .hzr-feature-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.hzr-section-group .hzr-feature-grid--cols-5 { grid-template-columns: repeat(5, 1fr); }

.hzr-section-group .hzr-feature-grid > .acf-block-feature-box {
	margin: 0;
	max-width: none;
}

@media (max-width: 768px) {
	.hzr-section-group .hzr-feature-grid--cols-2,
	.hzr-section-group .hzr-feature-grid--cols-3,
	.hzr-section-group .hzr-feature-grid--cols-4,
	.hzr-section-group .hzr-feature-grid--cols-5 {
		grid-template-columns: 1fr;
	}

	.hzr-section-group .hzr-image-grid,
	.hzr-section-group .hzr-image-grid--count-3,
	.hzr-section-group .hzr-image-grid--count-4,
	.hzr-section-group .hzr-image-grid--count-5 {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.hzr-section-group .hzr-image-grid--count-5 > .acf-block-image:first-child {
		grid-row: auto;
	}

	.hzr-section-group .hzr-image-grid > .acf-block-image,
	.hzr-section-group .hzr-image-grid > .acf-block-image img {
		height: auto;
	}
}

/* ===== Boho-Ortsseiten ===== */

.boho-brautkleider-page .acf-page-content--blocks .hzr-section-group-inner {
	max-width: 1370px;
}

.boho-brautkleider-page .acf-page-content--blocks > .hzr-section-group:first-child .hzr-section-group-inner {
	padding-top: 72px;
	padding-bottom: 40px;
}

.boho-brautkleider-page .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair {
	gap: 78px;
}

.boho-brautkleider-page .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair > .acf-block-image {
	flex: 0 1 430px;
}

.boho-brautkleider-page .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair > .hzr-pair-content {
	flex: 1 1 640px;
	text-align: center;
}

.boho-brautkleider-page .acf-page-content--blocks > .hzr-section-group:first-child .acf-block-text h1 {
	margin-top: 0;
	line-height: 1.15;
}

.boho-brautkleider-page .acf-page-content--blocks > .hzr-section-group:first-child .acf-block-divider {
	width: 140px;
	max-width: 140px;
	height: 2px;
	margin: 28px auto;
	background: var(--hzr-color-accent,#bd5182);
}

.boho-brautkleider-page .acf-page-content--blocks > .hzr-section-group:first-child .acf-block-button {
	display: inline-block;
	margin: 20px 8px 0;
}

.boho-brautkleider-page .acf-page-content--blocks > .hzr-section-group:first-child .hzr-button-row {
	gap: 16px;
	margin: 20px 0 0;
}

.boho-brautkleider-page .acf-page-content--blocks > .hzr-section-group:first-child .hzr-button-row > .acf-block-button {
	display: block;
	margin: 0;
}

.boho-brautkleider-page .acf-block-button--kontakt-route .btn,
.boho-brautkleider-page .acf-block-button--e-mail .btn,
.boho-brautkleider-page .acf-block-button--telefon .btn,
.boho-brautkleider-page .acf-block-button--oeffnungszeiten .btn {
	background: transparent;
	border-color: var(--hzr-color-accent,#bd5182);
	box-shadow: none;
	color: var(--hzr-color-accent,#bd5182);
}

.boho-brautkleider-page .acf-block-button--kontakt-route .btn:hover,
.boho-brautkleider-page .acf-block-button--e-mail .btn:hover,
.boho-brautkleider-page .acf-block-button--telefon .btn:hover,
.boho-brautkleider-page .acf-block-button--oeffnungszeiten .btn:hover {
	background: var(--hzr-color-accent,#bd5182);
	color: #fff;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-sortiment {
	background: #f7ecf0;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-sortiment .hzr-section-group-inner {
	padding-top: 42px;
	padding-bottom: 84px;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-sortiment .acf-block-text {
	margin-bottom: 24px;
	text-align: center;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-sortiment .acf-block-text h2 {
	margin-top: 0;
	font-size: 28px;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-sortiment .hzr-image-grid--count-5 {
	max-width: 1310px;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-sortiment .acf-block-image {
	border-radius: 0;
}

.boho-brautkleider-page .hzr-feature-grid {
	align-items: start;
}

.boho-brautkleider-page .hzr-section-group .acf-block-feature-box {
	background: transparent;
	border-radius: 0;
	padding: 0 12px;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-vorteile .hzr-feature-grid {
	gap: 26px;
	margin-top: 44px;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-vorteile .acf-block-feature-box {
	min-height: 190px;
	padding: 28px 24px 26px;
	background: #fff;
	border: 1px solid color-mix(in srgb,var(--hzr-color-accent,#bd5182) 16%,transparent);
	border-radius: 8px;
	box-shadow: 0 14px 42px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 6%,transparent);
}

.boho-brautkleider-page .hzr-section-group--marker-boho-vorteile .acf-block-feature-box-image {
	width: 72px;
	height: 72px;
	margin-bottom: 18px;
	background: #f7ecf0;
	border: 1px solid color-mix(in srgb,var(--hzr-color-accent,#bd5182) 18%,transparent);
	border-radius: 999px;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-vorteile .acf-block-feature-box-image__img {
	width: 42px !important;
	height: 42px !important;
	filter: invert(13%) sepia(28%) saturate(1330%) hue-rotate(286deg) brightness(88%) contrast(94%);
}

.boho-brautkleider-page .hzr-section-group--marker-boho-vorteile .acf-block-feature-box-text {
	max-width: 310px;
	margin: 0 auto;
	font-size: 15px;
	line-height: 1.48;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-vorteile .acf-block-feature-box-text p {
	margin: 0;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-look .hzr-feature-grid {
	gap: 20px;
	margin-top: 40px;
	max-width: 1040px;
	margin-left: auto;
	margin-right: auto;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-look .acf-block-feature-box {
	padding: 0 10px;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-look .acf-block-feature-box-image {
	width: 76px;
	height: 76px;
	margin-bottom: 14px;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-look .acf-block-feature-box-image__img {
	max-width: 76px;
	max-height: 76px;
	filter: invert(13%) sepia(28%) saturate(1330%) hue-rotate(286deg) brightness(88%) contrast(94%);
}

.boho-brautkleider-page .hzr-section-group .acf-block-feature-box-title {
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-standort .hzr-section-group-inner {
	display: grid;
	grid-template-columns: minmax(420px, 590px) minmax(320px, 500px);
	grid-template-areas:
		"map content"
		"buttons buttons";
	column-gap: 56px;
	row-gap: 36px;
	align-items: center;
	max-width: 1180px;
	padding-top: 116px;
	padding-bottom: 64px;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-standort .acf-block-map {
	grid-area: map;
	width: 100%;
	max-width: 590px;
	min-height: 360px !important;
	margin: 0;
	padding: 0;
	background: #f7ecf0;
	border-radius: 0;
	display: block;
	overflow: hidden;
	text-align: left;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-standort .acf-block-map iframe {
	display: block;
	width: 100%;
	height: 360px;
	min-height: 360px;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-standort .acf-block-text {
	grid-area: content;
	max-width: 500px;
	margin: 0;
	text-align: left;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-standort .acf-block-text h2 {
	margin: 0 0 24px;
	font-size: clamp(28px, 2vw, 34px);
	line-height: 1.35;
	scroll-margin-top: 190px;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-standort .acf-block-text p {
	margin-bottom: 0;
	font-size: 20px;
	line-height: 1.35;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-standort .acf-block-text a {
	color: #4a6078;
	text-decoration: none;
	overflow-wrap: anywhere;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-standort .acf-block-text a:hover,
.boho-brautkleider-page .hzr-section-group--marker-boho-standort .acf-block-text a:focus {
	color: var(--hzr-color-accent,#bd5182);
	text-decoration: underline;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-standort .hzr-button-row {
	grid-area: buttons;
	display: grid;
	grid-template-columns: repeat(3, minmax(150px, 1fr));
	gap: 24px 64px;
	justify-self: center;
	width: 100%;
	max-width: 1000px;
	margin: 2px auto 0;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-standort .hzr-button-row > .acf-block-button {
	margin: 0;
	text-align: center;
}

.boho-brautkleider-page .hzr-section-group--marker-boho-standort .hzr-button-row .btn {
	min-width: 138px;
	box-shadow: none;
}

@media (max-width: 991px) {
	.boho-brautkleider-page .hzr-section-group--marker-boho-standort .hzr-section-group-inner {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-areas:
			"map"
			"content"
			"buttons";
		row-gap: 28px;
		padding-top: 80px;
	}

	.boho-brautkleider-page .hzr-section-group--marker-boho-standort .acf-block-map {
		max-width: none;
	}

	.boho-brautkleider-page .hzr-section-group--marker-boho-standort .acf-block-text {
		max-width: none;
	}

	.boho-brautkleider-page .hzr-section-group--marker-boho-standort .hzr-button-row {
		grid-template-columns: 1fr;
		max-width: 260px;
		gap: 16px;
		margin-top: 0;
	}
}

@media (max-width: 768px) {
	body.boho-brautkleider-page {
		overflow-x: hidden;
	}

	.boho-brautkleider-page .acf-page-content--blocks {
		max-width: 100vw;
		overflow-x: hidden;
		width: 100vw;
	}

	.boho-brautkleider-page .acf-page-content--blocks .hzr-section-group {
		max-width: 100vw;
		padding-left: 0;
		padding-right: 0;
	}

	.boho-brautkleider-page .acf-page-content--blocks .hzr-section-group-inner {
		box-sizing: border-box;
		max-width: 100vw;
		padding-left: 24px;
		padding-right: 24px;
		width: 100%;
	}

	.boho-brautkleider-page .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair {
		display: block;
		gap: 32px;
	}

	.boho-brautkleider-page .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair > .acf-block-image,
	.boho-brautkleider-page .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair > .hzr-pair-content {
		box-sizing: border-box;
		flex: 1 1 auto;
		max-width: calc(100vw - 48px);
		width: 100%;
	}

	.boho-brautkleider-page .hzr-section-group .acf-block-text {
		box-sizing: border-box;
		max-width: calc(100vw - 48px);
		overflow-wrap: break-word;
	}

	.boho-brautkleider-page .acf-page-content--blocks > .hzr-section-group:first-child .acf-block-button {
		display: block;
		margin-left: auto;
		margin-right: auto;
		max-width: 260px;
	}

	.boho-brautkleider-page .acf-page-content--blocks > .hzr-section-group:first-child .acf-block-text h1 {
		font-size: clamp(27px, 8vw, 34px);
		overflow-wrap: break-word;
	}

	.boho-brautkleider-page .hzr-section-group--marker-boho-sortiment .acf-block-text h2 {
		font-size: clamp(24px, 7vw, 30px);
		overflow-wrap: break-word;
	}

	.boho-brautkleider-page .hzr-section-group--marker-boho-vorteile .acf-block-feature-box {
		min-height: 0;
		padding: 24px 20px;
	}

	.boho-brautkleider-page .hzr-section-group--marker-boho-look .hzr-feature-grid--cols-5 {
		grid-template-columns: 1fr;
		gap: 30px;
		max-width: 260px;
	}

	.boho-brautkleider-page .hzr-section-group--marker-boho-look .acf-block-feature-box-image {
		width: 64px;
		height: 64px;
	}

	.boho-brautkleider-page .hzr-section-group--marker-boho-look .acf-block-feature-box {
		max-width: 140px;
		justify-self: center;
		padding-left: 0;
		padding-right: 0;
	}

	.boho-brautkleider-page .hzr-section-group--marker-boho-look .acf-block-feature-box-title {
		font-size: 12px;
		line-height: 1.25;
		max-width: 132px;
		margin-left: auto;
		margin-right: auto;
		overflow-wrap: anywhere;
	}

	.boho-brautkleider-page .hzr-section-group--marker-boho-standort .acf-block-text h2 {
		font-size: clamp(26px, 7.2vw, 30px);
		scroll-margin-top: 150px;
	}

	.boho-brautkleider-page .hzr-section-group--marker-boho-standort .acf-block-text p {
		font-size: 18px;
		line-height: 1.4;
	}
}

@media (max-width: 575px) {
	.boho-brautkleider-page .hzr-section-group .acf-block-text {
		margin-left: 0;
		margin-right: 0;
		max-width: 320px;
	}

	.boho-brautkleider-page .acf-page-content--blocks > .hzr-section-group:first-child .acf-block-text h1 {
		font-size: 28px;
	}
}

/* ===== Galerie ===== */
/* Markup folgt Mos `suites-item` aus resources/views/listing.blade.php:
   .row > .col-lg-4 > .suites-item > .suites-item-image > img
   Pure-Image-Variante ohne body/footer. Die suites-item-Klasse selbst gibt
   border-radius 20px + overflow:hidden vor (Mos _suites.scss). Falls Mos
   kompiliertes all.min.css die Klasse mal nicht enthaelt, kommt der Fallback
   hier zum Tragen. */

.hzr-section-group .acf-block-gallery {
	margin: 48px auto;
}

.hzr-section-group .acf-block-gallery .suites-item {
	border-radius: 20px;
	overflow: hidden;
}

.hzr-section-group .acf-block-gallery .suites-item-image img {
	width: 100%;
	height: auto;
	display: block;
}

.hzr-section-group .acf-block-gallery-caption {
	margin-top: 12px;
	text-align: center;
	font-size: 14px;
	font-style: italic;
	color: color-mix(in srgb,var(--hzr-color-primary,#2c111d) 70%,transparent);
}

.acf-block-gallery-slide--missing {
	display: none !important;
}

/* ===== About: Medien-Logo-Slider ===== */

.hzr-section-group--marker-logos .hzr-section-group-inner {
	max-width: 1040px;
	padding-top: 36px;
	padding-bottom: 44px;
}

.hzr-section-group--marker-logos .acf-block-gallery {
	position: relative;
	margin: 0 auto;
	overflow: hidden;
}

.hzr-section-group--marker-logos .acf-block-gallery .acf-block-gallery-track {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 48px;
	margin-left: 0;
	margin-right: 0;
	padding: 10px 70px 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.hzr-section-group--marker-logos .acf-block-gallery .acf-block-gallery-track::-webkit-scrollbar {
	display: none;
}

.hzr-section-group--marker-logos .acf-block-gallery .col-lg-4 {
	flex: 0 0 min(500px, calc((100% - 96px) / 3));
	max-width: min(500px, calc((100% - 96px) / 3));
	padding-left: 0;
	padding-right: 0;
	scroll-snap-align: center;
}

.hzr-section-group--marker-logos .acf-block-gallery .suites-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 116px;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.hzr-section-group--marker-logos .acf-block-gallery .suites-item-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.hzr-section-group--marker-logos .acf-block-gallery .suites-item-image img {
	width: auto !important;
	height: auto !important;
	max-width: min(100%, 260px);
	max-height: 86px;
	object-fit: contain;
	opacity: 0.82;
	filter: grayscale(12%);
	transition: opacity 0.2s ease, filter 0.2s ease;
}

.hzr-section-group--marker-logos .acf-block-gallery .suites-item-image img:hover {
	opacity: 1;
	filter: none;
}

.acf-block-gallery-slider-button {
	display: none;
}

.hzr-section-group--marker-logos .acf-block-gallery-slider-button {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.88);
	color: var(--hzr-color-primary,#2c111d);
	box-shadow: 0 4px 16px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 16%,transparent);
	cursor: pointer;
	transform: translateY(-50%);
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.hzr-section-group--marker-logos .acf-block-gallery-slider-button:hover,
.hzr-section-group--marker-logos .acf-block-gallery-slider-button:focus {
	background: var(--hzr-color-primary,#2c111d);
	color: #fff;
	box-shadow: 0 7px 22px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 24%,transparent);
}

.hzr-section-group--marker-logos .acf-block-gallery-slider-button .mdi {
	font-size: 30px;
	line-height: 1;
}

.hzr-section-group--marker-logos .acf-block-gallery-slider-button--prev {
	left: 10px;
}

.hzr-section-group--marker-logos .acf-block-gallery-slider-button--next {
	right: 10px;
}

.acf-block-gallery-dots {
	display: none;
}

.hzr-section-group--marker-logos .acf-block-gallery-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
}

.hzr-section-group--marker-logos .acf-block-gallery-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: color-mix(in srgb,var(--hzr-color-primary,#2c111d) 22%,transparent);
	transition: width 0.2s ease, background 0.2s ease;
}

.hzr-section-group--marker-logos .acf-block-gallery-dot.is-active {
	width: 24px;
	background: var(--hzr-color-primary,#2c111d);
}

.hzr-logo-slider-widget {
	width: 100%;
	max-width: 760px;
	margin: 34px auto 0;
}

.hzr-logo-slider-widget .acf-block-gallery {
	position: relative;
	margin: 0 auto;
	overflow: hidden;
}

.hzr-logo-slider-widget .acf-block-gallery .acf-block-gallery-track {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 44px;
	margin: 0;
	padding: 4px 0;
}

.hzr-logo-slider-widget .acf-block-gallery .col-lg-4 {
	flex: 0 1 160px;
	max-width: 160px;
	padding-left: 0;
	padding-right: 0;
}

.hzr-logo-slider-widget .acf-block-gallery .suites-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 82px;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.hzr-logo-slider-widget .acf-block-gallery .suites-item-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.hzr-logo-slider-widget .acf-block-gallery .suites-item-image img {
	width: auto !important;
	height: auto !important;
	max-width: 150px;
	max-height: 76px;
	object-fit: contain;
	opacity: 0.92;
}

.hzr-logo-slider-widget .acf-block-gallery-slider-button,
.hzr-logo-slider-widget .acf-block-gallery-dots {
	display: none !important;
}

@media (max-width: 768px) {
	.hzr-section-group--marker-logos .acf-block-gallery .acf-block-gallery-track {
		gap: 28px;
		padding-left: 54px;
		padding-right: 54px;
	}

	.hzr-section-group--marker-logos .acf-block-gallery .col-lg-4 {
		flex-basis: 72%;
		max-width: 72%;
	}

	.hzr-logo-slider-widget {
		max-width: 100%;
	}

	.hzr-logo-slider-widget .acf-block-gallery .acf-block-gallery-track {
		justify-content: flex-start;
		gap: 30px;
		padding: 0 8px 10px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.hzr-logo-slider-widget .acf-block-gallery .acf-block-gallery-track::-webkit-scrollbar {
		display: none;
	}

	.hzr-logo-slider-widget .acf-block-gallery .col-lg-4 {
		flex: 0 0 54%;
		max-width: 54%;
		scroll-snap-align: center;
	}
}

/* ===== Standort-Seiten ===== */

.standort-page .acf-page-content--blocks .hzr-section-group-inner {
	max-width: 1280px;
}

.standort-page .hzr-section-group--marker-intro-seite .hzr-section-group-inner {
	max-width: 1210px;
	padding-top: 68px;
	padding-bottom: 58px;
}

.standort-page .hzr-section-group--marker-intro-seite .hzr-pair {
	display: grid;
	grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1fr);
	gap: 56px;
	align-items: center;
	margin: 0;
}

.standort-page .hzr-section-group--marker-intro-seite .hzr-pair-content {
	width: 100%;
	max-width: 620px;
	margin: 0 auto;
	text-align: center;
}

.standort-page .hzr-section-group--marker-intro-seite .acf-block-text {
	margin-bottom: 26px;
}

.standort-page .hzr-section-group--marker-intro-seite .acf-block-text h3 {
	margin: 0 0 72px;
	font-size: clamp(18px, 1.5vw, 22px);
	line-height: 1.35;
}

.standort-page .hzr-section-group--marker-intro-seite .acf-block-text h1 {
	margin: 0;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.18;
	overflow-wrap: break-word;
}

.standort-page .hzr-section-group--marker-intro-seite .acf-block-divider {
	width: 240px;
	max-width: 100%;
	margin: 38px auto 34px;
}

.standort-page .hzr-section-group--marker-intro-seite .acf-block-text p {
	font-size: 18px;
	line-height: 1.65;
}

.standort-page .hzr-section-group--marker-intro-seite .hzr-button-row {
	justify-content: center;
	margin: 26px 0 32px;
}

.standort-page .hzr-section-group--marker-intro-seite .acf-block-button .btn {
	min-width: 132px;
	border-radius: 999px;
	box-shadow: 0 12px 28px color-mix(in srgb,var(--hzr-color-accent,#bd5182) 22%,transparent);
}

.standort-page .hzr-section-group--marker-intro-seite .hzr-pair .acf-block-gallery {
	max-width: 640px;
	margin: 24px auto 0;
	overflow: hidden;
}

.standort-page .hzr-section-group--marker-intro-seite .hzr-pair .acf-block-gallery .acf-block-gallery-track {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 34px;
	margin: 0;
}

.standort-page .hzr-section-group--marker-intro-seite .hzr-pair .acf-block-gallery .col-lg-4 {
	flex: 0 1 30%;
	max-width: 30%;
	padding-left: 0;
	padding-right: 0;
}

.standort-page .hzr-section-group--marker-intro-seite .hzr-pair .acf-block-gallery .suites-item {
	border-radius: 0;
	box-shadow: none;
	background: transparent;
	overflow: visible;
}

.standort-page .hzr-section-group--marker-intro-seite .hzr-pair .acf-block-gallery .suites-item-image {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 78px;
}

.standort-page .hzr-section-group--marker-intro-seite .hzr-pair .acf-block-gallery .suites-item-image img {
	width: auto !important;
	max-width: 100%;
	max-height: 76px;
	object-fit: contain;
}

.standort-page .hzr-section-group--marker-intro-seite .hzr-pair .acf-block-gallery-slider-button,
.standort-page .hzr-section-group--marker-intro-seite .hzr-pair .acf-block-gallery-dots {
	display: none;
}

.standort-page .hzr-section-group--marker-intro-seite .hzr-pair > .acf-block-image {
	margin: 0;
	overflow: hidden;
	border-radius: 8px;
}

.standort-page .hzr-section-group--marker-intro-seite .hzr-pair > .acf-block-image img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	height: auto;
	object-fit: cover;
}

.standort-page .hzr-section-group--marker-sortiment {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 64px 24px 72px;
	background: var(--hzr-color-rose-bg,#f8edf2);
}

.standort-page .hzr-section-group--marker-reviews {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 64px 24px 72px;
	background: var(--hzr-color-rose-bg,#f8edf2);
}

.standort-page .hzr-section-group--marker-sortiment .hzr-section-group-inner {
	max-width: 1320px;
}

.standort-page .hzr-section-group--marker-reviews .hzr-section-group-inner {
	max-width: 1320px;
}

.standort-page .hzr-section-group--marker-sortiment > .hzr-section-group-inner > .acf-block-text {
	margin: 0 auto 24px;
	text-align: center;
}

.standort-page .hzr-section-group--marker-reviews > .hzr-section-group-inner > .acf-block-text {
	margin: 0 auto 24px;
	text-align: center;
}

.standort-page .hzr-section-group--marker-sortiment > .hzr-section-group-inner > .acf-block-text h2 {
	margin: 0;
	color: var(--hzr-color-primary,#2c111d);
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.15;
	font-weight: 600;
}

.standort-page .hzr-section-group--marker-reviews > .hzr-section-group-inner > .acf-block-text h2 {
	margin: 0;
	color: var(--hzr-color-primary,#2c111d);
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.15;
	font-weight: 600;
}

.standort-page .hzr-section-group--marker-sortiment > .hzr-section-group-inner > .acf-block-text p {
	display: none;
}

.standort-page .hzr-section-group--marker-reviews > .hzr-section-group-inner > .acf-block-text p {
	display: none;
}

.standort-page .hzr-section-group--marker-sortiment .acf-block-google-reviews {
	margin-top: 24px;
}

.standort-page .hzr-section-group--marker-reviews .acf-block-google-reviews {
	margin-top: 24px;
}

.standort-page .hzr-section-group--marker-sortiment .acf-block-google-reviews__head {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
	align-items: center;
	gap: 24px;
	margin-bottom: 30px;
}

.standort-page .hzr-section-group--marker-reviews .acf-block-google-reviews__head {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
	align-items: center;
	gap: 24px;
	margin-bottom: 30px;
}

.standort-page .hzr-section-group--marker-sortiment .acf-block-google-reviews__intro {
	grid-column: 2;
	text-align: center;
}

.standort-page .hzr-section-group--marker-reviews .acf-block-google-reviews__intro {
	grid-column: 2;
	text-align: center;
}

.standort-page .hzr-section-group--marker-sortiment .acf-block-google-reviews__heading {
	margin: 0;
	font-size: clamp(28px, 2.4vw, 36px);
}

.standort-page .hzr-section-group--marker-reviews .acf-block-google-reviews__heading {
	margin: 0;
	font-size: clamp(28px, 2.4vw, 36px);
}

.standort-page .hzr-section-group--marker-sortiment .acf-block-google-reviews__meta {
	grid-column: 3;
	align-items: flex-end;
	min-width: 0;
}

.standort-page .hzr-section-group--marker-reviews .acf-block-google-reviews__meta {
	grid-column: 3;
	align-items: flex-end;
	min-width: 0;
}

.standort-page .hzr-section-group--marker-sortiment .acf-block-google-reviews__count {
	display: none;
}

.standort-page .hzr-section-group--marker-reviews .acf-block-google-reviews__count {
	display: none;
}

.standort-page .hzr-section-group--marker-auswahl {
	padding: 70px 0 34px;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: 28px;
	row-gap: 16px;
	max-width: 1180px;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > .acf-block-text:first-child {
	grid-column: 1 / -1;
	margin: 0 0 20px;
	text-align: center;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > .acf-block-text:first-child h2 {
	margin: 0;
	color: var(--hzr-color-primary,#2c111d);
	font-size: clamp(26px, 2.7vw, 38px);
	line-height: 1.18;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > .acf-block-image {
	margin: 0;
	overflow: hidden;
	border-radius: 6px;
	background: #f8f4f1;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > .acf-block-image img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	height: auto;
	object-fit: cover;
	transition: transform 0.24s ease;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > .acf-block-image:hover img {
	transform: scale(1.035);
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > .acf-block-text:not(:first-child) {
	margin: 0;
	text-align: center;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > .acf-block-text:not(:first-child) h2 {
	margin: 0;
	font-size: 17px;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > .acf-block-text:not(:first-child) a {
	color: var(--hzr-color-primary,#2c111d) !important;
	text-decoration: none;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > .acf-block-text:not(:first-child) a:hover,
.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > .acf-block-text:not(:first-child) a:focus {
	color: var(--hzr-color-accent,#bd5182) !important;
	text-decoration: none;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > :nth-child(2) {
	grid-column: 1;
	grid-row: 2;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > :nth-child(3) {
	grid-column: 1;
	grid-row: 3;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > :nth-child(4) {
	grid-column: 2;
	grid-row: 2;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > :nth-child(5) {
	grid-column: 2;
	grid-row: 3;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > :nth-child(6) {
	grid-column: 3;
	grid-row: 2;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > :nth-child(7) {
	grid-column: 3;
	grid-row: 3;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > :nth-child(8) {
	grid-column: 4;
	grid-row: 2;
}

.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > :nth-child(9) {
	grid-column: 4;
	grid-row: 3;
}

/* Center-Modus wie Live (Flatsome-Slider-Referenz): Track contained,
 * dominante Mittel-Slide (~64 %), links/rechts nur schmale Streifen der
 * Nachbarn. Langform-Properties statt flex-Shorthand — min() im
 * flex-Shorthand-Basis-Slot wird sonst als ungueltig verworfen und
 * Bootstraps .col-lg-4 (33 %) gewinnt. */
.standort-page .hzr-section-group--marker-slider .acf-block-gallery {
	/* Absolut (nicht %) — Prozente wuerden zirkulaer gegen die Track-Innenbreite
	 * aufgeloest, die selbst vom Padding aus dieser Variable abhaengt. */
	--hzr-slide-w: clamp(480px, 40vw, 768px);
	position: relative;
	margin: 64px auto;
	max-width: 1200px;
	overflow: hidden;
}

.standort-page .hzr-section-group--marker-slider .acf-block-gallery .acf-block-gallery-track {
	display: flex;
	flex-wrap: nowrap;
	gap: 24px;
	margin-left: 0;
	margin-right: 0;
	padding-top: 0;
	padding-bottom: 8px;
	padding-left: calc((100% - var(--hzr-slide-w)) / 2);
	padding-right: calc((100% - var(--hzr-slide-w)) / 2);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	/* Weiche Auslauf-Kanten wie im Live-Slider — nur der Track faded,
	 * Pfeile und Dots (Geschwister) bleiben scharf. */
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 110px, #000 calc(100% - 110px), transparent 100%);
	mask-image: linear-gradient(to right, transparent 0, #000 110px, #000 calc(100% - 110px), transparent 100%);
}

.standort-page .hzr-section-group--marker-slider .acf-block-gallery .acf-block-gallery-track::-webkit-scrollbar {
	display: none;
}

.standort-page .hzr-section-group--marker-slider .acf-block-gallery .col-lg-4 {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: var(--hzr-slide-w);
	width: var(--hzr-slide-w);
	max-width: var(--hzr-slide-w);
	padding-left: 0;
	padding-right: 0;
	scroll-snap-align: center;
}

.standort-page .hzr-section-group--marker-slider .acf-block-gallery .suites-item {
	border-radius: 16px;
	box-shadow: 0 10px 34px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 10%,transparent);
	overflow: hidden;
}

.standort-page .hzr-section-group--marker-slider .acf-block-gallery .suites-item-image img {
	width: 100%;
	height: clamp(300px, 28vw, 500px);
	object-fit: cover;
	border-radius: 16px;
	display: block;
}

@media (max-width: 768px) {
	.standort-page .hzr-section-group--marker-slider .acf-block-gallery .col-lg-4 {
		flex-basis: 82%;
		max-width: 82%;
	}
	.standort-page .hzr-section-group--marker-slider .acf-block-gallery .acf-block-gallery-track {
		padding: 0 9% 8px;
		gap: 16px;
	}
}

.standort-page .hzr-section-group--marker-slider .acf-block-gallery-slider-button {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--hzr-color-primary,#2c111d);
	box-shadow: 0 6px 20px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 18%,transparent);
	cursor: pointer;
	transform: translateY(-50%);
}

.standort-page .hzr-section-group--marker-slider .acf-block-gallery-slider-button--prev {
	left: 10px;
}

.standort-page .hzr-section-group--marker-slider .acf-block-gallery-slider-button--next {
	right: 10px;
}

.standort-page .hzr-section-group--marker-slider .acf-block-gallery-slider-button .mdi {
	font-size: 30px;
	line-height: 1;
}

.standort-page .hzr-section-group--marker-slider .acf-block-gallery-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.standort-page .hzr-section-group--marker-slider .acf-block-gallery-dot {
	width: 64px;
	height: 3px;
	border-radius: 0;
	background: color-mix(in srgb,var(--hzr-color-primary,#2c111d) 18%,transparent);
	transition: background 0.2s ease;
}

.standort-page .hzr-section-group--marker-slider .acf-block-gallery-dot.is-active {
	background: var(--hzr-color-primary,#2c111d);
}

.standort-page .hzr-section-group--marker-adresse {
	padding: 78px 0 82px;
}

.standort-page .hzr-section-group--marker-adresse .hzr-section-group-inner {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	column-gap: 26px;
	row-gap: 18px;
	align-items: center;
	max-width: 1140px;
}

.standort-page .hzr-section-group--marker-adresse .acf-block-map {
	grid-column: 1 / 4;
	grid-row: 1 / 9;
	width: 100%;
	max-width: none;
	height: 380px;
	min-height: 0 !important;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border-radius: 0;
}

.standort-page .hzr-section-group--marker-adresse .acf-block-map iframe {
	display: block;
	height: 100% !important;
	min-height: 380px;
}

.standort-page .hzr-section-group--marker-adresse .acf-block-text {
	grid-column: 4 / 7;
	margin: 0;
	max-width: 520px;
}

.standort-page .hzr-section-group--marker-adresse .acf-block-text h2 {
	margin: 0 0 16px;
	color: var(--hzr-color-primary,#2c111d);
	font-size: clamp(28px, 2.5vw, 38px);
	line-height: 1.18;
	font-weight: 600;
}

.standort-page .hzr-section-group--marker-adresse .acf-block-text p {
	margin-bottom: 0;
	color: var(--hzr-color-primary,#2c111d);
	font-size: 17px;
	line-height: 1.55;
}

.standort-page .hzr-section-group--marker-adresse .acf-block-text a {
	color: #36516e;
	text-decoration: none;
}

.standort-page .hzr-section-group--marker-adresse .acf-block-text a:hover,
.standort-page .hzr-section-group--marker-adresse .acf-block-text a:focus {
	color: var(--hzr-color-accent,#bd5182);
	text-decoration: underline;
}

.standort-page .hzr-section-group--marker-adresse .acf-block-divider {
	display: none;
}

.standort-page .hzr-section-group--marker-adresse .acf-block-button {
	margin: 20px 0 0;
}

.standort-page .hzr-section-group--marker-adresse .acf-block-button--telefon {
	grid-column: 1 / 3;
	grid-row: 9;
}

.standort-page .hzr-section-group--marker-adresse .acf-block-button--e-mail {
	grid-column: 3 / 5;
	grid-row: 9;
}

.standort-page .hzr-section-group--marker-adresse .acf-block-button--oeffnungszeiten {
	grid-column: 5 / 7;
	grid-row: 9;
}

.standort-page .hzr-section-group--marker-adresse .acf-block-button .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 48px;
	padding: 12px 22px;
	border: 1px solid var(--hzr-color-accent,#bd5182);
	border-radius: 999px;
	background: #fff;
	color: var(--hzr-color-accent,#bd5182);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: none;
}

.standort-page .hzr-section-group--marker-adresse .acf-block-button .btn:hover,
.standort-page .hzr-section-group--marker-adresse .acf-block-button .btn:focus {
	background: var(--hzr-color-accent,#bd5182);
	color: #fff;
}

.standort-page .acf-block-image--missing {
	display: none !important;
}

.standort-page .acf-block-image--decorative-divider {
	width: min(430px, 44%) !important;
	max-width: min(430px, 44%) !important;
	margin: 48px auto;
	border-radius: 0;
	opacity: 0.7;
	transform: none !important;
}

.standort-page .acf-block-image--decorative-divider img {
	width: 100%;
	border-radius: 0;
	object-fit: contain;
}

.standort-page .hzr-section-group--marker-benefit-modul {
	padding: 70px 0;
}

.standort-page .hzr-section-group--marker-benefit-modul .hzr-pair,
.standort-page .hzr-section-group--marker-womit-wir .hzr-pair {
	display: block;
}

.standort-page .hzr-section-group--marker-benefit-modul .hzr-pair-content,
.standort-page .hzr-section-group--marker-womit-wir .hzr-pair-content {
	width: 100%;
	max-width: none;
}

.standort-page .hzr-section-group--marker-benefit-modul .hzr-pair > .acf-block-image[style*="max-width:36%"],
.standort-page .hzr-section-group--marker-womit-wir .hzr-pair > .acf-block-image[style*="max-width:36%"] {
	display: none;
}

.standort-page .hzr-section-group--marker-benefit-modul .acf-block-text,
.standort-page .hzr-section-group--marker-womit-wir .acf-block-text {
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.standort-page .hzr-section-group--marker-benefit-modul .acf-block-text h2,
.standort-page .hzr-section-group--marker-womit-wir .acf-block-text h2 {
	margin: 0 0 22px;
	color: var(--hzr-color-primary,#2c111d);
	font-size: clamp(28px, 2.6vw, 38px);
	line-height: 1.18;
	font-weight: 600;
}

.standort-page .hzr-section-group--marker-benefit-modul .acf-block-text p {
	margin: 0 auto 34px;
	color: var(--hzr-color-primary,#2c111d);
	font-size: 18px;
	line-height: 1.55;
}

.standort-page .hzr-section-group--marker-benefit-modul .hzr-feature-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	max-width: 900px;
	margin: 0 auto;
}

.standort-page .hzr-section-group--marker-benefit-modul .acf-block-feature-box {
	min-height: 210px;
	padding: 34px 28px 30px;
	border-radius: 6px;
	background: #f8f6f5;
	box-shadow: none;
}

.standort-page .hzr-section-group--marker-benefit-modul .acf-block-feature-box-image {
	height: 92px;
	margin-bottom: 18px;
}

.standort-page .hzr-section-group--marker-benefit-modul .acf-block-feature-box-image__img {
	width: auto;
	height: 92px;
	max-width: 112px;
	object-fit: contain;
}

.standort-page .hzr-section-group--marker-benefit-modul .acf-block-feature-box-text {
	color: var(--hzr-color-primary,#2c111d);
	font-size: 16px;
	line-height: 1.5;
}

.standort-page .hzr-section-group--marker-benefit-modul .acf-block-feature-box-text p {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
}

.standort-page .hzr-section-group--marker-benefit-modul .acf-block-feature-box-text p:first-child::first-line {
	font-weight: 700;
}

.standort-page .hzr-section-group--marker-benefit-modul .acf-block-video {
	max-width: 900px;
	margin: 54px auto 38px;
}

.standort-page .acf-block-style-worlds {
	max-width: 1220px;
	margin: 0 auto;
	padding: 76px 0 88px;
}

.standort-page .acf-block-style-worlds__header {
	max-width: 980px;
	margin: 0 auto 52px;
	text-align: center;
}

.standort-page .acf-block-style-worlds__header h2 {
	margin: 0 0 22px;
	color: var(--hzr-color-primary,#2c111d);
	font-size: clamp(32px, 3vw, 46px);
	line-height: 1.12;
	font-weight: 600;
}

.standort-page .acf-block-style-worlds__header p {
	max-width: 900px;
	margin: 0 auto;
	color: var(--hzr-color-primary,#2c111d);
	font-size: 20px;
	line-height: 1.45;
}

.standort-page .acf-block-style-worlds__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 48px 46px;
	max-width: 1188px;
	margin: 0 auto;
}

.standort-page .acf-block-style-worlds__item {
	display: block;
	color: var(--hzr-color-primary,#2c111d);
	text-align: center;
	text-decoration: none;
}

.standort-page .acf-block-style-worlds__item:hover,
.standort-page .acf-block-style-worlds__item:focus {
	color: var(--hzr-color-primary,#2c111d);
	text-decoration: none;
}

.standort-page .acf-block-style-worlds__image {
	aspect-ratio: 2 / 3;
	margin: 0 0 26px;
	border-radius: 6px;
	overflow: hidden;
	background: #f8f6f5;
}

.standort-page .acf-block-style-worlds__img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.standort-page .acf-block-style-worlds__body h3 {
	margin: 0 0 8px;
	color: var(--hzr-color-primary,#2c111d);
	font-size: 28px;
	line-height: 1.25;
	font-weight: 400;
}

.standort-page .acf-block-style-worlds__body p {
	margin: 0;
	color: var(--hzr-color-primary,#2c111d);
	font-size: 15px;
	line-height: 1.45;
}

.standort-page .acf-block-style-worlds__divider {
	width: min(430px, 44%);
	margin: 54px auto 0;
	opacity: 0.7;
}

.standort-page .acf-block-style-worlds__divider img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.standort-page .hzr-section-group--marker-benefit-modul .acf-block-button {
	margin-top: 24px;
	text-align: center;
}

.standort-page .hzr-section-group--marker-womit-wir {
	padding: 72px 0 86px;
}

.standort-page .hzr-section-group--marker-womit-wir .hzr-feature-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
	max-width: 1180px;
	margin: 0 auto;
}

.standort-page .hzr-section-group--marker-womit-wir .acf-block-feature-box {
	min-height: 230px;
	padding: 34px 24px 30px;
	border-radius: 6px;
	background: #f8f6f5;
	box-shadow: none;
}

.standort-page .hzr-section-group--marker-womit-wir .acf-block-feature-box-image {
	height: 88px;
	margin-bottom: 18px;
}

.standort-page .hzr-section-group--marker-womit-wir .acf-block-feature-box-image__img {
	width: auto;
	height: 88px;
	max-width: 108px;
	object-fit: contain;
}

.standort-page .hzr-section-group--marker-womit-wir .acf-block-feature-box-title {
	margin: 0;
	color: var(--hzr-color-primary,#2c111d);
	font-size: 22px;
	line-height: 1.25;
	font-weight: 700;
}

.standort-page .hzr-section-group--marker-experten {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 72px 24px;
	background: var(--hzr-color-rose-bg,#f8edf2);
}

.standort-page .hzr-section-group--marker-experten .hzr-section-group-inner {
	max-width: 1180px;
}

.standort-page .hzr-section-group--marker-experten .hzr-image-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
	margin: 0 auto 44px;
}

.standort-page .hzr-section-group--marker-experten .acf-block-image {
	width: 100%;
	max-width: none !important;
	margin: 0;
	overflow: hidden;
	border-radius: 6px;
}

.standort-page .hzr-section-group--marker-experten .acf-block-image img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	height: auto;
	object-fit: cover;
}

.standort-page .hzr-section-group--marker-experten .acf-block-text {
	max-width: 1040px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.standort-page .hzr-section-group--marker-experten .acf-block-text h2 {
	margin: 0 0 26px;
	color: var(--hzr-color-primary,#2c111d);
	font-size: clamp(28px, 2.6vw, 38px);
	line-height: 1.18;
	font-weight: 600;
}

.standort-page .hzr-section-group--marker-experten .acf-block-text p {
	color: var(--hzr-color-primary,#2c111d);
	font-size: 18px;
	line-height: 1.62;
}

.standort-page .hzr-section-group--marker-experten .acf-block-button {
	margin-top: 28px;
	text-align: center;
}

.standort-page .hzr-section-group--marker-2 {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 82px 24px;
	background: var(--hzr-color-rose-bg,#f8edf2);
}

.standort-page .hzr-section-group--marker-2 .hzr-section-group-inner {
	max-width: 1180px;
}

.standort-page .hzr-section-group--marker-2 .hzr-pair {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
	gap: 72px;
	align-items: center;
}

.standort-page .hzr-section-group--marker-2 .hzr-pair-content {
	max-width: 560px;
	text-align: center;
}

.standort-page .hzr-section-group--marker-2 .acf-block-text h2 {
	margin: 0 0 28px;
	color: var(--hzr-color-primary,#2c111d);
	font-size: clamp(28px, 2.5vw, 38px);
	line-height: 1.18;
}

.standort-page .hzr-section-group--marker-2 .acf-block-text p {
	color: var(--hzr-color-primary,#2c111d);
	font-size: 18px;
	line-height: 1.62;
}

.standort-page .hzr-section-group--marker-2 .acf-block-image {
	margin: 0;
	overflow: hidden;
	border-radius: 8px;
}

.standort-page .hzr-section-group--marker-2 .acf-block-image img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	height: auto;
	object-fit: cover;
}

.standort-page .hzr-section-group--marker-2 + .hzr-section-group {
	padding: 60px 0 48px;
}

.standort-page .hzr-section-group--marker-2 + .hzr-section-group .hzr-pair {
	display: grid;
	grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
	gap: 44px;
	align-items: center;
	max-width: 980px;
	margin: 0 auto;
}

.standort-page .hzr-section-group--marker-2 + .hzr-section-group .acf-block-image {
	max-width: none !important;
	margin: 0;
}

.standort-page .hzr-section-group--marker-2 + .hzr-section-group .acf-block-image img {
	width: 100%;
	max-height: 140px;
	object-fit: contain;
	opacity: 0.72;
}

.standort-page .hzr-section-group--marker-2 + .hzr-section-group .acf-block-text h2 {
	margin: 0 0 20px;
	color: var(--hzr-color-primary,#2c111d);
	font-size: clamp(28px, 2.5vw, 38px);
	line-height: 1.18;
}

.standort-page .hzr-section-group--marker-2 + .hzr-section-group .acf-block-text p {
	margin: 0;
	color: var(--hzr-color-primary,#2c111d);
	font-size: 18px;
	line-height: 1.55;
}

.standort-page .hzr-section-group--marker-2 + .hzr-section-group + .hzr-section-group {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 78px 24px 84px;
	background: var(--hzr-color-primary,#2c111d);
	color: #fff;
}

.standort-page .hzr-section-group--marker-2 + .hzr-section-group + .hzr-section-group .hzr-section-group-inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
	gap: 54px;
	align-items: center;
	max-width: 1180px;
}

.standort-page .hzr-section-group--marker-2 + .hzr-section-group + .hzr-section-group .acf-block-text {
	grid-column: 1;
	margin: 0;
}

.standort-page .hzr-section-group--marker-2 + .hzr-section-group + .hzr-section-group .acf-block-text h2 {
	margin: 0 0 24px;
	color: #fff !important;
	font-size: clamp(28px, 2.5vw, 38px);
	line-height: 1.18;
	text-align: left !important;
}

.standort-page .hzr-section-group--marker-2 + .hzr-section-group + .hzr-section-group .acf-block-text p,
.standort-page .hzr-section-group--marker-2 + .hzr-section-group + .hzr-section-group .acf-block-text ul {
	color: #fff !important;
	font-size: 17px;
	line-height: 1.62;
}

.standort-page .hzr-section-group--marker-2 + .hzr-section-group + .hzr-section-group .acf-block-text a {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.48);
	text-underline-offset: 4px;
}

.standort-page .hzr-section-group--marker-2 + .hzr-section-group + .hzr-section-group .hzr-image-grid {
	grid-column: 2;
	grid-row: 1 / span 2;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin: 0;
}

.standort-page .hzr-section-group--marker-2 + .hzr-section-group + .hzr-section-group .acf-block-image {
	max-width: none !important;
	margin: 0;
	overflow: hidden;
	border-radius: 8px;
}

.standort-page .hzr-section-group--marker-2 + .hzr-section-group + .hzr-section-group .acf-block-image img {
	width: 100%;
	aspect-ratio: 1;
	height: auto;
	object-fit: cover;
}

@media (max-width: 991px) {
	.standort-page .hzr-section-group--marker-intro-seite .hzr-pair {
		display: block;
		max-width: 680px;
		margin-left: auto;
		margin-right: auto;
	}

	.standort-page .hzr-section-group--marker-intro-seite .hzr-pair-content {
		max-width: none;
	}

	.standort-page .hzr-section-group--marker-intro-seite .hzr-pair > .acf-block-image {
		margin-top: 36px;
	}

	.standort-page .hzr-section-group--marker-sortiment .acf-block-google-reviews__head,
	.standort-page .hzr-section-group--marker-reviews .acf-block-google-reviews__head {
		display: block;
		text-align: center;
	}

	.standort-page .hzr-section-group--marker-sortiment .acf-block-google-reviews__meta,
	.standort-page .hzr-section-group--marker-reviews .acf-block-google-reviews__meta {
		align-items: center;
		margin-top: 18px;
		text-align: center;
	}

	.standort-page .hzr-section-group--marker-sortiment .acf-block-google-reviews__rating-row,
	.standort-page .hzr-section-group--marker-reviews .acf-block-google-reviews__rating-row {
		justify-content: center;
	}

	.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 680px;
	}

	.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > :nth-child(4) {
		grid-column: 2;
		grid-row: 2;
	}

	.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > :nth-child(5) {
		grid-column: 2;
		grid-row: 3;
	}

	.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > :nth-child(6) {
		grid-column: 1;
		grid-row: 4;
	}

	.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > :nth-child(7) {
		grid-column: 1;
		grid-row: 5;
	}

	.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > :nth-child(8) {
		grid-column: 2;
		grid-row: 4;
	}

	.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > :nth-child(9) {
		grid-column: 2;
		grid-row: 5;
	}

	.standort-page .hzr-section-group--marker-slider .acf-block-gallery .col-lg-4 {
		flex-basis: min(78%, 420px);
		max-width: min(78%, 420px);
	}

	.standort-page .hzr-section-group--marker-adresse .hzr-section-group-inner {
		display: block;
		max-width: 680px;
	}

	.standort-page .hzr-section-group--marker-adresse .acf-block-map {
		height: 340px;
		margin-bottom: 34px;
	}

	.standort-page .hzr-section-group--marker-adresse .acf-block-text {
		max-width: none;
		margin-bottom: 18px;
	}

	.standort-page .hzr-section-group--marker-adresse .acf-block-button {
		margin-top: 14px;
	}

	.standort-page .hzr-section-group--marker-benefit-modul .hzr-feature-grid,
	.standort-page .hzr-section-group--marker-womit-wir .hzr-feature-grid,
	.standort-page .hzr-section-group--marker-experten .hzr-image-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 680px;
	}

	.standort-page .acf-block-style-worlds {
		padding: 58px 0 68px;
	}

	.standort-page .acf-block-style-worlds__header {
		max-width: 680px;
	}

	.standort-page .acf-block-style-worlds__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 38px 28px;
		max-width: 680px;
	}

	.standort-page .hzr-section-group--marker-2 .hzr-pair,
	.standort-page .hzr-section-group--marker-2 + .hzr-section-group .hzr-pair,
	.standort-page .hzr-section-group--marker-2 + .hzr-section-group + .hzr-section-group .hzr-section-group-inner {
		display: block;
		max-width: 680px;
	}

	.standort-page .hzr-section-group--marker-2 .hzr-pair-content {
		max-width: none;
	}

	.standort-page .hzr-section-group--marker-2 .acf-block-image,
	.standort-page .hzr-section-group--marker-2 + .hzr-section-group .acf-block-image,
	.standort-page .hzr-section-group--marker-2 + .hzr-section-group + .hzr-section-group .hzr-image-grid {
		margin-top: 32px;
	}
}

@media (max-width: 575px) {
	.standort-page .acf-page-content--blocks .hzr-section-group-inner {
		max-width: 100%;
		padding-left: 24px;
		padding-right: 24px;
	}

	.standort-page .hzr-section-group--marker-intro-seite .hzr-section-group-inner {
		padding-top: 48px;
		padding-bottom: 44px;
		overflow: hidden;
	}

	.standort-page .hzr-section-group--marker-intro-seite .hzr-pair,
	.standort-page .hzr-section-group--marker-intro-seite .hzr-pair-content {
		width: 100%;
		max-width: min(100%, 320px) !important;
		min-width: 0;
		margin-left: auto;
		margin-right: auto;
	}

	.standort-page .hzr-section-group--marker-intro-seite .hzr-pair-content > .acf-block {
		max-width: 100%;
	}

	.standort-page .hzr-section-group--marker-intro-seite .acf-block-text {
		width: 100%;
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
		overflow-wrap: anywhere;
	}

	.standort-page .hzr-section-group--marker-intro-seite .acf-block-text h3 {
		max-width: 280px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 48px;
		font-size: 16px;
	}

	.standort-page .hzr-section-group--marker-intro-seite .acf-block-text h1 {
		font-size: 30px;
		line-height: 1.15;
		overflow-wrap: anywhere;
	}

	.standort-page .hzr-section-group--marker-intro-seite .acf-block-text p {
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
		font-size: 16px;
		line-height: 1.58;
	}

	.standort-page .hzr-section-group--marker-intro-seite .hzr-button-row {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}

	.standort-page .hzr-section-group--marker-intro-seite .acf-block-button {
		margin: 0;
		width: min(100%, 270px);
	}

	.standort-page .hzr-section-group--marker-intro-seite .acf-block-button .btn {
		width: 100%;
		min-width: 0;
	}

	.standort-page .hzr-section-group--marker-intro-seite .hzr-pair .acf-block-gallery {
		max-width: 100%;
	}

	.standort-page .hzr-section-group--marker-intro-seite .hzr-pair .acf-block-gallery .acf-block-gallery-track {
		justify-content: flex-start;
		gap: 24px;
		padding: 0 4px 10px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.standort-page .hzr-section-group--marker-intro-seite .hzr-pair .acf-block-gallery .acf-block-gallery-track::-webkit-scrollbar {
		display: none;
	}

	.standort-page .hzr-section-group--marker-intro-seite .hzr-pair .acf-block-gallery .col-lg-4 {
		flex: 0 0 68%;
		max-width: 68%;
		scroll-snap-align: center;
	}

	.standort-page .hzr-section-group--marker-sortiment,
	.standort-page .hzr-section-group--marker-reviews {
		padding: 48px 18px 56px;
	}

	.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner {
		display: block;
	}

	.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > .acf-block-image {
		margin-top: 22px;
	}

	.standort-page .hzr-section-group--marker-auswahl .hzr-section-group-inner > .acf-block-text:not(:first-child) {
		margin-top: 12px;
	}

	.standort-page .hzr-section-group--marker-slider .acf-block-gallery .acf-block-gallery-track {
		padding-left: 48px;
		padding-right: 48px;
	}

	.standort-page .hzr-section-group--marker-slider .acf-block-gallery .col-lg-4 {
		flex-basis: 86%;
		max-width: 86%;
	}

	.standort-page .hzr-section-group--marker-benefit-modul .hzr-feature-grid,
	.standort-page .hzr-section-group--marker-womit-wir .hzr-feature-grid,
	.standort-page .hzr-section-group--marker-experten .hzr-image-grid {
		grid-template-columns: 1fr;
	}

	.standort-page .acf-block-style-worlds__header {
		margin-bottom: 36px;
	}

	.standort-page .acf-block-style-worlds__header h2 {
		font-size: 30px;
	}

	.standort-page .acf-block-style-worlds__header p {
		font-size: 17px;
	}

	.standort-page .acf-block-style-worlds__grid {
		grid-template-columns: 1fr;
		gap: 34px;
		max-width: 360px;
	}

	.standort-page .acf-block-style-worlds__body h3 {
		font-size: 24px;
	}

	.standort-page .acf-block-style-worlds__divider {
		width: min(300px, 78%);
		margin-top: 38px;
	}

	.standort-page .hzr-section-group--marker-benefit-modul,
	.standort-page .hzr-section-group--marker-womit-wir,
	.standort-page .hzr-section-group--marker-experten,
	.standort-page .hzr-section-group--marker-2,
	.standort-page .hzr-section-group--marker-2 + .hzr-section-group + .hzr-section-group {
		padding-top: 52px;
		padding-bottom: 58px;
	}

	.standort-page .acf-block-image--decorative-divider {
		width: min(300px, 78%) !important;
		max-width: min(300px, 78%) !important;
		margin: 34px auto;
	}
}

/* ===== About: Standortkarten "Hier werden Deine Träume wahr" ===== */

.hzr-section-group--marker-shops .hzr-section-group-inner {
	max-width: 1308px;
	padding-top: 58px;
	padding-bottom: 70px;
}

.hzr-section-group--marker-shops .acf-block-text {
	margin-bottom: 16px;
}

.hzr-section-group--marker-shops .acf-block-text .bigger-text {
	color: var(--hzr-color-accent,#bd5182);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hzr-section-group--marker-shops .acf-block-text h2 {
	margin: 0 0 34px;
	color: var(--hzr-color-primary,#2c111d);
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.12;
	font-weight: 500;
	letter-spacing: 0;
}

.hzr-section-group--marker-shops .acf-block-divider {
	max-width: 170px;
	margin: 18px 0 30px;
	background: #e6d6de;
}

.hzr-section-group--marker-shops .hzr-feature-grid {
	gap: 54px 26px;
	margin-top: 0;
}

.hzr-section-group--marker-shops .hzr-feature-grid > .acf-block-feature-box {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	background: transparent;
	border-radius: 0;
	padding: 0;
	text-align: left;
	box-shadow: none;
}

.hzr-section-group--marker-shops .acf-block-feature-box-image {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	margin: 0 0 20px;
	overflow: hidden;
	background: #f4eff1;
}

.hzr-section-group--marker-shops .acf-block-feature-box img,
.hzr-section-group--marker-shops .acf-block-feature-box-image__img {
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	max-height: none;
	object-fit: cover;
	object-position: center;
	border-radius: 0;
	display: block;
	transition: transform 0.35s ease;
}

.hzr-section-group--marker-shops .acf-block-feature-box:hover .acf-block-feature-box-image__img {
	transform: scale(1.025);
}

.hzr-section-group--marker-shops .acf-block-feature-box-text {
	color: var(--hzr-color-primary,#2c111d);
	font-size: 15px;
	line-height: 1.65;
}

.hzr-section-group--marker-shops .acf-block-feature-box-text p {
	margin: 0 0 10px;
}

.hzr-section-group--marker-shops .acf-block-feature-box-text p:first-child::first-line {
	font-size: clamp(24px, 2.4vw, 30px);
	line-height: 1.2;
	font-weight: 400;
}

.hzr-section-group--marker-shops .acf-block-feature-box-text p:last-child {
	margin-bottom: 0;
}

.hzr-section-group--marker-shops .acf-block-feature-box-link--location {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 2px;
	color: #2b526e;
	font-size: 15px;
	line-height: 1.5;
	text-decoration: none;
	transition: color 0.2s ease;
}

.hzr-section-group--marker-shops .acf-block-feature-box-link--location:hover,
.hzr-section-group--marker-shops .acf-block-feature-box-link--location:focus {
	color: var(--hzr-color-accent,#bd5182);
	text-decoration: none;
}

@media (max-width: 991px) {
	.hzr-section-group--marker-shops .hzr-feature-grid--cols-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.hzr-section-group--marker-shops .hzr-section-group-inner {
		padding-top: 44px;
		padding-bottom: 52px;
	}

	.hzr-section-group--marker-shops .hzr-feature-grid--cols-3 {
		grid-template-columns: 1fr;
		gap: 38px;
	}
}

/* ===== Columns ===== */

.hzr-section-group .acf-block-columns {
	margin: 32px 0;
}

.hzr-section-group .acf-block-columns .row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin: 0;
}

.hzr-section-group .acf-block-columns [class*="col-"] {
	flex: 1 1 200px;
}

/* ===== Raw HTML (Fallback) ===== */

.hzr-section-group .acf-block-raw-html {
	margin: 24px 0;
}

/* ===== Jobs JOIN Widget ===== */

.jobs-join-widget-section .hzr-section-group-inner {
	padding-top: 24px;
	padding-bottom: 72px;
}

.jobs-join-widget {
	max-width: 100%;
}

.jobs-join-widget noscript {
	display: block;
	text-align: center;
}

/* ===== Akkordeon ===== */

.hzr-section-group .acf-block-faq {
	width: 100vw;
	max-width: none;
	margin: 64px calc(50% - 50vw);
	padding: 100px 0;
	background: var(--hzr-color-primary,#2c111d);
}

.hzr-section-group .acf-block-faq .faq-section-item-content {
	line-height: 1.7;
}

.hzr-section-group .acf-block-faq .faq-section-item-content ul {
	margin: 8px 0;
	padding-left: 24px;
}

.hzr-section-group .acf-block-faq .faq-section-item-content li {
	margin: 4px 0;
}

.hzr-section-group .acf-block-faq .faq-section-item-content p {
	margin: 0 0 0.8em;
}

.hzr-section-group .acf-block-faq .faq-section-item-content p:last-child {
	margin-bottom: 0;
}

/* ===== CTA-Karte (Termin-Buchen-Banner aus Legacy blogcta) ===== */

.hzr-section-group .hzr-cta-card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	max-width: 860px;
	margin: 32px auto;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 6px 30px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 8%,transparent);
}

@media (min-width: 768px) {
	.hzr-section-group .hzr-cta-card {
		flex-direction: row;
		min-height: 260px;
	}
}

.hzr-section-group .hzr-cta-card-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 220px;
	flex: 1;
}

.hzr-section-group .hzr-cta-card-body {
	flex: 1;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 18px;
}

.hzr-section-group .hzr-cta-card-label {
	color: var(--hzr-color-primary,#2c111d);
	font-size: 19px;
	line-height: 1.45;
	font-weight: 500;
}

.hzr-section-group .hzr-cta-card-button {
	display: inline-block;
	padding: 5px 28px;
	min-height: 2.5em;
	line-height: 2.4em;
	background-color: var(--hzr-color-accent,#bd5182);
	color: #fff;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.97em;
	font-weight: 600;
	border-radius: 50px;
	box-shadow: 0 4px 30px color-mix(in srgb,var(--hzr-color-accent,#bd5182) 31%,transparent);
	transition: background 0.3s, box-shadow 0.3s;
}

.hzr-section-group .hzr-cta-card-button:hover {
	background-color: var(--hzr-color-accent-hover,#a8447a);
	box-shadow: 0 6px 36px color-mix(in srgb,var(--hzr-color-accent,#bd5182) 42%,transparent);
	color: #fff;
}

/* ===== Review-Notice (nur für eingeloggte Editoren — bleibt wie definiert) ===== */
/* CSS bleibt vom acf/review-notice.php-Template inline gesetzt */

/* ===== Google Reviews (front-page.php) ===== */
.review-item-user-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.review-empty-note {
	margin-top: 30px;
	padding: 18px 22px;
	background: var(--hzr-color-rose-bg,#f8edf2);
	border: 1px solid color-mix(in srgb,var(--hzr-color-primary,#2c111d) 12%,transparent);
	border-radius: 8px;
	color: var(--hzr-color-primary,#2c111d);
	font-size: 15px;
}

/* ===== Google Reviews ACF block ===== */

.acf-block-google-reviews {
	width: 100%;
	margin: 0 auto;
	color: var(--hzr-color-primary,#2c111d);
}

.acf-block-google-reviews__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 32px;
	margin: 0 0 46px;
}

.acf-block-google-reviews__heading {
	margin: 0 0 12px;
	color: #050505;
	font-size: clamp(34px, 3.1vw, 46px);
	line-height: 1.08;
	font-weight: 600;
	letter-spacing: 0;
}

.acf-block-google-reviews__subheading {
	margin: 0;
	color: #050505;
	font-size: clamp(20px, 1.8vw, 27px);
	line-height: 1.35;
	font-weight: 400;
}

.acf-block-google-reviews__meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	min-width: 260px;
	text-align: right;
}

.acf-block-google-reviews__rating-row {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 7px;
	color: #f4c400;
	font-size: 18px;
	white-space: nowrap;
}

.acf-block-google-reviews__rating {
	color: var(--hzr-color-primary,#2c111d);
	font-size: 16px;
}

.acf-block-google-reviews__rating-row img,
.acf-block-google-reviews__google {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.acf-block-google-reviews__count {
	color: color-mix(in srgb,var(--hzr-color-primary,#2c111d) 70%,transparent);
	font-size: 13px;
}

.acf-block-google-reviews__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 6px;
	padding: 12px 26px;
	background: var(--hzr-color-accent,#bd5182);
	color: #fff;
	border-radius: 999px;
	box-shadow: 0 4px 24px color-mix(in srgb,var(--hzr-color-accent,#bd5182) 28%,transparent);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.acf-block-google-reviews__cta:hover,
.acf-block-google-reviews__cta:focus {
	background: var(--hzr-color-accent-hover,#a8447a);
	color: #fff;
	box-shadow: 0 6px 30px color-mix(in srgb,var(--hzr-color-accent,#bd5182) 38%,transparent);
	text-decoration: none;
}

.acf-block-google-reviews__cta .mdi {
	font-size: 18px;
	line-height: 1;
}

.acf-block-google-reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.acf-block-google-reviews__smash-balloon {
	--hzr-review-red: #ed4944;
}

.acf-block-google-reviews__smash-balloon .sbr-feed {
	margin: 0;
}

.acf-block-google-reviews__smash-balloon .sb-feed-header {
	display: none !important;
}

.acf-block-google-reviews__smash-balloon .sbr-feed .sb-post-item-wrap {
	border-radius: 4px !important;
	box-shadow: 0 8px 26px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 9%,transparent) !important;
}

.acf-block-google-reviews__smash-balloon .sbr-feed .sb-item-rating {
	color: var(--hzr-review-red) !important;
}

.acf-block-google-reviews__smash-balloon .sbr-feed .sb-item-text {
	color: #2f3a50 !important;
	font-size: 15px !important;
	line-height: 1.55 !important;
}

.acf-block-google-reviews__smash-balloon .sbr-feed .sb-item-author-name {
	color: #1c2434 !important;
	font-weight: 700 !important;
}

.acf-block-google-reviews__smash-balloon .sbr-feed .sb-load-button {
	border-radius: 999px !important;
	background: #f7ecf0 !important;
	color: var(--hzr-color-accent,#bd5182) !important;
}

.acf-block-google-reviews__card {
	display: flex;
	flex-direction: column;
	min-height: 230px;
	padding: 24px 28px 26px;
	background: #fff;
	border: 1px solid color-mix(in srgb,var(--hzr-color-primary,#2c111d) 6%,transparent);
	border-radius: 4px;
	box-shadow: 0 8px 26px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 9%,transparent);
}

.acf-block-google-reviews__card-head {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) 24px;
	align-items: center;
	gap: 12px;
}

.acf-block-google-reviews__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	overflow: hidden;
	background: #0b7f68;
	border-radius: 50%;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
}

.acf-block-google-reviews__avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.acf-block-google-reviews__name {
	color: #1c2434;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.acf-block-google-reviews__time {
	margin-top: 3px;
	color: #4d596d;
	font-size: 12px;
	line-height: 1.25;
}

.acf-block-google-reviews__stars {
	display: flex;
	gap: 2px;
	margin: 26px 0 18px;
	color: #f44336;
	font-size: 19px;
	line-height: 1;
}

.acf-block-google-reviews__text {
	margin: 0;
	color: #2f3a50;
	font-size: 15px;
	line-height: 1.55;
	text-align: center;
	overflow-wrap: break-word;
}

@media (max-width: 991px) {
	.acf-block-google-reviews__head {
		display: block;
		margin-bottom: 34px;
	}

	.acf-block-google-reviews__meta {
		align-items: flex-start;
		margin-top: 18px;
		min-width: 0;
		text-align: left;
	}

	.acf-block-google-reviews__rating-row {
		justify-content: flex-start;
	}

	.acf-block-google-reviews__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.acf-block-google-reviews__grid {
		grid-template-columns: 1fr;
	}

	.acf-block-google-reviews__card {
		padding: 22px 20px 24px;
	}
}

/* ===== Sale 2026 campaign page ===== */
.sale-2026-page {
	color: var(--hzr-color-primary,#2c111d);
}

.sale-2026-section {
	padding: 30px 0;
}

.sale-2026-page .container {
	max-width: 1400px;
}

.sale-2026-hero {
	padding-top: 220px;
}

.sale-2026-hero-grid,
.sale-2026-info-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: 42px;
}

.sale-2026-info-grid {
	gap: 60px;
}

.sale-2026-copy {
	min-width: 0;
}

.sale-2026-title {
	margin: 0;
	font-size: clamp(28px, 2.1vw, 38px);
	font-weight: 700;
	line-height: 1.18;
	text-align: center;
}

.sale-2026-divider {
	width: 140px;
	height: 2px;
	margin: 30px auto;
	background: var(--hzr-color-accent,#bd5182);
}

.sale-2026-text p {
	margin: 0 0 20px;
	font-size: 18px;
	line-height: 1.45;
	text-align: left;
}

.sale-2026-text p:last-child {
	margin-bottom: 0;
}

.sale-2026-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
}

.sale-2026-page .sale-2026-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	height: 52px;
	border-radius: 999px;
	padding: 0 36px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-align: center;
	text-transform: uppercase;
}

.sale-2026-page .sale-2026-button.btn-primary {
	border-color: var(--hzr-color-accent,#bd5182);
	background: var(--hzr-color-accent,#bd5182);
	color: #fff;
	box-shadow: 0 14px 36px color-mix(in srgb,var(--hzr-color-accent,#bd5182) 28%,transparent);
}

.sale-2026-page .sale-2026-button.btn-primary:hover,
.sale-2026-page .sale-2026-button.btn-primary:focus {
	border-color: #a84473;
	background: #a84473;
	color: #fff;
}

.sale-2026-page .sale-2026-button:hover,
.sale-2026-page .sale-2026-button:focus {
	text-decoration: none;
}

.sale-2026-page .sale-2026-button--outline {
	border: 1px solid var(--hzr-color-accent,#bd5182);
	background: #fff;
	color: var(--hzr-color-accent,#bd5182);
	box-shadow: none;
}

.sale-2026-page .sale-2026-button--outline:hover,
.sale-2026-page .sale-2026-button--outline:focus {
	background: var(--hzr-color-accent,#bd5182);
	color: #fff;
}

.sale-2026-button {
	text-align: center;
}

.sale-2026-media {
	margin: 0;
	transition: transform 0.22s ease;
}

.sale-2026-media:hover {
	transform: scale(1.018);
}

.sale-2026-media img {
	display: block;
	width: 100%;
	height: auto;
}

.sale-2026-info .sale-2026-media {
	overflow: hidden;
	border-radius: 18px;
}

.sale-2026-info .sale-2026-media img {
	border-radius: 18px;
}

.sale-2026-tv-strip {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: 24px;
	max-width: 860px;
	margin: 24px auto 0;
	padding: 12px 34px;
	border-radius: 999px;
	background: #f7ecf0;
}

.sale-2026-tv-strip a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.sale-2026-tv-strip img {
	display: block;
	width: 80%;
	max-height: 90px;
	object-fit: contain;
}

.sale-2026-ticker {
	margin-top: 25px;
	padding: 25px 20px 28px;
	background: var(--hzr-color-accent,#bd5182);
	color: #fff;
	text-align: center;
}

.sale-2026-ticker-label {
	margin-bottom: 18px;
	font-weight: 700;
	text-transform: uppercase;
}

.sale-2026-countdown {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.sale-2026-countdown-item {
	min-width: 82px;
	padding: 11px 12px;
	border-radius: 4px;
	background: #fff;
	color: var(--hzr-color-primary,#2c111d);
}

.sale-2026-countdown-item strong {
	display: block;
	font-size: clamp(26px, 3vw, 42px);
	line-height: 1;
}

.sale-2026-countdown-item span {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.sale-2026-kicker {
	margin: 0 0 20px;
	text-align: center;
}

.sale-2026-review-head {
	margin-bottom: 28px;
}

.sale-2026-review-grid .row {
	row-gap: 24px;
}

.sale-2026-info {
	scroll-margin-top: 260px;
}

.sale-2026-strength-title {
	margin: 0 0 32px;
	font-size: clamp(24px, 2vw, 32px);
	text-align: center;
}

.sale-2026-strength-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
}

.sale-2026-strength-item,
.sale-2026-strength-item a {
	color: var(--hzr-color-primary,#2c111d);
	text-decoration: none;
}

.sale-2026-strength-item-inner {
	text-align: center;
}

.sale-2026-strength-item img {
	display: block;
	width: 68px;
	height: 68px;
	margin: 0 auto 16px;
	object-fit: contain;
}

.sale-2026-strength-item h3 {
	margin: 0;
	font-size: 22px;
	line-height: 1.25;
	font-weight: 400;
}

.sale-2026-strength-item h3 strong {
	font-size: 1.2em;
	font-weight: 700;
}

@media (max-width: 991px) {
	.sale-2026-hero {
		padding-top: 48px;
	}

	.sale-2026-hero-grid,
	.sale-2026-info-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.sale-2026-strength-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.sale-2026-section {
		padding: 24px 0;
	}

	.sale-2026-hero {
		padding-top: 32px;
	}

	.sale-2026-title {
		font-size: 25px;
	}

	.sale-2026-text p {
		font-size: 16px;
	}

	.sale-2026-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.sale-2026-tv-strip {
		grid-template-columns: 1fr;
		border-radius: 28px;
		padding: 18px;
	}

	.sale-2026-tv-strip img {
		width: 100%;
	}

	.sale-2026-countdown-item {
		min-width: 72px;
	}

	.sale-2026-strength-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== Video-Block (acf/video.php) ===== */
.acf-block-video {
	max-width: 920px;
	margin: 48px auto;
}

.acf-block-video iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: 16px;
	display: block;
}

.acf-block-video.video-fit-hochkant {
	max-width: 420px;
}

.acf-block-video.video-fit-hochkant iframe {
	aspect-ratio: 9 / 16;
}

.acf-block-video__fallback {
	display: inline-block;
	padding: 12px 18px;
	background: #f0e6ea;
	border-radius: 8px;
	color: var(--hzr-color-accent,#bd5182);
	text-decoration: none;
	font-weight: 600;
}

/* ===== Termin Trauringe: Live-Aufbau fuer Intro + Video ===== */
.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-section-group-inner {
	max-width: 1210px;
	padding-top: 82px;
	padding-bottom: 0;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
	align-items: center;
	column-gap: 42px;
	row-gap: 0;
	padding-top: 150px;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair > .acf-block-image {
	grid-column: 1;
	grid-row: 1 / span 4;
	align-self: center;
	width: 100%;
	max-width: none;
	margin: 0;
	overflow: hidden;
	border-radius: 18px;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair > .acf-block-image img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 18px;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair > .hzr-pair-content {
	display: contents;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair-content > .acf-block-text,
.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair-content > .acf-block-divider,
.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair-content > .acf-block-button {
	grid-column: 2;
	justify-self: center;
	width: 100%;
	max-width: 560px;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair-content > .acf-block-text {
	margin: 0;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .acf-block-text h1 {
	margin: 0;
	font-size: clamp(30px, 2.25vw, 38px);
	line-height: 1.18;
	text-align: center;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .acf-block-text h1 strong {
	font-weight: 700;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair-content > .acf-block-divider {
	width: 126px;
	height: 1px;
	margin: 26px auto 12px;
	background: var(--hzr-color-accent,#bd5182);
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .acf-block-text p {
	margin-bottom: 1.35em;
	font-size: 19px;
	line-height: 1.45;
	text-align: center;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair-content > .acf-block-button {
	margin: 8px 0 0;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .acf-block-button .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	height: 48px;
	padding: 0 30px;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .acf-block-video {
	grid-column: 1 / -1;
	justify-self: center;
	width: 100vw;
	max-width: 100vw;
	margin: 52px 0 0;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .acf-block-video iframe {
	border-radius: 14px 14px 0 0;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:nth-child(2) .hzr-section-group-inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 72px;
	row-gap: 48px;
	max-width: 1210px;
	padding-top: 64px;
	padding-bottom: 76px;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:nth-child(2) .acf-block-text {
	grid-column: 1 / -1;
	margin: 0 0 12px;
	text-align: center;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:nth-child(2) .acf-block-text h2 {
	margin: 0;
	font-size: clamp(24px, 1.75vw, 30px);
	line-height: 1.25;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:nth-child(2) .acf-block-text h2 strong {
	font-weight: 700;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:nth-child(2) .acf-block-feature-box {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: center;
	gap: 16px;
	max-width: none;
	margin: 0;
	padding: 0;
	background: transparent;
	border-radius: 0;
	text-align: left;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:nth-child(2) .acf-block-feature-box-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:nth-child(2) .acf-block-feature-box img {
	display: block;
	width: 46px !important;
	height: 46px !important;
	max-width: none;
	margin: 0;
	object-fit: contain;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:nth-child(2) .acf-block-feature-box-text {
	font-size: 22px;
	line-height: 1.35;
}

.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:nth-child(2) .acf-block-feature-box-text p {
	margin: 0;
}

@media (max-width: 991px) {
	.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-section-group-inner {
		padding-top: 48px;
	}

	.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair {
		grid-template-columns: 1fr;
		row-gap: 28px;
		padding-top: 0;
	}

	.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair > .acf-block-image,
	.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair-content > .acf-block-text,
	.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair-content > .acf-block-divider,
	.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair-content > .acf-block-button,
	.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .acf-block-video {
		grid-column: 1;
	}

	.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .hzr-pair > .acf-block-image {
		grid-row: auto;
	}

	.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:first-child .acf-block-video {
		width: 100%;
		max-width: none;
	}

	.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:nth-child(2) .hzr-section-group-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 36px;
		row-gap: 32px;
		padding-top: 48px;
	}
}

@media (max-width: 575px) {
	.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:nth-child(2) .hzr-section-group-inner {
		grid-template-columns: 1fr;
		row-gap: 24px;
	}

	.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:nth-child(2) .acf-block-feature-box {
		grid-template-columns: 42px minmax(0, 1fr);
		gap: 14px;
	}

	.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:nth-child(2) .acf-block-feature-box img {
		width: 40px !important;
		height: 40px !important;
	}

	.termin-trauringe-article .acf-page-content--blocks > .hzr-section-group:nth-child(2) .acf-block-feature-box-text {
		font-size: 18px;
	}
}

/* ===== Eheringe: Gerstner-Landingpage ===== */

.eheringe-page .acf-page-content--blocks .hzr-section-group-inner {
	max-width: 1210px;
}

.eheringe-page .hzr-section-group--marker-intro .hzr-section-group-inner {
	padding-top: 72px;
	padding-bottom: 76px;
}

.eheringe-page .hzr-section-group--marker-intro .hzr-pair {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1fr);
	align-items: center;
	gap: 58px;
	margin: 0;
}

.eheringe-page .hzr-section-group--marker-intro .hzr-pair-content {
	max-width: 580px;
	justify-self: center;
}

.eheringe-page .hzr-section-group--marker-intro .acf-block-text {
	margin: 0;
	text-align: center;
}

.eheringe-page .hzr-section-group--marker-intro .acf-block-text h1 {
	margin: 0 0 30px;
	font-size: clamp(32px, 2.65vw, 44px);
	line-height: 1.14;
	text-transform: uppercase;
}

.eheringe-page .hzr-section-group--marker-intro .acf-block-text h1 strong,
.eheringe-page .hzr-section-group--marker-intro .acf-block-text p strong {
	font-weight: 700;
}

.eheringe-page .hzr-section-group--marker-intro .acf-block-text p {
	margin: 0 0 1.25em;
	font-size: 16px;
	line-height: 1.58;
}

.eheringe-page .hzr-section-group--marker-intro .acf-block-text p.uppercase {
	margin-top: 22px;
	margin-bottom: 16px;
	font-size: 18px;
	line-height: 1.38;
}

.eheringe-page .hzr-section-group--marker-intro .acf-block-image {
	width: 100%;
	margin: 0;
	border-radius: 8px;
	background: #f4f1f2;
	overflow: hidden;
	transform: none;
}

.eheringe-page .hzr-section-group--marker-intro .acf-block-image:hover {
	transform: none;
}

.eheringe-page .hzr-section-group--marker-intro .acf-block-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.06;
	object-fit: cover;
	border-radius: 8px;
}

.eheringe-page .hzr-section-group--marker-rings .hzr-section-group-inner {
	padding-top: 16px;
	padding-bottom: 92px;
}

.eheringe-page .hzr-section-group--marker-rings .acf-block-text h2 {
	margin: 0;
	font-size: clamp(20px, 1.8vw, 28px);
	line-height: 1.25;
	text-transform: uppercase;
}

.eheringe-page .hzr-section-group--marker-rings .acf-block-video {
	max-width: 920px;
	margin-top: 44px;
	margin-bottom: 0;
	border-radius: 10px;
	box-shadow: 0 18px 42px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 12%,transparent);
	overflow: hidden;
}

.eheringe-page .hzr-section-group--marker-rings .acf-block-video iframe {
	border-radius: 10px;
}

.eheringe-page .hzr-section-group--marker-benefit-modul .hzr-section-group-inner {
	padding-top: 82px;
	padding-bottom: 82px;
}

.eheringe-page .hzr-section-group--marker-benefit-modul .acf-block-text h2 {
	margin: 0 0 30px;
	font-size: clamp(24px, 2vw, 32px);
	line-height: 1.2;
	text-transform: uppercase;
}

.eheringe-page .hzr-section-group--marker-benefit-modul .hzr-feature-grid {
	gap: 24px;
	max-width: 1030px;
	margin: 0 auto 34px;
}

.eheringe-page .hzr-section-group--marker-benefit-modul .acf-block-feature-box {
	min-height: 170px;
	padding: 30px 24px 28px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid color-mix(in srgb,var(--hzr-color-accent,#bd5182) 14%,transparent);
	border-radius: 8px;
	box-shadow: 0 16px 40px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 5.5%,transparent);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.eheringe-page .hzr-section-group--marker-benefit-modul .acf-block-feature-box:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 48px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 9%,transparent);
}

.eheringe-page .hzr-section-group--marker-benefit-modul .acf-block-feature-box-image {
	width: 74px;
	height: 74px;
	margin-bottom: 18px;
	background: #fff;
	border: 1px solid color-mix(in srgb,var(--hzr-color-primary,#2c111d) 8%,transparent);
	border-radius: 999px;
}

.eheringe-page .hzr-section-group--marker-benefit-modul .acf-block-feature-box-image__img {
	width: 42px !important;
	height: 42px !important;
	filter: invert(11%) sepia(20%) saturate(1628%) hue-rotate(285deg) brightness(88%) contrast(96%);
}

.eheringe-page .hzr-section-group--marker-benefit-modul .acf-block-feature-box-title {
	max-width: 245px;
	margin-left: auto;
	margin-right: auto;
	font-size: 17px;
	line-height: 1.28;
	font-weight: 700;
}

.eheringe-page .hzr-section-group--marker-benefit-modul .hzr-section-group-inner > .acf-block-text:last-child {
	max-width: 1080px;
	margin: 0 auto;
}

.eheringe-page .hzr-section-group--marker-benefit-modul .hzr-section-group-inner > .acf-block-text:last-child p {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	text-align: left !important;
}

.eheringe-page .hzr-section-group--marker-seo .hzr-section-group-inner {
	max-width: 1210px;
	padding-top: 86px;
	padding-bottom: 92px;
}

.eheringe-page .hzr-section-group--marker-seo .hzr-pair {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1fr);
	align-items: start;
	column-gap: 64px;
	row-gap: 34px;
	margin: 0;
}

.eheringe-page .hzr-section-group--marker-seo .hzr-pair-content {
	display: contents;
}

.eheringe-page .hzr-section-group--marker-seo .hzr-pair-content > .acf-block:nth-child(1),
.eheringe-page .hzr-section-group--marker-seo .hzr-pair-content > .acf-block:nth-child(2) {
	grid-column: 1;
	max-width: 560px;
	justify-self: center;
	text-align: center;
}

.eheringe-page .hzr-section-group--marker-seo .hzr-pair > .acf-block-image {
	grid-column: 2;
	grid-row: 1 / span 2;
	width: 100%;
	margin: 0;
	border-radius: 8px;
	background: #f7f0f3;
	overflow: hidden;
	transform: none;
}

.eheringe-page .hzr-section-group--marker-seo .hzr-pair > .acf-block-image:hover {
	transform: none;
}

.eheringe-page .hzr-section-group--marker-seo .hzr-pair > .acf-block-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.08;
	object-fit: cover;
	border-radius: 8px;
}

.eheringe-page .hzr-section-group--marker-seo .hzr-pair-content > .acf-block:nth-child(n+3) {
	grid-column: 1 / -1;
	width: 100%;
	max-width: 920px;
	justify-self: center;
}

.eheringe-page .hzr-section-group--marker-seo .acf-block-text {
	margin-bottom: 18px;
}

.eheringe-page .hzr-section-group--marker-seo .acf-block-text h2,
.eheringe-page .hzr-section-group--marker-seo .acf-block-text h3 {
	margin-top: 42px;
	margin-bottom: 16px;
	font-size: clamp(22px, 1.9vw, 30px);
	line-height: 1.24;
	text-transform: uppercase;
}

.eheringe-page .hzr-section-group--marker-seo .hzr-pair-content > .acf-block:nth-child(1) h3 {
	margin-top: 0;
}

.eheringe-page .hzr-section-group--marker-seo .acf-block-text p {
	text-align: left !important;
}

.eheringe-page .hzr-section-group--marker-seo .hzr-pair-content > .acf-block:nth-child(1) p,
.eheringe-page .hzr-section-group--marker-seo .hzr-pair-content > .acf-block:nth-child(2) p {
	text-align: center !important;
}

.eheringe-page .hzr-section-group--marker-seo .acf-block-faq {
	width: 100%;
	max-width: 1000px;
	margin: 42px auto 58px;
	padding: 0;
	background: transparent;
}

.eheringe-page .hzr-section-group--marker-seo .acf-block-faq .container {
	max-width: none;
	padding: 0;
}

.eheringe-page .hzr-section-group--marker-seo .acf-block-faq .row {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	margin: 0;
	border: 1px solid color-mix(in srgb,var(--hzr-color-accent,#bd5182) 18%,transparent);
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 14px 36px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 6%,transparent);
}

.eheringe-page .hzr-section-group--marker-seo .acf-block-faq [class*="col-"] {
	width: auto;
	max-width: none;
	padding: 0;
}

.eheringe-page .hzr-section-group--marker-seo .faq-section-side {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 26px;
	background: var(--hzr-color-primary,#2c111d);
}

.eheringe-page .hzr-section-group--marker-seo .faq-section-side-inner {
	position: static;
	top: auto;
}

.eheringe-page .hzr-section-group--marker-seo .faq-section-headline {
	color: #fff;
	font-size: 24px;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.eheringe-page .hzr-section-group--marker-seo .faq-section-main {
	border-left: 0;
	padding: 24px 30px;
	background: #fff;
}

.eheringe-page .hzr-section-group--marker-seo .faq-section-item {
	border: 0;
	padding: 0;
}

.eheringe-page .hzr-section-group--marker-seo .faq-section-item-headline {
	margin: 0 0 14px;
	color: var(--hzr-color-primary,#2c111d);
	font-size: 20px;
	line-height: 1.3;
	font-weight: 600;
	cursor: default;
}

.eheringe-page .hzr-section-group--marker-seo .faq-section-item-headline::before,
.eheringe-page .hzr-section-group--marker-seo .faq-section-item-headline::after {
	display: none;
}

.eheringe-page .hzr-section-group--marker-seo .faq-section-item-content {
	max-height: none;
	opacity: 1;
	overflow: visible;
	color: var(--hzr-color-primary,#2c111d);
}

.eheringe-page .hzr-section-group--marker-seo .contents-container {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 24px;
}

.eheringe-page .hzr-section-group--marker-seo .contents-container a {
	color: #415c75;
	text-decoration: none;
}

.eheringe-page .hzr-section-group--marker-seo .contents-container a:hover,
.eheringe-page .hzr-section-group--marker-seo .contents-container a:focus {
	color: var(--hzr-color-accent,#bd5182);
	text-decoration: none;
}

@media (max-width: 991px) {
	.eheringe-page .hzr-section-group--marker-intro .hzr-pair,
	.eheringe-page .hzr-section-group--marker-seo .hzr-pair {
		display: flex;
		flex-direction: column;
		gap: 32px;
	}

	.eheringe-page .hzr-section-group--marker-seo .hzr-pair-content {
		display: block;
	}

	.eheringe-page .hzr-section-group--marker-seo .hzr-pair-content > .acf-block:nth-child(n) {
		max-width: 100%;
	}

	.eheringe-page .hzr-section-group--marker-seo .hzr-pair > .acf-block-image {
		order: -1;
	}

	.eheringe-page .hzr-section-group--marker-benefit-modul .hzr-feature-grid--cols-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	body.eheringe-page {
		overflow-x: hidden;
	}

	.eheringe-page .acf-page-content--blocks {
		width: 100%;
		max-width: 100vw;
		overflow-x: hidden;
	}

	.eheringe-page .acf-page-content--blocks .hzr-section-group {
		max-width: 100vw;
	}

	.eheringe-page .acf-page-content--blocks .hzr-section-group-inner {
		box-sizing: border-box;
		width: 100%;
		max-width: 100vw;
		padding-left: 24px;
		padding-right: 24px;
	}

	.eheringe-page .hzr-section-group--marker-intro .hzr-pair,
	.eheringe-page .hzr-section-group--marker-seo .hzr-pair {
		display: block !important;
		width: 100%;
		max-width: 100%;
	}

	.eheringe-page .hzr-section-group--marker-intro .hzr-pair-content,
	.eheringe-page .hzr-section-group--marker-seo .hzr-pair-content {
		display: block !important;
		width: 100%;
		max-width: calc(100vw - 48px) !important;
		margin-left: auto;
		margin-right: auto;
	}

	.eheringe-page .hzr-section-group .acf-block-text,
	.eheringe-page .hzr-section-group .acf-block-heading {
		box-sizing: border-box;
		max-width: calc(100vw - 48px) !important;
		margin-left: auto;
		margin-right: auto;
		overflow-wrap: break-word;
	}

	.eheringe-page .hzr-section-group--marker-intro .hzr-section-group-inner {
		padding-top: 46px;
		padding-bottom: 54px;
	}

	.eheringe-page .hzr-section-group--marker-intro .acf-block-text h1 {
		font-size: 26px;
		overflow-wrap: anywhere;
		hyphens: auto;
	}

	.eheringe-page .hzr-section-group--marker-rings .acf-block-video {
		width: 100%;
		max-width: 100%;
	}

	.eheringe-page .hzr-section-group--marker-rings .hzr-section-group-inner,
	.eheringe-page .hzr-section-group--marker-benefit-modul .hzr-section-group-inner,
	.eheringe-page .hzr-section-group--marker-seo .hzr-section-group-inner {
		padding-top: 54px;
		padding-bottom: 58px;
	}

	.eheringe-page .hzr-section-group--marker-benefit-modul .hzr-feature-grid--cols-3,
	.eheringe-page .hzr-section-group--marker-seo .contents-container,
	.eheringe-page .hzr-section-group--marker-seo .acf-block-faq .row {
		grid-template-columns: 1fr;
	}

	.eheringe-page .hzr-section-group--marker-benefit-modul .acf-block-feature-box {
		min-height: 0;
	}

	.eheringe-page .hzr-section-group--marker-seo .faq-section-side {
		padding: 20px 24px;
		justify-content: flex-start;
	}

	.eheringe-page .hzr-section-group--marker-seo .faq-section-main {
		padding: 22px 24px;
	}
}

/* ===== Map-Block (acf/map.php — DSGVO-konformer Maps-Link) ===== */
.acf-block-map {
	max-width: 920px;
	margin: 48px auto;
	padding: 48px 32px;
	background: var(--hzr-color-rose-bg,#f8edf2);
	border-radius: 16px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.acf-block-map__placeholder {
	max-width: 480px;
}

.acf-block-map__hint {
	margin: 0 0 18px;
	color: #444;
	font-size: 17px;
	font-weight: 500;
}

.acf-block-map__open {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 26px;
	border-radius: 999px;
	background: var(--hzr-color-accent,#bd5182);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 0.02em;
	transition: background 0.2s ease;
}

.acf-block-map__open:hover {
	background: #a64470;
}

.acf-block-map__coords {
	margin: 18px 0 0;
	color: #888;
	font-size: 13px;
	font-variant-numeric: tabular-nums;
}

/* ===== Location-Grid (acf/location-grid.php) =====
 * Nutzt die Homepage-Klassen .locations + .section-video-grid-bar aus main.css.
 * Full-bleed-Trick weil ACF-Pages in .container > .row > .col-12 gewrappt sind.
 */
.acf-block-location-grid-section {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-left: 0;
	padding-right: 0;
}
.acf-block-location-grid-section .locations {
	max-width: none;
}

/* ============================================================
   Header-Suche
   ============================================================ */

button.header-hud-item {
	border: 0;
	padding: 0;
}

.header-search-form {
	display: flex;
	align-items: center;
	position: relative;
	width: min(280px, 100%);
	height: 40px;
	background: #fff;
	border: 1px solid var(--hzr-color-rose-line,#eadde3);
	border-radius: 999px;
	overflow: visible;
	box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.header .header-search-form {
	display: none;
}

.header-hud-search-toggle,
.header-hud-calendar {
	text-decoration: none;
	border: 0;
	padding: 0;
}

.header-search-input {
	flex: 1;
	min-width: 0;
	height: 100%;
	border: 0;
	background: transparent;
	color: var(--hzr-color-primary,#2c111d);
	font-size: 14px;
	padding: 0 0 0 16px;
	outline: none;
	border-radius: 999px 0 0 999px;
}

.header-search-input::placeholder {
	color: var(--hzr-color-muted-alt,#757575);
}

.header-search-submit {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border: 0;
	background: var(--hzr-color-primary,#2c111d);
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	line-height: 40px;
	text-align: center;
	padding: 0;
	border-radius: 0 999px 999px 0;
}

.header-search-submit:hover {
	background: var(--hzr-color-primary-deep,#1a0810);
}

.header-search-suggest {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	right: 0;
	width: 100%;
	max-height: min(520px, calc(100vh - 180px));
	overflow-y: auto;
	background: #fff;
	border: 1px solid var(--hzr-color-rose-line,#eadde3);
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(0,0,0,.16);
	padding: 10px;
	z-index: 1000003;
}

/* Header-HUD-Suchfeld bleibt eng (sonst wuerde ein 280-300px-Suggest
   ueber das ganze Top-Right ueberlappen). Volle Breite gilt nur fuer
   den Overlay-Search im Hero-Banner und alle anderen Kontexte. */
.header .header-search-form .header-search-suggest {
	left: auto;
	right: 0;
	width: min(380px, calc(100vw - 30px));
}

.header-search-suggest[hidden] {
	display: none;
}

/* Suggest-Form braucht position:relative, sonst dockt der absolut-positionierte
   Suggest-Dropdown an den naechsten positionierten Ancestor an — im Search-
   Overlay ist das die fixed-Box `.hero-action-banner` und der Dropdown
   landet unten rechts statt unter dem Input. */
form[data-hzr-suggest-form] {
	position: relative;
}

/* ============================================================
   Catalog Sort-Dropdown im listing-hud-controls
   ============================================================ */

.listing-hud-controls {
	display: flex;
	align-items: center;
	gap: 16px;
}

.listing-sort {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--hzr-color-primary,#2c111d);
	margin: 0;
	cursor: pointer;
}

.listing-sort-label {
	font-weight: 500;
}

.listing-sort select {
	appearance: none;
	-webkit-appearance: none;
	background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%232c111d' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat right 12px center;
	border: 1px solid var(--hzr-color-rose-line,#eadde3);
	border-radius: 999px;
	padding: 7px 36px 7px 14px;
	font-size: 14px;
	color: var(--hzr-color-primary,#2c111d);
	cursor: pointer;
	min-width: 180px;
	line-height: 1.2;
	transition: border-color 0.2s ease;
}

.listing-sort select:hover,
.listing-sort select:focus {
	border-color: var(--hzr-color-accent,#bd5182);
	outline: none;
}

/* ============================================================
   Filter-Drawer: aktiver State (Multi-Select-Pseudo-Checkbox)
   ============================================================ */

/* span in Filter-Links wird zur Pseudo-Checkbox. Markup ist:
   <a data-tax data-slug><span></span> Label <small>(N)</small></a> */
.listing-filters-content {
	height: auto;
	overflow-y: scroll;
}

@media (min-width: 992px) {
	.listing-filters-content-subgroup ul li a {
		justify-content: flex-start;
		text-align: left;
	}
}

.listing-filters-content-subgroup ul li a > span:first-child {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 1.5px solid #c9b8c2;
	border-radius: 4px;
	background: #fff;
	position: relative;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.listing-filters-content-subgroup ul li a.is-active > span:first-child {
	background: var(--hzr-color-accent,#bd5182);
	border-color: var(--hzr-color-accent,#bd5182);
}

.listing-filters-content-subgroup ul li a.is-active > span:first-child::after {
	content: '';
	position: absolute;
	left: 4px;
	top: 0;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.listing-filters-content-subgroup ul li a.is-active {
	background: color-mix(in srgb,var(--hzr-color-accent,#bd5182) 8%,transparent);
	color: var(--hzr-color-primary,#2c111d);
	font-weight: 500;
}

.listing-filters-content-subgroup ul li a:hover {
	background: color-mix(in srgb,var(--hzr-color-accent,#bd5182) 4%,transparent);
}

/* Loading-State: leichter Opacity-Effekt waehrend AJAX laeuft. */
.products.is-loading {
	opacity: 0.6;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

/* Filter-Drawer: Expand/Collapse fuer lange Term-Listen (Brands 37+). */
.listing-filters-content-subgroup li.filter-term--collapsed {
	display: none;
}

.listing-filters-content-subgroup.is-expanded li.filter-term--collapsed {
	display: list-item;
}

.listing-filters-content-subgroup-expand {
	display: inline-block;
	background: none;
	border: 0;
	padding: 8px 0;
	margin-top: 4px;
	font-size: 14px;
	color: var(--hzr-color-accent,#bd5182);
	cursor: pointer;
	text-decoration: underline;
	font-family: inherit;
}

.listing-filters-content-subgroup-expand:hover {
	color: var(--hzr-color-accent-hover,#a8447a);
}

.listing-filters-content-subgroup-expand-less {
	display: none;
}

.listing-filters-content-subgroup.is-expanded .listing-filters-content-subgroup-expand-more {
	display: none;
}

.listing-filters-content-subgroup.is-expanded .listing-filters-content-subgroup-expand-less {
	display: inline;
}

@media (max-width: 575px) {
	.listing-sort-label {
		display: none;
	}
	.listing-sort select {
		min-width: 140px;
	}
}

.header-search-suggest-section + .header-search-suggest-section {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #f1e7eb;
}

.header-search-suggest-label {
	color: var(--hzr-color-muted-alt,#757575);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin: 0 0 6px;
	padding: 0 4px;
}

.header-search-suggest-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px;
	border-radius: 6px;
	color: var(--hzr-color-primary,#2c111d);
	text-decoration: none;
}

.header-search-suggest-item:hover,
.header-search-suggest-item:focus,
.header-search-suggest-item.is-active {
	background: var(--hzr-color-rose-bg,#f8edf2);
	color: var(--hzr-color-primary,#2c111d);
	text-decoration: none;
}

.header-search-suggest-item img {
	flex: 0 0 42px;
	width: 42px;
	height: 56px;
	object-fit: cover;
	border-radius: 4px;
	background: var(--hzr-color-sand,#f2e9dc);
}

.header-search-suggest-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.header-search-suggest-title {
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.header-search-suggest-subtitle {
	color: var(--hzr-color-muted-alt,#757575);
	font-size: 12px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.header-search-suggest-empty {
	color: var(--hzr-color-muted-alt,#757575);
	font-size: 13px;
	padding: 10px 8px;
}

.header-search-suggest-all {
	display: block;
	margin: 10px 0 0;
	padding: 10px 12px;
	border-radius: 999px;
	background: var(--hzr-color-primary,#2c111d);
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 13px;
}

.header-search-suggest-all:hover {
	background: var(--hzr-color-primary-deep,#1a0810);
	color: #fff;
	text-decoration: none;
}

@media (max-width: 1199px) {
	.header-search-form {
		width: 210px;
	}
}

@media (max-width: 991px) {
	.header-hud {
		gap: 10px;
		overflow: visible;
	}

	.header-search-form {
		display: none;
	}

	.header-search-input {
		transition: padding .2s ease;
	}

	.header-search-form:focus-within .header-search-input {
		padding-left: 18px;
	}
}

@media (max-width: 374px) {
	.header-search-form {
		width: 136px;
		max-width: calc(100vw - 164px);
	}

	.header-search-form:focus-within {
		width: clamp(164px, 45vw, 178px);
		max-width: calc(100vw - 146px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.header-search-form,
	.header-search-input {
		transition: none;
	}
}

/* ============================================================
   Mobile Social Overlay
   ============================================================ */
.hero-topbar-social-trigger,
.mobile-socials-layer {
	display: none;
}

@media (max-width: 991px) {
	.hero-topbar-socials {
		display: none;
	}

	.hero-topbar-social-trigger {
		align-items: center;
		background: var(--hzr-color-accent-mo,#c15082);
		border: 1px solid rgba(255,255,255,.38);
		border-radius: 50%;
		box-shadow: 0 8px 18px rgba(0,0,0,.2);
		color: #fff;
		cursor: pointer;
		display: inline-flex;
		flex: 0 0 36px;
		font: inherit;
		height: 36px;
		justify-content: center;
		margin: 0;
		padding: 0;
		transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
		width: 36px;
	}

	.hero-topbar-social-trigger span {
		font-size: 20px;
		line-height: 1;
	}

	.hero-topbar-social-trigger:hover,
	.hero-topbar-social-trigger:focus-visible {
		background: #d56596;
		box-shadow: 0 10px 24px rgba(0,0,0,.25);
		outline: 0;
		transform: translateY(-1px);
	}

	.mobile-socials-layer {
		align-items: center;
		background:
			linear-gradient(135deg, color-mix(in srgb,var(--hzr-color-primary,#2c111d) 96%,transparent), rgba(88,25,56,.94)),
			var(--hzr-color-primary,#2c111d);
		color: var(--hzr-color-primary,#2c111d);
		display: grid;
		inset: 0;
		justify-items: center;
		opacity: 0;
		padding: 28px;
		pointer-events: none;
		position: fixed;
		transition: opacity .24s ease, visibility .24s ease;
		visibility: hidden;
		z-index: 2147483647;
	}

	.mobile-socials-layer.is-active {
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
	}

	.mobile-socials-close {
		align-items: center;
		background: rgba(255,255,255,.96);
		border: 0;
		border-radius: 50%;
		box-shadow: 0 10px 24px rgba(0,0,0,.22);
		color: var(--hzr-color-primary,#2c111d);
		cursor: pointer;
		display: inline-flex;
		height: 44px;
		justify-content: center;
		padding: 0;
		position: absolute;
		right: 20px;
		top: 20px;
		transition: background .2s ease, transform .2s ease;
		width: 44px;
	}

	.mobile-socials-close span {
		font-size: 25px;
		line-height: 1;
	}

	.mobile-socials-close:hover,
	.mobile-socials-close:focus-visible {
		background: #fff;
		outline: 0;
		transform: translateY(-1px);
	}

	.mobile-socials-orbit {
		aspect-ratio: 1;
		max-width: 360px;
		position: relative;
		width: min(82vw, 360px);
	}

	.mobile-socials-logo {
		background: #fff;
		border: 1px solid color-mix(in srgb,var(--hzr-color-accent-mo,#c15082) 16%,transparent);
		border-radius: 50%;
		box-shadow: 0 18px 44px rgba(0,0,0,.32);
		height: 104px;
		left: 50%;
		object-fit: contain;
		padding: 16px;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%) scale(.94);
		transition: transform .32s cubic-bezier(.22,.8,.2,1);
		width: 104px;
		z-index: 2;
	}

	.mobile-socials-layer.is-active .mobile-socials-logo {
		transform: translate(-50%, -50%) scale(1);
	}

	.mobile-socials-items {
		inset: 0;
		position: absolute;
	}

	.mobile-socials-item {
		--social-radius: min(32vw, 136px);
		align-items: center;
		background: #fff;
		border: 1px solid rgba(255,255,255,.75);
		border-radius: 50%;
		box-shadow: 0 16px 34px rgba(0,0,0,.28);
		color: var(--hzr-color-primary,#2c111d);
		display: inline-flex;
		font-size: 27px;
		height: 58px;
		justify-content: center;
		left: 50%;
		opacity: 0;
		position: absolute;
		text-decoration: none;
		top: 50%;
		transform: translate(-50%, -50%) rotate(var(--social-angle)) translateY(calc(-1 * var(--social-radius))) scale(.82);
		transform-origin: center;
		width: 58px;
		will-change: transform, opacity;
		z-index: 1;
	}

	.mobile-socials-item:hover,
	.mobile-socials-item:focus-visible {
		background: #fff;
		color: var(--hzr-color-accent-mo,#c15082);
		outline: 0;
	}

	.mobile-socials-item span {
		display: block;
		line-height: 1;
		transform: rotate(var(--social-angle-inverse));
	}

	.mobile-socials-layer.is-active .mobile-socials-item {
		animation: mobile-socials-orbit-in .82s cubic-bezier(.18,.84,.24,1) forwards;
		animation-delay: calc(var(--social-index) * 58ms);
	}

	.mobile-socials-layer.is-active .mobile-socials-item span {
		animation: mobile-socials-icon-upright .82s cubic-bezier(.18,.84,.24,1) forwards;
		animation-delay: calc(var(--social-index) * 58ms);
	}

	.mobile-socials-item--facebook {
		color: #1877f2;
	}

	.mobile-socials-item--instagram {
		color: #e1306c;
	}

	.mobile-socials-item--youtube {
		color: #ff0000;
	}

	.mobile-socials-item--pinterest {
		color: #bd081c;
	}

	.mobile-socials-item--tiktok {
		color: #111;
	}

	.mobile-socials-item--twitter {
		color: #111;
	}

	.mobile-socials-item--linkedin {
		color: #0a66c2;
	}

	.mobile-socials-item--email {
		color: var(--hzr-color-accent-mo,#c15082);
	}
}

@media (max-width: 374px) {
	.mobile-socials-orbit {
		width: min(86vw, 330px);
	}

	.mobile-socials-logo {
		height: 92px;
		padding: 14px;
		width: 92px;
	}

	.mobile-socials-item {
		--social-radius: min(33vw, 122px);
		font-size: 24px;
		height: 52px;
		width: 52px;
	}
}

@keyframes mobile-socials-orbit-in {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) rotate(var(--social-angle-start)) translateY(calc(-1 * var(--social-radius))) scale(.62);
	}

	72% {
		opacity: 1;
		transform: translate(-50%, -50%) rotate(var(--social-angle-peak)) translateY(calc(-1 * var(--social-radius))) scale(1.08);
	}

	100% {
		opacity: 1;
		transform: translate(-50%, -50%) rotate(var(--social-angle)) translateY(calc(-1 * var(--social-radius))) scale(1);
	}
}

@keyframes mobile-socials-icon-upright {
	0% {
		transform: rotate(var(--social-angle-start-inverse));
	}

	72% {
		transform: rotate(var(--social-angle-peak-inverse));
	}

	100% {
		transform: rotate(var(--social-angle-inverse));
	}
}

@media (prefers-reduced-motion: reduce) {
	.mobile-socials-layer,
	.mobile-socials-logo,
	.mobile-socials-item,
	.mobile-socials-item span,
	.hero-topbar-social-trigger {
		animation: none !important;
		transition: none !important;
	}

	.mobile-socials-layer.is-active .mobile-socials-item {
		opacity: 1;
		transform: translate(-50%, -50%) rotate(var(--social-angle)) translateY(calc(-1 * var(--social-radius))) scale(1);
	}

	.mobile-socials-layer.is-active .mobile-socials-item span {
		transform: rotate(var(--social-angle-inverse));
	}
}

/* ============================================================
   Mobile-Navigation (aus Mo's Commit 27. Mai 2026)
   _head.scss + _hamburgers.scss (collapse type, vereinfacht).
   ============================================================ */

/* ---- Hamburger-Icon (collapse type, 3 Striche stack) ---- */
.hamburger {
	padding: 15px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}
.hamburger:hover { opacity: 0.7; }
.hamburger-box {
	width: 32px;
	height: 18px;
	display: inline-block;
	position: relative;
}
.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -1px;
	width: 32px;
	height: 2px;
	background-color: #000;
	border-radius: 2px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
	width: 32px;
	height: 2px;
	background-color: inherit;
	border-radius: 2px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.hamburger-inner::before { top: -9px; }
.hamburger-inner::after  { bottom: -9px; }

/* collapse type — bottom-stripe rotiert; oben + mitte clappen zusammen */
.hamburger--collapse .hamburger-inner {
	top: auto;
	bottom: 0;
	transition-duration: 0.13s;
	transition-delay: 0.13s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
	top: -18px;
	transition: top 0.2s 0.2s cubic-bezier(0.33, 0.66, 0.66, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
	transition: top 0.12s 0.2s cubic-bezier(0.33, 0.66, 0.66, 1),
		transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
	transform: translate3d(0, -9px, 0) rotate(-45deg);
	transition-delay: 0.22s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
	top: 0;
	opacity: 0;
	transition: top 0.2s cubic-bezier(0.33, 0.66, 0.66, 1), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
	top: 0;
	transform: rotate(-90deg);
	transition: top 0.1s 0.16s cubic-bezier(0.33, 0.66, 0.66, 1),
		transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* ---- Header HUD-Item Burger-Slot ---- */
.header-hud-item .hamburger {
	padding: 0;
	transform: scale(.7);
	margin: 3px 0 0;
}
.header-hud-item.burger {
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (min-width: 992px) {
	.header-hud-item.burger { display: none; }
}
.header-hud-item.burger:hover { background: #fff; }
.header-hud-item.burger:hover .hamburger-inner,
.header-hud-item.burger:hover .hamburger-inner:before,
.header-hud-item.burger:hover .hamburger-inner:after {
	background: var(--hzr-color-primary,#2c111d);
}

/* Logo Mobile-Responsive */
.header-logo img { height: 45px; }
@media (min-width: 768px) {
	.header-logo img { height: 60px; }
}
.header-logo img.invert-1 { filter: invert(1); }
@media (min-width: 992px) {
	.header-logo img.invert-1 { filter: none; }
}
.header-static .invert-1 { filter: none !important; }

/* ---- Mobile-Nav Overlay ---- */
.mobile-nav {
	position: fixed;
	top: 62px;
	left: 0;
	width: 100%;
	padding: 85px 0 15px;
	min-height: calc(100% - 62px);
	background: #fff;
	z-index: 100000;
	transition: all .3s ease;
	opacity: 0;
	visibility: hidden;
	display: block;
	overflow-y: auto;
}
@media (min-width: 992px) {
	.mobile-nav { display: none; }
}
.mobile-nav.active {
	opacity: 1;
	visibility: visible;
}
.mobile-nav-main { padding: 0 15px; }
.mobile-nav-info {
	color: var(--hzr-color-primary,#2c111d);
	padding: 30px 15px 15px;
	font-size: 14px;
	line-height: 1.6;
}
.mobile-nav ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobile-nav ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 22px;
	color: var(--hzr-color-primary,#2c111d);
	text-decoration: none;
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
}
.mobile-nav ul li a::after {
	font-family: "Material Design Icons";
	content: "\F0142"; /* chevron-right */
	font-size: 22px;
	color: var(--hzr-color-accent,#bd5182);
}

/* ============================================================
   Blog-Listing (page-blog.php) — Patch fuer fehlende .blog-item-
   Klassen aus Mo's main.css (~Z. 3846-3905).
   ============================================================ */
.blog-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.blog-item-image {
	margin: 0 0 20px;
	height: 300px;
	overflow: hidden;
	border-radius: 20px;
	width: 100%;
}
.blog-item-image img {
	object-fit: cover;
	height: 100%;
	width: 100%;
	border-radius: 20px;
}
.blog-item-flagline {
	color: var(--hzr-color-primary,#2c111d);
	margin: 0 0 10px;
	font-size: 14px;
	letter-spacing: 0.02em;
}
.blog-item-headline {
	color: var(--hzr-color-primary,#2c111d);
	font-size: 25px;
	line-height: 1.25;
	margin: 0 0 8px;
}
.blog-item-description {
	font-size: 15px;
	color: var(--hzr-color-primary,#2c111d);
	margin: 10px 0 0;
	line-height: 1.5;
}
.blog-item--lg .blog-item-image {
	height: auto;
	max-height: 520px;
}
.blog-item--lg .blog-item-headline { font-size: 34px; }
.blog-item--lg .blog-item-description { font-size: 17px; max-width: 720px; margin-left: auto; margin-right: auto; }

.blog-item .link-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
}

/* Hover-Effekt für Card */
.blog-item-image img { transition: transform 0.5s ease; }
.blog-item:hover .blog-item-image img { transform: scale(1.04); }

.location-blog-empty {
	padding: 60px 0;
	color: var(--hzr-color-muted-alt,#757575);
	font-size: 17px;
}

.location-blog-pagination {
	margin: 46px 0 0;
	text-align: center;
}

.location-blog-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.location-blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 14px;
	border: 1px solid color-mix(in srgb,var(--hzr-color-primary,#2c111d) 16%,transparent);
	border-radius: 999px;
	color: var(--hzr-color-primary,#2c111d);
	font-size: 14px;
}

.location-blog-pagination .page-numbers.current,
.location-blog-pagination a.page-numbers:hover {
	background: #c15086;
	border-color: #c15086;
	color: #fff;
}

/* ============================================================
   Suche (search.php) — Hero + Card-Grid + Empty-State
   ============================================================ */

.search-page {
	/* Header + Topbar sind fixed; der Abstand sitzt im Search-Hero. */
}

.search-hero {
	background: var(--hzr-color-sand,#f2e9dc);
	padding: 105px 0 50px;
	margin: 0 0 50px;
}
.search-page .section { padding-top: 0; padding-bottom: 60px; }
.search-page .section.pt-0 { padding-top: 0; }
.search-hero-flagline {
	color: var(--hzr-color-primary,#2c111d);
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-size: 14px;
	letter-spacing: 0.04em;
	margin: 0 0 12px;
}
.search-hero-title {
	color: var(--hzr-color-primary,#2c111d);
	font-family: "Poppins", sans-serif;
	font-size: 38px;
	font-weight: 600;
	letter-spacing: -0.75px;
	margin: 0 0 12px;
	line-height: 1.15;
}
.search-hero-meta {
	color: var(--hzr-color-primary,#2c111d);
	font-size: 14px;
	margin: 0 0 28px;
}
.search-hero-form {
	display: flex;
	position: relative;
	max-width: 560px;
	margin: 24px auto 0;
	background: #fff;
	border-radius: 999px;
	overflow: visible;
	box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.search-hero-input {
	flex: 1;
	padding: 16px 22px;
	border: 0;
	font-size: 16px;
	color: var(--hzr-color-primary,#2c111d);
	background: transparent;
	outline: none;
	border-radius: 999px 0 0 999px;
}
.search-hero-input::placeholder { color: #9a9a9a; font-size: 14px; }
.search-hero-submit {
	background: var(--hzr-color-primary,#2c111d);
	border: 0;
	color: #fff;
	padding: 0 22px;
	cursor: pointer;
	font-size: 22px;
	border-radius: 0 999px 999px 0;
}
.search-hero-submit:hover { background: var(--hzr-color-primary-deep,#1a0810); }
.hero-action-banner-suggest-results,
.search-hero-suggest-results {
	left: 0;
	right: 0;
	width: 100%;
	text-align: left;
}
.search-hero-suggest-results {
	top: calc(100% + 12px);
	max-height: min(430px, calc(100vh - 240px));
}

.search-empty-hint {
	font-size: 15px;
	color: var(--hzr-color-muted-alt,#757575);
	max-width: 480px;
	margin: 0 auto;
}

.search-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin: 0 0 20px;
	padding: 0 0 14px;
	border-bottom: 1px solid #eaeaea;
}
.search-section-head h2 {
	color: var(--hzr-color-primary,#2c111d);
	font-family: "Poppins", sans-serif;
	font-size: 24px;
	font-weight: 600;
	margin: 0;
}
.search-section-more {
	color: var(--hzr-color-accent,#bd5182);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
}
.search-section-more:hover { text-decoration: underline; }

.search-page .search-no-results {
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 16px;
	padding: 60px 30px;
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}
.search-page .search-no-results-icon {
	font-size: 56px;
	color: #b3b3b3;
	margin: 0 0 14px;
	line-height: 1;
}
.search-page .search-no-results h2 {
	color: var(--hzr-color-primary,#2c111d);
	font-size: 24px;
	margin: 0 0 10px;
}
.search-page .search-no-results p {
	color: var(--hzr-color-muted-alt,#757575);
	font-size: 15px;
	margin: 0 0 24px;
}
.search-page .search-no-results-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px;
}

.search-suggest-block {
	margin: 28px 0 0;
	text-align: center;
}
.search-suggest-label {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hzr-color-muted-alt,#757575);
	margin: 0 0 12px;
}
.search-suggest-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}
.search-chip {
	display: inline-block;
	padding: 8px 16px;
	background: var(--hzr-color-rose-bg,#f8edf2);
	color: var(--hzr-color-primary,#2c111d);
	border-radius: 999px;
	font-size: 14px;
	text-decoration: none;
	transition: all .2s ease;
	border: 1px solid transparent;
}
.search-chip:hover {
	background: var(--hzr-color-accent,#bd5182);
	color: #fff;
	border-color: var(--hzr-color-accent,#bd5182);
}

.search-popular {
	margin: 50px 0 0;
}
.search-popular .search-section-head {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 24px;
	justify-content: center;
}
.search-popular .search-section-head h2 {
	text-align: center;
	font-size: 22px;
}

.search-page-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.search-page-list-item {
	border-bottom: 1px solid #eaeaea;
}
.search-page-list-item:last-child { border-bottom: 0; }
.search-page-list-item a {
	display: block;
	padding: 18px 4px;
	text-decoration: none;
	color: var(--hzr-color-primary,#2c111d);
}
.search-page-list-item a:hover { background: var(--hzr-color-rose-bg,#f8edf2); }
.search-page-list-item-title {
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 4px;
}
.search-page-list-item-type {
	display: inline-block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	background: var(--hzr-color-sand,#f2e9dc);
	color: var(--hzr-color-primary,#2c111d);
	padding: 3px 10px;
	border-radius: 999px;
	margin: 0 0 6px;
}
.search-page-list-item-excerpt {
	color: var(--hzr-color-muted-alt,#757575);
	font-size: 14px;
	line-height: 1.5;
}

@media (max-width: 600px) {
	.search-hero { padding: 96px 0 36px; }
	.search-hero-title { font-size: 26px; }
	.search-section-head { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ============================================================
   Moodboard — Patch fuer fehlende Klassen aus Mo's _moodboard.scss
   (.leaderboard, .moodboard-sharing) — main.css enthielt nur einen Teil.
   Quelle: hochzeitsrausch/resources/sass/components/_moodboard.scss
   ============================================================ */

/* === Updates aus Mo's Commit 27. Mai 2026 (Mobile-Anpassungen) === */

/* placeholder height geaendert 148 → 120 */
.moodboard-placeholder { height: 120px !important; }

/* Brautkompass-Tile auf /moodboard/ (LOCAL-Mode). Drei Zustaende: CTA,
   Resume, Reveal — befuellt von moodboard-compass-bridge.js. */
.moodboard-compass-tile {
	background: linear-gradient(135deg, #fff 0%, #fdf6f9 100%);
	border: 1px solid var(--hzr-color-rose-line,#eadde3);
	border-radius: 20px;
	padding: 28px 26px;
	margin: 0 0 32px;
	box-shadow: 0 18px 48px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 8%,transparent);
}
.moodboard-compass-tile-inner { display: flex; flex-direction: column; gap: 12px; }
.moodboard-compass-tile-eyebrow {
	font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
	color: var(--hzr-color-accent,#bd5182); font-weight: 600;
}
.moodboard-compass-tile-headline {
	font-size: 26px; font-weight: 600; color: var(--hzr-color-primary,#2c111d); line-height: 1.2;
}
.moodboard-compass-tile-text {
	font-size: 15px; color: var(--hzr-color-muted,#6b5a64); line-height: 1.55; max-width: 540px;
}
.moodboard-compass-tile-cta {
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--hzr-color-accent,#bd5182); color: #fff; padding: 12px 28px; border-radius: 999px;
	font-size: 15px; font-weight: 600; text-decoration: none;
	transition: all 0.2s ease; box-shadow: 0 8px 24px color-mix(in srgb,var(--hzr-color-accent,#bd5182) 32%,transparent);
	margin-top: 8px; align-self: flex-start;
}
.moodboard-compass-tile-cta:hover {
	background: var(--hzr-color-accent-hover,#a8447a); color: #fff; transform: translateY(-1px);
}
.moodboard-compass-tile-cta--small { padding: 10px 22px; font-size: 14px; }
.moodboard-compass-tile-row {
	display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
}
.moodboard-compass-tile-ring {
	flex: 0 0 110px; width: 110px; height: 110px; border-radius: 50%;
	background: conic-gradient(var(--hzr-color-accent,#bd5182) calc(var(--score, 0) * 1%), var(--hzr-color-rose-line,#eadde3) 0);
	display: flex; align-items: center; justify-content: center; position: relative;
}
.moodboard-compass-tile-ring::before {
	content: ''; position: absolute; inset: 8px; background: #fff; border-radius: 50%;
}
.moodboard-compass-tile-ring-value {
	position: relative; font-size: 28px; font-weight: 700; color: var(--hzr-color-primary,#2c111d);
}
.moodboard-compass-tile-info { flex: 1; min-width: 220px; }
.moodboard-compass-tile-styles {
	display: flex; flex-direction: column; gap: 6px; margin-top: 10px;
}
.moodboard-compass-tile-style { display: flex; justify-content: space-between; font-size: 14px; }
.moodboard-compass-tile-style-name { color: var(--hzr-color-primary,#2c111d); font-weight: 500; }
.moodboard-compass-tile-style-pct { color: var(--hzr-color-accent,#bd5182); font-weight: 600; }
.moodboard-compass-tile-dominant { margin-top: 8px; font-size: 13px; color: var(--hzr-color-muted,#6b5a64); }
.moodboard-compass-tile-actions { margin-top: 8px; }

/* Reveal-Detailkarten in der Tile: Stilrichtung-Bars + Silhouette
   (gleiche Inhalte wie im Brautkompass-Reveal, Look an die Tile angepasst) */
.moodboard-compass-tile-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 14px;
	margin-top: 4px;
}
.moodboard-compass-tile-card {
	background: #fff;
	border: 1px solid var(--hzr-color-rose-line,#eadde3);
	border-radius: 14px;
	padding: 18px 20px;
}
.moodboard-compass-tile-card-h {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hzr-color-primary,#2c111d);
	margin-bottom: 14px;
}
.moodboard-compass-tile-card-note {
	font-size: 11px;
	line-height: 1.45;
	color: var(--hzr-color-muted,#6b5a64);
	margin: -7px 0 12px;
}
.moodboard-compass-tile-bar { margin-bottom: 12px; }
.moodboard-compass-tile-bar:last-child { margin-bottom: 0; }
.moodboard-compass-tile-bar-row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	margin-bottom: 6px;
}
.moodboard-compass-tile-bar-name { color: var(--hzr-color-primary,#2c111d); font-weight: 500; }
.moodboard-compass-tile-bar-pct { color: var(--hzr-color-primary,#2c111d); font-weight: 600; }
.moodboard-compass-tile-bar-track {
	height: 4px;
	background: #f2e7ec;
	border-radius: 999px;
	overflow: hidden;
}
.moodboard-compass-tile-bar-fill {
	height: 100%;
	background: var(--hzr-color-accent,#bd5182);
	border-radius: 999px;
}
.moodboard-compass-tile-sil { display: flex; gap: 18px; align-items: flex-start; }
.moodboard-compass-tile-sil-svg { flex: 0 0 52px; }
.moodboard-compass-tile-sil-svg svg { width: 52px; height: 78px; display: block; }
.moodboard-compass-tile-sil-eyebrow { font-size: 13px; color: var(--hzr-color-muted,#6b5a64); }
.moodboard-compass-tile-sil-value {
	font-family: 'DM Serif Display', Georgia, serif;
	font-size: 22px;
	color: var(--hzr-color-primary,#2c111d);
	margin: 2px 0 8px;
}
.moodboard-compass-tile-sil-notes { font-size: 13px; color: var(--hzr-color-muted,#6b5a64); line-height: 1.55; }
.moodboard-compass-tile-colors {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 14px;
}
.moodboard-compass-tile-color {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	color: var(--hzr-color-muted,#6b5a64);
}
.moodboard-compass-tile-color-dot {
	display: block;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 10%,transparent);
}
.moodboard-compass-tile-color-empty {
	font-size: 13px;
	line-height: 1.5;
	color: var(--hzr-color-muted,#6b5a64);
}

@media (max-width: 600px) {
	.moodboard-compass-tile { padding: 22px 18px; }
	.moodboard-compass-tile-headline { font-size: 22px; }
	.moodboard-compass-tile-ring { flex-basis: 90px; width: 90px; height: 90px; }
	.moodboard-compass-tile-ring-value { font-size: 22px; }
	.moodboard-compass-tile-card { padding: 16px; }
}

/* explainer: mobile column, desktop row */
.moodboard-explainer {
	flex-direction: column;
	gap: 15px;
}
@media (min-width: 768px) {
	.moodboard-explainer { flex-direction: row; }
}

/* sharing-inner: mobile column, desktop row */
.moodboard-sharing-inner {
	flex-direction: column;
	gap: 15px;
}
@media (min-width: 768px) {
	.moodboard-sharing-inner { flex-direction: row; }
}

/* sharing-item ist jetzt eine eigene Card mit Hover-State */
.moodboard-sharing-item {
	flex: 1;
	width: 100%;
	padding: 20px;
	background: #f8f9f8;
	border-radius: 20px;
	transition: all .2s ease;
	cursor: pointer;
	text-decoration: none;
}
.moodboard-sharing-item:hover {
	background: var(--hzr-color-primary,#2c111d);
}
.moodboard-sharing-item:hover .moodboard-sharing-item-headline,
.moodboard-sharing-item:hover .mdi {
	color: #fff !important;
}


/*
 * ENTFERNT: alte Gold/Silver/Copper-Saeulen-Podium-Klassen (.leaderboard +
 * .leaderboard-item.*). Mo hat mit Commit cfea98c (28. Mai 2026) auf das neue
 * flache .moodboard-leaderboard-item Layout umgebaut. moodboard.js rendert
 * jetzt das neue Markup. Passendes CSS in main.css ab Z. 4063.
 */

.moodboard-sharing {
	background: #fff;
	margin: 50px 0 0;
	border: 1px solid #dadada;
	border-radius: 20px;
	padding: 30px 50px;
	text-align: center;
}

.moodboard-sharing-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.moodboard-sharing-headline {
	color: var(--hzr-color-primary,#2c111d);
	font-size: 25px;
	text-transform: uppercase;
	margin: 0 0 15px;
}

.moodboard-sharing-item {
	cursor: pointer;
}

.moodboard-sharing-item-icon {
	font-size: 30px;
}

.moodboard-sharing-item-headline {
	color: var(--hzr-color-primary,#2c111d);
	font-size: 20px;
}

.moodboard-sharing .mdi-facebook  { color: #1877F2; }
.moodboard-sharing .mdi-whatsapp  { color: #25D366; }
.moodboard-sharing .mdi-youtube   { color: #FF0000; }
.moodboard-sharing .mdi-instagram { color: #E4405F; }

/* Moodboard-Empty-State */
.moodboard-empty {
	background: #fff;
	border-radius: 20px;
	padding: 60px 30px;
	text-align: center;
	margin: 30px 0 0;
}

.moodboard-empty-headline {
	color: var(--hzr-color-primary,#2c111d);
	font-size: 28px;
	margin: 0 0 12px;
}

.moodboard-empty-description {
	color: var(--hzr-color-primary,#2c111d);
	margin: 0 0 24px;
}

.moodboard-empty-cta {
	display: inline-block;
	padding: 14px 28px;
	background: var(--hzr-color-primary,#2c111d);
	color: #fff;
	border-radius: 999px;
	text-decoration: none;
}

.moodboard-empty-cta:hover {
	background: var(--hzr-color-primary-deep,#1a0810);
	color: #fff;
}

/* Add-to-Moodboard-Button (Pillen-Default fuer Karten / Footer-CTAs) */
.hzr-moodboard-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: #fff;
	color: var(--hzr-color-primary,#2c111d);
	border: 1px solid var(--hzr-color-primary,#2c111d);
	border-radius: 999px;
	cursor: pointer;
	font-size: 15px;
	transition: all .2s ease;
}

.hzr-moodboard-toggle:hover {
	background: var(--hzr-color-rose-bg,#f8edf2);
}

.hzr-moodboard-toggle.is-active {
	background: var(--hzr-color-accent,#bd5182);
	color: #fff;
	border-color: var(--hzr-color-accent,#bd5182);
}

.hzr-moodboard-toggle .heart {
	font-size: 18px;
	line-height: 1;
}

/* Wenn der Toggle das Detail-Header-Icon ist (kleiner Kreis ueber dem Bild):
 * keine Pille rendern — nur Icon-Toggle-Verhalten + Farbwechsel.
 */
.product-detail-section-content-head-icon.hzr-moodboard-toggle {
	padding: 0;
	background: none;
	border: 0;
	border-radius: 0;
	color: inherit;
	font-size: inherit;
}

.product-detail-section-content-head-icon.hzr-moodboard-toggle:hover {
	background: none;
	color: var(--hzr-color-accent,#bd5182);
}

.product-detail-section-content-head-icon.hzr-moodboard-toggle.is-active {
	background: none;
	color: var(--hzr-color-accent,#bd5182);
	border: 0;
}

.product-detail-section-content-head-icon.hzr-moodboard-toggle .mdi {
	transition: color .2s ease;
}

.product-detail-section-content-head-icon.hzr-moodboard-toggle.is-active .mdi {
	color: var(--hzr-color-accent,#bd5182);
}

.product-card-link,
.product-card-title-link,
.product-card-meta-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.product-card-link:hover,
.product-card-link:focus,
.product-card-title-link:hover,
.product-card-title-link:focus,
.product-card-meta-link:hover,
.product-card-meta-link:focus {
	color: inherit;
	text-decoration: none;
}

.product-card-title-link {
	flex: 1 1 auto;
	min-width: 0;
}

.product-card-moodboard-toggle.hzr-moodboard-toggle {
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--hzr-color-primary,#2c111d);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	line-height: 1;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}

.product-card-moodboard-toggle.hzr-moodboard-toggle:hover,
.product-card-moodboard-toggle.hzr-moodboard-toggle:focus {
	background: var(--hzr-color-rose-bg,#f8edf2);
	color: var(--hzr-color-accent,#bd5182);
	outline: none;
	transform: scale(1.06);
}

.product-card-moodboard-toggle.hzr-moodboard-toggle:focus-visible {
	box-shadow: 0 0 0 3px color-mix(in srgb,var(--hzr-color-accent,#bd5182) 28%,transparent);
}

.product-card-moodboard-toggle.hzr-moodboard-toggle.is-active {
	background: transparent;
	color: var(--hzr-color-accent,#bd5182);
	border: 0;
}

.product-card-moodboard-toggle.hzr-moodboard-toggle .heart {
	font-size: 22px;
	line-height: 1;
}

/* Produktdetail: Beschreibung rechts stabil einklappen.
   Das alte Overlay lag bei kurzen Detailtexten teils im Inhalt und wurde
   optisch von den letzten Zeilen geschluckt. */
.product-detail-section-content-description.is-collapsed {
	padding-bottom: 54px;
}

.product-detail-section-content-description.is-collapsed .product-detail-section-content-description-show {
	z-index: 3;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 92px;
	padding: 50px 0 6px;
	pointer-events: none;
}

.product-detail-section-content-description.is-collapsed .product-detail-section-content-description-show a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 0 3px 5px;
	background: #fff;
	color: var(--hzr-color-primary,#2c111d);
	line-height: 1.3;
	pointer-events: auto;
}

.product-detail-section-content-description.active {
	padding-bottom: 0;
}

.product-detail-section-content-description.active .product-detail-section-content-description-show {
	display: block;
	min-height: 0;
	padding: 12px 0 0;
	background: transparent;
}

/* Screenreader-Only-Label */
.hzr-moodboard-toggle .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Vote-Button auf Shared/Owner View */
.moodboard-vote-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: #fff;
	border: 1.5px solid var(--hzr-color-primary,#2c111d);
	border-radius: 999px;
	color: var(--hzr-color-primary,#2c111d);
	cursor: pointer;
	font-size: 16px;
	transition: all .2s ease;
}
.moodboard-vote-btn:hover { background: var(--hzr-color-rose-bg,#f8edf2); }
.moodboard-vote-btn:disabled { opacity: .5; cursor: wait; }
.moodboard-vote-btn.is-voted { background: var(--hzr-color-accent,#bd5182); border-color: var(--hzr-color-accent,#bd5182); color: #fff; }
.moodboard-vote-btn .mdi { font-size: 22px; line-height: 1; }
.moodboard-vote-count { font-weight: 600; min-width: 1em; text-align: center; }

/* Produktbild in der Moodboard-Liste: Mo's main.css gibt dem Container
 * 40% × 400px fix, aber keine img-Regel — das Foto laeuft in Originalgroesse
 * in den overflow:hidden-Rahmen und wird abgeschnitten. Stattdessen fester
 * Portrait-Rahmen (2/3 wie die Kleid-Fotos) und das Bild komplett sichtbar
 * per contain auf neutralem Grund. */
.moodboard-product-image {
	position: relative;
	flex: 0 0 280px;
	width: 280px;
	height: auto;
	aspect-ratio: 2 / 3;
	background: #f8f6f5;
}

/* Anprobe-Wunsch der Voter ("Ich würde dich gerne in diesem Kleid sehen") */
.moodboard-tryon-wish {
	display: flex;
	max-width: max-content;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	padding: 8px 16px;
	background: #fff;
	border: 1.5px dashed var(--hzr-color-accent,#bd5182);
	border-radius: 999px;
	color: var(--hzr-color-accent,#bd5182);
	cursor: pointer;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	transition: all .2s ease;
}
.moodboard-tryon-wish:hover { background: var(--hzr-color-rose-bg,#f8edf2); }
.moodboard-tryon-wish:disabled { opacity: .5; cursor: wait; }
.moodboard-tryon-wish.is-requested {
	border-style: solid;
	background: var(--hzr-color-rose-bg,#f8edf2);
	cursor: pointer;
}
.moodboard-tryon-wish .mdi { font-size: 17px; line-height: 1; }
.moodboard-tryon-wish-count {
	background: var(--hzr-color-accent,#bd5182);
	color: #fff;
	border-radius: 999px;
	min-width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	padding: 0 6px;
}
/* Owner-Variante: Hinweis statt Button */
.moodboard-tryon-wish--owner {
	border-style: solid;
	border-color: #e8d9a8;
	background: #fdf9ee;
	color: #6b5a2a;
	cursor: default;
	display: flex;
	max-width: max-content;
}
.moodboard-tryon-wish--owner a { color: var(--hzr-color-accent,#bd5182); text-decoration: underline; }

/* Zentrale Besucherfreigabe fuer alle serverseitig gespeicherten KI-Bilder. */
.moodboard-tryon-sharing {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	margin: 0 0 28px;
	padding: 20px 22px;
	border: 1px solid #ead9e1;
	border-radius: 18px;
	background: linear-gradient(135deg, #fff 0%, #fbf5f7 100%);
	box-shadow: 0 10px 28px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 6%,transparent);
}
.moodboard-tryon-sharing[hidden] { display: none !important; }
.moodboard-tryon-sharing.is-paused {
	border-color: #e3ddd8;
	background: #f8f6f4;
}
.moodboard-tryon-sharing-copy {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}
.moodboard-tryon-sharing-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #f4e3eb;
	color: var(--hzr-color-accent,#bd5182);
	font-size: 22px;
}
.moodboard-tryon-sharing.is-paused .moodboard-tryon-sharing-icon {
	background: #ece8e5;
	color: var(--hzr-color-muted,#6b5a64);
}
.moodboard-tryon-sharing-copy strong,
.moodboard-tryon-sharing-copy span {
	display: block;
}
.moodboard-tryon-sharing-copy strong {
	margin-bottom: 3px;
	color: var(--hzr-color-primary,#2c111d);
	font-size: 15px;
}
.moodboard-tryon-sharing-copy span:not(.moodboard-tryon-sharing-icon) {
	color: #715f67;
	font-size: 12px;
	line-height: 1.5;
}
.moodboard-tryon-sharing-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 0 0 auto;
	min-height: 42px;
	padding: 9px 17px;
	border: 1px solid var(--hzr-color-accent,#bd5182);
	border-radius: 999px;
	background: #fff;
	color: #7f3156;
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, opacity .2s ease;
}
.moodboard-tryon-sharing-toggle:hover {
	background: var(--hzr-color-accent,#bd5182);
	color: #fff;
}
.moodboard-tryon-sharing-toggle:disabled { opacity: .55; cursor: wait; }
.moodboard-tryon-sharing-message {
	flex: 1 0 100%;
	margin: -10px 0 0 58px;
	color: var(--hzr-color-muted,#6b5a64);
	font-size: 11px;
}
.moodboard-tryon-sharing-message:empty { display: none; }
.moodboard-tryon-sharing-message.is-error { color: #a13b47; }

/* Per-Bild-Freigabe und wirkliches Loeschen bleiben klar getrennt. */
.moodboard-tryon-manage {
	margin-top: 16px;
	padding: 13px 14px;
	border: 1px solid #eadfe3;
	border-radius: 13px;
	background: #fcf9fa;
}
.moodboard-tryon-status {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 10px;
	color: #39765e;
	font-size: 12px;
	font-weight: 600;
}
.moodboard-tryon-status.is-private { color: var(--hzr-color-muted,#6b5a64); }
.moodboard-tryon-status .mdi { font-size: 17px; }
.moodboard-tryon-manage-actions {
	display: flex;
	align-items: center;
	gap: 9px;
	flex-wrap: wrap;
}
.moodboard-tryon-visibility-btn,
.moodboard-tryon-delete-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 35px;
	padding: 7px 12px;
	border-radius: 999px;
	background: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 11px;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, opacity .2s ease;
}
.moodboard-tryon-visibility-btn {
	border: 1px solid var(--hzr-color-accent,#bd5182);
	color: #7f3156;
}
.moodboard-tryon-visibility-btn:hover { background: var(--hzr-color-rose-bg,#f8edf2); }
.moodboard-tryon-delete-btn {
	border: 1px solid #dfb9bd;
	color: #983642;
}
.moodboard-tryon-delete-btn:hover { background: #fff0f1; }
.moodboard-tryon-delete-btn.is-confirming {
	border-color: #983642;
	background: #983642;
	color: #fff;
}
.moodboard-tryon-visibility-btn:disabled,
.moodboard-tryon-delete-btn:disabled { opacity: .55; cursor: wait; }
.moodboard-tryon-manage-message {
	margin: 8px 0 0;
	color: var(--hzr-color-muted,#6b5a64);
	font-size: 11px;
}
.moodboard-tryon-manage-message:empty { display: none; }
.moodboard-tryon-manage-message.is-error { color: #a13b47; }

.moodboard-tryon-orphans-section {
	padding-top: 10px;
	background: #fbf8f6;
}
.moodboard-tryon-orphans-section[hidden] { display: none !important; }
.moodboard-tryon-orphans {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 22px;
}
.moodboard-tryon-orphan {
	display: grid;
	grid-template-columns: minmax(120px, 34%) 1fr;
	gap: 18px;
	padding: 16px;
	border: 1px solid #eadfe3;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 28px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 5.5%,transparent);
}
.moodboard-tryon-orphan-image {
	position: relative;
	min-height: 250px;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 13px;
	background: #f4efed;
	cursor: zoom-in;
}
.moodboard-tryon-orphan-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}
.moodboard-tryon-orphan-image > span {
	position: absolute;
	left: 8px;
	bottom: 8px;
	padding: 4px 8px;
	border-radius: 999px;
	background: color-mix(in srgb,var(--hzr-color-primary,#2c111d) 78%,transparent);
	color: #fff;
	font-size: 10px;
}
.moodboard-tryon-orphan-content {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	min-width: 0;
}
.moodboard-tryon-orphan-content h3 {
	margin: 3px 0 5px;
	color: var(--hzr-color-primary,#2c111d);
	font-size: 17px;
}
.moodboard-tryon-orphan-content > a {
	color: var(--hzr-color-accent,#bd5182);
	font-size: 12px;
	text-decoration: underline;
}
.moodboard-tryon-orphan-content > p {
	margin: 12px 0 0;
	color: #715f67;
	font-size: 11px;
	line-height: 1.55;
}
.moodboard-tryon-orphan-content .moodboard-tryon-manage {
	width: 100%;
	margin-top: auto;
}

/* Eigene KI-Anprobe als Picture-in-Picture ueber dem Kleid-Foto */
.moodboard-tryon-thumb {
	position: absolute;
	right: 8px;
	bottom: 8px;
	width: 44%;
	aspect-ratio: 2 / 3;
	border-radius: 10px;
	overflow: hidden;
	border: 2px solid #fff;
	box-shadow: 0 4px 14px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 35%,transparent);
	background: #f8f6f5;
}
.moodboard-tryon-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block;
	cursor: zoom-in;
}
.moodboard-tryon-thumb-badge {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 3px 6px;
	background: color-mix(in srgb,var(--hzr-color-primary,#2c111d) 72%,transparent);
	color: #fff;
	font-size: 10px;
	line-height: 1.2;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	pointer-events: none;
}
.moodboard-tryon-thumb-remove {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 22px;
	height: 22px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--hzr-color-primary,#2c111d);
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.moodboard-tryon-thumb-remove:hover { background: var(--hzr-color-accent,#bd5182); color: #fff; }

/* Mehrere freigegebene KI-Anproben im geteilten Moodboard. Die Galerie
 * bleibt innerhalb des Bildrahmens horizontal scrollbar, damit jede
 * Aufnahme erreichbar ist, ohne die Produktkarte aufzublasen. */
.moodboard-tryon-gallery {
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 8px;
	z-index: 2;
	padding: 7px;
	border: 1px solid rgba(255, 255, 255, 0.88);
	border-radius: 11px;
	background: color-mix(in srgb,var(--hzr-color-primary,#2c111d) 78%,transparent);
	box-shadow: 0 4px 14px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 28%,transparent);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.moodboard-tryon-gallery-label {
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 0 2px 6px;
	color: #fff;
	font: 500 10px/1.2 'Poppins', sans-serif;
}

.moodboard-tryon-gallery-label .mdi { font-size: 14px; }

.moodboard-tryon-gallery-track {
	display: flex;
	gap: 6px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scrollbar-width: thin;
}

.moodboard-tryon-gallery-thumb {
	position: relative;
	flex: 0 0 46px;
	width: 46px;
	height: 62px;
	padding: 0;
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 7px;
	background: #f8f6f5;
	box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
	cursor: zoom-in;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.moodboard-tryon-gallery-thumb:hover,
.moodboard-tryon-gallery-thumb:focus-visible {
	border-color: #f4c5d9;
	transform: translateY(-1px);
}

.moodboard-product-image .moodboard-tryon-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block;
}

.moodboard-tryon-gallery-private {
	position: absolute;
	top: 3px;
	right: 3px;
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: color-mix(in srgb,var(--hzr-color-primary,#2c111d) 82%,transparent);
	color: #fff;
	font-size: 12px;
}

/* Generische Bild-Lightbox (Anprobe-Thumb-Klick, Local + Shared) */
.hzr-lightbox {
	position: fixed;
	inset: 0;
	z-index: 2147483647;
	background: color-mix(in srgb,var(--hzr-color-primary,#2c111d) 92%,transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: zoom-out;
}
.hzr-lightbox img {
	max-width: 100vw;
	max-height: 100vh;
	object-fit: contain;
}
.moodboard-product-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Owner-Banner oben in /moodboard/{token}/?owner=...  */
.moodboard-owner-banner {
	display: flex;
	gap: 16px;
	align-items: center;
	padding: 18px 22px;
	background: #fff;
	border: 1px solid #E8D9A8;
	border-radius: 12px;
	margin: 0 0 24px;
}
.moodboard-owner-banner-icon {
	font-size: 32px;
	color: #b68813;
	flex: 0 0 auto;
}
.moodboard-owner-banner-text strong {
	display: block;
	color: var(--hzr-color-primary,#2c111d);
	font-size: 17px;
	margin: 0 0 4px;
}
.moodboard-owner-banner-text div { color: var(--hzr-color-muted-alt,#757575); font-size: 14px; }

/* Share-CTA in Local-Mode */
.moodboard-share-cta {
	margin: 30px 0 0;
}
.moodboard-share-cta button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.moodboard-share-cta .mdi { font-size: 22px; }

/* Share-Modal */
.moodboard-share-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.moodboard-share-modal[hidden] { display: none; }
.moodboard-share-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.55);
}
.moodboard-share-modal-dialog {
	position: relative;
	background: #fff;
	border-radius: 16px;
	padding: 32px;
	max-width: 480px;
	width: calc(100% - 32px);
	box-shadow: 0 24px 60px rgba(0,0,0,.3);
	z-index: 1;
}
.moodboard-share-modal-close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: 0;
	font-size: 28px;
	color: var(--hzr-color-muted-alt,#757575);
	cursor: pointer;
	line-height: 1;
}
.moodboard-share-modal-title {
	color: var(--hzr-color-primary,#2c111d);
	font-size: 24px;
	margin: 0 0 8px;
}
.moodboard-share-modal-intro {
	color: var(--hzr-color-muted-alt,#757575);
	font-size: 14px;
	margin: 0 0 22px;
}
.moodboard-share-modal-label {
	display: block;
	color: var(--hzr-color-primary,#2c111d);
	font-size: 13px;
	font-weight: 600;
	margin: 0 0 8px;
}
.moodboard-share-modal-link-row {
	display: flex;
	gap: 8px;
	margin: 0 0 22px;
}
.moodboard-share-modal-link-row input {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid #dadada;
	border-radius: 8px;
	font-size: 13px;
	font-family: monospace;
	color: var(--hzr-color-primary,#2c111d);
	background: #f8f9f8;
}
.moodboard-share-modal-actions {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
	margin: 0 0 20px;
}
.moodboard-share-modal-btn {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 14px 8px;
	border-radius: 12px;
	background: #f8f9f8;
	color: var(--hzr-color-primary,#2c111d);
	text-decoration: none;
	font-size: 13px;
	border: 1px solid #eaeaea;
	transition: all .2s ease;
}
.moodboard-share-modal-btn:hover { background: var(--hzr-color-rose-bg,#f8edf2); color: var(--hzr-color-accent,#bd5182); }
.moodboard-share-modal-btn .mdi { font-size: 28px; }
.moodboard-share-modal-btn--whatsapp .mdi { color: #25D366; }
.moodboard-share-modal-btn--mail .mdi { color: var(--hzr-color-accent,#bd5182); }
.moodboard-share-modal-btn--facebook .mdi { color: #1877F2; }
.moodboard-share-modal-info {
	font-size: 12px;
	color: var(--hzr-color-muted-alt,#757575);
	margin: 0 0 12px;
}
.moodboard-share-modal-manage-link {
	display: inline-block;
	color: var(--hzr-color-accent,#bd5182);
	font-size: 13px;
	text-decoration: underline;
}
.moodboard-share-modal-error {
	background: #fff4f4;
	border: 1px solid #f3c8c8;
	color: #b62b2b;
	padding: 14px;
	border-radius: 8px;
	margin: 0;
}

.moodboard-loading {
	padding: 60px 20px;
	text-align: center;
	color: var(--hzr-color-muted-alt,#757575);
}

.moodboard-cta-termin {
	display: inline-block;
	margin: 20px 0;
	min-width: 280px;
}
.moodboard-privacy-note {
	color: var(--hzr-color-muted-alt,#757575);
	font-size: 13px;
	margin: 20px auto 0;
	max-width: 520px;
	line-height: 1.5;
}

/* Moodboard-Remove auf der /moodboard/-Seite */
.moodboard-product-remove {
	background: none;
	border: 1px solid #dadada;
	color: var(--hzr-color-muted-alt,#757575);
	border-radius: 999px;
	padding: 6px 14px;
	cursor: pointer;
	font-size: 13px;
	transition: all .2s ease;
}

.moodboard-product-remove:hover {
	border-color: var(--hzr-color-accent,#bd5182);
	color: var(--hzr-color-accent,#bd5182);
}

@media (max-width: 768px) {
	/* alte .leaderboard-item.* Responsive entfernt (Mo's Layout-Wechsel 28.05.2026) */
	.moodboard-explainer { flex-direction: column; gap: 20px; }
	.moodboard-sharing-inner { flex-direction: column; gap: 20px; }
	.moodboard-product { flex-direction: column; }
	.moodboard-product-image { flex: 0 0 auto; width: 100%; max-width: 320px; margin: 0 auto; height: auto; }
}

/* ===== Benefits-List (acf/benefits-list.php) — zentrierte Icon-Reihe auf rosa Band =====
 * Live-Referenz: eine Reihe, Icon oben, Versal-Label darunter (Standort-Seiten).
 * Full-bleed-Trick: bricht aus dem .container aus und reicht über die volle Viewport-Breite.
 */
.acf-block-benefits-list {
	background: var(--hzr-color-rose-bg,#f8edf2);
	padding: 56px 24px;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 48px;
	margin-bottom: 48px;
}

.acf-block-benefits-list__items {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 1240px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 32px 48px;
}

.acf-block-benefits-list__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	padding: 0;
	flex: 0 1 160px;
}

.acf-block-benefits-list__icon {
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.acf-block-benefits-list__icon-img {
	/* SVG-Icons aus uploads haben oft width/height=1 — explizit override */
	width: 100% !important;
	height: 100% !important;
	max-width: 56px;
	max-height: 56px;
	object-fit: contain;
}

.acf-block-benefits-list__text {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1a1a1a;
	line-height: 1.45;
}

@media (max-width: 768px) {
	.acf-block-benefits-list__items {
		gap: 24px 20px;
	}
	.acf-block-benefits-list__item {
		flex-basis: 140px;
	}
	.acf-block-benefits-list__text {
		font-size: 12px;
	}
}

/* ===== Pre-Footer Widget ===== */

.footer-prefooter {
	background: #fff;
	padding: 58px 0 72px;
	position: relative;
	z-index: 2;
}

.footer-prefooter .container {
	max-width: 1240px;
}

.footer-prefooter-dynamic,
.footer-prefooter-widget {
	margin: 0;
}

.footer-prefooter-widget-title {
	color: var(--hzr-color-primary,#2c111d);
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 24px;
	text-align: center;
}

.footer-widget-icons {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 28px;
	align-items: start;
	margin: 0 auto 40px;
	max-width: 1120px;
}

.footer-widget-icon {
	color: var(--hzr-color-primary,#2c111d);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.25;
}

.footer-widget-icon:hover,
.footer-widget-icon:focus {
	color: var(--hzr-color-primary,#2c111d);
	text-decoration: none;
}

.footer-widget-icon img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	display: block;
	transition: transform 0.25s ease;
}

.footer-widget-icon:hover img,
.footer-widget-icon:focus img {
	transform: translateY(-3px);
}

.footer-widget-banners {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 0 auto;
}

.footer-widget-banner {
	aspect-ratio: 1 / 1;
	background: var(--hzr-color-rose-bg,#f8edf2);
	border-radius: 10px;
	display: block;
	overflow: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	will-change: transform;
}

.footer-widget-banner:hover,
.footer-widget-banner:focus {
	box-shadow: 0 16px 36px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 12%,transparent);
	transform: scale(1.018);
}

.footer-widget-banner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 991px) {
	.footer-widget-icons {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 28px 20px;
	}

	.footer-widget-banners {
		grid-template-columns: 1fr;
		max-width: 640px;
	}
}

@media (max-width: 575px) {
	.footer-prefooter {
		padding: 42px 0 54px;
	}

	.footer-widget-icons {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-bottom: 32px;
	}

	.footer-widget-icon {
		font-size: 13px;
	}
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
	.hzr-section-group {
		padding: 40px 16px;
	}

	.hzr-section-group-heading {
		font-size: 24px;
	}

	.hzr-section-group .acf-block-text {
		font-size: 16px;
	}

	.hzr-section-group .acf-block-text h2 {
		font-size: 21px;
	}
}

/* ==========================================================================
   Topbar (helle Variante) — Override von Mos main.css (.hero-topbar* = dunkel).
   Farbcodes hier direkt anpassbar; laedt nach main.css, daher gewinnt es.
   ========================================================================== */
.hero-topbar {
	background: var(--hzr-color-sand,#f2e9dc);
	color: var(--hzr-color-primary,#2c111d);
}

.hero-topbar-text {
	color: var(--hzr-color-primary,#2c111d);
}

.hero-topbar-socials a {
	color: var(--hzr-color-primary,#2c111d);
	transition: all 0.3s ease;
}

.hero-topbar-actions {
	border-left: 1px solid var(--hzr-color-primary,#2c111d);
}

.hero-topbar-actions a {
	display: flex;
	align-items: center;
	color: var(--hzr-color-primary,#2c111d);
	gap: 7px;
	transition: all 0.3s ease;
}

/* Hover-Lift fuer Topbar-Links (Socials + Actions). */
.hero-topbar-socials a:hover,
.hero-topbar-actions a:hover {
	transform: translateY(-4px);
}

/* ==========================================================================
   Moodboard — Aktivitaets-Hinweis (neue Votes) + Voter-Breakdown (Owner)
   ========================================================================== */
.moodboard-activity {
	background: #fff;
	border: 1px solid #f0dfe7;
	border-left: 4px solid var(--hzr-color-accent,#bd5182);
	border-radius: 12px;
	padding: 16px 18px;
	margin: 0 0 24px;
	box-shadow: 0 10px 30px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 6%,transparent);
}

.moodboard-activity-main {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.moodboard-activity-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--hzr-color-accent,#bd5182);
	flex: 0 0 auto;
	box-shadow: 0 0 0 0 color-mix(in srgb,var(--hzr-color-accent,#bd5182) 50%,transparent);
	animation: moodboard-activity-pulse 1.8s ease-out infinite;
}

@keyframes moodboard-activity-pulse {
	0%   { box-shadow: 0 0 0 0 color-mix(in srgb,var(--hzr-color-accent,#bd5182) 50%,transparent); }
	70%  { box-shadow: 0 0 0 8px color-mix(in srgb,var(--hzr-color-accent,#bd5182) 0%,transparent); }
	100% { box-shadow: 0 0 0 0 color-mix(in srgb,var(--hzr-color-accent,#bd5182) 0%,transparent); }
}

.moodboard-activity-text {
	flex: 1 1 200px;
	color: var(--hzr-color-primary,#2c111d);
	font-size: 15px;
	line-height: 1.4;
}

.moodboard-activity-text strong {
	color: var(--hzr-color-accent,#bd5182);
}

.moodboard-activity-cta {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}

.moodboard-activity-soon {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px dashed #f0dfe7;
	font-size: 13px;
	color: #8a7a82;
	display: flex;
	align-items: center;
	gap: 6px;
}

/* Voter-Breakdown (nur Owner-View): wer hat fuer dieses Kleid gestimmt. */
.moodboard-voters {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 10px;
}

.moodboard-voter {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #f8f1ec;
	color: var(--hzr-color-primary,#2c111d);
	border-radius: 999px;
	padding: 3px 10px;
	font-size: 12px;
	line-height: 1.6;
}

.moodboard-voter .mdi {
	font-size: 12px;
	color: var(--hzr-color-accent,#bd5182);
}

.moodboard-voter--group {
	background: #efe6f0;
}

.moodboard-voters--empty {
	margin-top: 10px;
	font-size: 12px;
	color: #b0a3aa;
	font-style: italic;
}

/* =========================================================================
   Share-Modal Optionen (E-Mail + Deadline)
   ========================================================================= */
.moodboard-share-modal-options {
	margin-bottom: 20px;
}
.moodboard-share-modal-input {
	width: 100%;
	padding: 10px 14px;
	border: 1.5px solid var(--hzr-color-rose-line,#eadde3);
	border-radius: 10px;
	font-size: 15px;
	color: var(--hzr-color-primary,#2c111d);
	background: #fff;
	box-sizing: border-box;
	margin-top: 6px;
	transition: border-color 0.2s;
}
.moodboard-share-modal-input:focus {
	outline: none;
	border-color: var(--hzr-color-accent,#bd5182);
}
.moodboard-share-modal-privacy {
	font-size: 12px;
	color: #9a9a9a;
	margin: 10px 0 0;
	line-height: 1.5;
}

/* =========================================================================
   Voting-Deadline Countdown Bar
   ========================================================================= */
.moodboard-deadline-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--hzr-color-primary,#2c111d);
	color: #fff;
	padding: 12px 20px;
	border-radius: 12px;
	margin: 0 0 24px;
	font-size: 15px;
	font-family: 'Poppins', sans-serif;
}
.moodboard-deadline-bar-icon { font-size: 20px; line-height: 1; }
.moodboard-deadline-bar-text { font-weight: 500; }

/* =========================================================================
   Instagram Story Button
   ========================================================================= */
.moodboard-story-btn {
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1.5px solid var(--hzr-color-accent,#bd5182);
	color: var(--hzr-color-accent,#bd5182);
	background: transparent;
	border-radius: 999px;
	padding: 12px 24px;
	font-size: 15px;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.moodboard-story-btn:hover {
	background: var(--hzr-color-accent,#bd5182);
	color: #fff;
}
.moodboard-story-btn .mdi { font-size: 20px; }

/* =========================================================================
   Try-On Button (auf Moodboard-Karten)
   ========================================================================= */
.moodboard-product-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.moodboard-product-view-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 9px 17px;
	background: #fff;
	border: 1.5px solid var(--hzr-color-primary,#2c111d);
	border-radius: 999px;
	color: var(--hzr-color-primary,#2c111d);
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, transform 0.15s;
}

.moodboard-product-view-btn:hover {
	background: var(--hzr-color-rose-bg,#f8edf2);
	color: var(--hzr-color-primary,#2c111d);
	transform: translateY(-1px);
	text-decoration: none;
}

.moodboard-product-view-btn .mdi {
	font-size: 17px;
}

.moodboard-tryon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0;
	padding: 10px 18px;
	background: linear-gradient(135deg, var(--hzr-color-primary,#2c111d) 0%, #5a1a38 100%);
	color: #fff;
	border: none;
	border-radius: 999px;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: opacity 0.2s, transform 0.15s;
}
.moodboard-tryon-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.moodboard-tryon-btn .mdi { font-size: 16px; color: var(--hzr-color-accent,#bd5182); }

@media (max-width: 768px) {
	.moodboard-product-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.moodboard-product-view-btn,
	.moodboard-tryon-btn {
		width: 100%;
	}
}

/* =========================================================================
   Virtual Try-On Modal
   ========================================================================= */
.tryon-modal {
	position: fixed;
	inset: 0;
	z-index: 2147483647;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}
.tryon-modal[hidden] { display: none; }

.tryon-modal-backdrop {
	position: absolute;
	inset: 0;
	background: color-mix(in srgb,var(--hzr-color-primary,#2c111d) 72%,transparent);
	backdrop-filter: blur(4px);
	cursor: pointer;
}

.tryon-modal-dialog {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 0;
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	max-width: 900px;
	width: 100%;
	max-height: 90vh;
	box-shadow: 0 32px 80px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 32%,transparent);
}

.tryon-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: rgba(255,255,255,0.9);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--hzr-color-primary,#2c111d);
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.tryon-modal-close:hover { background: #fff; }

/* Linke Seite: Kleid */
.tryon-modal-dress {
	flex: 0 0 260px;
	background: var(--hzr-color-rose-bg,#f8edf2);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 32px 20px 20px;
	gap: 12px;
}
.tryon-modal-dress img {
	width: 100%;
	max-height: 340px;
	object-fit: contain;
	object-position: top;
	border-radius: 14px;
}
.tryon-modal-dress-label {
	font-size: 13px;
	color: var(--hzr-color-muted,#6b5a64);
	text-align: center;
	font-family: 'Poppins', sans-serif;
}

/* Rechte Seite */
.tryon-modal-right {
	flex: 1;
	padding: 40px 36px 32px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.tryon-modal-title {
	font-size: 22px;
	font-weight: 600;
	color: var(--hzr-color-primary,#2c111d);
	margin: 0;
	font-family: 'Poppins', sans-serif;
}
.tryon-modal-intro {
	font-size: 14px;
	color: var(--hzr-color-muted,#6b5a64);
	margin: 0;
	line-height: 1.6;
}

/* Upload-Zone */
.tryon-upload-zone {
	display: block;
	border: 2px dashed var(--hzr-color-rose-line,#eadde3);
	border-radius: 16px;
	padding: 28px 20px;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
	position: relative;
}
.tryon-upload-zone:hover { border-color: var(--hzr-color-accent,#bd5182); background: #fdf5f8; }
.tryon-upload-input { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; cursor: pointer; }
.tryon-upload-icon { font-size: 40px; color: var(--hzr-color-accent,#bd5182); display: block; }
.tryon-upload-label { display: block; font-size: 15px; font-weight: 500; color: var(--hzr-color-primary,#2c111d); margin-top: 8px; }
.tryon-upload-hint  { display: block; font-size: 12px; color: #b0a3aa; margin-top: 4px; }
.tryon-upload-preview {
	width: 100%;
	max-height: 200px;
	object-fit: cover;
	border-radius: 12px;
}
.tryon-privacy-note { font-size: 12px; color: #b0a3aa; margin: 8px 0 0; line-height: 1.5; }

/* Loading */
.tryon-modal[data-tryon-current-step="loading"] .tryon-modal-dialog {
	max-width: min(1180px, calc(100vw - 32px));
}
.tryon-modal[data-tryon-current-step="loading"] .tryon-modal-dress,
.tryon-modal[data-tryon-current-step="loading"] .tryon-modal-title,
.tryon-modal[data-tryon-current-step="loading"] .tryon-modal-intro {
	display: none;
}
.tryon-modal[data-tryon-current-step="loading"] .tryon-modal-right {
	padding: 18px;
}
.tryon-loading {
	width: 100%;
}
.tryon-minigame-shell {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: linear-gradient(145deg, #f8efeb, #eadbd7);
	border: 1px solid rgba(113, 71, 61, 0.16);
	border-radius: 24px;
	box-shadow: 0 18px 46px color-mix(in srgb,var(--hzr-color-primary,#2c111d) 14%,transparent);
}
.tryon-minigame-shell[hidden],
.tryon-minigame-frame[hidden],
.tryon-minigame-fallback[hidden] {
	display: none;
}
.tryon-minigame-frame {
	display: block;
	width: 100%;
	aspect-ratio: 884 / 486;
	min-height: 320px;
	background: #f5e5e1;
	border: 0;
}
.tryon-minigame-fallback {
	display: flex;
	min-height: min(486px, calc(90vh - 68px));
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
	padding: 32px;
	color: var(--hzr-color-muted,#6b5a64);
	font-family: 'Poppins', sans-serif;
	text-align: center;
}
.tryon-minigame-fallback strong {
	color: var(--hzr-color-primary,#2c111d);
	font-family: 'DM Serif Display', Georgia, serif;
	font-size: 26px;
	font-weight: 400;
}
.tryon-minigame-fallback > span:last-child {
	max-width: 470px;
	font-size: 13px;
	line-height: 1.6;
}
.tryon-minigame-fallback-icon {
	color: var(--hzr-color-accent,#bd5182);
	font-size: 38px;
	animation: tryon-minigame-fallback-pulse 1.5s ease-in-out infinite;
}

.tryon-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}
@keyframes tryon-minigame-fallback-pulse {
	0%, 100% { opacity: 0.45; transform: scale(0.9) rotate(-6deg); }
	50% { opacity: 1; transform: scale(1.08) rotate(6deg); }
}

@media (prefers-reduced-motion: reduce) {
	.tryon-minigame-fallback-icon { animation: none; }
}

/* Result */
.tryon-result { border-radius: 16px; overflow: hidden; }
/* So gross wie der Viewport hergibt (Dialog = 90vh minus Titel/Intro/Buttons),
 * aber nie kleiner als vorher. Klick = Vollbild-Lightbox. */
.tryon-result-img { width: 100%; display: block; border-radius: 16px; max-height: max(420px, calc(90vh - 300px)); object-fit: contain; cursor: zoom-in; }
.tryon-result.is-zoomed {
	position: fixed;
	inset: 0;
	z-index: 10001;
	background: color-mix(in srgb,var(--hzr-color-primary,#2c111d) 92%,transparent);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: zoom-out;
}
.tryon-result.is-zoomed .tryon-result-img {
	max-width: 100vw;
	max-height: 100vh;
	width: auto;
	height: 100%;
	border-radius: 0;
	cursor: zoom-out;
}
.tryon-result-actions { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.tryon-result-saved {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 12px;
	background: #eef7f2;
	color: #315f4c;
}
.tryon-result-saved > .mdi { font-size: 24px; }
.tryon-result-saved strong,
.tryon-result-saved span { display: block; }
.tryon-result-saved strong { font-size: 13px; }
.tryon-result-saved span { margin-top: 1px; font-size: 11px; }
.tryon-step[data-tryon-step="result"] > [data-tryon-result-management] .moodboard-tryon-manage {
	margin-top: 10px;
}

/* Error */
.tryon-error {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 32px 0;
	text-align: center;
}
.tryon-error-icon { font-size: 40px; color: #e05a5a; }
.tryon-error-text { font-size: 14px; color: var(--hzr-color-muted,#6b5a64); max-width: 320px; }

/* Responsive */
@media (max-width: 640px) {
	.moodboard-tryon-sharing { align-items: stretch; flex-direction: column; gap: 14px; }
	.moodboard-tryon-sharing-toggle { width: 100%; }
	.moodboard-tryon-sharing-message { margin: 0; }
	.moodboard-tryon-manage-actions { align-items: stretch; flex-direction: column; }
	.moodboard-tryon-visibility-btn,
	.moodboard-tryon-delete-btn { width: 100%; }
	.moodboard-tryon-orphan { grid-template-columns: 1fr; }
	.moodboard-tryon-orphan-image { min-height: 360px; }
	.tryon-modal-dialog { flex-direction: column; max-height: 95vh; }
	.tryon-modal-dress  { flex: none; padding: 24px; flex-direction: row; justify-content: flex-start; }
	.tryon-modal-dress img { max-height: 120px; width: auto; }
	.tryon-modal-right  { padding: 20px; }
	.tryon-modal[data-tryon-current-step="loading"] { padding: 6px; }
	.tryon-modal[data-tryon-current-step="loading"] .tryon-modal-dialog {
		max-width: calc(100vw - 12px);
		border-radius: 18px;
	}
	.tryon-modal[data-tryon-current-step="loading"] .tryon-modal-right { padding: 5px; }
	.tryon-minigame-shell { border-radius: 15px; }
	.tryon-minigame-frame { min-height: 0; }
	.tryon-minigame-fallback {
		min-height: max(210px, calc((100vw - 24px) * 0.55));
		padding: 24px 18px;
	}
	.tryon-minigame-fallback strong { font-size: 21px; }
}

@media (max-width: 800px){
	h1{
		font-size: 25px;
	}
	
	.product-hero-headline{
		font-size: 25px;
	}
	
	.product-description{
		font-size: 17px;
	}
	
	.brand-section-headline{
		font-size: 35px;
	}
	
	.section-tile-collection-item{
		min-width: 100%;
	}
	
	.style-card{
		min-width: 100%;
	}
	
	.section-video-grid-item{
		height: auto;
	}
}

.listing-hud-inner{
	flex-wrap: wrap;
}