/* Werkraum Mensch – Buchungsformular
   Bewusst zurückhaltend gehalten, damit es sich dem jeweiligen Theme anpasst. */

.wb-booking {
	margin: 2.5em 0;
	padding: 1.5em;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 8px;
}

.wb-facts {
	list-style: none;
	margin: 0 0 1.5em;
	padding: 0;
}

.wb-facts li {
	padding: 0.25em 0;
}

.wb-form p {
	margin: 0 0 1em;
}

.wb-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.25em;
}

.wb-form input[type="text"],
.wb-form input[type="email"],
.wb-form input[type="tel"],
.wb-form select,
.wb-form textarea {
	width: 100%;
	max-width: 480px;
	padding: 0.5em 0.65em;
	border: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: 4px;
	font: inherit;
}

.wb-form input:focus-visible,
.wb-form select:focus-visible,
.wb-form textarea:focus-visible,
.wb-submit:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.wb-consent label {
	font-weight: 400;
}

.wb-submit {
	padding: 0.7em 1.6em;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	border: none;
	border-radius: 4px;
	background: #1a1a1a;
	color: #fff;
}

.wb-submit:hover {
	opacity: 0.85;
}

.wb-msg {
	padding: 0.75em 1em;
	border-radius: 4px;
	background: rgba(0, 0, 0, 0.05);
}

.wb-ok {
	background: #e6f4ea;
	border: 1px solid #34a853;
}

.wb-err {
	background: #fdecea;
	border: 1px solid #d93025;
}

/* Honeypot-Feld für Spamschutz – unsichtbar für Menschen */
.wb-hp {
	position: absolute !important;
	left: -9999px !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* ---------------------------------------------------------------
   Workshop-Übersicht [werkraum_workshops]
   --------------------------------------------------------------- */

.wb-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5em;
	margin: 2em 0;
}

.wb-card {
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.15s ease;
}

.wb-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.wb-card-full {
	opacity: 0.65;
}

.wb-card-imgwrap {
	display: block;
	line-height: 0;
}

.wb-card-img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.wb-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1em 1.2em 1.2em;
}

.wb-card-date {
	font-size: 0.85em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 0.4em;
	opacity: 0.75;
}

.wb-card-title {
	margin: 0 0 0.3em;
	font-size: 1.2em;
	line-height: 1.3;
}

.wb-card-title a {
	text-decoration: none;
	color: inherit;
}

.wb-card-meta {
	font-size: 0.9em;
	margin: 0 0 0.6em;
	opacity: 0.8;
}

.wb-card-excerpt {
	font-size: 0.95em;
	margin: 0 0 0.8em;
}

.wb-card-footer {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5em;
	padding-top: 0.6em;
}

.wb-badge {
	font-size: 0.8em;
	font-weight: 600;
	padding: 0.25em 0.7em;
	border-radius: 999px;
	background: #e6f4ea;
	border: 1px solid #34a853;
}

.wb-badge-full {
	background: #fdecea;
	border-color: #d93025;
}

.wb-card-btn {
	display: inline-block;
	padding: 0.5em 1.1em;
	border-radius: 4px;
	background: #1a1a1a;
	color: #fff !important;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9em;
}

.wb-card-btn:hover {
	opacity: 0.85;
}

/* ---------------------------------------------------------------
   Anbieter-Login [werkraum_anbieter_login]
   --------------------------------------------------------------- */

.wb-login {
	max-width: 420px;
}

.wb-login .login-username label,
.wb-login .login-password label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.25em;
}

.wb-login .login-username input,
.wb-login .login-password input {
	width: 100%;
	padding: 0.5em 0.65em;
	border: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: 4px;
	font: inherit;
}

.wb-login .login-submit input {
	padding: 0.7em 1.6em;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	border: none;
	border-radius: 4px;
	background: #1a1a1a;
	color: #fff;
}

.wb-login-links {
	margin-top: 0.75em;
	font-size: 0.9em;
}

.wb-login-out {
	margin-left: 0.75em;
}

.wb-help-text {
	font-size: 0.85em;
	opacity: 0.75;
}

/* ---------------------------------------------------------------
   Kategorie-Filter
   --------------------------------------------------------------- */

.wb-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	margin: 1.5em 0;
}

.wb-filter-btn {
	padding: 0.4em 1em;
	border: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: 999px;
	text-decoration: none;
	color: inherit;
	font-size: 0.9em;
	font-weight: 600;
}

.wb-filter-btn.is-active {
	background: #1a1a1a;
	color: #fff;
	border-color: #1a1a1a;
}

/* ---------------------------------------------------------------
   Kalender [werkraum_kalender]
   --------------------------------------------------------------- */

.wb-cal {
	margin: 2em 0;
}

.wb-cal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.75em;
	font-size: 1.15em;
}

.wb-cal-nav {
	text-decoration: none;
	padding: 0.2em 0.8em;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	color: inherit;
}

.wb-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.wb-cal-dow {
	text-align: center;
	font-weight: 700;
	font-size: 0.8em;
	padding: 0.4em 0;
	opacity: 0.7;
}

.wb-cal-day {
	min-height: 84px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	padding: 4px;
	font-size: 0.8em;
}

.wb-cal-empty {
	border: none;
}

.wb-cal-today {
	border-color: #1a1a1a;
	border-width: 2px;
}

.wb-cal-num {
	display: block;
	font-weight: 700;
	margin-bottom: 2px;
	opacity: 0.7;
}

.wb-cal-event {
	display: block;
	background: #e6f4ea;
	border: 1px solid #34a853;
	border-radius: 4px;
	padding: 3px 5px;
	margin-bottom: 3px;
	text-decoration: none;
	color: inherit;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.wb-cal-event:hover {
	background: #d3ecda;
}

.wb-cal-voll {
	background: #fdecea;
	border-color: #d93025;
	opacity: 0.75;
}

.wb-cal-frei {
	display: block;
	font-size: 0.85em;
	font-weight: 700;
}

@media (max-width: 640px) {
	.wb-cal-day { min-height: 56px; }
	.wb-cal-event { font-size: 0.9em; padding: 2px 3px; }
	.wb-cal-frei { display: none; }
}

/* ---------------------------------------------------------------
   Anbieter-Profilseite
   --------------------------------------------------------------- */

.wb-profil {
	max-width: 980px;
	margin: 2em auto;
	padding: 0 1em;
}

.wb-profil-head {
	display: flex;
	align-items: center;
	gap: 1.5em;
	margin-bottom: 1.5em;
}

.wb-profil-bild {
	width: 140px;
	height: 140px;
	object-fit: cover;
	border-radius: 50%;
}

.wb-profil-bio {
	margin-bottom: 2em;
}

/* ---------------------------------------------------------------
   Anbieter-Profilseite 2.0 (Partner-Stil)
   --------------------------------------------------------------- */

.wb-p2-banner {
	height: clamp(180px, 32vw, 380px);
	background-size: cover;
	background-position: center;
}

.wb-p2-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 22px 3em;
}

.wb-p2-kopf {
	display: flex;
	align-items: center;
	gap: 1.6em;
	margin-top: -60px;
	margin-bottom: 1.2em;
	flex-wrap: wrap;
}

.wb-p2-avatar {
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 50%;
	border: 6px solid #fff;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
	background: #fff;
}

.wb-p2-tagline {
	font-size: 1.15em;
	margin: 0.2em 0;
	opacity: 0.85;
}

.wb-p2-ort { margin: 0.2em 0; font-weight: 600; }

.wb-p2-werte { margin: 0.5em 0 0; }
.wb-p2-werte span {
	display: inline-block;
	font-size: 0.82em;
	font-weight: 700;
	border: 1.5px solid currentColor;
	border-radius: 999px;
	padding: 0.2em 0.8em;
	margin: 0 0.4em 0.4em 0;
}

.wb-p2-nav {
	display: flex;
	gap: 1.4em;
	flex-wrap: wrap;
	border-top: 1px solid rgba(0, 0, 0, 0.15);
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	padding: 0.8em 0;
	margin-bottom: 2em;
	position: sticky;
	top: 0;
	background: inherit;
}

.wb-p2-nav a {
	text-decoration: none;
	font-weight: 700;
	color: inherit;
}

.wb-p2-abschnitt { margin-bottom: 3em; scroll-margin-top: 90px; }

.wb-p2-angebote { padding-left: 1.2em; }
.wb-p2-angebote li { margin-bottom: 0.4em; }

.wb-p2-bio { max-width: 46em; }

.wb-p2-kontakt-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 2em;
	align-items: start;
}
@media (max-width: 760px) { .wb-p2-kontakt-grid { grid-template-columns: 1fr; } }

.wb-p2-social a { margin-right: 1em; font-weight: 700; }

/* Galerie-Fallback ohne Theme (wr-polaroid kommt sonst vom Theme) */
.wb-p2-galerie { display: flex; flex-wrap: wrap; gap: 1.4em; }
.wb-p2-galerie .wr-polaroid { background: #fff; padding: 10px 10px 4px; box-shadow: 0 6px 18px rgba(0,0,0,0.12); width: 215px; }
.wb-p2-galerie .wr-polaroid img { width: 100%; height: 190px; object-fit: cover; display: block; }
.wb-p2-galerie figcaption { text-align: center; padding: 0.3em 0; }

/* Weitere Anbieterinnen / Anbieterliste */
.wb-p2-andere {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 1.4em;
}

.wb-p2-mini {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.4em;
	padding: 1.4em 1em;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s ease;
}

.wb-p2-mini:hover { transform: translateY(-4px); }

.wb-p2-mini img,
.wb-p2-mini-platz {
	width: 86px;
	height: 86px;
	border-radius: 50%;
	object-fit: cover;
}

.wb-p2-mini-platz {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.08);
	font-size: 2em;
	font-weight: 800;
}

.wb-p2-mini-tag { font-size: 0.85em; opacity: 0.75; }
.wb-p2-mini-ort { font-size: 0.8em; font-weight: 600; }

/* ---------------------------------------------------------------
   Anbieter-Portal "Mein Werkraum"
   --------------------------------------------------------------- */

.wb-portal { max-width: 1000px; margin: 0 auto; }

.wb-portal-kopf {
	display: flex; justify-content: space-between; align-items: end;
	gap: 1em; flex-wrap: wrap; margin-bottom: 1.2em;
}
.wb-portal-kopf h1 { margin-bottom: 0.1em; }
.wb-portal-kopf p { margin: 0; opacity: 0.75; }
.wb-portal-kopf-links { display: flex; gap: 1.2em; font-weight: 700; }

.wb-portal-tabs {
	display: flex; gap: 0.4em; flex-wrap: wrap;
	border-bottom: 2.5px solid rgba(0, 0, 0, 0.7);
	margin-bottom: 1.6em;
}
.wb-portal-tabs a {
	padding: 0.55em 1.1em;
	text-decoration: none;
	font-weight: 800;
	color: inherit;
	border: 2.5px solid rgba(0, 0, 0, 0.7);
	border-bottom: none;
	border-radius: 10px 10px 0 0;
	background: rgba(255, 255, 255, 0.6);
}
.wb-portal-tabs a.ist-aktiv { background: #fff; position: relative; top: 2.5px; }

.wb-portal-zahlen {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1.2em; margin-bottom: 1.6em;
}
.wb-portal-zahlen div {
	background: #fff; border-radius: 12px; padding: 1.1em;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); text-align: center;
}
.wb-portal-zahlen strong { display: block; font-size: 2.1em; line-height: 1.1; }
.wb-portal-zahlen span { font-size: 0.9em; opacity: 0.75; }

.wb-portal-aktionen { display: flex; gap: 0.8em; flex-wrap: wrap; margin-bottom: 1.6em; }
.wb-portal-aktionen .wb-submit { text-decoration: none; display: inline-block; }
.wb-portal-btn2 { background: transparent !important; color: inherit !important; box-shadow: inset 0 0 0 2.5px currentColor; }

.wb-portal-tabelle { overflow-x: auto; }
.wb-portal-tabelle table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.wb-portal-tabelle th, .wb-portal-tabelle td { text-align: left; padding: 0.75em 0.9em; border-bottom: 1px solid rgba(0,0,0,0.08); font-size: 0.95em; }
.wb-portal-tabelle th { font-size: 0.8em; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.7; }
.wb-portal-zeilen-aktionen a { margin-right: 0.8em; font-weight: 700; white-space: nowrap; }
.wb-portal-loeschen { color: #C0392B !important; }

.wb-portal-form fieldset {
	border: 2px solid rgba(0, 0, 0, 0.15); border-radius: 12px;
	padding: 1.2em 1.4em; margin: 0 0 1.4em; background: #fff;
}
.wb-portal-form legend { font-weight: 800; padding: 0 0.5em; }
.wb-portal-reihe { display: flex; gap: 1.4em; flex-wrap: wrap; }
.wb-portal-reihe p { flex: 1; min-width: 200px; }
.wb-portal-kat { display: inline-block; margin-right: 1em; font-weight: 400 !important; }
.wb-portal-abbrechen { margin-left: 1em; font-weight: 700; }
.wb-portal-vorschau { display: block; width: 90px; height: 90px; object-fit: cover; border-radius: 8px; margin-bottom: 6px; }
.wb-portal-vorschau-breit { width: 200px; height: 70px; }

.wb-portal-extras {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.4em;
}
.wb-portal-extra {
	background: #fff; border-radius: 12px; padding: 1.4em;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	display: flex; flex-direction: column;
}
.wb-portal-extra p { flex: 1; }

/* Zusatzoptionen im Buchungsformular */
.wb-upsells {
	border: 1.5px dashed rgba(0, 0, 0, 0.3);
	border-radius: 8px;
	padding: 0.8em 1em 0.2em;
	margin-bottom: 1em;
}
.wb-upsells > p:first-child { margin-top: 0; }

/* ---------------------------------------------------------------
   Region- & Merkmalfilter
   --------------------------------------------------------------- */

.wb-filterbar {
	margin: 1.5em 0;
	padding: 1.1em 1.2em;
	background: rgba(0, 0, 0, 0.03);
	border-radius: 10px;
}

.wb-filterbar-zeile {
	display: flex;
	align-items: end;
	gap: 0.8em;
	flex-wrap: wrap;
	margin-bottom: 0.9em;
}

.wb-filterbar-region {
	display: flex;
	flex-direction: column;
	font-weight: 700;
	font-size: 0.85em;
	gap: 0.25em;
}

.wb-filterbar-region select {
	padding: 0.5em 0.7em;
	border: 1.5px solid rgba(0, 0, 0, 0.3);
	border-radius: 8px;
	font: inherit;
	min-width: 220px;
}

.wb-filterbar-btn {
	padding: 0.55em 1.2em;
	border: none;
	border-radius: 8px;
	background: #1a1a1a;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.wb-filterbar-reset {
	font-size: 0.88em;
	font-weight: 700;
	align-self: center;
}

.wb-filterbar-merkmale {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
}

.wb-merkmal-chip {
	display: inline-block;
	padding: 0.35em 0.85em;
	border: 1.5px solid rgba(0, 0, 0, 0.25);
	border-radius: 999px;
	background: #fff;
	text-decoration: none;
	color: inherit;
	font-size: 0.85em;
	font-weight: 600;
}

.wb-merkmal-chip.ist-aktiv {
	background: #1a1a1a;
	color: #fff;
	border-color: #1a1a1a;
}

/* Landingpage-Generator: Frontend */
.wb-lp-workshops { margin-top: 2em; }
.wb-lp-cta {
	margin-top: 1.5em;
	padding: 1em 1.2em;
	background: rgba(0,0,0,0.04);
	border-radius: 10px;
	text-align: center;
	font-weight: 600;
}

/* ---------------------------------------------------------------
   Smarte Suchleiste mit Autocomplete + Filter
   --------------------------------------------------------------- */
.wb-suche { position: relative; max-width: 680px; margin: 0 auto; }
.wb-suche-titel { font-weight: 700; margin: 0 0 0.5em; }

.wb-suche-haupt { display: flex; gap: 0.5em; align-items: stretch; }
.wb-suche-feld { position: relative; flex: 1; }

.wb-suche-input {
	width: 100%;
	padding: 0.85em 1em;
	font: inherit;
	border: 2px solid rgba(0,0,0,0.25);
	border-radius: 10px;
}
.wb-suche-input:focus { outline: none; border-color: #1a1a1a; }

.wb-suche-filter-btn, .wb-suche-go {
	padding: 0 1.2em;
	font: inherit; font-weight: 700;
	border: 2px solid rgba(0,0,0,0.25);
	border-radius: 10px;
	background: #fff; cursor: pointer;
	white-space: nowrap;
}
.wb-suche-go { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

/* Vorschlagsliste */
.wb-suche-vorschlaege {
	position: absolute;
	top: calc(100% + 4px); left: 0; right: 0;
	background: #fff;
	border: 1px solid rgba(0,0,0,0.15);
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(0,0,0,0.15);
	list-style: none; margin: 0; padding: 4px;
	z-index: 60; max-height: 360px; overflow-y: auto;
}
.wb-suche-vorschlag {
	display: flex; justify-content: space-between; align-items: center; gap: 1em;
	padding: 0.6em 0.8em; border-radius: 7px; cursor: pointer;
}
.wb-suche-vorschlag:hover, .wb-suche-vorschlag.ist-aktiv { background: rgba(0,0,0,0.06); }
.wb-suche-label { font-weight: 600; }
.wb-suche-typ {
	font-size: 0.72em; text-transform: uppercase; letter-spacing: 0.05em;
	opacity: 0.6; white-space: nowrap;
}

/* Filter-Button als Icon mit Badge */
.wb-suche-filter-btn {
	position: relative;
	display: flex; align-items: center; justify-content: center;
	width: 48px; padding: 0;
}
.wb-suche-filter-btn.hat-filter { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.wb-suche-filter-badge {
	position: absolute; top: -7px; right: -7px;
	min-width: 18px; height: 18px; padding: 0 4px;
	background: #C72C48; color: #fff;
	font-size: 11px; font-weight: 700; line-height: 18px; text-align: center;
	border-radius: 999px;
}

/* Filter-Panel als Dropdown */
.wb-suche-filter {
	position: absolute;
	top: calc(100% + 8px); right: 0;
	width: min(380px, 92vw);
	background: #fff;
	border: 1px solid rgba(0,0,0,0.15);
	border-radius: 12px;
	box-shadow: 0 14px 36px rgba(0,0,0,0.18);
	z-index: 70;
	text-align: left;
	overflow: hidden;
}
.wb-suche-filter-kopf {
	display: flex; align-items: center; justify-content: space-between;
	padding: 0.8em 1em; border-bottom: 1px solid rgba(0,0,0,0.1);
}
.wb-suche-filter-schliessen {
	border: none; background: none; font-size: 1.6em; line-height: 1;
	cursor: pointer; color: inherit; padding: 0 0.2em;
}
.wb-suche-filter-body { padding: 1em; display: flex; flex-direction: column; gap: 1em; }
.wb-suche-select { display: flex; flex-direction: column; gap: 0.3em; font-size: 0.85em; font-weight: 700; }
.wb-suche-select select { padding: 0.6em 0.7em; border: 1.5px solid rgba(0,0,0,0.3); border-radius: 8px; font: inherit; font-weight: 400; }
.wb-suche-merkmale-titel { display: block; font-size: 0.85em; font-weight: 700; margin-bottom: 0.5em; }
.wb-suche-chips { display: flex; flex-wrap: wrap; gap: 0.5em; }
.wb-suche-chip {
	display: inline-flex; align-items: center; gap: 0.35em;
	padding: 0.35em 0.75em;
	background: #fff; border: 1.5px solid rgba(0,0,0,0.25); border-radius: 999px;
	font-size: 0.85em; font-weight: 600; cursor: pointer;
}
.wb-suche-chip input { margin: 0; }
.wb-suche-filter-fuss {
	display: flex; justify-content: space-between; align-items: center; gap: 0.8em;
	padding: 0.8em 1em; border-top: 1px solid rgba(0,0,0,0.1);
	background: rgba(0,0,0,0.02);
}
.wb-suche-filter-reset {
	border: none; background: none; cursor: pointer; font: inherit; font-weight: 700;
	text-decoration: underline; color: inherit; padding: 0;
}
.wb-suche-filter-anwenden {
	padding: 0.6em 1.4em; border: none; border-radius: 8px;
	background: #1a1a1a; color: #fff; font: inherit; font-weight: 700; cursor: pointer;
}

@media (max-width: 560px) {
	.wb-suche-haupt { flex-wrap: wrap; }
	.wb-suche-feld { flex: 1 1 100%; }
}

/* Sprachumschalter als Dropdown */
.wb-langswitch { position: relative; display: inline-block; }
.wb-lang-toggle {
	display: inline-flex; align-items: center; gap: 0.4em;
	padding: 0.4em 0.7em;
	background: #fff; border: 1.5px solid rgba(0,0,0,0.25);
	border-radius: 8px; cursor: pointer;
	font: inherit; font-weight: 700; font-size: 0.9em; color: inherit;
}
.wb-lang-flag { font-size: 1.1em; line-height: 1; }
.wb-lang-pfeil { font-size: 0.8em; opacity: 0.6; }
.wb-lang-menu {
	position: absolute; top: calc(100% + 4px); right: 0;
	min-width: 160px; margin: 0; padding: 4px;
	list-style: none;
	background: #fff; border: 1px solid rgba(0,0,0,0.15);
	border-radius: 10px; box-shadow: 0 10px 28px rgba(0,0,0,0.16);
	z-index: 80;
}
.wb-lang-item {
	display: flex; align-items: center; gap: 0.5em;
	padding: 0.5em 0.7em; border-radius: 7px;
	text-decoration: none; color: inherit; font-weight: 600; font-size: 0.92em;
}
.wb-lang-item:hover { background: rgba(0,0,0,0.06); }
.wb-lang-item.ist-aktiv { background: rgba(0,0,0,0.08); font-weight: 800; }

/* ---------------------------------------------------------------
   Paket-Varianten im Buchungsformular
   --------------------------------------------------------------- */
.wb-varianten { margin-bottom: 1.2em; }
.wb-varianten-titel { margin-bottom: 0.6em; }

.wb-variante {
	display: block;
	position: relative;
	border: 2px solid rgba(0,0,0,0.2);
	border-radius: 10px;
	padding: 0.9em 1em 0.9em 2.6em;
	margin-bottom: 0.7em;
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s;
}
.wb-variante:hover { border-color: rgba(0,0,0,0.45); }
.wb-variante input[type="radio"] {
	position: absolute;
	left: 1em;
	top: 1.1em;
}
.wb-variante:has(input:checked) {
	border-color: #1a1a1a;
	background: rgba(0,0,0,0.03);
}
.wb-variante-voll {
	opacity: 0.5;
	cursor: not-allowed;
}
.wb-variante-body { display: block; }
.wb-variante-kopf {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1em;
}
.wb-variante-name { font-weight: 700; font-size: 1.05em; }
.wb-variante-preis { font-weight: 800; white-space: nowrap; }
.wb-variante-desc {
	display: block;
	margin-top: 0.3em;
	font-size: 0.92em;
	opacity: 0.85;
	line-height: 1.45;
}
.wb-variante-meta {
	display: block;
	margin-top: 0.4em;
	font-size: 0.82em;
	opacity: 0.65;
	font-weight: 600;
}



/* ---------------------------------------------------------------
   Varianten-Editor (Eingabe im Backend & Portal)
   --------------------------------------------------------------- */
.wb-var-editor { margin: 0.5em 0 1em; }
.wb-var-intro { font-size: 0.9em; opacity: 0.8; margin-bottom: 0.8em; }
.wb-var-zeile {
	border: 1.5px solid rgba(0,0,0,0.2);
	border-radius: 10px;
	padding: 0.9em 1em;
	margin-bottom: 0.8em;
	background: rgba(0,0,0,0.015);
}
.wb-var-zeile-kopf {
	display: flex; justify-content: space-between; align-items: center;
	margin-bottom: 0.7em;
}
.wb-var-nr { font-size: 0.95em; }
.wb-var-remove {
	border: none; background: rgba(0,0,0,0.08); border-radius: 6px;
	width: 26px; height: 26px; font-size: 1.1em; line-height: 1; cursor: pointer;
	color: #a00;
}
.wb-var-remove:hover { background: rgba(200,0,0,0.15); }
.wb-var-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 0.7em;
}
.wb-var-grid label {
	display: flex; flex-direction: column;
	font-size: 0.8em; font-weight: 700; gap: 0.25em;
}
.wb-var-grid input, .wb-var-grid textarea {
	font: inherit; font-weight: 400; font-size: 0.95rem;
	padding: 0.45em 0.6em;
	border: 1.5px solid rgba(0,0,0,0.25); border-radius: 7px;
	width: 100%;
}
.wb-var-f-desc { grid-column: 1 / -1; }
.wb-var-add {
	margin-top: 0.2em;
}
@media (max-width: 640px) {
	.wb-var-grid { grid-template-columns: 1fr 1fr; }
	.wb-var-f-name, .wb-var-f-desc { grid-column: 1 / -1; }
}

/* ---------------------------------------------------------------
   Mengenwahl im Buchungsformular
   --------------------------------------------------------------- */
.wb-variante-menge {
	margin-top: 0.8em;
	padding: 0.8em 1em;
	background: rgba(0,0,0,0.04);
	border-radius: 8px;
	display: flex; align-items: center; gap: 0.7em; flex-wrap: wrap;
}
.wb-variante-menge label { font-weight: 700; font-size: 0.92em; margin: 0; }
.wb-variante-menge select {
	padding: 0.4em 0.7em; border: 1.5px solid rgba(0,0,0,0.3);
	border-radius: 7px; font: inherit;
}
.wb-variante-summe { font-weight: 800; margin-left: auto; }

/* ── Gutschein: freier Betrag + Anlass (Theme-Design) ────────── */
.wb-gutschein { --g-ink:#1A1410; --g-cream:#FBF7F0; --g-rose:#C9907E; --g-rose-l:#E8C4B8; }
.wb-gutschein .wbg-feld { margin: 0 0 22px; }
.wb-gutschein .wbg-feld > label { display:block; font-weight:500; margin-bottom:10px; color:var(--g-ink); }

.wb-gutschein .wbg-vorschlaege { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:12px; }
.wb-gutschein .wbg-chip {
  appearance:none; cursor:pointer; font:inherit; font-weight:500;
  padding:11px 22px; border-radius:999px;
  border:1.5px solid var(--g-rose-l); background:transparent; color:var(--g-ink);
  transition:background .18s ease, border-color .18s ease, color .18s ease;
}
.wb-gutschein .wbg-chip:hover { border-color:var(--g-rose); background:rgba(201,144,126,.08); }
.wb-gutschein .wbg-chip.is-active { background:var(--g-ink); border-color:var(--g-ink); color:var(--g-cream); }

.wb-gutschein input[type="number"]#wbg_wert {
  width:100%; padding:14px 16px; font-size:1.35rem; font-weight:500;
  border:1.5px solid var(--g-rose-l); border-radius:4px;
  background:#FFFEF9; color:var(--g-ink);
}
.wb-gutschein input[type="number"]#wbg_wert:focus { outline:none; border-color:var(--g-rose); }

.wb-gutschein select#wbg_anlass {
  width:100%; padding:13px 16px; font:inherit;
  border:1.5px solid var(--g-rose-l); border-radius:4px;
  background:#FFFEF9; color:var(--g-ink);
}
.wb-gutschein select#wbg_anlass:focus { outline:none; border-color:var(--g-rose); }

.wb-gutschein .wbg-hint { display:block; margin-top:7px; font-size:.86rem; color:#6B5F56; }

/* ── Gutschein-Art: Erlebnis-Gutscheine vs. Wertgutschein ───── */
.wb-gutschein .wbg-arten { display:grid; gap:12px; }
.wb-gutschein .wbg-art { display:block; cursor:pointer; }
.wb-gutschein .wbg-art input { position:absolute; opacity:0; pointer-events:none; }
.wb-gutschein .wbg-art__body {
  display:block; padding:18px 20px; border-radius:6px;
  border:1.5px solid var(--g-rose-l); background:#FFFEF9;
  transition:border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
}
/* Nicht gewählte Arten verblassen, sobald eine Auswahl getroffen ist */
.wb-gutschein .wbg-arten.has-auswahl .wbg-art input:not(:checked) + .wbg-art__body { opacity:.5; }
.wb-gutschein .wbg-arten.has-auswahl .wbg-art:hover .wbg-art__body { opacity:1; }
.wb-gutschein .wbg-art:hover .wbg-art__body { border-color:var(--g-rose); }
.wb-gutschein .wbg-art input:checked + .wbg-art__body {
  border-color:var(--g-ink); box-shadow:inset 0 0 0 1px var(--g-ink);
}
.wb-gutschein .wbg-art input:focus-visible + .wbg-art__body { outline:2px solid var(--g-rose); outline-offset:2px; }
.wb-gutschein .wbg-art__name  { display:block; font-weight:600; font-size:1.05rem; color:var(--g-ink); }
.wb-gutschein .wbg-art__info  { display:block; margin-top:5px; font-size:.9rem; line-height:1.5; color:#6B5F56; }
.wb-gutschein .wbg-art__preis { display:block; margin-top:10px; font-weight:600; color:var(--g-rose); }

/* Kalender: sanfter Ladezustand beim Monatswechsel (AJAX) */
.wb-cal-wrap { position: relative; }
.wb-cal-loading { opacity: .55; transition: opacity .15s ease; }
.wb-cal-nav { cursor: pointer; user-select: none; }

/* Formular: zwei Felder nebeneinander (Vor-/Nachname, PLZ/Ort) */
.wb-feld-paar { display: flex; gap: 14px; flex-wrap: wrap; }
.wb-feld-paar > span { flex: 1 1 0; min-width: 0; display: block; }
.wb-feld-paar .wb-feld-plz { flex: 0 0 110px; }
.wb-feld-paar .wb-feld-ort { flex: 1 1 auto; }
.wb-feld-paar label { display: block; }
.wb-feld-paar input { width: 100%; }
@media (max-width: 480px) {
  .wb-feld-paar { gap: 10px; }
  .wb-feld-paar .wb-feld-plz { flex: 1 1 100%; }
  .wb-feld-paar .wb-feld-ort { flex: 1 1 100%; }
}

/* Private-Event-Anfrageformular */
.wb-anfrage-form .wb-extras { border: 1px solid #E8C4B8; border-radius: 8px; padding: 14px 16px; margin: 4px 0 16px; }
.wb-anfrage-form .wb-extras legend { font-weight: 600; padding: 0 6px; }
.wb-extras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 8px 18px; }
.wb-extra { display: flex; align-items: center; gap: 8px; font-weight: 400; }
.wb-extra input { width: auto; margin: 0; }
.wb-hp { position: absolute !important; left: -9999px !important; height: 0; width: 0; overflow: hidden; }
.wb-anfrage-ok { background: #E7EFE3; border-radius: 8px; padding: 20px 22px; }
.wb-anfrage-ok h3 { margin-top: 0; }
.wb-anfrage-fehler { background: #F6E3DF; border-radius: 8px; padding: 14px 18px; margin-bottom: 16px; }

/* ===== Private-Event-Anfrageformular: sauberes, einheitliches Layout ===== */
.wb-anfrage-form { max-width: 760px; }
.wb-anfrage-form p { margin: 0 0 16px; }
.wb-anfrage-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  line-height: 1.3;
}
.wb-anfrage-form input:not([type="checkbox"]):not([type="radio"]),
.wb-anfrage-form textarea,
.wb-anfrage-form select {
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 12px 14px;
  border: 1px solid #d8d2c8;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.4;
  background: #fff;
  color: #1A1410;
  font-family: inherit;
}
.wb-anfrage-form input:focus,
.wb-anfrage-form textarea:focus,
.wb-anfrage-form select:focus {
  outline: none;
  border-color: #C9907E;
  box-shadow: 0 0 0 3px rgba(201,144,126,.18);
}
.wb-anfrage-form textarea { min-height: 130px; resize: vertical; }

/* Zwei-Spalten-Reihen */
.wb-anfrage-form .wb-feld-paar { display: flex; gap: 18px; margin: 0 0 16px; }
.wb-anfrage-form .wb-feld-paar > span { flex: 1 1 0; min-width: 0; }
@media (max-width: 560px) {
  .wb-anfrage-form .wb-feld-paar { flex-direction: column; gap: 16px; }
}

/* Extras / Häkchen */
.wb-anfrage-form .wb-extras { border: 1px solid #E8C4B8; border-radius: 8px; padding: 16px 18px; margin: 0 0 18px; }
.wb-anfrage-form .wb-extras legend { font-weight: 600; padding: 0 6px; }
.wb-anfrage-form .wb-extras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 10px 20px; }
.wb-anfrage-form .wb-extra { display: flex; align-items: center; gap: 9px; margin: 0; font-weight: 400; cursor: pointer; }
.wb-anfrage-form .wb-extra input { width: auto !important; margin: 0; flex: 0 0 auto; }

/* Zustimmung */
.wb-anfrage-form .wb-consent label { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; }
.wb-anfrage-form .wb-consent input { width: auto !important; margin-top: 3px; flex: 0 0 auto; }

/* Button */
.wb-anfrage-form .wb-submit {
  display: inline-block; border: none; cursor: pointer;
  background: #1A1410; color: #FBF7F0;
  padding: 15px 34px; border-radius: 4px;
  font-size: 1rem; font-weight: 600; letter-spacing: .3px;
  transition: background .2s ease, transform .2s ease;
}
.wb-anfrage-form .wb-submit:hover { background: #C9907E; transform: translateY(-2px); }

/* Honeypot sicher ausblenden */
.wb-anfrage-form .wb-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden; }

/* Gutschein: Zeichen-Hinweis */
.wb-gutschein .wbg-hint { display:block; margin-top:4px; font-size:.8rem; color:#8a7d72; }

/* ── Gutschein-Einlöse-/Status-Seite ─────────────────────── */
.wb-gutschein-status { max-width: 520px; margin: 0 auto; }
.wb-gs-form label { display:block; font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:#8a7d72; font-weight:600; margin-bottom:6px; }
.wb-gs-row { display:flex; gap:10px; }
.wb-gs-row input { flex:1 1 auto; padding:13px 15px; border:1px solid #d8d2c8; border-radius:6px; font-size:1.05rem; letter-spacing:.05em; text-transform:uppercase; }
.wb-gs-row input:focus { outline:none; border-color:#C9907E; box-shadow:0 0 0 3px rgba(201,144,126,.18); }
.wb-gs-ergebnis { margin-top:22px; border-radius:10px; padding:22px 24px; }
.wb-gs-ok    { background:#E7EFE3; }
.wb-gs-leer  { background:#F1ECE4; }
.wb-gs-fehler{ background:#F6E3DF; }
.wb-gs-titel { font-size:1.15rem; font-weight:600; margin-bottom:14px; color:#1A1410; }
.wb-gs-liste { list-style:none; margin:0; padding:0; }
.wb-gs-liste li { display:flex; justify-content:space-between; align-items:center; gap:12px; padding:9px 0; border-bottom:1px solid rgba(26,20,16,.08); }
.wb-gs-liste li:last-child { border-bottom:none; }
.wb-gs-liste li span { color:#8a7d72; font-size:.92rem; }
.wb-gs-liste li strong { font-size:1.3rem; color:#1A1410; }
.wb-gs-liste code { background:rgba(26,20,16,.06); padding:3px 8px; border-radius:4px; letter-spacing:.05em; }
.wb-gs-hinweis { margin:14px 0 0; font-size:.9rem; color:#42392f; line-height:1.5; }
