/* /frontend/css/language.css - 20260713 - 11-45 */
/**
 * A-FUCKING-DOCS: ISOLATED LANGUAGE SELECTOR COMPONENT.
 * Component-driven styling for the language switcher.
 * Enforces strict 32px height parity with the global header rhythm lock.
 * All theme overrides moved to theme.css.
 */
.lang-switcher-component {
	position: relative;
	width: 240px;
	height: 32px;
	flex-shrink: 0;
}
.lang-switcher-component .lang-btn {
	width: 100%;
	height: 32px;
	box-sizing: border-box;
	background-color: transparent;
	border: none;
	border-radius: 0;
	color: #ffffff !important;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px;
	font-size: 21px;
	user-select: none;
	transition: none;
	font-weight: normal !important;
}
.lang-switcher-component .lang-btn:hover {
	transform: none;
	box-shadow: none;
	background-color: transparent !important;
}
span[id*="-current-lang-content"],
#current-lang-content {
	gap: 10px;
	min-width: 180px;
	height: 32px !important;
	min-height: 32px !important;
	line-height: 1 !important;
	box-sizing: border-box !important;
	display: inline-flex !important;
	align-items: center !important;
}
.lang-text {
	position: relative;
	top: -1px;
	font-weight: normal !important;
}
.lang-switcher-component .lang-btn .arrow-down {
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid currentColor;
}
.lang-switcher-component div[id*="-lang-list"],
.lang-switcher-component #lang-list,
.lang-list {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	width: 100%;
	box-sizing: border-box;
	background-color: white;
	border: 1px solid #ccc;
	z-index: 2010;
	max-height: 300px;
	overflow-y: auto;
}
.lang-switcher-component .lang-item {
	display: flex;
	align-items: center;
	padding: 7px 10px;
	cursor: pointer;
	color: black;
	font-size: 21px;
	white-space: nowrap;
	gap: 10px;
	transition: none;
	font-weight: normal !important;
}
.lang-switcher-component .lang-item img {
	position: relative;
	top: 1px;
}
.lang-switcher-component .lang-item:hover {
	background-color: #f0f0f0 !important;
	padding-left: 10px !important;
}