.dslush-currency-switcher {
	position: relative;
	display: inline-flex;
	align-items: center;
	margin: 0;
}

.dslush-currency-switcher::before {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.48));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 8px 22px rgba(37,64,15,.13);
	pointer-events: none;
}

.dslush-currency-switcher select {
	position: relative;
	z-index: 1;
	min-width: 76px;
	height: 38px;
	margin: 0;
	padding: 0 30px 0 14px;
	border: 1px solid rgba(198,157,18,.48);
	border-radius: 999px;
	background: transparent;
	color: #25400f;
	font: 700 12px/1 system-ui, sans-serif;
	letter-spacing: .06em;
	cursor: pointer;
	backdrop-filter: blur(14px) saturate(145%);
	-webkit-backdrop-filter: blur(14px) saturate(145%);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.dslush-currency-switcher select:hover,
.dslush-currency-switcher select:focus-visible {
	transform: translateY(-2px);
	border-color: #c69d12;
	box-shadow: 0 9px 22px rgba(37,64,15,.18);
	outline: none;
}

.dslush-rate-credit {
	margin: 0;
	padding: 6px 16px 10px;
	background: #15280a;
	text-align: center;
	font: 500 10px/1.4 system-ui, sans-serif;
	letter-spacing: .02em;
}

.dslush-rate-credit a { color: rgba(255,255,255,.56); text-decoration: none; }
.dslush-rate-credit a:hover { color: #e0bd43; }

@media (max-width: 767px) {
	.dslush-currency-switcher select {
		min-width: 61px;
		height: 34px;
		padding: 0 23px 0 10px;
		font-size: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dslush-currency-switcher select { transition: none; }
}
