/* Kyere Multilang — frontend switcher */
.kyere-ml-switcher ul {
	display: flex;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}
.kyere-ml-switcher a {
	display: inline-block;
	padding: 4px 8px;
	text-decoration: none;
	font-family: 'Poppins', Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: inherit;
	opacity: 0.7;
	border-bottom: 2px solid transparent;
}
.kyere-ml-switcher .is-active a,
.kyere-ml-switcher a[aria-current="true"] {
	opacity: 1;
	border-bottom-color: currentColor;
}
.kyere-ml-switcher-floating {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 9998;
	background: rgba(20, 20, 20, 0.88);
	color: #efefef;
	padding: 6px 10px;
	border-radius: 4px;
	backdrop-filter: blur(6px);
}
.site-header .kyere-ml-switcher {
	margin-left: 8px;
}
.site-header .kyere-ml-switcher-floating {
	position: static;
	background: transparent;
	padding: 0;
	color: inherit;
}
