/* Shipping Protection card in the cart and checkout blocks. */

.healio-sp {
	--healio-sp-accent: var(--berry, #8E2444);
	--healio-sp-ink: var(--wine, #2B0A14);
	--healio-sp-muted: var(--mauve, #6B6165);
	--healio-sp-line: var(--line, rgba(43, 10, 20, 0.12));

	display: block;
	position: relative;
	margin: 0 0 20px;
	padding: 16px 18px;
	border: 1px solid var(--healio-sp-line);
	border-radius: 14px;
	background: var(--paper, #fff);
	font-family: var(--font-body, inherit);
	color: var(--healio-sp-ink);
	transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.healio-sp--on {
	border-color: var(--healio-sp-accent);
	background: var(--cream, #FBF6F7);
	box-shadow: 0 0 0 1px var(--healio-sp-accent) inset;
}

.healio-sp__head {
	display: flex;
	align-items: center;
	gap: 10px;
}

.healio-sp__icon {
	flex: 0 0 auto;
	color: var(--healio-sp-accent);
}

.healio-sp__title {
	flex: 1 1 auto;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

.healio-sp__price {
	flex: 0 0 auto;
	font-size: 15px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.healio-sp__blurb,
.healio-sp__rule {
	margin: 6px 0 0;
	padding-left: 32px;
	font-size: 13px;
	line-height: 1.45;
	color: var(--healio-sp-muted);
}

.healio-sp__rule {
	margin-top: 2px;
	font-size: 12px;
}

.healio-sp__control {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	padding-left: 32px;
}

.healio-sp__switch {
	flex: 0 0 auto;
	position: relative;
	display: inline-block;
	width: 42px;
	height: 24px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(43, 10, 20, 0.22);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: background-color 0.18s ease;
}

.healio-sp__switch:hover {
	background: rgba(43, 10, 20, 0.32);
}

.healio-sp__switch:focus-visible {
	outline: 2px solid var(--healio-sp-accent);
	outline-offset: 2px;
}

.healio-sp__switch[aria-checked="true"],
.healio-sp__switch[aria-checked="true"]:hover {
	background: var(--healio-sp-accent);
}

.healio-sp__knob {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 3px rgba(43, 10, 20, 0.3);
	transition: transform 0.18s ease;
}

.healio-sp__switch[aria-checked="true"] .healio-sp__knob {
	transform: translateX(18px);
}

.healio-sp__state {
	font-size: 13px;
	font-weight: 500;
	color: var(--healio-sp-muted);
}

.healio-sp--on .healio-sp__state {
	color: var(--healio-sp-ink);
}

@media (prefers-reduced-motion: reduce) {
	.healio-sp,
	.healio-sp__switch,
	.healio-sp__knob {
		transition: none;
	}
}
