/**
 * Storage Unit Booking, front end styles.
 *
 * Every colour comes from a custom property set per instance on the root
 * element, so theming is a settings screen rather than a code edit. Nothing
 * here targets a theme selector, and nothing leaks outside .sbp-calc /
 * .sbp-form-wrap.
 *
 * @copyright Copyright (c) 2026 Terence Meghani. All Rights Reserved.
 * @license   Proprietary, see LICENSE.txt
 */

.sbp-calc,
.sbp-form-wrap {
	--sbp-primary: #1a2e4a;
	--sbp-accent: #e8750a;
	--sbp-surface: #f0f4f8;
	--sbp-text: #1a2e4a;
	--sbp-radius: 4px;
	--sbp-track: color-mix(in srgb, var(--sbp-primary) 20%, #ffffff);
	--sbp-border: color-mix(in srgb, var(--sbp-primary) 15%, #ffffff);

	box-sizing: border-box;
	color: var(--sbp-text);
	container-type: inline-size;
}

.sbp-calc *,
.sbp-form-wrap * {
	box-sizing: border-box;
}

.sbp-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ── The card ─────────────────────────────────────────────────────────────── */

.sbp-calc {
	padding: clamp(1.25rem, 0.95rem + 1.1vw, 1.75rem);
	border: 1px solid var(--sbp-border);
	border-radius: calc(var(--sbp-radius) * 3);
	background: #ffffff;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 10px 26px -14px rgba(16, 24, 40, 0.14);
}

.sbp-calc__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: start;
}

/* Stacked, the illustration belongs between the slider and the answer. Left at
   source order it lands under the call to action, which puts the most engaging
   element below the ask. */
.sbp-calc__controls       { order: 1; }
.sbp-calc__result         { order: 2; }
.sbp-calc__recommendation { order: 3; }

@container (min-width: 720px) {
	.sbp-calc__grid {
		grid-template-columns: 1.05fr 1px 1fr;
		gap: 0 clamp(1.5rem, 0.9rem + 1.8vw, 2.5rem);
	}

	/* The hairline between the two halves is drawn by the grid itself, so it
	   spans the taller column without a wrapper element. */
	.sbp-calc__grid::before {
		content: "";
		grid-column: 2;
		grid-row: 1 / span 2;
		align-self: stretch;
		background: var(--sbp-border);
	}

	.sbp-calc__controls       { grid-column: 1; grid-row: 1; }
	.sbp-calc__recommendation { grid-column: 1; grid-row: 2; }
	.sbp-calc__result         { grid-column: 3; grid-row: 1 / span 2; }
}

@supports not (container-type: inline-size) {
	@media (min-width: 860px) {
		.sbp-calc__grid {
			grid-template-columns: 1.05fr 1px 1fr;
			gap: 0 3rem;
		}
		.sbp-calc__grid::before {
			content: "";
			grid-column: 2;
			grid-row: 1 / span 2;
			align-self: stretch;
			background: var(--sbp-border);
		}
		.sbp-calc__controls       { grid-column: 1; grid-row: 1; }
		.sbp-calc__recommendation { grid-column: 1; grid-row: 2; }
		.sbp-calc__result         { grid-column: 3; grid-row: 1 / span 2; }
	}
}

.sbp-calc__heading {
	margin: 0 0 0.9rem;
	color: var(--sbp-primary);
	font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.sbp-calc__note {
	margin: 0.9rem 0 0;
	font-size: 0.78rem;
	line-height: 1.45;
	opacity: 0.55;
}

/* ── Metric rows ──────────────────────────────────────────────────────────── */

/* The rows and the slider are one ordered stack. Selecting a row moves the
   slider beneath it via `order` alone, so the input is never re-parented and
   keyboard focus survives the switch. */
.sbp-metrics {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--sbp-border);
}

.sbp-metric[data-metric="space"]   { order: 1; }
.sbp-metric[data-metric="vehicle"] { order: 3; }
.sbp-metric[data-metric="boxes"]   { order: 5; }

.sbp-metrics[data-mode="space"]   .sbp-slider { order: 2; }
.sbp-metrics[data-mode="vehicle"] .sbp-slider { order: 4; }
.sbp-metrics[data-mode="boxes"]   .sbp-slider { order: 6; }

.sbp-metric {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1.25rem;
	align-items: baseline;
	justify-content: space-between;
	padding: 0.65rem 0;
	border-bottom: 1px solid var(--sbp-border);
}

/* The active row hands its bottom rule to the slider sitting under it. */
.sbp-metrics[data-mode="space"]   .sbp-metric[data-metric="space"],
.sbp-metrics[data-mode="vehicle"] .sbp-metric[data-metric="vehicle"],
.sbp-metrics[data-mode="boxes"]   .sbp-metric[data-metric="boxes"] {
	border-bottom: 0;
	padding-bottom: 0.35rem;
}

.sbp-metric__label {
	display: inline-flex;
	gap: 0.5rem;
	align-items: center;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--sbp-primary);
	cursor: pointer;
}

/* A real radio, visually hidden, with the dot as its face. Clicking the label,
   tabbing to the group and arrowing through it all work as standard. */
.sbp-metric__dot {
	width: 0.9rem;
	height: 0.9rem;
	flex: 0 0 auto;
	border: 2px solid color-mix(in srgb, var(--sbp-primary) 32%, #ffffff);
	border-radius: 50%;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sbp-metric__label:hover .sbp-metric__dot {
	border-color: var(--sbp-accent);
}

.sbp-metric__radio:checked ~ .sbp-metric__dot {
	border-color: var(--sbp-accent);
	box-shadow: inset 0 0 0 2px #ffffff, inset 0 0 0 1rem var(--sbp-accent);
}

.sbp-metric__radio:focus-visible ~ .sbp-metric__dot {
	outline: 3px solid var(--sbp-accent);
	outline-offset: 2px;
}

.sbp-metric__value {
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: right;
	color: var(--sbp-accent);
	overflow-wrap: break-word;
}

/* ── Slider ───────────────────────────────────────────────────────────────── */

.sbp-slider {
	padding-bottom: 0.65rem;
	border-bottom: 1px solid var(--sbp-border);
}

.sbp-slider__input {
	-webkit-appearance: none;
	appearance: none;
	display: block;
	width: 100%;
	/* Kept at a comfortable touch height even though the track is thin: the
	   hit area is the input, not the painted track. */
	height: 1.75rem;
	margin: 0;
	background: transparent;
	cursor: pointer;
}

.sbp-slider__input:focus-visible {
	outline: 3px solid var(--sbp-accent);
	outline-offset: 4px;
	border-radius: 999px;
}

/* The filled portion is painted as a gradient stop at --sbp-progress, which the
   script updates. Firefox has ::-moz-range-progress for this, WebKit does not,
   so one technique is used for both to keep them identical. */
.sbp-slider__input::-webkit-slider-runnable-track {
	height: 6px;
	border-radius: 999px;
	background:
		linear-gradient(var(--sbp-accent), var(--sbp-accent)) 0 / var(--sbp-progress, 0%) 100% no-repeat,
		var(--sbp-track);
}

.sbp-slider__input::-moz-range-track {
	height: 6px;
	border-radius: 999px;
	background:
		linear-gradient(var(--sbp-accent), var(--sbp-accent)) 0 / var(--sbp-progress, 0%) 100% no-repeat,
		var(--sbp-track);
}

.sbp-slider__input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 22px;
	height: 22px;
	margin-top: -8px;
	border: 4px solid #ffffff;
	border-radius: 50%;
	background: var(--sbp-accent);
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.16), 0 4px 10px -2px rgba(16, 24, 40, 0.28);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sbp-slider__input::-moz-range-thumb {
	width: 22px;
	height: 22px;
	border: 4px solid #ffffff;
	border-radius: 50%;
	background: var(--sbp-accent);
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.16), 0 4px 10px -2px rgba(16, 24, 40, 0.28);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sbp-slider__input:hover::-webkit-slider-thumb {
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.16), 0 6px 16px -2px rgba(16, 24, 40, 0.35);
}

.sbp-slider__input:hover::-moz-range-thumb {
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.16), 0 6px 16px -2px rgba(16, 24, 40, 0.35);
}

.sbp-slider__input:active::-webkit-slider-thumb {
	transform: scale(1.12);
}

.sbp-slider__input:active::-moz-range-thumb {
	transform: scale(1.12);
}

/* One mark per stop, so a fourteen-point scale reads as a scale rather than a
   smooth range with two numbers at the ends. */
.sbp-slider__ticks {
	position: relative;
	height: 6px;
	margin-top: -2px;
}

.sbp-slider__tick {
	position: absolute;
	top: 0;
	width: 2px;
	height: 5px;
	margin-left: -1px;
	border-radius: 1px;
	background: var(--sbp-track);
	transition: background-color 0.15s ease;
}

.sbp-slider__tick[data-passed="1"] {
	background: color-mix(in srgb, var(--sbp-accent) 55%, #ffffff);
}

.sbp-slider__scale {
	display: flex;
	justify-content: space-between;
	margin-top: 0.35rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	opacity: 0.45;
}

/* ── Result panel ─────────────────────────────────────────────────────────── */

/* The right column carries the illustration and nothing else, so it is centred
   against the taller information column rather than pinned to the top. */
.sbp-calc__result {
	text-align: left;
	align-self: center;
}

.sbp-calc__recommendation {
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--sbp-border);
}

/* ── What fits ────────────────────────────────────────────────────────────── */

.sbp-fit {
	margin: 0 0 0.85rem;
	padding: 0;
	list-style: none;
	font-size: 0.85rem;
	line-height: 1.45;
}

.sbp-fit li {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
	margin-bottom: 0.3rem;
}

.sbp-fit__label {
	font-weight: 700;
}

.sbp-fit__mark {
	flex: 0 0 auto;
	width: 1.05rem;
	height: 1.05rem;
	margin-top: 0.1rem;
}

.sbp-fit__mark svg {
	width: 100%;
	height: 100%;
	display: block;
}

.sbp-fit__yes .sbp-fit__mark { color: #1b5e20; }
.sbp-fit__no  .sbp-fit__mark { color: #b3261e; }
.sbp-fit__no  { opacity: 0.72; }

.sbp-calc__price {
	margin: 0 0 0.85rem;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--sbp-primary);
}

.sbp-calc__notice-text {
	margin: 0;
}

.sbp-calc__notice-btn {
	margin-top: 0.65rem;
	padding: 0.45rem 0.9rem;
	border: 1px solid var(--sbp-accent);
	border-radius: var(--sbp-radius);
	background: transparent;
	color: var(--sbp-primary);
	font: inherit;
	font-size: 0.82rem;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.sbp-calc__notice-btn:hover {
	background: var(--sbp-accent);
	color: #ffffff;
}

.sbp-calc__notice-btn:focus-visible {
	outline: 3px solid var(--sbp-accent);
	outline-offset: 2px;
}

.sbp-calc__figure {
	position: relative;
	/* Stacked, the panel would run the full column width with a small
	   illustration adrift in the middle of it, so it is capped until there is a
	   second column to balance against. */
	max-width: 300px;
	margin: 0 auto 1rem;
	padding: 0.75rem;
	border-radius: calc(var(--sbp-radius) * 3);
	background:
		radial-gradient(120% 90% at 50% 15%, color-mix(in srgb, var(--sbp-surface) 85%, #ffffff) 0%, var(--sbp-surface) 70%);
	text-align: center;
}

.sbp-calc__image {
	display: block;
	/* Width is set per rung by the script; this is only the fallback for a
	   no-JS render. */
	width: 100%;
	height: auto;
	margin: 0 auto;
	filter: drop-shadow(0 8px 14px rgba(16, 24, 40, 0.1));
	transition: opacity 0.2s ease;
}

.sbp-calc__image[data-swapping="1"] {
	opacity: 0;
}

/* With the right column given over to the illustration alone, it can carry more
   weight than it could when it shared the space with the recommendation. */
@container (min-width: 720px) {
	.sbp-calc__figure {
		max-width: 340px;
		padding: 1.25rem;
	}
}

@supports not (container-type: inline-size) {
	@media (min-width: 860px) {
		.sbp-calc__figure {
			max-width: 340px;
			padding: 1.25rem;
		}
	}
}


.sbp-calc__recommend {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.75rem;
	align-items: center;
	margin: 0 0 0.2rem;
}

.sbp-calc__recommend-text {
	font-size: 0.85rem;
	font-weight: 600;
	opacity: 0.65;
}

.sbp-calc__size {
	margin: 0 0 0.6rem;
	line-height: 1;
	color: var(--sbp-primary);
}

.sbp-calc__size-number {
	display: inline-block;
	font-size: clamp(2.4rem, 1.85rem + 2.2vw, 3.25rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	font-variant-numeric: tabular-nums;
}

.sbp-calc__size-number[data-pop="1"] {
	animation: sbp-pop 0.22s ease;
}

@keyframes sbp-pop {
	0%   { transform: translateY(0.15em); opacity: 0.35; }
	100% { transform: translateY(0); opacity: 1; }
}

.sbp-calc__size-unit {
	margin-left: 0.1em;
	font-size: clamp(1.05rem, 0.9rem + 0.6vw, 1.3rem);
	font-weight: 700;
	vertical-align: baseline;
}

.sbp-calc__size-word {
	margin-left: 0.3rem;
	font-size: 0.9rem;
	font-weight: 600;
	opacity: 0.55;
}

/* ── Unit toggle ──────────────────────────────────────────────────────────── */

.sbp-calc__toggle {
	display: inline-flex;
	padding: 3px;
	border-radius: 999px;
	background: var(--sbp-surface);
}

.sbp-toggle {
	appearance: none;
	padding: 0.25rem 0.7rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--sbp-text);
	font: inherit;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.4;
	cursor: pointer;
	opacity: 0.6;
	transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}

.sbp-toggle:hover {
	opacity: 1;
}

.sbp-toggle[aria-pressed="true"] {
	background: #ffffff;
	color: var(--sbp-primary);
	opacity: 1;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.12);
}

.sbp-toggle:focus-visible {
	outline: 3px solid var(--sbp-accent);
	outline-offset: 1px;
}

/* ── Copy and calls to action ─────────────────────────────────────────────── */

.sbp-calc__summary {
	margin: 0 0 0.7rem;
	max-width: 40ch;
	font-size: 0.9rem;
	line-height: 1.5;
	opacity: 0.85;
}

.sbp-calc__unit-line {
	display: inline-block;
	margin: 0 0 0.9rem;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	background: var(--sbp-surface);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	opacity: 0.8;
}

.sbp-calc__notice {
	margin: 0 0 0.9rem;
	max-width: 44ch;
	padding: 0.65rem 0.85rem;
	border-left: 3px solid var(--sbp-accent);
	border-radius: var(--sbp-radius);
	background: color-mix(in srgb, var(--sbp-accent) 10%, #ffffff);
	font-size: 0.82rem;
	line-height: 1.45;
}

.sbp-calc__cta,
.sbp-btn {
	display: inline-flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.35rem;
	border: 0;
	border-radius: var(--sbp-radius);
	background: var(--sbp-primary);
	color: #ffffff;
	font: inherit;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.sbp-calc__cta:hover,
.sbp-btn:hover {
	background: var(--sbp-accent);
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--sbp-accent) 70%, transparent);
}

.sbp-calc__cta-arrow {
	width: 1.15em;
	height: 1.15em;
	flex: 0 0 auto;
	transition: transform 0.18s ease;
}

/* Themes routinely underline every link inside the content area. Hello
   Elementor does it at `.page-content a`, which outranks a single class, so the
   call to action came out underlined on a plain page. These restate the intent
   with a class plus an element selector, which survives that without !important
   and without knowing the theme. */
.sbp-calc a.sbp-calc__cta,
.sbp-form-wrap a.sbp-btn,
.sbp-chart a.sbp-chart__link {
	text-decoration: none;
}

.sbp-chart a.sbp-chart__link:hover {
	text-decoration: underline;
}

.sbp-calc__cta:hover .sbp-calc__cta-arrow {
	transform: translateX(3px);
}

.sbp-calc__cta:focus-visible,
.sbp-btn:focus-visible {
	outline: 3px solid var(--sbp-accent);
	outline-offset: 3px;
}

.sbp-btn[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* ── Forms ────────────────────────────────────────────────────────────────── */

.sbp-callback {
	margin-top: 1.5rem;
	padding: 1.25rem;
	border: 1px solid var(--sbp-border);
	border-radius: calc(var(--sbp-radius) * 2);
}

.sbp-callback__heading {
	margin: 0 0 0.5rem;
	color: var(--sbp-primary);
	font-size: 1.25rem;
}

.sbp-callback__intro {
	margin: 0 0 1.25rem;
	font-size: 0.9rem;
	line-height: 1.5;
	opacity: 0.8;
}

.sbp-form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@container (min-width: 560px) {
	.sbp-form-row {
		grid-template-columns: 1fr 1fr;
	}
}

@supports not (container-type: inline-size) {
	@media (min-width: 640px) {
		.sbp-form-row {
			grid-template-columns: 1fr 1fr;
		}
	}
}

.sbp-field {
	margin-bottom: 1rem;
}

.sbp-field label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.85rem;
	font-weight: 600;
}

.sbp-field input,
.sbp-field textarea {
	width: 100%;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--sbp-border);
	border-radius: var(--sbp-radius);
	background: #ffffff;
	color: var(--sbp-text);
	font: inherit;
}

.sbp-field input:focus-visible,
.sbp-field textarea:focus-visible {
	outline: 2px solid var(--sbp-accent);
	outline-offset: 1px;
}

.sbp-field input[aria-invalid="true"] {
	border-color: #b3261e;
}

.sbp-req {
	color: #b3261e;
}

.sbp-check {
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	margin-bottom: 0.75rem;
	font-size: 0.85rem;
	line-height: 1.4;
}

.sbp-check input {
	margin-top: 0.15rem;
	flex: 0 0 auto;
}

.sbp-msg {
	margin: 1rem 0 0;
	font-size: 0.9rem;
	line-height: 1.45;
}

.sbp-msg:empty {
	margin: 0;
}

.sbp-msg[data-state="error"] {
	color: #b3261e;
	font-weight: 600;
}

.sbp-msg[data-state="success"] {
	color: #1b5e20;
	font-weight: 600;
}

/* ── Reservation summary ──────────────────────────────────────────────────── */

.sbp-form-heading {
	margin: 0 0 1.25rem;
	color: var(--sbp-primary);
}

.sbp-unit-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	padding: 1.25rem;
	border-radius: calc(var(--sbp-radius) * 2);
	background: var(--sbp-surface);
}

.sbp-unit-summary__info {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.85rem;
	align-items: baseline;
}

.sbp-unit-summary__name {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--sbp-primary);
}

.sbp-unit-summary__size,
.sbp-unit-summary__location {
	font-size: 0.9rem;
	opacity: 0.75;
}

.sbp-unit-summary__price {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--sbp-primary);
}

.sbp-form-note {
	margin: 0 0 1.5rem;
	padding: 0.85rem 1rem;
	border-radius: var(--sbp-radius);
	background: var(--sbp-surface);
}

.sbp-admin-notice {
	padding: 1rem 1.25rem;
	border: 1px solid #fca5a5;
	border-radius: 8px;
	background: #fef2f2;
	color: #991b1b;
	font-size: 0.9rem;
}

/* ── Size chart ───────────────────────────────────────────────────────────── */

.sbp-chart {
	--sbp-primary: #1a2e4a;
	--sbp-accent: #e8750a;
	--sbp-surface: #f0f4f8;
	--sbp-text: #1a2e4a;
	--sbp-radius: 4px;
	--sbp-border: color-mix(in srgb, var(--sbp-primary) 15%, #ffffff);

	box-sizing: border-box;
	color: var(--sbp-text);
}

.sbp-chart * {
	box-sizing: border-box;
}

.sbp-chart__heading {
	margin: 0 0 1rem;
	color: var(--sbp-primary);
	font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
}

/* A wide table must scroll inside its own box, never push the page sideways. */
.sbp-chart__scroll {
	overflow-x: auto;
	border: 1px solid var(--sbp-border);
	border-radius: calc(var(--sbp-radius) * 2);
	-webkit-overflow-scrolling: touch;
}

.sbp-chart__table {
	width: 100%;
	min-width: 520px;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.sbp-chart__table th,
.sbp-chart__table td {
	padding: 0.7rem 0.9rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid var(--sbp-border);
}

.sbp-chart__table thead th {
	position: sticky;
	top: 0;
	background: var(--sbp-surface);
	color: var(--sbp-primary);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

.sbp-chart__table tbody tr:last-child th,
.sbp-chart__table tbody tr:last-child td {
	border-bottom: 0;
}

.sbp-chart__table tbody tr:nth-child(even) {
	background: color-mix(in srgb, var(--sbp-surface) 45%, #ffffff);
}

.sbp-chart__size {
	white-space: nowrap;
	font-weight: 800;
	color: var(--sbp-primary);
}

.sbp-chart__sqm {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	opacity: 0.55;
}

.sbp-chart__not {
	opacity: 0.7;
}

.sbp-chart__link {
	color: var(--sbp-accent);
	font-weight: 700;
	text-decoration: none;
}

.sbp-chart__link:hover {
	text-decoration: underline;
}

.sbp-chart__enquire {
	font-size: 0.8rem;
	font-weight: 600;
	opacity: 0.6;
}

/* ── Motion ───────────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
	.sbp-calc *,
	.sbp-form-wrap * {
		animation: none !important;
		transition: none !important;
	}

	.sbp-calc__image[data-swapping="1"] {
		opacity: 1;
	}
}
