.l23-currency-switcher {
	position: relative;
	display: inline-flex;
	align-items: center;
	margin-left: 14px;
	line-height: 1;
	vertical-align: middle;
	z-index: 30;
}

.l23-currency-switcher__button {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 22px;
	padding: 0 4px;
	border: 0;
	border-radius: 3px;
	background: transparent;
	color: inherit;
	font: inherit;
	line-height: 1;
	cursor: pointer;
	box-shadow: none;
}

.l23-currency-switcher__button:hover,
.l23-currency-switcher__button:focus {
	background: rgba(255, 255, 255, 0.14);
	color: inherit;
	box-shadow: none;
}

.l23-currency-switcher__caret {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	opacity: 0.85;
}

.l23-currency-switcher__menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	display: none;
	min-width: 92px;
	padding: 6px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 6px;
	background: #fff;
	color: #1a202c;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.l23-currency-switcher.is-open .l23-currency-switcher__menu {
	display: grid;
	gap: 2px;
}

.l23-currency-switcher__option {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 8px 12px;
	border: 0;
	border-radius: 4px;
	background: transparent;
	color: #1a202c;
	font: inherit;
	font-size: 13px;
	line-height: 1.2;
	text-align: left;
	cursor: pointer;
	box-shadow: none;
}

.l23-currency-switcher__option:hover,
.l23-currency-switcher__option:focus,
.l23-currency-switcher__option[aria-selected="true"] {
	background: #edf2f7;
	color: #1a202c;
	box-shadow: none;
}

.l23-currency-switcher__code {
	font-weight: 700;
	letter-spacing: 0;
}

.l23-currency-switcher--compact .l23-currency-switcher__button {
	font-weight: 500;
}

.l23-checkout-charge-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 14px;
	border-top: 1px solid #e5e7eb;
	background: #fff;
	color: #374151;
	font-size: 14px;
	line-height: 1.35;
}

.l23-checkout-charge-row[hidden] {
	display: none;
}

.l23-checkout-charge-row__label {
	min-width: 0;
}

.l23-checkout-charge-row__amount {
	flex: 0 0 auto;
	color: #111827;
	font-weight: 600;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.l23-currency-switcher {
		margin-left: 8px;
	}

	.l23-currency-switcher__button {
		min-height: 20px;
		padding: 0 2px;
	}

	.l23-currency-switcher__menu {
		right: auto;
		left: 50%;
		min-width: 88px;
		transform: translateX(-50%);
	}

	.l23-currency-switcher__option {
		padding: 8px;
	}

	.l23-checkout-charge-row {
		padding: 11px 12px;
		font-size: 13px;
	}
}
