/* =========================================================================
   SpareTimeCustoms — theme.css
   Dark, cinematic, drop-culture. Augments theme.json tokens with motion,
   scroll-snap, hover microinteractions, and the hero treatment.
   ========================================================================= */

:root {
	--stc-grain-opacity: 0.03;
	--stc-ease-quick: cubic-bezier(0.22, 1, 0.36, 1);
	--stc-ease-snap:  cubic-bezier(0.16, 1, 0.3, 1);
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body {
	background: var(--wp--preset--color--void);
	color: var(--wp--preset--color--mirror);
	overscroll-behavior-y: none;
	position: relative;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.6 0 0 0 0 0.6 0 0 0 0 0.6 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
	opacity: var(--stc-grain-opacity);
	z-index: 1;
	mix-blend-mode: overlay;
}

/* Cinematic headings — tighten tracking, push weight */
h1, h2, h3, h4 {
	text-wrap: balance;
}

/* ----- Buttons ----- */
.wp-element-button,
.wp-block-button__link {
	transition:
		background-color 200ms var(--stc-ease-quick),
		color            200ms var(--stc-ease-quick),
		transform        200ms var(--stc-ease-quick),
		box-shadow       200ms var(--stc-ease-quick);
	will-change: transform;
}
.wp-element-button:hover,
.wp-block-button__link:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 30px -10px rgba(245, 166, 35, 0.45);
}

/* ----- Hero ----- */
.stc-hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}
.stc-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	pointer-events: none;
	/* Show the poster/background immediately while the video decodes */
	background: var(--wp--preset--color--void);
}
.stc-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(5, 6, 7, 0.35) 0%, rgba(5, 6, 7, 0.55) 55%, rgba(5, 6, 7, 0.85) 100%),
		radial-gradient(ellipse at 50% 110%, rgba(245, 166, 35, 0.18) 0%, rgba(0, 0, 0, 0) 55%);
}
.stc-hero__content,
.stc-hero > .wp-block-group {
	position: relative;
	z-index: 2;
}
/* Respect users who've asked to reduce motion — freeze the video. */
@media (prefers-reduced-motion: reduce) {
	.stc-hero__video {
		display: none;
	}
	.stc-hero {
		background-image: var(--stc-hero-poster, none);
		background-size: cover;
		background-position: center;
	}
}

/* ----- Dealer strip ----- */
.stc-dealer-strip {
	position: relative;
	background: var(--wp--preset--color--paper);
}
.stc-dealer-strip::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(74, 107, 138, 0.05) 0%, rgba(74, 107, 138, 0) 40%);
	pointer-events: none;
}
.stc-dealer-strip__accent {
	position: absolute;
	top: clamp(3rem, 6vw, 5rem);
	left: 0;
	width: 4px;
	height: 56px;
	background: var(--wp--preset--color--prairie-sky);
	pointer-events: none;
	z-index: 1;
}
.stc-dealer-strip__cta .wp-block-button__link {
	transition:
		background-color 200ms var(--stc-ease-quick),
		color 200ms var(--stc-ease-quick),
		border-color 200ms var(--stc-ease-quick);
}
.stc-dealer-strip__cta .wp-block-button__link:hover {
	background: var(--wp--preset--color--prairie-sky) !important;
	color: var(--wp--preset--color--cream) !important;
	border-color: var(--wp--preset--color--prairie-sky) !important;
	box-shadow: none;
}

/* ----- Scarcity / drop chips ----- */
.stc-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.3rem 0.7rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border: 1px solid var(--wp--preset--color--running-light);
	color: var(--wp--preset--color--running-light);
	border-radius: 2px;
}
.stc-chip--low   { border-color: var(--wp--preset--color--brake-red);    color: var(--wp--preset--color--brake-red); }
.stc-chip--live  { border-color: var(--wp--preset--color--signal-green); color: var(--wp--preset--color--signal-green); }
.stc-chip--live::before {
	content: "";
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--wp--preset--color--signal-green);
	box-shadow: 0 0 8px var(--wp--preset--color--signal-green);
	animation: stc-pulse 1.4s ease-in-out infinite;
}
@keyframes stc-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%      { opacity: 0.45; transform: scale(0.7); }
}

/* ----- Selection ----- */
::selection {
	background: var(--wp--preset--color--running-light);
	color: var(--wp--preset--color--void);
}

/* ----- Scrollbar ----- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--wp--preset--color--void); }
::-webkit-scrollbar-thumb { background: var(--wp--preset--color--shadow); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--wp--preset--color--steel); }

/* =========================================================================
   Phase 8B — Header right cluster
   Search icon, cart icon with badge, garage pill.
   ========================================================================= */
.stc-header-right {
	gap: 0.9rem;
	align-items: center;
}

.stc-header-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 38px;
	height: 38px;
	color: var(--wp--preset--color--chrome);
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: 2px;
	transition:
		color 180ms var(--stc-ease-quick),
		border-color 180ms var(--stc-ease-quick),
		background 180ms var(--stc-ease-quick);
}

.stc-header-icon:hover {
	color: var(--wp--preset--color--running-light);
	border-color: var(--wp--preset--color--shadow);
	background: var(--wp--preset--color--asphalt);
}

.stc-header-icon__svg {
	width: 20px;
	height: 20px;
	display: block;
}

/* Cart badge — round amber dot pinned to the icon's top-right */
#stc-cart-count,
.stc-cart-count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	display: none;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	background: var(--wp--preset--color--running-light);
	color: var(--wp--preset--color--void);
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.68rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	box-shadow: 0 0 0 2px var(--wp--preset--color--void);
}

#stc-cart-count.is-visible,
.stc-cart-count.is-visible {
	display: inline-flex;
}

/* Garage pill — compact mono pill, amber when populated, dashed outline when empty */
.stc-garage-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.45rem 0.8rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border: 1px solid var(--wp--preset--color--shadow);
	border-radius: 999px;
	color: var(--wp--preset--color--chrome);
	background: var(--wp--preset--color--asphalt);
	cursor: pointer;
	transition:
		border-color 180ms var(--stc-ease-quick),
		color 180ms var(--stc-ease-quick),
		background 180ms var(--stc-ease-quick);
	max-width: 220px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.stc-garage-pill.is-empty {
	border-style: dashed;
	border-color: var(--wp--preset--color--chrome);
	background: transparent;
	color: var(--wp--preset--color--steel);
}

.stc-garage-pill.is-empty:hover {
	color: var(--wp--preset--color--running-light);
	border-color: var(--wp--preset--color--running-light);
}

.stc-garage-pill.is-populated {
	border-color: var(--wp--preset--color--running-light);
	background: rgba(245, 166, 35, 0.12);
	color: var(--wp--preset--color--running-light);
}

.stc-garage-pill__icon {
	font-size: 0.95rem;
	line-height: 1;
}

.stc-garage-pill__label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (max-width: 900px) {
	.stc-garage-pill__label {
		display: none;
	}
	.stc-garage-pill {
		padding: 0.45rem 0.6rem;
	}
}

/* =========================================================================
   Phase 8B — Featured Drop homepage grid
   ========================================================================= */
.stc-featured-drop {
	position: relative;
}

.stc-featured-drop__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

@media (max-width: 900px) {
	.stc-featured-drop__grid {
		grid-template-columns: 1fr;
	}
}

.stc-featured-drop__card {
	background: var(--wp--preset--color--paper);
	border: 1px solid var(--wp--preset--color--sand);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition:
		border-color 200ms var(--stc-ease-quick),
		transform    200ms var(--stc-ease-quick),
		box-shadow   200ms var(--stc-ease-quick);
}

.stc-featured-drop__card:hover {
	transform: translateY(-4px);
	border-color: var(--wp--preset--color--wheat);
	box-shadow:
		0 0 0 1px var(--wp--preset--color--wheat),
		0 14px 30px -20px rgba(26, 22, 18, 0.25);
}

.stc-featured-drop__media {
	display: block;
	position: relative;
	overflow: hidden;
	background: var(--wp--preset--color--sand);
}

.stc-featured-drop__media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	transition: transform 400ms var(--stc-ease-snap);
	will-change: transform;
}

.stc-featured-drop__card:hover .stc-featured-drop__media img {
	transform: scale(1.02);
}

.stc-featured-drop__media--empty {
	aspect-ratio: 4 / 5;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		repeating-linear-gradient(
			45deg,
			var(--wp--preset--color--sand) 0,
			var(--wp--preset--color--sand) 10px,
			var(--wp--preset--color--paper) 10px,
			var(--wp--preset--color--paper) 20px
		);
}

.stc-featured-drop__pulse {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--wp--preset--color--wheat);
	opacity: 0.6;
	animation: stc-pulse 1.6s ease-in-out infinite;
}

.stc-featured-drop__chip {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
}

.stc-featured-drop__body {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.stc-featured-drop__eyebrow {
	font-family: var(--wp--preset--font-family--mono);
	font-size: var(--wp--preset--font-size--xs);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wp--preset--color--wheat);
	margin: 0;
}

.stc-featured-drop__title {
	font-family: var(--wp--preset--font-family--editorial);
	font-size: var(--wp--preset--font-size--xl);
	font-weight: 700;
	line-height: 1.05;
	color: var(--wp--preset--color--ink);
	text-transform: none;
	margin: 0;
}

.stc-featured-drop__title a {
	color: inherit;
	text-decoration: none;
}

.stc-featured-drop__title a:hover {
	color: var(--wp--preset--color--wheat);
}

.stc-featured-drop__title--empty {
	color: var(--wp--preset--color--ink-muted);
}

.stc-featured-drop__price {
	font-family: var(--wp--preset--font-family--display);
	font-size: var(--wp--preset--font-size--2xl);
	color: var(--wp--preset--color--ink);
	line-height: 1;
}

.stc-featured-drop__note {
	color: var(--wp--preset--color--ink-muted);
	font-size: var(--wp--preset--font-size--sm);
	line-height: 1.5;
	margin: 0;
}

.stc-featured-drop__cta {
	align-self: flex-start;
	margin-top: 0.5rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: var(--wp--preset--font-size--xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--ink);
	text-decoration: none;
	border-bottom: 1px solid var(--wp--preset--color--sand);
	padding-bottom: 0.25rem;
	transition: color 180ms ease, border-color 180ms ease;
}

.stc-featured-drop__cta:hover {
	color: var(--wp--preset--color--wheat);
	border-color: var(--wp--preset--color--wheat);
}

/* =========================================================================
   Phase 8B — Ask The Rig homepage teaser
   ========================================================================= */
.stc-ask-home {
	position: relative;
	isolation: isolate;
	background: var(--wp--preset--color--cream);
}

.stc-ask-home__accent {
	position: absolute;
	top: clamp(4rem, 8vw, 7rem);
	left: 0;
	width: 4px;
	height: 48px;
	background: var(--wp--preset--color--wheat);
	pointer-events: none;
}

.stc-ask-home__cta .wp-block-button__link {
	transition:
		background-color 200ms var(--stc-ease-quick),
		color 200ms var(--stc-ease-quick),
		border-color 200ms var(--stc-ease-quick);
}
.stc-ask-home__cta .wp-block-button__link:hover {
	background: var(--wp--preset--color--wheat) !important;
	color: var(--wp--preset--color--cream) !important;
	border-color: var(--wp--preset--color--wheat) !important;
	box-shadow: none;
}

/* =========================================================================
   Phase 8B — Rig Feed Preview
   ========================================================================= */
.stc-rig-feed__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

@media (max-width: 1100px) {
	.stc-rig-feed__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.stc-rig-feed__tile {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--wp--preset--color--sand);
	border: 1px solid var(--wp--preset--color--sand);
	text-decoration: none;
	color: var(--wp--preset--color--ink);
	transition:
		border-color 200ms var(--stc-ease-quick),
		transform    200ms var(--stc-ease-quick);
}

.stc-rig-feed__tile:hover {
	border-color: var(--wp--preset--color--wheat);
	transform: translateY(-2px);
}

.stc-rig-feed__tile img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms var(--stc-ease-snap);
}

.stc-rig-feed__tile:hover img {
	transform: scale(1.03);
}

.stc-rig-feed__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.75rem 0.9rem;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	background: linear-gradient(180deg, rgba(26, 22, 18, 0) 0%, rgba(26, 22, 18, 0.7) 100%);
}

.stc-rig-feed__owner {
	font-family: var(--wp--preset--font-family--mono);
	font-size: var(--wp--preset--font-size--xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--cream);
}

.stc-rig-feed__title {
	font-family: var(--wp--preset--font-family--display);
	font-size: var(--wp--preset--font-size--lg);
	line-height: 1;
	color: var(--wp--preset--color--cream);
	text-transform: uppercase;
}

.stc-rig-feed__tile--placeholder {
	border: 1px dashed var(--wp--preset--color--wheat);
	background: var(--wp--preset--color--sand);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.stc-rig-feed__placeholder-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	padding: 1.5rem;
}

.stc-rig-feed__placeholder-icon {
	font-family: var(--wp--preset--font-family--display);
	font-size: 2.5rem;
	line-height: 1;
	color: var(--wp--preset--color--wheat);
	border: 1px solid var(--wp--preset--color--wheat);
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.35rem;
}

.stc-rig-feed__placeholder-text {
	font-family: var(--wp--preset--font-family--display);
	font-size: var(--wp--preset--font-size--base);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wp--preset--color--ink);
}

.stc-rig-feed__placeholder-sub {
	font-family: var(--wp--preset--font-family--mono);
	font-size: var(--wp--preset--font-size--xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--ink-muted);
}

/* =========================================================================
   Phase 8B — Mobile nav polish
   WP core emits .wp-block-navigation__responsive-container; we add a body
   class when it's open for focus-trap / outside-close logic.
   ========================================================================= */
body.stc-nav-open {
	overflow: hidden;
}

/* =========================================================================
   Trust bar — compact strip of badges under the hero.
   ========================================================================= */
.stc-trust-bar__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 2.25rem;
	align-items: center;
	justify-content: center;
}
.stc-trust-bar__item {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--wp--preset--color--ink-muted);
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	line-height: 1;
	padding: 0.35rem 0;
	white-space: nowrap;
}
.stc-trust-bar__dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--wp--preset--color--wheat);
	flex: 0 0 auto;
}
.stc-trust-bar__label {
	color: var(--wp--preset--color--ink);
}
@media (max-width: 640px) {
	.stc-trust-bar__list { gap: 0.5rem 1.25rem; justify-content: flex-start; }
	.stc-trust-bar__item { font-size: 0.66rem; letter-spacing: 0.12em; }
}

/* =========================================================================
   Shop by Truck — dark cinematic 3×2 OEM tile grid.
   ========================================================================= */
.stc-sbt__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
}
@media (max-width: 960px) {
	.stc-sbt__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
	.stc-sbt__grid { grid-template-columns: 1fr; }
}
.stc-sbt__tile {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 280px;
	padding: 1.75rem 1.75rem 1.5rem;
	background: var(--wp--preset--color--asphalt);
	color: var(--wp--preset--color--mirror);
	text-decoration: none;
	overflow: hidden;
	isolation: isolate;
	transition:
		background 280ms var(--stc-ease-snap),
		box-shadow 280ms var(--stc-ease-snap);
}
/* Radial glow on hover — tinted per tone */
.stc-sbt__tile-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	opacity: 0;
	transition: opacity 320ms var(--stc-ease-snap);
	background: radial-gradient(ellipse at 30% 100%, rgba(245, 166, 35, 0.18) 0%, transparent 65%);
}
.stc-sbt__tile[data-tone="chrome"] .stc-sbt__tile-glow {
	background: radial-gradient(ellipse at 30% 100%, rgba(180, 190, 200, 0.14) 0%, transparent 65%);
}
.stc-sbt__tile[data-tone="sky"] .stc-sbt__tile-glow {
	background: radial-gradient(ellipse at 30% 100%, rgba(74, 140, 200, 0.16) 0%, transparent 65%);
}
.stc-sbt__tile:hover .stc-sbt__tile-glow { opacity: 1; }
.stc-sbt__tile:hover {
	background: var(--wp--preset--color--night);
	box-shadow: inset 0 0 0 1px rgba(245, 166, 35, 0.35);
}
.stc-sbt__tile[data-tone="chrome"]:hover { box-shadow: inset 0 0 0 1px rgba(180, 190, 200, 0.3); }
.stc-sbt__tile[data-tone="sky"]:hover    { box-shadow: inset 0 0 0 1px rgba(74, 140, 200, 0.3); }
.stc-sbt__tile > * { position: relative; z-index: 1; }

/* Ghost index number — top-right watermark */
.stc-sbt__tile-num {
	position: absolute;
	top: 1.25rem;
	right: 1.5rem;
	font-family: var(--wp--preset--font-family--display);
	font-size: 5rem;
	line-height: 1;
	font-weight: 400;
	letter-spacing: -0.04em;
	color: rgba(255, 255, 255, 0.04);
	transition: color 280ms var(--stc-ease-snap);
	pointer-events: none;
	user-select: none;
	z-index: 0;
}
.stc-sbt__tile:hover .stc-sbt__tile-num { color: rgba(245, 166, 35, 0.07); }

.stc-sbt__make {
	display: block;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.68rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--wp--preset--color--running-light);
	margin-bottom: 0.6rem;
}
.stc-sbt__tile[data-tone="chrome"] .stc-sbt__make { color: var(--wp--preset--color--chrome); }
.stc-sbt__tile[data-tone="sky"]    .stc-sbt__make { color: #6ab0d8; }

.stc-sbt__model {
	display: block;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 400;
	font-size: clamp(2.25rem, 3.5vw, 3.5rem);
	line-height: 0.9;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--wp--preset--color--mirror);
	margin-bottom: 0.65rem;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
	transition: color 280ms var(--stc-ease-snap), text-shadow 280ms var(--stc-ease-snap);
}
.stc-sbt__tile:hover .stc-sbt__model {
	color: #fff;
	text-shadow: 0 0 40px rgba(245, 166, 35, 0.22), 0 2px 20px rgba(0, 0, 0, 0.5);
}
.stc-sbt__tile[data-tone="chrome"]:hover .stc-sbt__model {
	text-shadow: 0 0 40px rgba(180, 190, 200, 0.22), 0 2px 20px rgba(0, 0, 0, 0.5);
}

.stc-sbt__tagline {
	display: block;
	color: var(--wp--preset--color--steel);
	font-size: 0.88rem;
	line-height: 1.4;
	margin-bottom: 1.25rem;
	max-width: 240px;
	transition: color 240ms var(--stc-ease-snap);
}
.stc-sbt__tile:hover .stc-sbt__tagline { color: var(--wp--preset--color--chrome); }

.stc-sbt__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	transition: border-color 280ms var(--stc-ease-snap);
}
.stc-sbt__tile:hover .stc-sbt__footer { border-color: rgba(245, 166, 35, 0.2); }
.stc-sbt__tile[data-tone="chrome"]:hover .stc-sbt__footer { border-color: rgba(180, 190, 200, 0.2); }
.stc-sbt__tile[data-tone="sky"]:hover    .stc-sbt__footer { border-color: rgba(74, 140, 200, 0.2); }

.stc-sbt__shop-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--wp--preset--color--running-light);
	transition: color 180ms var(--stc-ease-quick), gap 180ms var(--stc-ease-quick);
}
.stc-sbt__tile:hover .stc-sbt__shop-cta { gap: 10px; }
.stc-sbt__tile[data-tone="chrome"] .stc-sbt__shop-cta { color: var(--wp--preset--color--chrome); }
.stc-sbt__tile[data-tone="sky"]    .stc-sbt__shop-cta { color: #6ab0d8; }
.stc-sbt__arrow { flex: 0 0 auto; }

.stc-sbt__count {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.65rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.2);
	white-space: nowrap;
}

/* Photo tiles — backgrounds hardcoded in CSS with relative paths from this
   stylesheet. Zero PHP, zero WordPress filtering, just CSS that works.
   theme.css lives at assets/css/theme.css so ../img/trucks/ resolves correctly. */

/* Tile 0 = Peterbilt 389 */
.stc-sbt__tile[data-index="0"] {
	background-image: url('../img/trucks/pete-389.png') !important;
	background-size: cover !important;
	background-position: center 30% !important;
	background-repeat: no-repeat !important;
	min-height: 320px;
}
/* Tile 1 = Peterbilt 379 */
.stc-sbt__tile[data-index="1"] {
	background-image: url('../img/trucks/pete-379.jpg') !important;
	background-size: cover !important;
	background-position: center 30% !important;
	background-repeat: no-repeat !important;
	min-height: 320px;
}
/* Tile 2 = Kenworth W900 */
.stc-sbt__tile[data-index="2"] {
	background-image: url('../img/trucks/kw-w900l.png') !important;
	background-size: cover !important;
	background-position: center 25% !important;
	background-repeat: no-repeat !important;
	min-height: 320px;
}
/* Tile 3 = Peterbilt 367 SBA */
.stc-sbt__tile[data-index="3"] {
	background-image: url('../img/trucks/pete-367.png') !important;
	background-size: cover !important;
	background-position: center 30% !important;
	background-repeat: no-repeat !important;
	min-height: 320px;
}
/* Tile 4 = Peterbilt 589 */
.stc-sbt__tile[data-index="4"] {
	background-image: url('../img/trucks/pete-589.png') !important;
	background-size: cover !important;
	background-position: center 30% !important;
	background-repeat: no-repeat !important;
	min-height: 320px;
}
/* Tile 5 = Peterbilt 386 */
.stc-sbt__tile[data-index="5"] {
	background-image: url('../img/trucks/pete-386.jpg') !important;
	background-size: cover !important;
	background-position: center 30% !important;
	background-repeat: no-repeat !important;
	min-height: 320px;
}

/* Scrim overlay for any photo tile — dark gradient so text stays legible */
.stc-sbt__tile--has-photo::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			to top,
			rgba(5, 6, 7, 0.95) 0%,
			rgba(5, 6, 7, 0.7) 40%,
			rgba(5, 6, 7, 0.28) 100%
		);
	z-index: 0;
	transition: background 320ms var(--stc-ease-snap);
}
.stc-sbt__tile--has-photo:hover::before {
	background:
		linear-gradient(
			to top,
			rgba(5, 6, 7, 0.9) 0%,
			rgba(5, 6, 7, 0.55) 40%,
			rgba(5, 6, 7, 0.12) 100%
		);
}
.stc-sbt__tile--has-photo .stc-sbt__tile-num { color: rgba(255, 255, 255, 0.09); }
.stc-sbt__tile--has-photo:hover .stc-sbt__tile-num { color: rgba(245, 166, 35, 0.12); }

/* =========================================================================
   Social proof — driver testimonial cards.
   ========================================================================= */
.stc-social-proof__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}
@media (max-width: 860px) { .stc-social-proof__grid { grid-template-columns: 1fr; } }
.stc-social-proof__card {
	margin: 0;
	padding: 2rem 1.75rem;
	background: var(--wp--preset--color--cream);
	border: 1px solid var(--wp--preset--color--sand);
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	position: relative;
	transition: border-color 240ms var(--stc-ease-snap), transform 240ms var(--stc-ease-snap);
}
.stc-social-proof__card:hover {
	border-color: var(--wp--preset--color--wheat);
	transform: translateY(-2px);
}
.stc-social-proof__stars {
	display: inline-flex;
	gap: 0.15rem;
	font-size: 1rem;
	letter-spacing: 0.05em;
}
.stc-social-proof__star {
	color: var(--wp--preset--color--sand);
	line-height: 1;
}
.stc-social-proof__star.is-filled {
	color: var(--wp--preset--color--wheat);
}
.stc-social-proof__quote {
	margin: 0;
	color: var(--wp--preset--color--ink-muted);
	font-family: var(--wp--preset--font-family--editorial);
	font-size: 1.1rem;
	line-height: 1.5;
	font-weight: 400;
	text-wrap: pretty;
}
.stc-social-proof__cite {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding-top: 1rem;
	border-top: 1px solid var(--wp--preset--color--sand);
	margin-top: auto;
}
.stc-social-proof__driver {
	color: var(--wp--preset--color--ink);
	font-family: var(--wp--preset--font-family--display);
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.stc-social-proof__rig {
	color: var(--wp--preset--color--ink-muted);
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

/* =========================================================================
   Scroll-reveal primitive — opt-in via .stc-reveal on any section.
   JS (header.js) adds .is-visible when the element enters the viewport.
   ========================================================================= */
.stc-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 700ms var(--stc-ease-snap),
		transform 700ms var(--stc-ease-snap);
	will-change: opacity, transform;
}
.stc-reveal.is-visible {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.stc-reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   Hero — kinetic cycling word with amber glow + crossfade.
   ========================================================================= */
.stc-hero__headline {
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(3.5rem, 11vw, 11rem);
	line-height: 0.88;
	letter-spacing: -0.015em;
	color: var(--wp--preset--color--mirror);
	text-transform: uppercase;
	margin: 0;
	text-wrap: balance;
}
.stc-hero__headline-line { display: block; }
.stc-hero__cycle {
	position: relative;
	display: inline-block;
	color: var(--wp--preset--color--running-light);
	text-shadow:
		0 0 24px rgba(245, 166, 35, 0.55),
		0 0 60px rgba(245, 166, 35, 0.25);
	transition:
		opacity 260ms var(--stc-ease-snap),
		transform 260ms var(--stc-ease-snap),
		filter 260ms var(--stc-ease-snap);
	min-width: 0.6em; /* prevent layout jump on word swap */
}
.stc-hero__cycle.is-out {
	opacity: 0;
	transform: translateY(0.12em) scale(0.98);
	filter: blur(3px);
}
.stc-hero__cycle.is-in {
	opacity: 1;
	transform: none;
	filter: none;
}
@media (prefers-reduced-motion: reduce) {
	.stc-hero__cycle { transition: none; }
}

/* Optional subtle scroll cue at the bottom of the hero */
.stc-hero__cue {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.62rem;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--wp--preset--color--steel);
	pointer-events: none;
}
.stc-hero__cue::after {
	content: "";
	width: 1px;
	height: 32px;
	background: linear-gradient(180deg, rgba(245,166,35,0.8), rgba(245,166,35,0));
	animation: stc-hero-cue 1.8s ease-in-out infinite;
	transform-origin: top;
}
@keyframes stc-hero-cue {
	0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
	50%      { transform: scaleY(1);   opacity: 1; }
}

/* =========================================================================
   Marquee — two infinite-scroll rows, opposite directions, different speeds.
   ========================================================================= */
.stc-marquee {
	overflow: hidden;
	position: relative;
	background: var(--wp--preset--color--cream);
}
.stc-marquee::before,
.stc-marquee::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 120px;
	z-index: 2;
	pointer-events: none;
}
.stc-marquee::before {
	left: 0;
	background: linear-gradient(90deg, var(--wp--preset--color--cream), rgba(243, 237, 224, 0));
}
.stc-marquee::after {
	right: 0;
	background: linear-gradient(270deg, var(--wp--preset--color--cream), rgba(243, 237, 224, 0));
}
.stc-marquee__row {
	overflow: hidden;
	border-bottom: 1px solid var(--wp--preset--color--sand);
	padding: 1.25rem 0;
}
.stc-marquee__row:last-child { border-bottom: 0; }
.stc-marquee__track {
	display: inline-flex;
	align-items: center;
	gap: 2rem;
	white-space: nowrap;
	animation: stc-marquee-a 38s linear infinite;
	background: var(--wp--preset--color--cream);
}
.stc-marquee__track--reverse {
	animation: stc-marquee-b 52s linear infinite;
}
.stc-marquee__item {
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(2rem, 5vw, 4.5rem);
	line-height: 1;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--wp--preset--color--ink);
}
.stc-marquee__item--b {
	font-family: var(--wp--preset--font-family--mono);
	font-size: clamp(0.9rem, 1.2vw, 1.1rem);
	letter-spacing: 0.24em;
	color: var(--wp--preset--color--ink-muted);
}
.stc-marquee__sep {
	color: var(--wp--preset--color--wheat);
	font-size: clamp(1.2rem, 2.5vw, 2rem);
	line-height: 1;
}
.stc-marquee__sep--b {
	color: var(--wp--preset--color--sand);
	font-size: 1.5rem;
}
@keyframes stc-marquee-a { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes stc-marquee-b { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
	.stc-marquee__track, .stc-marquee__track--reverse { animation: none; }
}

/* =========================================================================
   Stats block — oversized numbers with count-up.
   ========================================================================= */
.stc-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
	background: transparent;
}
@media (max-width: 860px) { .stc-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.stc-stats__cell {
	background: transparent;
	padding: 2.5rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: flex-start;
	text-align: left;
	min-width: 0;     /* allow grid track to actually shrink */
	overflow: hidden; /* clip any oversized digit instead of bleeding into neighbour cells */
}
.stc-stats__value {
	display: inline-flex;
	align-items: baseline;
	color: var(--wp--preset--color--ink);
	font-family: var(--wp--preset--font-family--editorial);
	font-weight: 700;
	/* "300,000+" is 8 chars wide — sized so it fits a 1/4-column cell at
	   1440px without overflowing into the adjacent "40K+" cell. The previous
	   clamp(3.5rem, 8vw, 7rem) cap was ~112px which blew past the column
	   width and caused visible digit overlap between cells. */
	font-size: clamp(2.25rem, 4.2vw, 4.25rem);
	line-height: 0.95;
	letter-spacing: -0.02em;
	white-space: nowrap;
	max-width: 100%;
}
.stc-stats__num {
	color: var(--wp--preset--color--ink);
	font-variant-numeric: tabular-nums;
}
.stc-stats__suffix {
	color: var(--wp--preset--color--wheat);
	margin-left: 0.05em;
}
.stc-stats__label {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--wp--preset--color--ink-muted);
	max-width: 24ch;
	text-wrap: balance;
}

/* =========================================================================
   Pull quote — editorial full-bleed quote with glowing mark.
   ========================================================================= */
.stc-pullquote {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background: var(--wp--preset--color--paper);
}
.stc-pullquote__figure {
	position: relative;
	z-index: 1;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.stc-pullquote__mark {
	font-family: var(--wp--preset--font-family--editorial);
	color: rgba(138, 106, 46, 0.22);
	font-size: clamp(6rem, 16vw, 16rem);
	line-height: 0.75;
	align-self: flex-start;
}
.stc-pullquote__quote {
	margin: 0;
	font-family: var(--wp--preset--font-family--editorial);
	font-weight: 700;
	font-size: clamp(2.25rem, 6vw, 5.5rem);
	line-height: 1.05;
	letter-spacing: -0.015em;
	text-transform: none;
	color: var(--wp--preset--color--ink);
	text-wrap: balance;
	max-width: 22ch;
}
.stc-pullquote__cite {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--wp--preset--color--sand);
	max-width: 520px;
}
.stc-pullquote__driver {
	font-family: var(--wp--preset--font-family--display);
	color: var(--wp--preset--color--ink);
	font-size: 1.1rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.stc-pullquote__rig {
	font-family: var(--wp--preset--font-family--mono);
	color: var(--wp--preset--color--ink-muted);
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

/* =========================================================================
   Made in Manitoba — cream editorial band.
   Breaks up the all-dark flow with a warm prairie section. Plays to the
   "rural service, old-school shop, modern twist" brief without going kitsch.
   ========================================================================= */
.stc-manitoba {
	position: relative;
	color: var(--wp--preset--color--ink);
	/* Paper texture — faint diagonal noise so the cream doesn't read as
	   flat CSS beige. Pure SVG, no external assets. */
	background-color: var(--wp--preset--color--cream);
	background-image:
		url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.3  0 0 0 0 0.23  0 0 0 0 0.14  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
		linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0) 18%),
		linear-gradient(0deg, rgba(0,0,0,0.05), rgba(0,0,0,0) 20%);
	background-blend-mode: multiply, normal, normal;
}
.stc-manitoba::before {
	/* Top dust-edge that eases the cream out of the dark section above it
	   so the seam isn't a hard hairline. */
	content: "";
	position: absolute;
	top: -24px;
	left: 0;
	right: 0;
	height: 24px;
	background: linear-gradient(180deg, rgba(20, 16, 11, 0) 0%, var(--wp--preset--color--cream) 100%);
	pointer-events: none;
}
.stc-manitoba::after {
	/* Bottom edge — symmetric dust-out into the dark section below. */
	content: "";
	position: absolute;
	bottom: -24px;
	left: 0;
	right: 0;
	height: 24px;
	background: linear-gradient(0deg, rgba(20, 16, 11, 0) 0%, var(--wp--preset--color--cream) 100%);
	pointer-events: none;
	z-index: 1;
}

.stc-manitoba__headline {
	margin: 0;
	font-family: var(--wp--preset--font-family--editorial);
	font-weight: 700;
	font-size: clamp(2.5rem, 5vw, 4.25rem);
	line-height: 1.02;
	letter-spacing: -0.015em;
	color: var(--wp--preset--color--ink);
	text-wrap: balance;
}
.stc-manitoba__headline em {
	font-style: italic;
	font-weight: 500;
	color: #8A6A2E; /* wheat, warmed */
}

/* The prairie horizon SVG lives at the bottom of the section, full-bleed.
   Negative side margins cancel the section padding so the art runs edge
   to edge regardless of viewport. */
.stc-manitoba__horizon {
	margin: 3rem -100vw 0;
	padding: 0 100vw;
	overflow: hidden;
	line-height: 0;
}
.stc-manitoba__horizon svg {
	display: block;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	height: auto;
}
@media (max-width: 780px) {
	.stc-manitoba__horizon { margin-top: 2rem; }
}

/* Links inside the Manitoba section — underlined warm wheat, not amber. */
.stc-manitoba a {
	color: #8A6A2E;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.stc-manitoba a:hover { color: var(--wp--preset--color--ink); }

/* =========================================================================
   Editorial-font utility — available to any future pattern that wants
   a magazine feel without re-specifying every property.
   ========================================================================= */
.has-editorial-font-family {
	font-family: var(--wp--preset--font-family--editorial) !important;
}

/* =========================================================================
   Phase 9A — Homepage redesign (V1 Anthem flow).
   Announce bar → header → YMM bar → hero → trust → shop-by-truck →
   marquee → best sellers → made in MB → rig feed → reviews → drop alert.
   ========================================================================= */

/* ----- Bespoke buttons (not WP core .wp-block-button). Used in hero,
       rig-feed CTA row, and anywhere the design calls for a tightly
       letter-spaced display button.
   ----- */
.stc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 1rem 1.75rem;
	background: var(--wp--preset--color--running-light);
	color: var(--wp--preset--color--void);
	border: 1px solid var(--wp--preset--color--running-light);
	font-family: var(--wp--preset--font-family--display);
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition:
		transform   180ms var(--stc-ease-quick),
		background  180ms var(--stc-ease-quick),
		color       180ms var(--stc-ease-quick),
		box-shadow  180ms var(--stc-ease-quick),
		border-color 180ms var(--stc-ease-quick);
}
.stc-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 32px -12px rgba(245, 166, 35, 0.55);
}
.stc-btn--outline {
	background: transparent;
	color: var(--wp--preset--color--mirror);
	border-color: var(--wp--preset--color--chrome);
}
.stc-btn--outline:hover {
	background: var(--wp--preset--color--mirror);
	color: var(--wp--preset--color--void);
	border-color: var(--wp--preset--color--mirror);
	box-shadow: none;
}
.stc-btn--sm { padding: 0.65rem 1.1rem; font-size: 0.78rem; }
.stc-btn--lg { padding: 1.2rem 2.1rem; font-size: 1.05rem; }
.stc-btn__arrow { display: inline-block; }

/* ----- Announcement bar ----- */
.stc-announce {
	position: relative;
	z-index: 20;
	background: var(--wp--preset--color--ink);
	color: var(--wp--preset--color--cream);
	border-bottom: 1px solid rgba(245, 166, 35, 0.15);
	overflow: hidden;
}
.stc-announce__row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
	padding: 0.6rem 1.5rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	white-space: nowrap;
}
.stc-announce__item { display: inline-flex; align-items: center; gap: 0.5rem; }
.stc-announce__dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--wp--preset--color--running-light);
	flex: 0 0 auto;
}
@media (max-width: 800px) {
	.stc-announce__row { gap: 1.25rem; font-size: 0.65rem; letter-spacing: 0.12em; flex-wrap: wrap; justify-content: flex-start; }
	.stc-announce__item:nth-child(n+4) { display: none; }
}

/* ----- YMM bar ----- */
.stc-ymm-bar {
	position: sticky;
	/* Header height ≈ 65px in the existing layout. Site-editor preview can
	   override via the body class — fine to be approximate here. */
	top: 65px;
	z-index: 14;
	background: var(--wp--preset--color--asphalt);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.stc-ymm-bar__inner {
	max-width: 1600px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.25rem;
	padding: 0.85rem clamp(1.25rem, 3vw, 2.5rem);
}
.stc-ymm-bar__label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wp--preset--color--chrome);
	white-space: nowrap;
}
.stc-ymm-bar__icon { color: var(--wp--preset--color--running-light); flex: 0 0 auto; }
.stc-ymm-bar__selects {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
}
.stc-ymm-bar__selects select {
	appearance: none;
	-webkit-appearance: none;
	min-width: 120px;
	padding: 0.55rem 2rem 0.55rem 0.85rem;
	background-color: var(--wp--preset--color--night);
	color: var(--wp--preset--color--mirror);
	border: 1px solid var(--wp--preset--color--steel);
	border-radius: 2px;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%23C9CFD6' stroke-width='1.2'/></svg>");
	background-repeat: no-repeat;
	background-position: right 0.7rem center;
}
.stc-ymm-bar__selects select:focus {
	outline: 1px solid var(--wp--preset--color--running-light);
	border-color: var(--wp--preset--color--running-light);
}
.stc-ymm-bar__btn {
	padding: 0.65rem 1.2rem;
	background: var(--wp--preset--color--running-light);
	color: var(--wp--preset--color--void);
	border: 1px solid var(--wp--preset--color--running-light);
	border-radius: 2px;
	font-family: var(--wp--preset--font-family--display);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 160ms var(--stc-ease-quick), border-color 160ms var(--stc-ease-quick);
}
.stc-ymm-bar__btn:hover {
	background: var(--wp--preset--color--mirror);
	border-color: var(--wp--preset--color--mirror);
}
@media (max-width: 900px) {
	.stc-ymm-bar { position: static; top: auto; }
	.stc-ymm-bar__inner { grid-template-columns: 1fr; gap: 0.75rem; }
	.stc-ymm-bar__selects select { min-width: 0; flex: 1; }
}

/* ----- Hero V1 Anthem layout (shared with existing .stc-hero base) ----- */
.stc-hero--anthem {
	position: relative;
	min-height: 88vh;
	overflow: hidden;
	isolation: isolate;
	display: block;
	padding: 0;
}
.stc-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(ellipse at 50% 110%, rgba(245, 166, 35, 0.28) 0%, rgba(0, 0, 0, 0) 55%),
		linear-gradient(180deg, #050607 0%, #0B0D10 50%, #14181C 100%);
	pointer-events: none;
}
.stc-hero--anthem .stc-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: clamp(4rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
}
.stc-hero--anthem .stc-hero__content {
	text-align: center;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.stc-hero__eyebrow {
	margin: 0 0 1rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--wp--preset--color--running-light);
}
.stc-hero--anthem .stc-hero__sub {
	color: var(--wp--preset--color--chrome);
	font-size: clamp(1rem, 1.3vw, 1.25rem);
	line-height: 1.55;
	max-width: 620px;
	margin: 2rem auto 2.5rem;
}
.stc-hero__ctas {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}
.stc-hero--anthem .stc-hero__meta {
	margin: 3rem 0 0;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wp--preset--color--steel);
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ----- Trust band (icon-led 4-up cards on paper) ----- */
.stc-trust {
	padding: 2.5rem clamp(1.5rem, 5vw, 5rem);
	border-top: 1px solid var(--wp--preset--color--sand);
	border-bottom: 1px solid var(--wp--preset--color--sand);
}
.stc-trust__inner {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2rem;
}
@media (max-width: 900px) { .stc-trust__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; } }
@media (max-width: 520px) { .stc-trust__inner { grid-template-columns: 1fr; } }
.stc-trust__item { display: flex; gap: 1rem; align-items: flex-start; }
.stc-trust__icon {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid var(--wp--preset--color--ink);
	color: var(--wp--preset--color--ink);
	border-radius: 2px;
}
.stc-trust__title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.05rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--wp--preset--color--ink);
	line-height: 1.1;
}
.stc-trust__desc {
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.8rem;
	line-height: 1.45;
	color: var(--wp--preset--color--ink-muted);
	margin-top: 0.25rem;
}

/* ----- Shop by Truck (dark) — section wrapper, header row, nav link. ----- */
.stc-shop-by-truck {
	padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 5vw, 5rem);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.stc-sbt__inner { max-width: 1440px; margin: 0 auto; width: 100%; }
.stc-sbt__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}
.stc-sbt__head-copy { flex: 1; }
.stc-sbt__eyebrow {
	margin: 0 0 0.75rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.68rem;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--wp--preset--color--running-light);
}
.stc-sbt__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 400;
	font-size: clamp(2.5rem, 5.5vw, 5rem);
	line-height: 0.9;
	color: var(--wp--preset--color--mirror);
	text-transform: uppercase;
	letter-spacing: -0.015em;
	text-wrap: balance;
}
.stc-sbt__sub {
	margin: 1rem 0 0;
	color: var(--wp--preset--color--steel);
	font-size: 1rem;
	line-height: 1.55;
	max-width: 520px;
}
.stc-sbt__all {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.7rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--wp--preset--color--chrome);
	text-decoration: none;
	border-bottom: 1px solid rgba(180, 190, 200, 0.3);
	padding-bottom: 0.2rem;
	white-space: nowrap;
	transition: color 160ms var(--stc-ease-quick), border-color 160ms var(--stc-ease-quick), gap 160ms var(--stc-ease-quick);
}
.stc-sbt__all:hover {
	color: var(--wp--preset--color--running-light);
	border-bottom-color: var(--wp--preset--color--running-light);
	gap: 0.85rem;
}

/* ----- Best Sellers (dark grid, filter pills, hover-reveal Quick Add) ----- */
.stc-best-sellers {
	padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 5vw, 5rem);
}
.stc-best-sellers__inner { max-width: 1440px; margin: 0 auto; width: 100%; }
.stc-best-sellers__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}
.stc-best-sellers__eyebrow {
	margin: 0 0 0.75rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--wp--preset--color--running-light);
}
.stc-best-sellers__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	line-height: 0.9;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--wp--preset--color--mirror);
}
.stc-best-sellers__filters {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.stc-best-sellers__filter {
	padding: 0.55rem 1rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background: transparent;
	color: var(--wp--preset--color--chrome);
	border: 1px solid var(--wp--preset--color--steel);
	border-radius: 2px;
	cursor: pointer;
	transition:
		background 180ms var(--stc-ease-quick),
		color      180ms var(--stc-ease-quick),
		border-color 180ms var(--stc-ease-quick);
}
.stc-best-sellers__filter:hover {
	border-color: var(--wp--preset--color--running-light);
	color: var(--wp--preset--color--running-light);
}
.stc-best-sellers__filter.is-active {
	background: var(--wp--preset--color--running-light);
	color: var(--wp--preset--color--void);
	border-color: var(--wp--preset--color--running-light);
}
.stc-best-sellers__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}
@media (max-width: 1100px) { .stc-best-sellers__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .stc-best-sellers__grid { grid-template-columns: 1fr; } }
.stc-best-sellers__card {
	background: var(--wp--preset--color--night);
	border: 1px solid var(--wp--preset--color--shadow);
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	transition: border-color 220ms var(--stc-ease-quick), transform 220ms var(--stc-ease-quick);
}
.stc-best-sellers__card[hidden] { display: none; }
.stc-best-sellers__card:hover {
	border-color: var(--wp--preset--color--running-light);
	transform: translateY(-3px);
}
.stc-best-sellers__media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	background: var(--wp--preset--color--asphalt);
	overflow: hidden;
}
.stc-best-sellers__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms var(--stc-ease-snap);
}
.stc-best-sellers__card:hover .stc-best-sellers__media img { transform: scale(1.06); }
.stc-best-sellers__media--placeholder {
	background:
		repeating-linear-gradient(45deg, transparent 0 18px, rgba(201, 207, 214, 0.04) 18px 36px),
		linear-gradient(135deg, #0a0c0f, #14181C 50%, #1C2128);
}
.stc-best-sellers__badges {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	align-items: flex-start;
}
.stc-best-sellers__fav {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 32px;
	height: 32px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(11, 13, 16, 0.7);
	border: 1px solid var(--wp--preset--color--shadow);
	color: var(--wp--preset--color--chrome);
	cursor: pointer;
	transition: color 160ms var(--stc-ease-quick), border-color 160ms var(--stc-ease-quick);
}
.stc-best-sellers__fav:hover {
	color: var(--wp--preset--color--brake-red);
	border-color: var(--wp--preset--color--brake-red);
}
.stc-best-sellers__quick {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 0.75rem;
	background: linear-gradient(180deg, transparent, rgba(5, 6, 7, 0.95));
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 220ms var(--stc-ease-quick), transform 220ms var(--stc-ease-quick);
	pointer-events: none;
}
.stc-best-sellers__card:hover .stc-best-sellers__quick {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}
.stc-best-sellers__quick-btn {
	display: block;
	width: 100%;
	padding: 0.7rem;
	background: var(--wp--preset--color--running-light);
	color: var(--wp--preset--color--void);
	border: 1px solid var(--wp--preset--color--running-light);
	font-family: var(--wp--preset--font-family--display);
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: center;
}
.stc-best-sellers__body {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.stc-best-sellers__eyebrow {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.65rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wp--preset--color--wheat-light);
}
.stc-best-sellers__name {
	margin: 0;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--wp--preset--color--mirror);
	min-height: 2.5em;
	text-transform: none;
	letter-spacing: 0;
}
.stc-best-sellers__name a { color: inherit; text-decoration: none; }
.stc-best-sellers__name a:hover { color: var(--wp--preset--color--running-light); }
.stc-best-sellers__rating {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}
.stc-best-sellers__stars {
	display: inline-flex;
	gap: 0.1rem;
	font-size: 0.8rem;
	color: var(--wp--preset--color--steel);
}
.stc-best-sellers__stars .is-filled { color: var(--wp--preset--color--wheat-light); }
.stc-best-sellers__reviews {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	color: var(--wp--preset--color--steel);
}
.stc-best-sellers__price {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.4rem;
	color: var(--wp--preset--color--mirror);
}
.stc-best-sellers__price del,
.stc-best-sellers__price .woocommerce-Price-amount.amount + del {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.85rem;
	color: var(--wp--preset--color--steel);
	margin-left: 0.5rem;
}
.stc-best-sellers__fits {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.65rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--signal-green);
}
.stc-best-sellers__stock {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.65rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--brake-red);
}

/* ----- Made in Manitoba (2-col split + stats) ----- */
.stc-manitoba {
	/* Reset paper-band ::before/::after dust edges from the legacy version
	   — the new layout owns its full bg via .has-ink-background-color. */
	background-image: none !important;
	background-blend-mode: normal !important;
}
.stc-manitoba::before,
.stc-manitoba::after { content: none !important; display: none; }
.stc-manitoba__inner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 0;
	min-height: 560px;
	width: 100%;
}
@media (max-width: 960px) {
	.stc-manitoba__inner { grid-template-columns: 1fr; min-height: 0; }
}
.stc-manitoba__media {
	position: relative;
	background-color: var(--wp--preset--color--shadow);
	background-size: cover;
	background-position: center;
	min-height: 380px;
	overflow: hidden;
}
.stc-manitoba__media-pattern {
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(45deg, transparent 0 24px, rgba(245, 166, 35, 0.04) 24px 48px),
		linear-gradient(135deg, #14100B, #0B0D10);
}
.stc-manitoba__media-label {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	z-index: 2;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.7rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--wp--preset--color--steel);
}
.stc-manitoba__body {
	padding: clamp(3rem, 6vw, 5rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--wp--preset--color--ink);
	color: var(--wp--preset--color--cream);
}
.stc-manitoba__eyebrow {
	margin: 0 0 1rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--wp--preset--color--running-light);
}
.stc-manitoba__title {
	margin: 0 0 1.5rem;
	font-family: var(--wp--preset--font-family--editorial);
	font-weight: 700;
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	line-height: 0.98;
	letter-spacing: -0.015em;
	color: var(--wp--preset--color--cream);
	text-transform: none;
	text-wrap: balance;
}
.stc-manitoba__title em {
	font-style: italic;
	font-weight: 400;
	color: var(--wp--preset--color--running-light);
}
.stc-manitoba__p {
	margin: 0 0 1.25rem;
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--wp--preset--color--sand);
	max-width: 520px;
}
.stc-manitoba__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(245, 237, 224, 0.15);
	max-width: 520px;
}
@media (max-width: 480px) {
	.stc-manitoba__stats { grid-template-columns: 1fr; gap: 1rem; }
}
.stc-manitoba__stat-n {
	font-family: var(--wp--preset--font-family--display);
	font-size: 2.25rem;
	line-height: 1;
	color: var(--wp--preset--color--running-light);
}
.stc-manitoba__stat-l {
	margin-top: 0.35rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wp--preset--color--sand);
}

/* ----- Rig Feed (8-tile grid, overlay handle/rig, #STCbuilt chip) -----
   The legacy 4-tile rules above handle base tile styling; these add the
   8-tile variant, top headline cluster, the corner chip, and CTA row. */
.stc-rig-feed {
	padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 5vw, 5rem);
}
.stc-rig-feed__inner { max-width: 1440px; margin: 0 auto; }
.stc-rig-feed__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}
.stc-rig-feed__eyebrow {
	margin: 0 0 0.75rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--wp--preset--color--running-light);
}
.stc-rig-feed__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	line-height: 0.9;
	text-transform: uppercase;
	color: var(--wp--preset--color--mirror);
	letter-spacing: -0.01em;
}
.stc-rig-feed__sub {
	margin: 1rem 0 0;
	color: var(--wp--preset--color--chrome);
	font-size: 1.05rem;
	line-height: 1.55;
	max-width: 580px;
}
.stc-rig-feed__all {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--running-light);
	border-bottom: 1px solid var(--wp--preset--color--running-light);
	padding-bottom: 0.2rem;
	text-decoration: none;
}
/* Override the legacy 4-col grid for the new 8-tile homepage layout. */
.stc-rig-feed .stc-rig-feed__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}
@media (max-width: 900px) {
	.stc-rig-feed .stc-rig-feed__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
/* Dark-bg variant of the tile — replace the legacy sand/ink defaults. */
.stc-rig-feed .stc-rig-feed__tile {
	background: var(--wp--preset--color--shadow);
	border-color: var(--wp--preset--color--shadow);
}
.stc-rig-feed .stc-rig-feed__tile:hover {
	border-color: var(--wp--preset--color--running-light);
}
.stc-rig-feed__img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms var(--stc-ease-snap);
}
.stc-rig-feed__img--fallback {
	background: linear-gradient(135deg, #0a0c0f, #14181C 50%, #1C2128);
}
.stc-rig-feed__tile:hover .stc-rig-feed__img { transform: scale(1.04); }
.stc-rig-feed__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(5, 6, 7, 0.88) 100%);
	pointer-events: none;
}
.stc-rig-feed__chip {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 2;
	padding: 0.25rem 0.5rem;
	background: rgba(5, 6, 7, 0.7);
	border: 1px solid var(--wp--preset--color--running-light);
	color: var(--wp--preset--color--running-light);
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.62rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.stc-rig-feed .stc-rig-feed__overlay {
	background: linear-gradient(180deg, transparent 0%, rgba(5, 6, 7, 0.88) 100%);
	padding: 0.9rem 1rem;
}
.stc-rig-feed__owner {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wp--preset--color--chrome);
}
.stc-rig-feed__rig {
	margin-top: 0.1rem;
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.1rem;
	color: var(--wp--preset--color--mirror);
	text-transform: uppercase;
}
.stc-rig-feed__cta-row {
	margin-top: 2rem;
	text-align: center;
}

/* ----- Reviews (4.9★ aggregate header + 3 review cards) ----- */
.stc-reviews {
	padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 5vw, 5rem);
}
.stc-reviews__inner { max-width: 1440px; margin: 0 auto; }
.stc-reviews__head {
	text-align: center;
	margin-bottom: 3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.stc-reviews__eyebrow {
	margin: 0 0 0.75rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--wp--preset--color--running-light);
}
.stc-reviews__score {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0.5rem 0 1.5rem;
}
.stc-reviews__score-n {
	font-family: var(--wp--preset--font-family--display);
	font-size: 3rem;
	line-height: 1;
	color: var(--wp--preset--color--mirror);
}
.stc-reviews__score-meta { text-align: left; }
.stc-reviews__score-stars {
	font-size: 1.3rem;
	letter-spacing: 0.1em;
	color: var(--wp--preset--color--wheat-light);
}
.stc-reviews__score-sub {
	margin-top: 0.3rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.7rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wp--preset--color--steel);
}
.stc-reviews__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(2rem, 5vw, 3.25rem);
	line-height: 0.95;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--wp--preset--color--mirror);
	max-width: 22ch;
	text-wrap: balance;
}
.stc-reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}
@media (max-width: 900px) { .stc-reviews__grid { grid-template-columns: 1fr; } }
.stc-reviews__card {
	background: var(--wp--preset--color--asphalt);
	border: 1px solid var(--wp--preset--color--shadow);
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: border-color 220ms var(--stc-ease-quick), transform 220ms var(--stc-ease-quick);
}
.stc-reviews__card:hover {
	border-color: var(--wp--preset--color--running-light);
	transform: translateY(-2px);
}
.stc-reviews__stars {
	font-size: 0.95rem;
	letter-spacing: 0.1em;
	color: var(--wp--preset--color--wheat-light);
}
.stc-reviews__verified {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.65rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wp--preset--color--signal-green);
}
.stc-reviews__quote {
	margin: 0;
	font-family: var(--wp--preset--font-family--editorial);
	font-size: 1.1rem;
	line-height: 1.55;
	color: var(--wp--preset--color--mirror);
	text-wrap: pretty;
}
.stc-reviews__foot {
	display: flex;
	gap: 1rem;
	align-items: center;
	padding-top: 1rem;
	margin-top: auto;
	border-top: 1px solid var(--wp--preset--color--shadow);
}
.stc-reviews__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--wp--preset--color--shadow);
	border: 1px solid var(--wp--preset--color--steel);
	font-family: var(--wp--preset--font-family--display);
	font-size: 0.95rem;
	color: var(--wp--preset--color--running-light);
}
.stc-reviews__driver {
	font-family: var(--wp--preset--font-family--display);
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wp--preset--color--mirror);
}
.stc-reviews__rig {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--steel);
}

/* ----- Drop Alert (newsletter capture) ----- */
.stc-dropalert {
	position: relative;
	padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
	overflow: hidden;
	background:
		radial-gradient(ellipse at 50% 120%, rgba(245, 166, 35, 0.25) 0%, transparent 55%),
		linear-gradient(180deg, var(--wp--preset--color--void) 0%, var(--wp--preset--color--night) 100%);
}
.stc-dropalert::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(90deg, transparent 0 48px, rgba(245, 166, 35, 0.04) 48px 49px);
	pointer-events: none;
}
.stc-dropalert__inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}
.stc-dropalert__eyebrow {
	margin: 0 0 1rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--wp--preset--color--running-light);
}
.stc-dropalert__title {
	margin: 1rem 0;
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(2.5rem, 7vw, 5.5rem);
	line-height: 0.9;
	text-transform: uppercase;
	color: var(--wp--preset--color--mirror);
	letter-spacing: -0.01em;
}
.stc-dropalert__title em {
	font-family: var(--wp--preset--font-family--editorial);
	font-style: italic;
	font-weight: 700;
	text-transform: none;
	color: var(--wp--preset--color--running-light);
}
.stc-dropalert__p {
	color: var(--wp--preset--color--chrome);
	font-size: 1.05rem;
	max-width: 520px;
	margin: 0 auto 2rem;
	line-height: 1.55;
}
.stc-dropalert__form {
	display: flex;
	gap: 0.5rem;
	max-width: 520px;
	margin: 0 auto;
	padding: 0.4rem;
	background: rgba(11, 13, 16, 0.7);
	border: 1px solid var(--wp--preset--color--steel);
}
.stc-dropalert__form input[type="email"] {
	flex: 1;
	min-width: 0;
	background: transparent;
	border: 0;
	color: var(--wp--preset--color--mirror);
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.95rem;
	padding: 0.85rem 1rem;
	outline: none;
}
.stc-dropalert__form input[type="email"]::placeholder {
	color: var(--wp--preset--color--steel);
}
.stc-dropalert__form button {
	background: var(--wp--preset--color--running-light);
	color: var(--wp--preset--color--void);
	border: 0;
	font-family: var(--wp--preset--font-family--display);
	padding: 0.85rem 1.5rem;
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 160ms var(--stc-ease-quick);
}
.stc-dropalert__form button:hover {
	background: var(--wp--preset--color--mirror);
}
.stc-dropalert__perks {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wp--preset--color--steel);
}
.stc-dropalert__perk { display: inline-flex; align-items: center; gap: 0.4rem; }
.stc-dropalert__perk::before {
	content: "✓";
	color: var(--wp--preset--color--signal-green);
}

/* ----- Override existing single-row marquee animation timing to match
   the design (42s linear). Use higher-specificity to win over the
   double-row .stc-marquee__track rule above. ----- */
.stc-marquee > .stc-marquee__track {
	display: inline-flex;
	align-items: center;
	gap: 2.5rem;
	white-space: nowrap;
	animation: stc-marquee-anthem 42s linear infinite;
	padding: 1.25rem 0;
	border-bottom: 0;
}
.stc-marquee {
	border-top: 1px solid var(--wp--preset--color--sand);
	border-bottom: 1px solid var(--wp--preset--color--sand);
	padding: 0;
}
@keyframes stc-marquee-anthem {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.stc-marquee > .stc-marquee__track { animation: none; }
}

/* Screen-reader-only utility for the email label. WP usually defines
   .screen-reader-text but block-themes sometimes ship without it. */
.stc-dropalert .screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); -webkit-clip-path: inset(50%); clip-path: inset(50%);
	height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
}


/* =========================================================================
   Fitment banner — "Showing parts that fit your 2025 Volvo VNL 730"
   Rendered above the shop / category loop when a garage rig is active.
   ========================================================================= */
.stc-fitment-banner {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.85rem 1.15rem;
	margin: 0 0 1.5rem;
	background: var(--wp--preset--color--cream);
	border: 1px solid var(--wp--preset--color--sand);
	border-left: 3px solid var(--wp--preset--color--wheat);
	border-radius: 4px;
	color: var(--wp--preset--color--ink);
	font-size: 0.92rem;
}
.stc-fitment-banner__icon {
	color: var(--wp--preset--color--wheat);
	flex-shrink: 0;
}
.stc-fitment-banner__msg {
	flex: 1;
	line-height: 1.45;
}
.stc-fitment-banner__msg strong {
	color: var(--wp--preset--color--ink);
	font-weight: 700;
}
.stc-fitment-banner__cta {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wp--preset--color--ink-muted);
	text-decoration: none;
	border-bottom: 1px solid var(--wp--preset--color--sand);
	padding-bottom: 2px;
	transition: color 160ms, border-color 160ms;
}
.stc-fitment-banner__cta:hover {
	color: var(--wp--preset--color--ink);
	border-bottom-color: var(--wp--preset--color--ink);
}
@media (max-width: 640px) {
	.stc-fitment-banner { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
	.stc-fitment-banner__cta { align-self: flex-end; }
}

/* ============================================================
   Dealers — landing + apply form + portal
   ============================================================ */
.stc-btn { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.85rem 1.35rem; border-radius: 999px; font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; font-weight: 700; border: 1px solid transparent; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease; cursor: pointer; }
.stc-btn--accent { background: var(--wp--preset--color--wheat, #d8b378); color: var(--wp--preset--color--ink, #1f1a14); }
.stc-btn--accent:hover, .stc-btn--accent:focus-visible { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(216, 179, 120, 0.35); }
.stc-btn--ghost { background: transparent; color: var(--wp--preset--color--paper, #f4ecdc); border-color: rgba(216, 179, 120, 0.6); }
.stc-btn--ghost:hover, .stc-btn--ghost:focus-visible { background: rgba(216, 179, 120, 0.12); border-color: var(--wp--preset--color--wheat, #d8b378); }

.stc-dealers-landing__inner,
.stc-dealers-apply__inner,
.stc-dealers-portal__inner { max-width: 1080px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 2.5rem); }

.stc-dealers-landing__hero { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.stc-dealers-landing__eyebrow { font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wp--preset--color--wheat, #d8b378); margin: 0 0 0.75rem; }
.stc-dealers-landing__title { font-family: var(--wp--preset--font-family--display, "Playfair Display", Georgia, serif); font-size: clamp(2rem, 5vw, 3.5rem); margin: 0 0 1rem; line-height: 1.05; letter-spacing: 0.5px; }
.stc-dealers-landing__title .amber { color: var(--wp--preset--color--wheat, #d8b378); }
.stc-dealers-landing__sub { color: rgba(244, 236, 220, 0.78); font-size: 1.05rem; line-height: 1.55; margin: 0 0 1.75rem; }
.stc-dealers-landing__ctas { display: inline-flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; }

.stc-dealers-landing__props { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 0 0 3rem; }
.stc-dealers-landing__prop { padding: 1.25rem 1.25rem 1.5rem; background: rgba(244, 236, 220, 0.04); border: 1px solid rgba(216, 179, 120, 0.2); border-radius: 12px; }
.stc-dealers-landing__prop-num { font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace); color: var(--wp--preset--color--wheat, #d8b378); font-size: 0.7rem; letter-spacing: 0.22em; margin-bottom: 0.85rem; }
.stc-dealers-landing__prop h3 { margin: 0 0 0.5rem; font-size: 1.05rem; letter-spacing: 0.04em; }
.stc-dealers-landing__prop p { margin: 0; color: rgba(244, 236, 220, 0.72); font-size: 0.92rem; line-height: 1.5; }

.stc-dealers-landing__tiers { margin: 0 0 3rem; text-align: center; }
.stc-dealers-landing__tiers-title { font-family: var(--wp--preset--font-family--display, "Playfair Display", Georgia, serif); font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 0 0 0.5rem; }
.stc-dealers-landing__tiers-sub { color: rgba(244, 236, 220, 0.72); margin: 0 0 1.75rem; }
.stc-dealers-landing__tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.85rem; }
.stc-dealers-landing__tier { padding: 1.5rem 1rem; background: linear-gradient(180deg, rgba(216, 179, 120, 0.10) 0%, rgba(216, 179, 120, 0.02) 100%); border: 1px solid rgba(216, 179, 120, 0.3); border-radius: 14px; }
.stc-dealers-landing__tier-name { font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wp--preset--color--wheat, #d8b378); margin-bottom: 0.5rem; }
.stc-dealers-landing__tier-discount { font-family: var(--wp--preset--font-family--display, "Playfair Display", Georgia, serif); font-size: 2.5rem; line-height: 1; color: var(--wp--preset--color--paper, #f4ecdc); }
.stc-dealers-landing__tier-discount span { font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244, 236, 220, 0.6); display: block; margin-top: 0.4rem; }
.stc-dealers-landing__tier-net { font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace); font-size: 0.78rem; letter-spacing: 0.12em; color: rgba(244, 236, 220, 0.7); margin-top: 0.85rem; }

.stc-dealers-landing__cta-strip { text-align: center; padding: 2.25rem 1.5rem; background: rgba(216, 179, 120, 0.08); border: 1px solid rgba(216, 179, 120, 0.3); border-radius: 14px; }
.stc-dealers-landing__cta-strip h2 { font-family: var(--wp--preset--font-family--display, "Playfair Display", Georgia, serif); margin: 0 0 0.5rem; font-size: clamp(1.25rem, 3vw, 1.85rem); }
.stc-dealers-landing__cta-strip p { color: rgba(244, 236, 220, 0.78); margin: 0 0 1.25rem; }

/* Application form */
.stc-dealers-apply__head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.stc-dealers-apply__eyebrow { font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wp--preset--color--wheat, #d8b378); margin: 0 0 0.5rem; }
.stc-dealers-apply__title { font-family: var(--wp--preset--font-family--display, "Playfair Display", Georgia, serif); font-size: clamp(1.85rem, 4vw, 2.85rem); margin: 0 0 0.5rem; }
.stc-dealers-apply__sub { color: rgba(244, 236, 220, 0.72); margin: 0; }
.stc-dealers-apply__form fieldset { border: 0; padding: 0; margin: 0 0 1.75rem; }
.stc-dealers-apply__form legend { font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace); font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wp--preset--color--wheat, #d8b378); padding: 0; margin-bottom: 0.85rem; }
.stc-dealers-apply__form .row { display: grid; grid-template-columns: 1fr; gap: 0.85rem; margin-bottom: 0.85rem; }
.stc-dealers-apply__form .row.two { grid-template-columns: 1fr 1fr; }
.stc-dealers-apply__form .row.three { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 600px) { .stc-dealers-apply__form .row.two, .stc-dealers-apply__form .row.three { grid-template-columns: 1fr; } }
.stc-dealers-apply__form label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.85rem; color: rgba(244, 236, 220, 0.85); }
.stc-dealers-apply__form input,
.stc-dealers-apply__form select,
.stc-dealers-apply__form textarea {
	background: rgba(0, 0, 0, 0.3); color: var(--wp--preset--color--paper, #f4ecdc); border: 1px solid rgba(244, 236, 220, 0.16); border-radius: 8px; padding: 0.65rem 0.8rem; font-family: inherit; font-size: 0.95rem;
}
.stc-dealers-apply__form input:focus, .stc-dealers-apply__form select:focus, .stc-dealers-apply__form textarea:focus { outline: 2px solid var(--wp--preset--color--wheat, #d8b378); outline-offset: 1px; }
.stc-dealers-apply__form .checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.55rem; }
.stc-dealers-apply__form .check { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.5rem 0.85rem; border: 1px solid rgba(244, 236, 220, 0.16); border-radius: 999px; cursor: pointer; }
.stc-dealers-apply__form .check input { accent-color: var(--wp--preset--color--wheat, #d8b378); }
.stc-help { font-size: 0.78rem; color: rgba(244, 236, 220, 0.6); margin: 0.25rem 0 0.75rem; }
.stc-dealers-apply__actions { display: flex; gap: 0.85rem; align-items: center; flex-wrap: wrap; margin-top: 1rem; }
.stc-dealers-apply__status { margin-top: 1.25rem; padding: 1rem 1.25rem; border-radius: 10px; }
.stc-dealers-apply__status.ok { background: rgba(46, 160, 67, 0.10); border: 1px solid rgba(46, 160, 67, 0.35); color: #7ad982; }
.stc-dealers-apply__status.ok h3 { margin: 0 0 0.35rem; font-family: var(--wp--preset--font-family--display, "Playfair Display", Georgia, serif); font-size: 1.2rem; }
.stc-dealers-apply__status.ok p { margin: 0 0 0.35rem; }
.stc-dealers-apply__status.ok .ref { font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace); font-size: 0.78rem; opacity: 0.7; }
.stc-dealers-apply__status.err { background: rgba(229, 57, 53, 0.10); border: 1px solid rgba(229, 57, 53, 0.35); color: #ff8a80; }

/* Portal dashboard */
.stc-dealers-portal__head { max-width: 720px; margin: 0 auto 2.25rem; text-align: center; }
.stc-dealers-portal__eyebrow { font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wp--preset--color--wheat, #d8b378); margin: 0 0 0.5rem; }
.stc-dealers-portal__title { font-family: var(--wp--preset--font-family--display, "Playfair Display", Georgia, serif); font-size: clamp(1.85rem, 4vw, 2.85rem); margin: 0 0 0.5rem; }
.stc-dealers-portal__sub { color: rgba(244, 236, 220, 0.72); margin: 0 0 1.5rem; }
.stc-dealers-portal__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 720px) { .stc-dealers-portal__grid { grid-template-columns: 1fr; } }
.stc-dealers-portal__card { padding: 1.5rem; background: rgba(244, 236, 220, 0.04); border: 1px solid rgba(216, 179, 120, 0.2); border-radius: 14px; display: flex; flex-direction: column; gap: 0.75rem; }
.stc-dealers-portal__card--wide { grid-column: 1 / -1; }
.stc-dealers-portal__card-eyebrow { font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wp--preset--color--wheat, #d8b378); margin: 0; }
.stc-dealers-portal__tier-name { font-family: var(--wp--preset--font-family--display, "Playfair Display", Georgia, serif); font-size: 1.5rem; line-height: 1; }
.stc-dealers-portal__tier-discount { font-family: var(--wp--preset--font-family--display, "Playfair Display", Georgia, serif); font-size: 3rem; line-height: 1; color: var(--wp--preset--color--wheat, #d8b378); }
.stc-dealers-portal__tier-discount span { display: block; margin-top: 0.4rem; font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244, 236, 220, 0.6); }
.stc-dealers-portal__tier-net { color: rgba(244, 236, 220, 0.7); margin: 0; font-size: 0.9rem; }
.stc-dealers-portal__shop-cta { align-self: flex-start; margin-top: 0.5rem; }
.stc-dealers-portal__dl { display: grid; grid-template-columns: 110px 1fr; gap: 0.5rem 1rem; margin: 0; font-size: 0.92rem; }
.stc-dealers-portal__dl dt { color: rgba(244, 236, 220, 0.55); font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; }
.stc-dealers-portal__dl dd { margin: 0; color: var(--wp--preset--color--paper, #f4ecdc); word-break: break-word; }
.stc-dealers-portal__orders { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.stc-dealers-portal__orders th, .stc-dealers-portal__orders td { padding: 0.55rem 0.4rem; text-align: left; border-bottom: 1px solid rgba(244, 236, 220, 0.08); }
.stc-dealers-portal__orders th { font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244, 236, 220, 0.55); }
.stc-dealers-portal__orders a { color: var(--wp--preset--color--wheat, #d8b378); text-decoration: none; }
.stc-dealers-portal__orders a:hover { text-decoration: underline; }
.stc-dealers-portal__pill { display: inline-block; padding: 0.15rem 0.55rem; border-radius: 999px; background: rgba(216, 179, 120, 0.12); border: 1px solid rgba(216, 179, 120, 0.25); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; }
.stc-dealers-portal__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.stc-dealers-portal__links a { color: var(--wp--preset--color--paper, #f4ecdc); text-decoration: none; font-size: 0.95rem; }
.stc-dealers-portal__links a:hover { color: var(--wp--preset--color--wheat, #d8b378); }

/* ============================================================
   Site logo — header + footer
   ============================================================ */
.stc-site-logo {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	text-decoration: none;
}
.stc-site-logo img {
	display: block;
	height: clamp(48px, 7vw, 72px);
	width: auto;
	max-width: 100%;
	user-select: none;
	-webkit-user-drag: none;
}
.stc-site-logo--footer img {
	height: clamp(56px, 8vw, 92px);
	margin-bottom: 0.6rem;
}
@media (max-width: 720px) {
	.stc-site-logo img { height: 44px; }
}

/* ============================================================
   Shop By Part — interactive truck hotspot map (homepage)
   ============================================================ */
.stc-shop-by-part {
	background: var(--wp--preset--color--ink, #1f1a14);
	color: var(--wp--preset--color--paper, #f4ecdc);
	padding: clamp(2.5rem, 6vw, 5rem) 0;
}
.stc-shop-by-part__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.stc-shop-by-part__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto clamp(1.25rem, 3vw, 2rem);
}
.stc-shop-by-part__eyebrow {
	font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace);
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--wp--preset--color--wheat, #d8b378);
	margin: 0 0 0.5rem;
}
.stc-shop-by-part__title {
	font-family: var(--wp--preset--font-family--display, "Playfair Display", Georgia, serif);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	margin: 0 0 0.5rem;
	letter-spacing: 0.5px;
}
.stc-shop-by-part__sub {
	color: rgba(244, 236, 220, 0.72);
	font-size: 0.95rem;
	line-height: 1.55;
	margin: 0;
}

.stc-shop-by-part__stage {
	position: relative;
	margin: 0 auto;
	max-width: 1280px;
	border-radius: 14px;
	overflow: hidden;
	/* Soft amber radial — gives the cut-out truck a subtle "spotlit-on-floor"
	   feel instead of floating in nothing. */
	background:
		radial-gradient(ellipse at 50% 95%, rgba(216, 179, 120, 0.28) 0%, rgba(216, 179, 120, 0.08) 35%, rgba(31, 26, 20, 0) 65%),
		linear-gradient(180deg, #1f1a14 0%, #14110d 100%);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(216, 179, 120, 0.18);
	aspect-ratio: 4 / 3;
}
.stc-shop-by-part__truck {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	user-select: none;
	-webkit-user-drag: none;
	filter: drop-shadow(0 30px 24px rgba(0, 0, 0, 0.55));
}
.stc-shop-by-part__pins {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.stc-hotspot {
	position: absolute;
	transform: translate(-50%, -50%);
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.35rem 0.7rem 0.35rem 0.5rem;
	background: rgba(31, 26, 20, 0.78);
	color: var(--wp--preset--color--paper, #f4ecdc);
	border: 1px solid rgba(216, 179, 120, 0.55);
	border-radius: 999px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
	font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace);
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	pointer-events: auto;
	cursor: pointer;
	backdrop-filter: blur(4px);
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
	z-index: 2;
}
.stc-hotspot:hover,
.stc-hotspot:focus-visible {
	transform: translate(-50%, -50%) scale(1.08);
	background: var(--wp--preset--color--wheat, #d8b378);
	color: var(--wp--preset--color--ink, #1f1a14);
	border-color: var(--wp--preset--color--wheat, #d8b378);
	box-shadow: 0 10px 28px rgba(216, 179, 120, 0.5), 0 0 0 4px rgba(216, 179, 120, 0.18);
	outline: none;
	z-index: 3;
}
.stc-hotspot__dot {
	display: inline-block;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--wp--preset--color--wheat, #d8b378);
	box-shadow: 0 0 0 2px rgba(31, 26, 20, 0.85);
	flex: 0 0 auto;
}
.stc-hotspot:hover .stc-hotspot__dot,
.stc-hotspot:focus-visible .stc-hotspot__dot {
	background: var(--wp--preset--color--ink, #1f1a14);
	box-shadow: 0 0 0 2px rgba(244, 236, 220, 0.9);
}
.stc-hotspot__pulse {
	position: absolute;
	left: 0.5rem;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: rgba(216, 179, 120, 0.55);
	pointer-events: none;
	animation: stcHotspotPulse 2.4s ease-out infinite;
	z-index: 0;
}
.stc-hotspot__label {
	position: relative;
	z-index: 1;
}
@keyframes stcHotspotPulse {
	0%   { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
	60%  { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
	100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.stc-hotspot__pulse { animation: none; }
	.stc-hotspot { transition: none; }
}

/* Fallback grid — also helps SEO crawlers + small screens. Hidden on
   desktop so the hotspot stage is the primary navigation. */
.stc-shop-by-part__list {
	list-style: none;
	margin: 1.25rem 0 0;
	padding: 0;
	display: none;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 0.4rem;
}
.stc-shop-by-part__list-link {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.55rem 0.75rem;
	background: rgba(244, 236, 220, 0.04);
	border: 1px solid rgba(216, 179, 120, 0.2);
	border-radius: 10px;
	color: var(--wp--preset--color--paper, #f4ecdc);
	text-decoration: none;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	transition: background 160ms ease, border-color 160ms ease;
}
.stc-shop-by-part__list-link:hover,
.stc-shop-by-part__list-link:focus-visible {
	background: rgba(216, 179, 120, 0.12);
	border-color: var(--wp--preset--color--wheat, #d8b378);
}
.stc-shop-by-part__list-link [aria-hidden] {
	color: var(--wp--preset--color--wheat, #d8b378);
	font-weight: 700;
}

@media (max-width: 720px) {
	/* Mobile: shrink chips so they don't overlap on a smaller image. */
	.stc-hotspot { font-size: 0.58rem; padding: 0.25rem 0.55rem 0.25rem 0.4rem; gap: 0.3rem; letter-spacing: 0.12em; }
	.stc-hotspot__dot { width: 0.45rem; height: 0.45rem; }
	.stc-hotspot__pulse { width: 0.45rem; height: 0.45rem; left: 0.4rem; }
}
@media (max-width: 520px) {
	/* Very small screens: hide the chip labels (the dots stay), surface the
	   list grid as the primary nav target so taps don't fight for space. */
	.stc-hotspot__label { display: none; }
	.stc-hotspot { padding: 0.3rem; border-radius: 999px; }
	.stc-shop-by-part__list { display: grid; }
}

/* ==========================================================================
   Garage page (patterns/garage.php)
   ========================================================================== */
.stc-garage-page { padding-block: 4rem 5rem; }
.stc-garage-page__inner {
	max-width: 760px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.stc-garage-page__eyebrow {
	font-family: ui-monospace, monospace;
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wp--preset--color--wheat, #d8b378);
	margin: 0 0 0.5rem;
}
.stc-garage-page__title {
	font-size: clamp(2rem, 5vw, 3rem);
	margin: 0 0 0.5rem;
	line-height: 1.1;
}
.stc-garage-page__sub {
	color: rgba(244, 236, 220, 0.7);
	max-width: 54ch;
	margin: 0 0 2.5rem;
}

/* Truck card */
.stc-garage-page__card {
	background: rgba(244, 236, 220, 0.04);
	border: 1px solid rgba(216, 179, 120, 0.25);
	border-radius: 16px;
	padding: 2rem;
	margin-bottom: 2rem;
}
.stc-garage-page__card-inner {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 1.5rem;
}
.stc-garage-page__truck-icon {
	font-size: 2.8rem;
	line-height: 1;
	flex-shrink: 0;
}
.stc-garage-page__truck-nick {
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wp--preset--color--wheat, #d8b378);
	margin-bottom: 0.2rem;
}
.stc-garage-page__truck-label {
	font-size: 1.55rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0.04em;
	color: var(--wp--preset--color--paper, #f4ecdc);
}
.stc-garage-page__truck-series {
	font-size: 0.82rem;
	color: rgba(244, 236, 220, 0.6);
	margin-top: 0.2rem;
}
.stc-garage-page__card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

/* Empty state */
.stc-garage-page__empty {
	text-align: center;
	padding: 3rem 1rem;
	border: 2px dashed rgba(216, 179, 120, 0.2);
	border-radius: 16px;
	margin-bottom: 2rem;
}
.stc-garage-page__empty-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.stc-garage-page__empty-msg  { color: rgba(244, 236, 220, 0.65); max-width: 42ch; margin-inline: auto; }

/* Form */
.stc-garage-page__form-wrap {
	background: rgba(244, 236, 220, 0.04);
	border: 1px solid rgba(244, 236, 220, 0.1);
	border-radius: 16px;
	padding: 2rem;
	margin-bottom: 2rem;
}
.stc-garage-page__form-title {
	font-size: 1.25rem;
	margin: 0 0 1.5rem;
}
.stc-garage-page__fields {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.stc-garage-page__field label {
	display: block;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(244, 236, 220, 0.7);
	margin-bottom: 0.4rem;
}
.stc-garage-page__field select,
.stc-garage-page__field input[type="text"] {
	width: 100%;
	background: rgba(10, 10, 14, 0.6);
	border: 1px solid rgba(244, 236, 220, 0.15);
	border-radius: 8px;
	color: var(--wp--preset--color--paper, #f4ecdc);
	font-size: 0.95rem;
	padding: 0.6rem 0.85rem;
	outline: none;
	appearance: none;
	transition: border-color 160ms ease;
}
.stc-garage-page__field select:focus,
.stc-garage-page__field input[type="text"]:focus {
	border-color: var(--wp--preset--color--wheat, #d8b378);
}
.stc-garage-page__field select option { background: #18181f; color: #f4ecdc; }
.stc-garage-page__optional {
	font-weight: 400;
	opacity: 0.55;
	text-transform: none;
	letter-spacing: 0;
}
.stc-garage-page__form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}
.stc-garage-page__error {
	margin-top: 1rem;
	padding: 0.65rem 0.9rem;
	background: rgba(220, 50, 50, 0.15);
	border: 1px solid rgba(220, 50, 50, 0.4);
	border-radius: 8px;
	font-size: 0.88rem;
	color: #f4a0a0;
}

/* Danger variant for the remove button */
.stc-btn--danger {
	border-color: rgba(220, 50, 50, 0.4) !important;
	color: #f4a0a0 !important;
}
.stc-btn--danger:hover { border-color: rgba(220, 50, 50, 0.8) !important; background: rgba(220, 50, 50, 0.1) !important; }

/* Fitment info band */
.stc-garage-page__fitment-band {
	padding: 1rem 1.25rem;
	background: rgba(216, 179, 120, 0.06);
	border: 1px solid rgba(216, 179, 120, 0.18);
	border-radius: 10px;
	font-size: 0.88rem;
	color: rgba(244, 236, 220, 0.7);
}
.stc-garage-page__fitment-band a { color: var(--wp--preset--color--wheat, #d8b378); }

@media (max-width: 600px) {
	.stc-garage-page__card-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
	.stc-garage-page__truck-icon { font-size: 2rem; }
	.stc-garage-page__truck-label { font-size: 1.25rem; }
	.stc-garage-page__fields { grid-template-columns: 1fr; }
}

/* ==========================================================================
   STC Club landing (patterns/stc-club-landing.php)
   ========================================================================== */
.stc-club-landing { padding-block: 5rem 6rem; }
.stc-club-landing__inner {
	max-width: 900px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.stc-club-landing__hero {
	text-align: center;
	margin-bottom: 4rem;
}
.stc-club-landing__eyebrow {
	font-family: ui-monospace, monospace;
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--wp--preset--color--wheat, #d8b378);
	margin: 0 0 0.75rem;
}
.stc-club-landing__title {
	font-size: clamp(2.5rem, 6vw, 4rem);
	line-height: 1.08;
	margin: 0 0 1rem;
}
.stc-club-landing__sub {
	max-width: 52ch;
	margin-inline: auto;
	color: rgba(244, 236, 220, 0.72);
	font-size: 1.05rem;
	margin-bottom: 2rem;
}
.stc-club-landing__cta-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.stc-club-landing__cancel {
	font-size: 0.82rem;
	color: rgba(244, 236, 220, 0.5);
}
.stc-club-landing__login-hint {
	font-size: 0.88rem;
	color: rgba(244, 236, 220, 0.55);
	margin-top: 0.75rem;
}
.stc-club-landing__login-hint a { color: var(--wp--preset--color--wheat, #d8b378); }

/* Benefits grid */
.stc-club-landing__benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin-bottom: 4rem;
}
.stc-club-landing__benefit {
	background: rgba(244, 236, 220, 0.03);
	border: 1px solid rgba(244, 236, 220, 0.08);
	border-radius: 14px;
	padding: 1.75rem 1.5rem;
	text-align: center;
}
.stc-club-landing__benefit-icon {
	font-size: 2.25rem;
	margin-bottom: 0.75rem;
}
.stc-club-landing__benefit-title {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 0.4rem;
	color: var(--wp--preset--color--paper, #f4ecdc);
}
.stc-club-landing__benefit-desc {
	font-size: 0.85rem;
	color: rgba(244, 236, 220, 0.6);
	margin: 0;
	line-height: 1.5;
}

/* Pricing card */
.stc-club-landing__pricing {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}
.stc-club-landing__price-card {
	background: rgba(216, 179, 120, 0.06);
	border: 1px solid rgba(216, 179, 120, 0.3);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	text-align: center;
	max-width: 340px;
	width: 100%;
}
.stc-club-landing__price-label {
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wp--preset--color--wheat, #d8b378);
	margin-bottom: 0.75rem;
}
.stc-club-landing__price-amount {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--wp--preset--color--paper, #f4ecdc);
	line-height: 1;
	margin-bottom: 0.25rem;
}
.stc-club-landing__price-period {
	font-size: 1.1rem;
	font-weight: 400;
	color: rgba(244, 236, 220, 0.6);
}
.stc-club-landing__price-perks {
	list-style: none;
	margin: 1.25rem 0 1.75rem;
	padding: 0;
	text-align: left;
}
.stc-club-landing__price-perks li {
	padding: 0.35rem 0;
	font-size: 0.9rem;
	color: rgba(244, 236, 220, 0.82);
	border-bottom: 1px solid rgba(244, 236, 220, 0.07);
}
.stc-club-landing__cancel-small {
	font-size: 0.78rem;
	color: rgba(244, 236, 220, 0.4);
	margin-top: 0.65rem;
}
.stc-club-landing__join-error {
	max-width: 480px;
	margin: 1.5rem auto 0;
	padding: 0.75rem 1rem;
	background: rgba(220, 50, 50, 0.15);
	border: 1px solid rgba(220, 50, 50, 0.4);
	border-radius: 8px;
	font-size: 0.9rem;
	color: #f4a0a0;
	text-align: center;
}

/* ==========================================================================
   STC Club member dashboard (patterns/stc-club-member.php)
   ========================================================================== */
.stc-club-member { padding-block: 4rem 5rem; }
.stc-club-member__inner {
	max-width: 820px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}
.stc-club-member__welcome-banner {
	background: rgba(216, 179, 120, 0.1);
	border: 1px solid rgba(216, 179, 120, 0.35);
	border-radius: 10px;
	padding: 1rem 1.25rem;
	margin-bottom: 2rem;
	font-size: 0.96rem;
	color: var(--wp--preset--color--paper, #f4ecdc);
}
.stc-club-member__head { margin-bottom: 2.5rem; }
.stc-club-member__eyebrow {
	font-family: ui-monospace, monospace;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wp--preset--color--wheat, #d8b378);
	margin: 0 0 0.5rem;
}
.stc-club-member__title {
	font-size: clamp(2rem, 5vw, 3rem);
	margin: 0 0 0.5rem;
}
.stc-club-member__sub {
	color: rgba(244, 236, 220, 0.7);
	max-width: 52ch;
	margin: 0 0 1.5rem;
}
.stc-club-member__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.25rem;
}
.stc-club-member__card {
	background: rgba(244, 236, 220, 0.04);
	border: 1px solid rgba(216, 179, 120, 0.18);
	border-radius: 14px;
	padding: 1.75rem;
}
.stc-club-member__card-eyebrow {
	font-size: 0.68rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wp--preset--color--wheat, #d8b378);
	margin: 0 0 1rem;
}
.stc-club-member__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 0.8rem;
	background: rgba(216, 179, 120, 0.1);
	border: 1px solid rgba(216, 179, 120, 0.35);
	border-radius: 999px;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wp--preset--color--wheat, #d8b378);
	margin-bottom: 1rem;
}
.stc-club-member__badge-dot {
	display: inline-block;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--wp--preset--color--wheat, #d8b378);
}
.stc-club-member__meta {
	font-size: 0.85rem;
	color: rgba(244, 236, 220, 0.65);
	margin: 0 0 0.35rem;
}
.stc-club-member__perks {
	list-style: none;
	padding: 0;
	margin: 0 0 0.5rem;
}
.stc-club-member__perks li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.45rem 0;
	font-size: 0.9rem;
	border-bottom: 1px solid rgba(244, 236, 220, 0.07);
}
.stc-club-member__perk-check { color: var(--wp--preset--color--wheat, #d8b378); font-weight: 700; }
.stc-club-member__links {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem;
}
.stc-club-member__links li { padding: 0.4rem 0; font-size: 0.9rem; }
.stc-club-member__links a { color: var(--wp--preset--color--paper, #f4ecdc); text-decoration: none; }
.stc-club-member__links a:hover { color: var(--wp--preset--color--wheat, #d8b378); }
.stc-club-member__cancel-note {
	font-size: 0.78rem;
	color: rgba(244, 236, 220, 0.4);
	margin: 0;
	line-height: 1.5;
}

/* ==========================================================================
   Affiliate landing (patterns/affiliate-landing.php)
   ========================================================================== */
.stc-affiliate-landing { padding-block: 5rem 6rem; }
.stc-affiliate-landing__inner {
	max-width: 900px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}
.stc-affiliate-landing__hero { text-align: center; margin-bottom: 4rem; }
.stc-affiliate-landing__eyebrow {
	font-family: ui-monospace, monospace;
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--wp--preset--color--wheat, #d8b378);
	margin: 0 0 0.75rem;
}
.stc-affiliate-landing__title {
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	line-height: 1.08;
	margin: 0 0 1rem;
}
.stc-affiliate-landing__sub {
	max-width: 54ch;
	margin-inline: auto;
	color: rgba(244, 236, 220, 0.72);
	font-size: 1.05rem;
	margin-bottom: 2rem;
}
.stc-affiliate-landing__hint {
	display: block;
	font-size: 0.8rem;
	color: rgba(244, 236, 220, 0.45);
	margin-top: 0.5rem;
}

/* Steps */
.stc-affiliate-landing__steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin-bottom: 4rem;
}
.stc-affiliate-landing__step {
	background: rgba(244, 236, 220, 0.03);
	border: 1px solid rgba(244, 236, 220, 0.08);
	border-radius: 14px;
	padding: 1.75rem 1.5rem;
	text-align: center;
}
.stc-affiliate-landing__step-num {
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	background: rgba(216, 179, 120, 0.15);
	border: 1px solid rgba(216, 179, 120, 0.35);
	color: var(--wp--preset--color--wheat, #d8b378);
	font-weight: 700;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}
.stc-affiliate-landing__step-title {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 0.4rem;
}
.stc-affiliate-landing__step-desc {
	font-size: 0.85rem;
	color: rgba(244, 236, 220, 0.6);
	margin: 0;
	line-height: 1.5;
}

/* FAQ */
.stc-affiliate-landing__faq {
	background: rgba(244, 236, 220, 0.03);
	border: 1px solid rgba(244, 236, 220, 0.08);
	border-radius: 14px;
	padding: 2rem;
	margin-bottom: 2rem;
}
.stc-affiliate-landing__faq-title {
	font-size: 1.15rem;
	margin: 0 0 1.5rem;
}
.stc-affiliate-landing__faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.25rem;
}
.stc-affiliate-landing__faq-grid strong {
	display: block;
	font-size: 0.88rem;
	color: var(--wp--preset--color--paper, #f4ecdc);
	margin-bottom: 0.3rem;
}
.stc-affiliate-landing__faq-grid p {
	font-size: 0.82rem;
	color: rgba(244, 236, 220, 0.6);
	margin: 0;
	line-height: 1.5;
}
.stc-affiliate-landing__join-result {
	max-width: 480px;
	margin-inline: auto;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	text-align: center;
	font-size: 0.9rem;
	background: rgba(244, 236, 220, 0.06);
}

/* ==========================================================================
   Affiliate dashboard (patterns/affiliate-dashboard.php)
   ========================================================================== */
.stc-affiliate-dash { padding-block: 4rem 5rem; }
.stc-affiliate-dash__inner {
	max-width: 820px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}
.stc-affiliate-dash__head { margin-bottom: 2.5rem; }
.stc-affiliate-dash__eyebrow {
	font-family: ui-monospace, monospace;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wp--preset--color--wheat, #d8b378);
	margin: 0 0 0.5rem;
}
.stc-affiliate-dash__title {
	font-size: clamp(2rem, 5vw, 3rem);
	margin: 0 0 0.5rem;
}

/* Ref link card */
.stc-affiliate-dash__link-card {
	background: rgba(216, 179, 120, 0.06);
	border: 1px solid rgba(216, 179, 120, 0.25);
	border-radius: 14px;
	padding: 1.75rem;
	margin-bottom: 2rem;
}
.stc-affiliate-dash__link-label {
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wp--preset--color--wheat, #d8b378);
	margin: 0 0 0.75rem;
}
.stc-affiliate-dash__link-row {
	display: flex;
	gap: 0.6rem;
	margin-bottom: 0.75rem;
	flex-wrap: wrap;
}
.stc-affiliate-dash__link-input {
	flex: 1;
	min-width: 0;
	background: rgba(10, 10, 14, 0.6);
	border: 1px solid rgba(244, 236, 220, 0.15);
	border-radius: 8px;
	color: var(--wp--preset--color--paper, #f4ecdc);
	font-size: 0.88rem;
	padding: 0.6rem 0.85rem;
	outline: none;
}
.stc-affiliate-dash__copy-btn { flex-shrink: 0; }
.stc-affiliate-dash__link-hint {
	font-size: 0.82rem;
	color: rgba(244, 236, 220, 0.55);
	margin: 0;
	line-height: 1.5;
}

/* Stats grid */
.stc-affiliate-dash__stats {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}
.stc-affiliate-dash__stat-card {
	background: rgba(244, 236, 220, 0.04);
	border: 1px solid rgba(244, 236, 220, 0.08);
	border-radius: 12px;
	padding: 1.25rem 1rem;
	text-align: center;
}
.stc-affiliate-dash__stat-value {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--wp--preset--color--paper, #f4ecdc);
	margin-bottom: 0.25rem;
}
.stc-affiliate-dash__stat-label {
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(244, 236, 220, 0.5);
}

/* Commission history */
.stc-affiliate-dash__history-title {
	font-size: 1.1rem;
	margin: 0 0 1rem;
}
.stc-affiliate-dash__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.88rem;
}
.stc-affiliate-dash__table th {
	text-align: left;
	padding: 0.5rem 0.75rem;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(244, 236, 220, 0.5);
	border-bottom: 1px solid rgba(244, 236, 220, 0.08);
}
.stc-affiliate-dash__table td {
	padding: 0.65rem 0.75rem;
	border-bottom: 1px solid rgba(244, 236, 220, 0.06);
	color: rgba(244, 236, 220, 0.85);
}
.stc-affiliate-dash__pill {
	display: inline-block;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: rgba(244, 236, 220, 0.08);
}
.stc-affiliate-dash__pill--pending  { background: rgba(216, 179, 120, 0.15); color: var(--wp--preset--color--wheat, #d8b378); }
.stc-affiliate-dash__pill--approved { background: rgba(60, 200, 100, 0.12); color: #6cf0a0; }
.stc-affiliate-dash__pill--paid     { background: rgba(244, 236, 220, 0.08); color: rgba(244, 236, 220, 0.5); }
.stc-affiliate-dash__empty {
	text-align: center;
	padding: 2.5rem 1rem;
	border: 2px dashed rgba(244, 236, 220, 0.1);
	border-radius: 12px;
	color: rgba(244, 236, 220, 0.5);
	font-size: 0.9rem;
}

@media (max-width: 600px) {
	.stc-affiliate-dash__stats { grid-template-columns: repeat(2, 1fr); }
	.stc-affiliate-dash__table th:nth-child(3),
	.stc-affiliate-dash__table td:nth-child(3) { display: none; }
}


/* ============================================================
   SPRINT 5 — CUSTOM FAB LANDING + QUOTE FORM
   ============================================================ */

.stc-fab-landing__inner,
.stc-fab-quote__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 4rem 1.5rem 5rem;
}

.stc-fab-landing__hero {
	text-align: center;
	max-width: 740px;
	margin: 0 auto 4rem;
}
.stc-fab-landing__eyebrow {
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wp--preset--color--amber, #f5a623);
	margin: 0 0 0.75rem;
}
.stc-fab-landing__title {
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 1.25rem;
	letter-spacing: -0.02em;
}
.stc-fab-landing__sub {
	font-size: 1.05rem;
	color: rgba(244, 236, 220, 0.75);
	margin: 0 0 2rem;
	line-height: 1.6;
}
.stc-fab-landing__section-title {
	font-size: 1.35rem;
	font-weight: 700;
	margin: 0 0 1.75rem;
	letter-spacing: -0.01em;
}

.stc-fab-landing__capabilities { margin-bottom: 4rem; }
.stc-fab-landing__cap-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}
.stc-fab-landing__cap-card {
	background: rgba(244, 236, 220, 0.04);
	border: 1px solid rgba(244, 236, 220, 0.08);
	border-radius: 12px;
	padding: 1.5rem;
	transition: border-color 0.2s;
}
.stc-fab-landing__cap-card:hover { border-color: rgba(245, 166, 35, 0.35); }
.stc-fab-landing__cap-title {
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: var(--wp--preset--color--amber, #f5a623);
}
.stc-fab-landing__cap-desc {
	font-size: 0.875rem;
	color: rgba(244, 236, 220, 0.7);
	margin: 0;
	line-height: 1.55;
}

.stc-fab-landing__steps { margin-bottom: 4rem; }
.stc-fab-landing__step-rail {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.stc-fab-landing__step { text-align: center; }
.stc-fab-landing__step-num {
	width: 52px;
	height: 52px;
	background: var(--wp--preset--color--amber, #f5a623);
	color: #0a0a0a;
	font-size: 1.2rem;
	font-weight: 800;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}
.stc-fab-landing__step h3 { font-size: 1rem; font-weight: 700; margin: 0 0 0.5rem; }
.stc-fab-landing__step p { font-size: 0.875rem; color: rgba(244,236,220,0.7); margin: 0; line-height: 1.55; }

.stc-fab-landing__faq { margin-bottom: 4rem; }
.stc-fab-landing__faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}
.stc-fab-landing__faq-grid > div {
	background: rgba(244, 236, 220, 0.04);
	border: 1px solid rgba(244, 236, 220, 0.07);
	border-radius: 10px;
	padding: 1.25rem 1.5rem;
}
.stc-fab-landing__faq-grid strong { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; }
.stc-fab-landing__faq-grid p { font-size: 0.85rem; color: rgba(244,236,220,0.7); margin: 0; line-height: 1.55; }

.stc-fab-landing__cta-strip {
	text-align: center;
	padding: 3rem 1.5rem;
	border: 1px solid rgba(244, 236, 220, 0.1);
	border-radius: 16px;
	background: rgba(244, 236, 220, 0.03);
}
.stc-fab-landing__cta-text { font-size: 1.3rem; font-weight: 700; margin: 0 0 1.25rem; }

/* ── Quote form ── */
.stc-fab-quote__head { max-width: 680px; margin: 0 0 2.5rem; }
.stc-fab-quote__eyebrow {
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wp--preset--color--amber, #f5a623);
	margin: 0 0 0.75rem;
}
.stc-fab-quote__title {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 800;
	margin: 0 0 0.75rem;
	letter-spacing: -0.02em;
}
.stc-fab-quote__sub { font-size: 1rem; color: rgba(244,236,220,0.75); margin: 0; line-height: 1.6; }

.stc-fab-quote__form {
	max-width: 780px;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.stc-fab-quote__row { display: flex; gap: 1.25rem; }
.stc-fab-quote__row--2col > * { flex: 1; }
.stc-fab-quote__field { display: flex; flex-direction: column; gap: 0.35rem; }
.stc-fab-quote__label {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(244, 236, 220, 0.75);
}
.stc-fab-quote__label span { color: var(--wp--preset--color--amber, #f5a623); }

.stc-fab-quote__input,
.stc-fab-quote__select,
.stc-fab-quote__textarea {
	width: 100%;
	background: rgba(244, 236, 220, 0.06);
	border: 1px solid rgba(244, 236, 220, 0.14);
	border-radius: 8px;
	color: var(--wp--preset--color--paper, #f4ecdc);
	font-size: 0.95rem;
	padding: 0.65rem 0.9rem;
	outline: none;
	transition: border-color 0.18s;
	font-family: inherit;
}
.stc-fab-quote__input:focus,
.stc-fab-quote__select:focus,
.stc-fab-quote__textarea:focus {
	border-color: var(--wp--preset--color--amber, #f5a623);
	box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
}
.stc-fab-quote__select option { background: #1a1a1a; }
.stc-fab-quote__textarea { resize: vertical; min-height: 150px; }

.stc-fab-quote__upload-zone {
	position: relative;
	border: 2px dashed rgba(244, 236, 220, 0.15);
	border-radius: 12px;
	cursor: pointer;
	transition: border-color 0.2s;
	overflow: hidden;
	min-height: 120px;
}
.stc-fab-quote__upload-zone.is-dragover { border-color: var(--wp--preset--color--amber, #f5a623); }
.stc-fab-quote__file-input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}
.stc-fab-quote__upload-prompt {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem 1rem;
	text-align: center;
	color: rgba(244, 236, 220, 0.4);
	pointer-events: none;
}
.stc-fab-quote__upload-prompt svg { margin-bottom: 0.5rem; }
.stc-fab-quote__upload-prompt p { margin: 0; font-size: 0.9rem; }
.stc-fab-quote__upload-hint { font-size: 0.75rem !important; margin-top: 0.25rem !important; }
.stc-fab-quote__previews { display: flex; flex-wrap: wrap; gap: 10px; padding: 12px; position: relative; z-index: 1; }
.stc-fab-quote__preview {
	position: relative;
	width: 100px;
	height: 80px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid rgba(244, 236, 220, 0.1);
}
.stc-fab-quote__preview img { width: 100%; height: 100%; object-fit: cover; }
.stc-fab-quote__preview-remove {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 22px;
	height: 22px;
	background: rgba(0,0,0,0.65);
	color: #fff;
	border: none;
	border-radius: 50%;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}
.stc-fab-quote__error { color: #f4a0a0; font-size: 0.9rem; margin: 0; }
.stc-fab-quote__success {
	background: rgba(60, 200, 100, 0.08);
	border: 1px solid rgba(60, 200, 100, 0.2);
	border-radius: 12px;
	padding: 2rem 1.5rem;
	max-width: 600px;
}
.stc-fab-quote__success-title { font-size: 1.2rem; font-weight: 700; margin: 0 0 0.5rem; }
.stc-fab-quote__actions { display: flex; flex-direction: column; gap: 0.5rem; }
.stc-fab-quote__submit { align-self: flex-start; }
.stc-fab-quote__disclaimer { font-size: 0.8rem; color: rgba(244,236,220,0.45); margin: 0; }
.stc-fab-quote__hp { position: absolute; left: -9999px; }

/* Admin status badges */
.stc-fab-status {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 0.75rem;
	text-transform: capitalize;
}
.stc-fab-status--new       { background: rgba(37,99,235,0.15); color: #60a5fa; }
.stc-fab-status--reviewing { background: rgba(217,119,6,0.15); color: #fbbf24; }
.stc-fab-status--quoted    { background: rgba(124,58,237,0.15); color: #c4b5fd; }
.stc-fab-status--accepted  { background: rgba(22,163,74,0.15); color: #86efac; }
.stc-fab-status--declined  { background: rgba(220,38,38,0.15); color: #fca5a5; }
.stc-fab-status--completed { background: rgba(244,236,220,0.08); color: rgba(244,236,220,0.5); }

@media (max-width: 800px) {
	.stc-fab-landing__cap-grid { grid-template-columns: repeat(2, 1fr); }
	.stc-fab-landing__step-rail { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 600px) {
	.stc-fab-landing__cap-grid { grid-template-columns: 1fr; }
	.stc-fab-landing__faq-grid { grid-template-columns: 1fr; }
	.stc-fab-quote__row--2col { flex-direction: column; }
}


/* ============================================================
   TRUCK FITMENT — PDP COMPATIBILITY DISPLAY
   ============================================================ */

/* Compact "Fits:" summary line below product meta */
.stc-fitment-summary {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0 6px;
	font-size: 0.82rem;
	padding: 0.5rem 0;
	border-top: 1px solid rgba(244, 236, 220, 0.08);
	margin-top: 0.5rem;
}
.stc-fitment-summary__label {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(244, 236, 220, 0.5);
	flex-shrink: 0;
}
.stc-fitment-summary__value {
	color: rgba(244, 236, 220, 0.85);
	line-height: 1.4;
}
.stc-fitment-summary__value em {
	font-style: normal;
	color: rgba(244, 236, 220, 0.6);
}
.stc-fitment-summary__years {
	color: rgba(244, 236, 220, 0.45);
	font-size: 0.78rem;
}
.stc-fitment-summary--universal .stc-fitment-summary__value {
	color: var(--wp--preset--color--amber, #f5a623);
}

/* Compatibility tab content */
.stc-fitment-tab {
	padding: 1rem 0;
}
.stc-fitment-tab__universal {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	background: rgba(245, 166, 35, 0.06);
	border: 1px solid rgba(245, 166, 35, 0.2);
	border-radius: 10px;
}
.stc-fitment-tab__universal svg {
	flex-shrink: 0;
	color: var(--wp--preset--color--amber, #f5a623);
	margin-top: 2px;
}
.stc-fitment-tab__universal strong {
	display: block;
	margin-bottom: 4px;
}
.stc-fitment-tab__universal p {
	margin: 0;
	font-size: 0.9rem;
	color: rgba(244, 236, 220, 0.75);
}
.stc-fitment-tab__years {
	font-size: 0.875rem;
	color: rgba(244, 236, 220, 0.6);
	margin-bottom: 1rem;
}
.stc-fitment-tab__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 0.75rem;
}
.stc-fitment-tab__make-card {
	background: rgba(244, 236, 220, 0.04);
	border: 1px solid rgba(244, 236, 220, 0.08);
	border-radius: 8px;
	padding: 0.85rem 1rem;
}
.stc-fitment-tab__make-name {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--wp--preset--color--amber, #f5a623);
	margin: 0 0 0.5rem;
}
.stc-fitment-tab__model-list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.85rem;
	color: rgba(244, 236, 220, 0.8);
}
.stc-fitment-tab__model-list li {
	padding: 1px 0;
}
.stc-fitment-tab__all-models {
	font-size: 0.85rem;
	color: rgba(244, 236, 220, 0.5);
	margin: 0;
	font-style: italic;
}
.stc-fitment-tab__hint {
	margin-top: 1.25rem;
	font-size: 0.82rem;
	color: rgba(244, 236, 220, 0.45);
}

/* Fitment active banner on shop archive */
.stc-fitment-banner {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(245, 166, 35, 0.08);
	border: 1px solid rgba(245, 166, 35, 0.18);
	border-radius: 8px;
	padding: 0.6rem 1rem;
	margin-bottom: 1.25rem;
	font-size: 0.875rem;
}
.stc-fitment-banner__icon { color: var(--wp--preset--color--amber, #f5a623); flex-shrink: 0; }
.stc-fitment-banner__msg { flex: 1; color: rgba(244,236,220,0.85); }
.stc-fitment-banner__cta {
	color: var(--wp--preset--color--amber, #f5a623);
	text-decoration: none;
	white-space: nowrap;
	font-size: 0.8rem;
}
.stc-fitment-banner__cta:hover { text-decoration: underline; }
