/* ============================================================
   MONSTERS OF TYPE — Font Product Page Styles
   Template: single-product-font.php
   ============================================================ */


/* ─── Specimen Carousel ───────────────────────────────────── */
.mot-fp-carousel {
	position: relative;
	width: 100%;
	max-width: 100vw;
	margin-top: var(--mot-nav-space);
	background: var(--mot-black);
	display: flex;
	flex-direction: column;
	/* Clip at the section level: the inner track is intentionally wider than
	   the page (all slides in a row), and a flex-item `width: 100%` alone
	   isn't always enough to contain a wide intrinsic min-content width on
	   the cross-axis. Clipping here guarantees no horizontal page overflow. */
	overflow: hidden;
}

/* Image viewport: 2:1 hero ratio up to ~1280px viewport; above that the height
   is capped so the carousel never eats more than ~640px of vertical real estate
   on big displays (a 2:1 ratio at 2400px wide would otherwise be 1200px tall —
   taller than most laptop screens). The viewport becomes proportionally wider
   than 2:1 above the cap, which the slide centering happily absorbs.

   `clamp(420px, 50vw, 640px)` means:
     • viewport < 840px  → 420px tall  (floor — prevents tiny phones from collapsing)
     • viewport 840–1280 → 50vw       (true 2:1, the ratio you asked for)
     • viewport > 1280px → 640px      (ceiling — hero doesn't swallow the screen)

   Default opacity is 0 so there's no pre-JS flash; JS adds .is-ready once images
   are loaded and the active slide is centered. */
.mot-fp-carousel__viewport {
	position: relative;
	width: 100%;
	min-width: 0;
	height: clamp(420px, 50vw, 640px);
	overflow: hidden;
	opacity: 0;
	transition: opacity 250ms ease;
}

.mot-fp-carousel.is-ready .mot-fp-carousel__viewport {
	opacity: 1;
}

/* Track holds all slides in a row; JS centers the active slide via translateX */
.mot-fp-carousel__track {
	display: flex;
	align-items: center;
	height: 100%;
	gap: 0;
	will-change: transform;
	transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.mot-fp-carousel__slide {
	flex: 0 0 auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.35;
	transition: opacity 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.mot-fp-carousel__slide.is-active {
	opacity: 1;
}

/* Image scales to the slide's height; width follows its natural aspect ratio.
   Capped under viewport width so prev/next slides always peek on either side. */
.mot-fp-carousel__slide img {
	height: 100%;
	width: auto;
	max-width: min(72vw, 900px);
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.mot-fp-carousel__empty {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--mot-muted);
	padding: var(--mot-gutter);
}

/* Arrows */
.mot-fp-carousel__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--mot-off-white);
	cursor: pointer;
	transition: background var(--mot-dur) var(--mot-ease),
	            border-color var(--mot-dur) var(--mot-ease),
	            color var(--mot-dur) var(--mot-ease);
}

.mot-fp-carousel__arrow:hover {
	background: rgba(0, 0, 0, 0.75);
	border-color: var(--mot-vibrant-orange);
	color: var(--mot-vibrant-orange);
}

.mot-fp-carousel__arrow--prev { left: 1.25rem; }
.mot-fp-carousel__arrow--next { right: 1.25rem; }

/* Dots — sit below the image viewport */
.mot-fp-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	padding-block: 1rem;
}

.mot-fp-carousel__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background var(--mot-dur) var(--mot-ease),
	            transform var(--mot-dur) var(--mot-ease);
}

.mot-fp-carousel__dot.is-active {
	background: var(--mot-vibrant-orange);
	transform: scale(1.4);
}

.mot-fp-carousel__dot:hover {
	background: rgba(255, 255, 255, 0.65);
}


/* ─── Type Tester (own row, full container width) ─────────── */
/* Lives above the body grid so the stage gets all 12 columns. Vertical
   padding mirrors the body grid's top padding; we strip the body grid's
   own top padding below so they don't double-stack. */
.mot-fp-tester-wrap {
	background: var(--mot-black);
}

.mot-fp-tester-wrap__grid {
	padding-block: clamp(3rem, 5vw, 5rem) 0;
}


/* ─── Body: description + license two-column ──────────────── */
.mot-fp-body {
	background: var(--mot-black);
}

.mot-fp-body__grid {
	align-items: start;
	/* No top padding — the tester wrap above already opened the section. */
	padding-block: clamp(2rem, 4vw, 3rem) clamp(3rem, 5vw, 5rem);
}

/* Left column stacks: description → metadata */
.mot-fp-copy-col {
	display: flex;
	flex-direction: column;
	gap: clamp(2.5rem, 5vw, 4rem);
}


/* ─── Font Tester ─────────────────────────────────────────── */
.mot-fp-tester {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

/* Form-field shell — border, inset surface, focus ring. The label + stage
   inside read like a large text input you'd click and type into. */
.mot-fp-tester__field {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: clamp(1rem, 2vw, 1.25rem) clamp(1.25rem, 2.5vw, 1.5rem);
	background: var(--mot-off-black);
	border: 1px solid var(--mot-border);
	border-radius: 2px;
	cursor: text;
	transition: border-color var(--mot-dur) var(--mot-ease),
	            box-shadow var(--mot-dur) var(--mot-ease),
	            background var(--mot-dur) var(--mot-ease);
}

.mot-fp-tester__field:hover {
	border-color: var(--mot-mid);
	background: var(--mot-dark);
}

.mot-fp-tester__field:focus-within {
	border-color: var(--mot-vibrant-orange);
	box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.18);
	background: var(--mot-dark);
}

/* Loading placeholder while WOFFs stay deferred for specimen LCP. */
.mot-fp-tester__loading {
	display: none;
	align-items: center;
	justify-content: center;
	min-height: clamp(8rem, 22vw, 12rem);
	padding: 1.5rem;
	border: 1px dashed var(--mot-border);
	background: var(--mot-dark);
}

.mot-fp-tester__field:not(.is-font-ready) .mot-fp-tester__loading {
	display: flex;
}

.mot-fp-tester__field:not(.is-font-ready) {
	cursor: wait;
}

.mot-fp-tester__loading-label {
	font-family: var(--mot-sans);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mot-muted);
	animation: mot-fp-tester-pulse 1.2s ease-in-out infinite;
}

@keyframes mot-fp-tester-pulse {
	0%, 100% { opacity: 0.45; }
	50% { opacity: 1; }
}

.mot-fp-tester__field.is-font-ready .mot-fp-tester__loading {
	display: none;
}

.mot-fp-tester__field-label {
	font-family: var(--mot-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mot-muted);
	transition: color var(--mot-dur) var(--mot-ease);
}

.mot-fp-tester__field:focus-within .mot-fp-tester__field-label {
	color: var(--mot-vibrant-orange);
}

.mot-fp-tester__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.mot-fp-tester__header .mot-section-label {
	margin: 0;
	border-bottom: none;
	padding-bottom: 0;
}

.mot-fp-tester__controls {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.mot-fp-tester__weights {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--mot-border);
}

/* Beat Kadence/global `button` styles (blue active/focus backgrounds). */
button.mot-fp-tester__weight-btn {
	font-family: var(--mot-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.35rem 0.875rem;
	border: 1px solid var(--mot-border);
	border-radius: 0;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--mot-muted);
	cursor: pointer;
	transition: border-color var(--mot-dur) var(--mot-ease),
	            color var(--mot-dur) var(--mot-ease),
	            background var(--mot-dur) var(--mot-ease);
}

button.mot-fp-tester__weight-btn:hover,
button.mot-fp-tester__weight-btn:focus,
button.mot-fp-tester__weight-btn:focus-visible {
	border-color: var(--mot-vibrant-orange);
	background: transparent !important;
	color: var(--mot-vibrant-orange);
	outline: none;
}

button.mot-fp-tester__weight-btn.is-loading {
	opacity: 0.55;
	cursor: wait;
}

button.mot-fp-tester__weight-btn.is-active {
	border-color: var(--mot-vibrant-orange);
	background: rgba(255, 149, 0, 0.1) !important;
	color: var(--mot-vibrant-orange);
}

/* Size control: tabular numeric value sits inline-left of a slim track with
   an orange filled portion driven by a `--fill` custom property (set in JS
   on input). The native input chrome is fully reset so no browser-default
   border or background bleeds through. */
.mot-fp-tester__size {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	cursor: pointer;
	user-select: none;
}

.mot-fp-tester__size-num {
	display: inline-flex;
	align-items: baseline;
	gap: 0.15em;
	font-family: var(--mot-mono);
	font-size: 0.9375rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	color: var(--mot-light-gray);
	font-variant-numeric: tabular-nums;
	font-feature-settings: "tnum" 1;
	/* Fixed-width so the slider doesn't shimmy as the digits change. */
	min-width: 3.5em;
	justify-content: flex-end;
}

.mot-fp-tester__size-num em {
	font-style: normal;
	color: var(--mot-muted);
	text-transform: lowercase;
}

/* The `input[type="range"]` qualifier bumps specificity to (0,2,1) so we
   beat Kadence's parent-theme rule which slaps a white background, gray
   border, border-radius, and padding on every range/text/email input via
   `input[type=range], input[type=text], ...` (specificity 0,1,1). */
input[type="range"].mot-fp-tester__size-slider {
	--fill: 50%;
	-webkit-appearance: none;
	appearance: none;
	width: 160px;
	height: 18px; /* hit area; visual track is drawn below */
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	outline: none;
	cursor: pointer;
}

input[type="range"].mot-fp-tester__size-slider:focus {
	box-shadow: none; /* Kadence applies a faint drop shadow on focus */
	outline: none;
}

/* WebKit track */
.mot-fp-tester__size-slider::-webkit-slider-runnable-track {
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(
		to right,
		var(--mot-vibrant-orange) 0%,
		var(--mot-vibrant-orange) var(--fill),
		var(--mot-border) var(--fill),
		var(--mot-border) 100%
	);
	border: 0;
}

.mot-fp-tester__size-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	margin-top: -7px; /* center 16px thumb on 2px track */
	border-radius: 50%;
	background: var(--mot-vibrant-orange);
	border: 0;
	box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
	transition: box-shadow var(--mot-dur) var(--mot-ease),
	            transform var(--mot-dur) var(--mot-ease);
	cursor: pointer;
}

.mot-fp-tester__size-slider:hover::-webkit-slider-thumb {
	transform: scale(1.1);
}

.mot-fp-tester__size-slider:focus-visible::-webkit-slider-thumb {
	box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.25);
}

/* Firefox track + progress fill */
.mot-fp-tester__size-slider::-moz-range-track {
	height: 2px;
	border-radius: 2px;
	background: var(--mot-border);
	border: 0;
}

.mot-fp-tester__size-slider::-moz-range-progress {
	height: 2px;
	border-radius: 2px;
	background: var(--mot-vibrant-orange);
}

.mot-fp-tester__size-slider::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--mot-vibrant-orange);
	border: 0;
	cursor: pointer;
	transition: box-shadow var(--mot-dur) var(--mot-ease),
	            transform var(--mot-dur) var(--mot-ease);
}

.mot-fp-tester__size-slider:hover::-moz-range-thumb {
	transform: scale(1.1);
}

.mot-fp-tester__size-slider:focus-visible::-moz-range-thumb {
	box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.25);
}

/* Clips horizontal overflow; soft fade at the right edge. */
.mot-fp-tester__stage-viewport {
	width: 100%;
	overflow-x: hidden;
	overflow-y: visible;
	-webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 4rem), transparent 100%);
	mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 4rem), transparent 100%);
}

/* Editable stage — height grows with font size; viewport masks width only. */
.mot-fp-tester__stage {
	display: inline-block;
	min-width: 100%;
	padding: calc(0.5rem + 2px) 0;
	/* Default stage size. Must match the slider input's `value` attribute
	   (96) so the initial render and the slider read the same. */
	font-size: 96px;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--mot-white);
	outline: none;
	cursor: text;
	white-space: nowrap;
	transition: font-size 0.1s ease;
	/* font-family set inline via PHP */
}

/* Placeholder behavior via JS class */
.mot-fp-tester__stage.is-placeholder {
	color: var(--mot-muted);
}

.mot-fp-tester__unavailable {
	padding: 3rem 0;
	border-top: 1px solid var(--mot-border);
	border-bottom: 1px solid var(--mot-border);
}


/* ─── License Panel ───────────────────────────────────────── */
.mot-fp-license-col {
	/* Sticky: panel stays in view while user scrolls tester */
	position: sticky;
	top: calc(var(--mot-nav-height) + 2rem);
}

.mot-fp-license {
	background: var(--mot-off-black);
	border: 1px solid var(--mot-border);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* Font name + author */
.mot-fp-license__title-row {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.mot-fp-license__font-name {
	font-family: var(--mot-display);
	font-size: clamp(1.5rem, 2.5vw, 2.5rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--mot-white);
	margin: 0;
}

.mot-fp-license__author {
	margin: 0;
}

/* Running total */
.mot-fp-license__total-wrap {
	padding-block: 1rem;
	border-top: 1px solid var(--mot-border);
	border-bottom: 1px solid var(--mot-border);
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.mot-fp-license__total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.mot-fp-license__total-price {
	font-family: var(--mot-display);
	font-size: clamp(1.5rem, 2.5vw, 2.25rem);
	line-height: 1;
	letter-spacing: -0.025em;
	color: var(--mot-white);
}

/* License tier rows */
.mot-fp-license__tiers {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mot-fp-tier-row {
	padding-block: 0.875rem;
	border-bottom: 1px solid var(--mot-border);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	transition: background var(--mot-dur) var(--mot-ease);
}

.mot-fp-tier-row:first-child {
	border-top: none;
}

.mot-fp-tier-row.is-selected {
	background: rgba(255, 149, 0, 0.05);
}

/* Row label: radio + name + price in one line */
.mot-fp-tier-row__label {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	cursor: pointer;
}

/* Hide native radio */
.mot-fp-tier-radio {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

/* Custom radio circle */
.mot-fp-tier-row__radio-box {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1.5px solid var(--mot-border);
	flex-shrink: 0;
	position: relative;
	transition: border-color var(--mot-dur) var(--mot-ease),
	            background var(--mot-dur) var(--mot-ease);
}

.mot-fp-tier-radio:checked ~ .mot-fp-tier-row__radio-box {
	border-color: var(--mot-vibrant-orange);
	background: var(--mot-vibrant-orange);
}

.mot-fp-tier-row__radio-box::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--mot-black);
	transform: translate(-50%, -50%) scale(0);
	transition: transform 0.15s var(--mot-ease);
}

.mot-fp-tier-radio:checked ~ .mot-fp-tier-row__radio-box::after {
	transform: translate(-50%, -50%) scale(1);
}

/* Focus ring on custom radio */
.mot-fp-tier-radio:focus-visible ~ .mot-fp-tier-row__radio-box {
	outline: 2px solid var(--mot-vibrant-orange);
	outline-offset: 2px;
}

.mot-fp-tier-row__name {
	font-family: var(--mot-sans);
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--mot-off-white);
	flex: 1;
}

.mot-fp-tier-row.is-selected .mot-fp-tier-row__name {
	color: var(--mot-vibrant-orange);
}

.mot-fp-tier-row__price {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--mot-off-white);
	flex-shrink: 0;
	transition: color var(--mot-dur) var(--mot-ease);
}

.mot-fp-tier-row.is-selected .mot-fp-tier-row__price {
	color: var(--mot-vibrant-orange);
}

.mot-fp-tier-row__desc {
	margin: 0;
	padding-left: calc(18px + 0.625rem); /* indent under radio */
	font-size: 0.75rem;
	line-height: 1.4;
}

/* Actions */
.mot-fp-license__actions {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.mot-fp-license__add-to-cart {
	width: 100%;
	justify-content: center;
	padding-block: 1rem;
	font-size: 0.9375rem;
}

.mot-fp-license__add-to-cart:disabled {
	opacity: 1;
	cursor: not-allowed;
	pointer-events: none;
	background: var(--mot-border) !important;
	color: var(--mot-muted) !important;
	border-color: var(--mot-border) !important;
}

.mot-fp-license__add-to-cart.is-loading {
	opacity: 1;
	pointer-events: none;
	background: var(--mot-border) !important;
	color: var(--mot-muted) !important;
	border-color: var(--mot-border) !important;
}


/* ─── Description + metadata ────────────────────────────────── */
.mot-fp-description {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
}

/* Body: full product short description. */
.mot-fp-description__body {
	line-height: 1.7;
	color: var(--mot-light-gray);
}

/* Default block spacing — applies to anything Woo / the block editor renders
   inside the description. Keep adding selectors here if other tags come up. */
.mot-fp-description__body p,
.mot-fp-description__body ul,
.mot-fp-description__body ol,
.mot-fp-description__body h2,
.mot-fp-description__body h3,
.mot-fp-description__body h4,
.mot-fp-description__body h5,
.mot-fp-description__body h6,
.mot-fp-description__body blockquote,
.mot-fp-description__body figure,
.mot-fp-description__body pre,
.mot-fp-description__body table {
	margin: 0 0 1.5em;
}

/* Indent lists so they read as a clear sub-block under surrounding paragraphs. */
.mot-fp-description__body ul,
.mot-fp-description__body ol {
	padding-left: 2rem;
}

/* Stat / aside callout — override Kadence blue quote bar */
body.mot-font-product-page .mot-fp-description__body blockquote {
	margin: 1.25rem 0 1.5em;
	padding: 0.15rem 0 0.15rem 1rem;
	border: 0;
	border-left: 2px solid var(--mot-vibrant-orange);
	background: transparent;
	quotes: none;
	color: var(--mot-light-gray);
	line-height: 1.45;
	font-style: normal;
}

body.mot-font-product-page .mot-fp-description__body blockquote::before,
body.mot-font-product-page .mot-fp-description__body blockquote::after {
	content: none;
}

body.mot-font-product-page .mot-fp-description__body blockquote p {
	margin: 0 0 0.35rem;
}

body.mot-font-product-page .mot-fp-description__body blockquote p:last-child {
	margin-bottom: 0;
}

body.mot-font-product-page .mot-fp-description__body blockquote strong {
	color: var(--mot-off-white);
	font-weight: 600;
}

.mot-fp-description__body > :last-child {
	margin-bottom: 0;
}

.mot-fp-description__body img,
.mot-fp-description__body figure img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}

.mot-fp-description__meta {
	margin: 0;
}

.mot-fp-meta-list {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mot-fp-meta-list__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-block: 0.75rem;
	border-bottom: 1px solid var(--mot-border);
	gap: 1rem;
}

.mot-fp-meta-list__row:first-child {
	border-top: 1px solid var(--mot-border);
}

.mot-fp-meta-list dt,
.mot-fp-meta-list dd {
	margin: 0;
}

.mot-fp-meta-list dd {
	color: var(--mot-off-white);
	text-align: right;
}


/* ─── Cross-sell strip ────────────────────────────────────── */
.mot-fp-cross-sell {
	background: var(--mot-black);
	padding-block: clamp(3rem, 6vw, 5rem);
	border-top: 1px solid var(--mot-border);
}

.mot-fp-cross-sell__header {
	margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.mot-fp-cross-sell__header .mot-section-label {
	margin: 0;
}

.mot-fp-cross-sell__strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--mot-grid-gap);
}

.mot-fp-cross-sell__card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	background: var(--mot-off-black);
	border: 1px solid var(--mot-border);
	overflow: hidden;
	transition: border-color var(--mot-dur) var(--mot-ease);
}

.mot-fp-cross-sell__card:hover {
	border-color: var(--mot-vibrant-orange);
}

.mot-fp-cross-sell__media {
	position: relative;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--mot-dark);
}

.mot-fp-cross-sell__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--mot-ease);
}

.mot-fp-cross-sell__card:hover .mot-fp-cross-sell__media img {
	transform: scale(1.03);
}

.mot-fp-cross-sell__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 1.5rem;
	text-align: center;
	color: var(--mot-muted);
	font-family: var(--mot-display);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	line-height: 1.1;
}

.mot-fp-cross-sell__info {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 1rem 1.25rem 1.25rem;
}

.mot-fp-cross-sell__name {
	margin: 0;
	font-family: var(--mot-display);
	font-size: clamp(1.125rem, 1.6vw, 1.5rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--mot-white);
}

.mot-fp-cross-sell__price {
	margin: 0;
}


/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
	/* Stack tester above license panel */
	.mot-fp-copy-col,
	.mot-fp-license-col {
		grid-column-end: span 6;
	}

	.mot-fp-license-col {
		position: static; /* un-sticky on tablet — both are visible */
	}
}

@media (max-width: 600px) {
	/* Specimens: full width, natural height (no fixed hero crop) */
	.mot-fp-carousel__viewport {
		height: auto;
		min-height: 0;
	}

	.mot-fp-carousel__track {
		height: auto;
		align-items: flex-start;
	}

	.mot-fp-carousel__slide {
		flex: 0 0 100%;
		width: 100%;
		height: auto;
		box-sizing: border-box;
	}

	.mot-fp-carousel__slide img {
		width: 100%;
		height: auto;
		max-width: 100%;
		max-height: none;
		object-fit: contain;
	}

	.mot-fp-carousel__arrow {
		display: none; /* dots only on mobile */
	}

	.mot-fp-license {
		padding: 1.25rem;
	}

	.mot-fp-tester__stage {
		font-size: 48px;
	}

	.mot-fp-cross-sell__strip {
		grid-template-columns: 1fr;
	}
}
