/* 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; }
