/* Language Switcher Styles */
.lang-switcher {
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 40;
}

.lang-switcher select {
	padding: 6px 12px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.lang-switcher select:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.4);
}

.lang-switcher select:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.6);
}

.lang-switcher select option {
	background: #000;
	color: #fff;
}

@media (max-width: 900px) {
	.lang-switcher {
		position: static;
		transform: none;
		margin-right: 12px;
	}
}