/* ==========================================================================
   PREMIUM GLASSMORPHIC LANGUAGE SWITCHER STYLING
   ========================================================================== */

/* 1. Custom Switcher Container */
.lang-switcher {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50px;
	padding: 3px;
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.lang-switcher:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.3);
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.08);
}

/* 2. Button Styling */
.lang-btn {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.65);
	font-family: 'Outfit', sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 0.45rem 0.95rem;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 2;
	outline: none;
}

.lang-btn:hover {
	color: #ffffff;
}

/* 3. Active Language Selector */
.lang-btn.active {
	color: #02131a;
	background: #ffffff;
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
	font-weight: 800;
}

/* 4. Layout Alignment Settings */
.lang-desktop {
	display: flex;
}

/* Container for Switcher and Hamburger */
.mobile-actions {
	display: none;
	align-items: center;
	gap: 0.75rem;
}

/* 5. Responsive Breakpoints */
@media (max-width: 992px) {
	.lang-desktop {
		display: none !important;
	}
	.mobile-actions {
		display: flex !important;
	}
}

@media (max-width: 480px) {
	.lang-btn {
		padding: 0.35rem 0.75rem;
		font-size: 0.75rem;
	}
	.mobile-actions {
		gap: 0.5rem;
	}
}
