.sjm-lang-switcher {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 1.2;
}

.sjm-lang-switcher__toggle {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: #8c4e38;
	border: 1px solid rgb(207 173 157);
	border-radius: 1px;
	color: #fff;
	cursor: pointer;
}
.sjm-lang-switcher__toggle:hover,.sjm-lang-switcher__toggle:focus{background:#a87850}
.sjm-lang-switcher__caret {
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	transition: transform 0.15s ease;
}

.sjm-lang-switcher.is-open .sjm-lang-switcher__caret {
	transform: rotate(180deg);
}

.sjm-lang-switcher__menu {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 100;
	min-width: 140px;
	margin: 6px 0 0;
	padding: 6px 0;
	list-style: none;
	background: #fff;
	color: #222;
	border-radius: 4px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.sjm-lang-switcher__menu[hidden] {
	display: none;
}

.sjm-lang-switcher__item {
	display: block;
	padding: 8px 16px;
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

.sjm-lang-switcher__item:hover,
.sjm-lang-switcher__item:focus {
	background: rgba(0, 0, 0, 0.06);
}

.sjm-lang-switcher__item.is-active {
	font-weight: 700;
}
