.lang-switcher {
	position: relative;
	display: inline-block;
}
.lang-switcher .lang-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	background: #ffffff;
	color: #111827;
	font-weight: 600;
	cursor: pointer;
}
.lang-switcher .lang-caret {
	font-size: 10px;
	margin-left: 6px;
}
.lang-switcher .lang-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: auto;
	right: 0;
	min-width: 200px;
	background: rgba(255,255,255,0.95);
	border: 1px solid rgba(229,231,235,0.8);
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
	padding: 6px;
	display: none;
	z-index: 1000;
}
.lang-switcher.open .lang-menu {
	display: block;
}
.lang-switcher .lang-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 8px;
	color: #111827;
	text-decoration: none;
	white-space: nowrap;
}
.lang-switcher .lang-item:hover {
	background: rgba(0,0,0,0.05);
}
.lang-flag {
	font-size: 16px;
	line-height: 1;
}
.lang-label {
	font-weight: 600;
}
.lang-code {
	font-weight: 600;
	font-size: 12px;
	color: #6b7280;
}

.lang-inline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
	z-index: 5;
}
.lang-pill {
	border: 1px solid rgba(255,255,255,0.3);
	background: rgba(255,255,255,0.15);
	color: #fff;
	padding: 4px 12px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s ease;
}
.lang-pill:hover,
.lang-pill.active {
	background: #f4c01a;
	color: #111827;
	border-color: #f4c01a;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.lang-mobile .lang-pill {
	border-color: rgba(17,24,39,0.2);
	background: rgba(249,250,251,0.9);
	color: #111827;
}
.lang-mobile .lang-pill:hover,
.lang-mobile .lang-pill.active {
	background: #111827;
	color: #fff;
	border-color: #111827;
}

#google_translate_element {
	display: none !important;
	visibility: hidden !important;
}

@media (max-width: 991.98px) {
	.lang-desktop { display: none !important; }
}
@media (min-width: 992px) {
	.lang-mobile { display: none !important; }
}

