/* Floating language switcher — bottom left (always visible) */
.nq-lang-switcher {
	position: fixed;
	left: 16px;
	bottom: 16px;
	z-index: 9999;
	pointer-events: none;
}

.nq-lang-switcher__list {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	pointer-events: auto;
	background: #ffffff;
	border: 1px solid #dfe2e1;
	border-left: 3px solid #e3062c;
	box-shadow: 0 2px 10px rgba(23, 26, 31, 0.08);
}

.nq-lang-switcher__item {
	margin: 0;
	padding: 0;
}

.nq-lang-switcher__link {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 8px;
	font-family: inherit;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1;
	color: #3d444c;
	text-decoration: none;
	border-right: 1px solid #f0f2f1;
	background: transparent;
	transition: color 0.15s ease, background-color 0.15s ease;
}

.nq-lang-switcher__item:last-child .nq-lang-switcher__link {
	border-right: 0;
}

.nq-lang-switcher__link:hover,
.nq-lang-switcher__link:focus-visible {
	color: #e3062c;
	background: #f8f4f3;
	outline: none;
}

.nq-lang-switcher__item.is-current .nq-lang-switcher__link {
	color: #171a1f;
	background: #f4f6f5;
	box-shadow: inset 0 -2px 0 #e3062c;
}

@media (max-width: 640px) {
	.nq-lang-switcher {
		left: 10px;
		bottom: 10px;
	}

	.nq-lang-switcher__link {
		min-width: 32px;
		height: 32px;
		padding: 0 6px;
		font-size: 10px;
	}
}
