/* Language Switcher Styles */
.lang-switcher {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 10000;
	background: rgba(255, 255, 255, 0.7);
	padding: 8px 12px;
	border-radius: 20px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	font-size: 13px;
}
.lang-switcher a {
	display: inline-block;
	text-decoration: none;
	color: #333;
	opacity: 0.7;
	transition: opacity 0.2s;
	text-align: center;
	margin: 0 6px;
}
.lang-switcher a:hover, .lang-switcher a.active {
	opacity: 1;
	font-weight: bold;
}
.lang-switcher .flag {
	display: block;
	width: 20px; height: 14px;
	margin: 0 auto 2px; border-radius: 2px;
}
.lang-switcher .code {
	font-size: 11px;
}
@media (max-width: 768px) {
	.lang-switcher { font-size: 11px; padding: 6px 8px; }
	.lang-switcher a { margin: 0 3px; }
	.lang-switcher .flag { font-size: 14px; }
}