/*!
Theme Name: sahakyanhoney
*/

/* Language Switcher Custom Styles */
.lang-switcher {
	position: relative;
	cursor: pointer;
}

.lang-switcher .mn-sub {
	min-width: 120px !important;
	background: #111 !important;
	/* Очень темный фон */
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 4px;
	padding: 10px 0 !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lang-switcher .mn-sub li a {
	color: rgba(255, 255, 255, 0.7) !important;
	font-size: 11px !important;
	letter-spacing: 1px;
	padding: 8px 20px !important;
	display: block;
	transition: all 0.3s ease;
}

.lang-switcher .mn-sub li a:hover {
	color: #fff !important;
	background: rgba(212, 175, 55, 0.1);
	/* Легкий золотой фон при наведении */
}

/* Иконка шеврона */
.lang-switcher i {
	transition: transform 0.3s ease;
	vertical-align: middle;
	margin-left: 2px;
}

.lang-switcher:hover i {
	transform: rotate(180deg);
}

/* Для мобильной версии, чтобы не ломалось */
@media (max-width: 992px) {
	.lang-switcher .mn-sub {
		position: static !important;
		background: transparent !important;
		border: none;
		box-shadow: none;
		padding-left: 20px !important;
	}
}