/* Switch UDrive Lang — переключатель языков */

.lang-switcher {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
}

.lang-switcher__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 32px;
	padding: 0 8px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 6px;
	background: transparent;
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.02em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	box-sizing: border-box;
	cursor: pointer;
}

.lang-switcher__item:hover {
	border-color: #ffffff;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
}

.lang-switcher__item.is-active {
	background: #f5c518;
	border-color: #f5c518;
	color: #0b1f3a;
	cursor: default;
}

.lang-switcher ul {
	display: contents;
	list-style: none;
	margin: 0;
	padding: 0;
}
