.lcs-switcher {
	--lcs-deep: #022B3A;
	--lcs-primary: #1F7A8C;
	--lcs-soft-blue: #BFDBF7;
	--lcs-soft: #EDF6F9;
	--lcs-white: #FFFFFF;
	--lcs-border-color: #BFDBF7;
	--lcs-accent: #1F7A8C;
	--lcs-text: #022B3A;
	--lcs-muted: #1F7A8C;
	--lcs-surface: #FFFFFF;
	--lcs-surface-soft: #EDF6F9;
	font: inherit;
	color: var(--lcs-text);
	max-width: 100%;
}

.lcs-switcher .lcs-switcher__group {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.lcs-switcher .lcs-switcher__label {
	font: inherit;
	font-weight: 600;
	color: var(--lcs-text);
}

.lcs-switcher .lcs-switcher__trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 44px;
	padding: 0.8rem 1rem;
	border: 1px solid var(--lcs-border-color);
	border-radius: 15px;
	background: var(--lcs-surface);
	color: var(--lcs-text);
	font: inherit;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	box-shadow: none;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.lcs-switcher .lcs-switcher__trigger:hover,
.lcs-switcher .lcs-switcher__trigger:focus {
	border-color: var(--lcs-deep);
	background: var(--lcs-soft);
	color: var(--lcs-deep);
	box-shadow: none;
	outline: none;
}

.lcs-switcher .lcs-switcher__modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
}

.lcs-switcher .lcs-switcher__modal[hidden] {
	display: none;
}

.lcs-switcher .lcs-switcher__backdrop {
	position: absolute;
	inset: 0;
	background: transparent;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.lcs-switcher .lcs-switcher__panel {
	position: relative;
	z-index: 1;
	width: min(760px, 100%);
	max-height: min(88vh, 780px);
	overflow: auto;
	padding: 1.35rem;
	border: 1px solid var(--lcs-soft-blue);
	border-radius: 24px;
	background: var(--lcs-surface);
	box-shadow: none;
}

.lcs-switcher .lcs-switcher__panel-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.15rem;
}

.lcs-switcher .lcs-switcher__panel-title {
	margin: 0;
	font-size: clamp(1.5rem, 1.2rem + 0.8vw, 2rem);
	line-height: 1.1;
	font-weight: 700;
	color: var(--lcs-deep);
}

.lcs-switcher .lcs-switcher__panel-text {
	margin: 0.5rem 0 0;
	font-size: 0.92rem;
	line-height: 1.35;
	color: var(--lcs-primary);
	white-space: nowrap;
}

.lcs-switcher .lcs-switcher__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	min-width: 42px;
	min-height: 42px;
	padding: 0;
	flex: 0 0 42px;
	border: 1px solid var(--lcs-soft-blue);
	border-radius: 50%;
	background: var(--lcs-white);
	color: var(--lcs-deep);
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: none;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.lcs-switcher .lcs-switcher__close:hover,
.lcs-switcher .lcs-switcher__close:focus {
	border-color: var(--lcs-deep);
	background: var(--lcs-soft);
	color: var(--lcs-deep);
	box-shadow: none;
	outline: none;
}

.lcs-switcher .lcs-switcher__menu {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

.lcs-switcher .lcs-switcher__card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	min-height: 74px;
	padding: 0.8rem 0.9rem;
	border: 1px solid var(--lcs-soft-blue);
	border-radius: 16px;
	background: var(--lcs-surface-soft);
	color: var(--lcs-text);
	text-decoration: none;
	font: inherit;
	box-shadow: none;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.lcs-switcher .lcs-switcher__card:hover,
.lcs-switcher .lcs-switcher__card:focus {
	border-color: var(--lcs-deep);
	background: var(--lcs-white);
	color: var(--lcs-deep);
	box-shadow: none;
	outline: none;
}

.lcs-switcher .lcs-switcher__card.is-active {
	border-color: var(--lcs-primary);
	background: var(--lcs-white);
	box-shadow: none;
}

.lcs-switcher .lcs-switcher__card-main {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
}

.lcs-switcher .lcs-switcher__card-flag,
.lcs-switcher .lcs-switcher__option-flag {
	font-size: 1.15rem;
	line-height: 1;
	flex: 0 0 auto;
}

.lcs-switcher .lcs-switcher__option-copy {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}

.lcs-switcher .lcs-switcher__option-code {
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.01em;
	color: var(--lcs-deep);
}

.lcs-switcher .lcs-switcher__option-name {
	font-size: 0.92rem;
	line-height: 1.35;
	color: var(--lcs-primary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lcs-switcher .lcs-switcher__check {
	flex: 0 0 auto;
	font-size: 1rem;
	font-weight: 700;
	color: var(--lcs-primary);
}

.lcs-switcher--minimal .lcs-switcher__panel,
.lcs-switcher--minimal .lcs-switcher__card {
	border-radius: 14px;
}

.lcs-block-conversion-note,
.lcs-order-total-conversion,
.lcs-mini-cart-conversion,
.lcs-charge-note small {
	color: var(--lcs-primary);
	font-size: 0.875em;
}

/* Currency code badge shown after every converted price, e.g. "$274.77 USD" */
.lcs-currency-code {
	display: inline-block;
	font-size: 0.72em;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1;
	color: var(--lcs-primary, #1F7A8C);
	background: transparent;
	vertical-align: middle;
	margin-left: 0.2em;
}

/* Checkout notice rendered below the Place Order button */
.lcs-cad-notice-wrap {
	margin-top: 16px;
}

.lcs-cad-notice {
	margin: 0;
	padding: 0.45rem 0.75rem;
	font-size: 0.82em;
	line-height: 1.4;
	color: #1F7A8C;
	background: #EDF6F9;
	border-left: 3px solid #1F7A8C;
	border-radius: 0 6px 6px 0;
}

html.lcs-modal-open,
body.lcs-modal-open {
	overflow: hidden;
}

@media (max-width: 782px) {
	.lcs-switcher .lcs-switcher__trigger {
		padding: 12px 14px;
		font-size: clamp(0.88rem, 0.81034rem + 0.27586vw, 1rem);
	}

	.lcs-switcher .lcs-switcher__panel {
		padding: 1rem;
		border-radius: 20px;
	}

	.lcs-switcher .lcs-switcher__menu {
		grid-template-columns: 1fr;
	}

	.lcs-switcher .lcs-switcher__panel-text {
		white-space: normal;
	}

	.lcs-switcher .lcs-switcher__panel-text-break {
		display: block;
	}

	.lcs-switcher .lcs-switcher__card {
		min-height: 70px;
		padding: 0.75rem 0.85rem;
	}
}
