.payo-ml-switcher {
	display: inline-flex;
	align-items: center;
	font-family: inherit;
}

.payo-ml-switcher__list {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 5px;
	list-style: none;
	border: 1px solid rgba(15, 23, 42, 0.10);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
	backdrop-filter: blur(10px);
}

.payo-ml-switcher__item {
	margin: 0;
	padding: 0;
}

.payo-ml-switcher__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 38px;
	min-height: 36px;
	padding: 7px 10px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: transparent;
	color: #111827;
	text-decoration: none;
	line-height: 1;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.payo-ml-switcher__link:hover,
.payo-ml-switcher__link:focus {
	transform: translateY(-1px);
	border-color: rgba(17, 24, 39, 0.12);
	background: rgba(17, 24, 39, 0.05);
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
	color: #111827;
	text-decoration: none;
	outline: none;
}

.payo-ml-switcher__link.is-active {
	border-color: rgba(56, 88, 233, 0.35);
	background: #3858e9;
	color: #ffffff;
	box-shadow: 0 8px 18px rgba(56, 88, 233, 0.22);
}

.payo-ml-switcher__flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	line-height: 1;
}

.payo-ml-switcher__name {
	font-size: 13px;
	font-weight: 700;
	color: currentColor;
}

@media (max-width: 767px) {
	.payo-ml-switcher__list {
		gap: 4px;
		padding: 4px;
	}

	.payo-ml-switcher__link {
		min-width: 34px;
		min-height: 32px;
		padding: 6px 8px;
	}

	.payo-ml-switcher__flag {
		font-size: 18px;
	}
}
