/* Boogie Kathi – Sprachumschalter. Nutzt die Theme-Palette (Fallbacks gesetzt). */

.bk-langswitch {
	display: inline-flex;
	align-items: center;
}

.bk-langswitch__list {
	display: inline-flex;
	align-items: center;
	gap: 0.15rem;
	margin: 0;
	padding: 0.15rem;
	list-style: none;
	border: 1px solid var(--bk-white-10, rgba(255, 255, 255, 0.12));
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.18);
}

.bk-langswitch__item {
	margin: 0;
	padding: 0;
}

.bk-langswitch__link {
	display: inline-block;
	padding: 0.25rem 0.6rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--bk-cream, #f5efe3);
	border-radius: 999px;
	transition: background 0.2s ease, color 0.2s ease;
}

.bk-langswitch__link:hover,
.bk-langswitch__link:focus-visible {
	background: var(--bk-white-10, rgba(255, 255, 255, 0.12));
	color: var(--bk-white, #fff);
}

.bk-langswitch__link.is-current {
	background: var(--bk-gold-500, #c5a55a);
	color: var(--bk-maroon-900, #2a0e0e);
	cursor: default;
}

/* Im mobilen Menü als Block-Reihe. */
.bk-mobile-menu .bk-langswitch {
	margin-top: 1rem;
	width: 100%;
	justify-content: center;
}
