/* ==========================================================================
   Jetour — Car page (single-cars.php), view key "car".
   Ported 1:1 from Jetour Core modules/cars/assets/css/car-page.css: the
   approved re-creation of the Elementor "Car Inner Page" (#604) — crossfading
   colour switch, tweened prices, counted-up specs, momentum carousel with a
   rolling 01/03 counter, width-tweened expanding cards, scroll reveals.
   Fonts/colours/easings come from base.css tokens; reveal CSS/JS is global
   (app.js) — only the distance and timing are tuned here to the approved values.
   Breakpoints: mobile ≤767 · tablet 768–1024 · desktop ≥1025.
   Every selector is scoped to .jc-car (the <main> of the page).
   ========================================================================== */

/* ------------------------------------------------------------------ *
 * Tokens + resets (page aliases of the theme tokens; the JS reads --jc-peek / --jc-gap)
 * ------------------------------------------------------------------ */
.jc-car {
	--jc-teal: var(--jt-teal);
	--jc-teal-hover: var(--jt-teal);  /* the white CTA / PDF buttons turn brand teal on hover (approved) */
	--jc-ink: var(--jt-black);
	--jc-bg: var(--jt-bg-soft);       /* hero band (#F3F3F3) */
	--jc-bg-2: var(--jt-hair);        /* key points / features bands (#ECECEC — same value as the hair-line token) */
	--jc-ease: var(--jt-ease);
	--jc-ease-out: var(--jt-ease-out);
	--jc-ease-cards: var(--jt-ease-cards); /* expanding cards width tween */
	/* approved neutrals of the page that have no exact base token */
	--jc-ink-2: #333;                 /* price, swatch names */
	--jc-grey: #999;                  /* old price, swatch hover ring */
	--jc-pill-bg: #E2E2E2;            /* currency pill */
	--jc-caption-ink: #2F2F2F;        /* key point captions */
	--jc-rule: #BEBEBE;               /* spec row rule (mobile) */
	--jc-pdf-line: #F8F8F8;           /* spec-sheet button border */
	--jc-peek: 350px;
	--jc-gap: 10px;

	display: block;
	width: 100%;
	overflow-x: clip;
	font-family: var(--jt-font-sans);
	color: var(--jc-ink);
	background: var(--jt-bg);
}
.jc-car img { display: block; max-width: 100%; height: auto; border: 0; }
.jc-car h1, .jc-car h2, .jc-car p { margin: 0; padding: 0; }
.jc-car a, .jc-car a:hover, .jc-car a:focus, .jc-car a:active, .jc-car a:visited { text-decoration: none; color: inherit; }
/* Blanket button reset for this page's own controls. Shared components opt out: this rule is
   more specific than a single class, so without the :not() it would strip .jt-arrow's circle,
   blur and ring. */
.jc-car button:not(.jt-arrow):not(.jt-btn), .jc-car button:not(.jt-arrow):not(.jt-btn):hover, .jc-car button:not(.jt-arrow):not(.jt-btn):focus, .jc-car button:not(.jt-arrow):not(.jt-btn):active {
	font: inherit; line-height: inherit; color: inherit; letter-spacing: 0; text-transform: none;
	background: none; border: 0; border-radius: 0; box-shadow: none; padding: 0; margin: 0;
	cursor: pointer; -webkit-tap-highlight-color: transparent; -webkit-appearance: none; appearance: none;
}
.jc-car button:focus:not(:focus-visible) { outline: 0; }
/* Focus is the site-wide ring from base.css; nothing here re-adds a native outline. */
.jc-car .jc-h2 { font: 900 32px/1.2 var(--jt-font-display); color: var(--jc-ink); text-align: center; }

/* Reveals: global [data-reveal] (base.css / app.js) with the approved distance and timing */
.jc-car [data-reveal] { transition-duration: 0.9s, 1s; transition-timing-function: var(--jc-ease-out); }
.jc-car [data-reveal="left"] { transform: translate3d(-40px, 0, 0); }
.jc-car [data-reveal="right"] { transform: translate3d(40px, 0, 0); }
.jc-car [data-reveal="up"] { transform: translate3d(0, 40px, 0); }
.jc-car [data-reveal].is-in { opacity: 1; transform: none; }
.no-js .jc-car [data-reveal] { opacity: 1; transform: none; }

/* ------------------------------------------------------------------ *
 * 1. Hero (sits under the fixed header: the header's spacer is pulled back
 *    so the band starts at the top of the page, as on the approved page)
 * ------------------------------------------------------------------ */
.jc-car .jc-hero {
	display: flex;
	align-items: center;
	min-height: calc(100vh - 160px);
	margin-top: calc(-1 * var(--jt-header-h));
	padding: 100px 40px 40px;
	background: var(--jc-bg);
	overflow: hidden;
}
.jc-car .jc-hero__inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	gap: 0;
}
.jc-car .jc-hero__info {
	position: relative;
	z-index: 5;
	flex: 0 1 60%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 50px;
	padding: 50px 0;
}
.jc-car .jc-hero__head { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.jc-car .jc-hero__title {
	font: 700 42px/1 var(--jt-font-accent-sc);
	letter-spacing: 0;
	color: var(--jc-ink);
	margin-bottom: -8px; /* Elementor set a 14px line box on the 42px title: keep the pill close */
}

.jc-car .jc-guarantee {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.46);
	border-radius: var(--jt-radius-md);
	padding: 0 8px 0 0;
}
.jc-car .jc-guarantee__icon { width: 30px; height: auto; flex: 0 0 auto; }
.jc-car .jc-guarantee__text { display: flex; flex-direction: column; gap: 4px; margin-bottom: -2px; }
.jc-car .jc-guarantee__label { font: 700 14px/14px var(--jt-font-sans); color: var(--jc-ink); }
.jc-car .jc-guarantee__value { font: 400 14px/1.2 var(--jt-font-sans); color: var(--jc-ink); }

.jc-car .jc-pricing { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.jc-car .jc-price-row {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 30px;
	padding: 0 18px 0 0;
	background: #fff;
	border-radius: var(--jt-radius-pill);
	margin-bottom: 10px;
}
.jc-car .jc-currency { display: inline-flex; gap: 6px; padding: 3px 4px; background: var(--jc-pill-bg); border-radius: var(--jt-radius-pill); }
.jc-car .jc-currency__btn {
	width: 30px; height: 30px;
	display: grid; place-items: center;
	border-radius: 50%;                      /* a circular toggle, not a rectangular button */
	border: var(--jt-border-w) solid var(--jc-ink);
	background: transparent;
	color: var(--jc-ink);
	font: 700 14px/1 var(--jt-font-sans);
	transition: background-color 0.28s var(--jc-ease), color 0.28s var(--jc-ease), transform 0.28s var(--jc-ease-out);
}
.jc-car .jc-currency__btn:hover:not(.is-active) { transform: scale(1.08); }
.jc-car .jc-currency__btn:active { transform: scale(0.94); }
.jc-car .jc-currency__btn.is-active { background: var(--jc-ink); color: #fff; }
.jc-car .jc-price {
	display: flex;
	align-items: center;
	gap: 15px;
	font-family: var(--jt-font-accent);
	font-size: 24px;
	line-height: 1.2;
	color: var(--jc-ink-2);
	white-space: nowrap;
}
.jc-car .jc-price__now { font-weight: 900; color: var(--jc-ink-2); }
.jc-car .jc-price__now--sale { color: var(--jc-teal); }
.jc-car .jc-price__old { font-weight: 300; color: var(--jc-grey); text-decoration: line-through; }
.jc-car .jc-price__num { display: inline-block; font-variant-numeric: tabular-nums; min-width: 4.4ch; }
.jc-car .jc-price.is-changing .jc-price__num { animation: jc-price-pop 0.5s var(--jc-ease-out); }
@keyframes jc-price-pop { 0% { transform: translateY(3px); opacity: 0.55; } 100% { transform: none; opacity: 1; } }

.jc-car .jc-badge {
	display: inline-block;
	font: 700 14px/14px var(--jt-font-accent-sc);
	color: var(--jc-teal);
	background: #fff;
	padding: 4px;
	border-radius: 2px;
}

/* Spec counters (4 columns of a 600px row) */
.jc-car .jc-specs { display: flex; flex-wrap: nowrap; width: 600px; max-width: 100%; border-top: 0 solid var(--jc-rule); }
.jc-car .jc-spec { display: flex; flex-direction: column; min-width: 0; }
.jc-car .jc-spec--1 { flex: 0 1 16%; }
.jc-car .jc-spec--2 { flex: 0 1 24%; }
.jc-car .jc-spec--3 { flex: 0 1 22%; }
.jc-car .jc-spec--4 { flex: 0 1 40%; }
.jc-car .jc-spec__value { display: flex; align-items: center; gap: 5px; }
.jc-car .jc-count { font: 700 20px/1.2 var(--jt-font-display); color: var(--jc-ink); font-variant-numeric: tabular-nums; }
.jc-car .jc-spec__unit { font: 600 12px/14px var(--jt-font-display); color: var(--jc-ink); }
.jc-car .jc-spec__label { font: 500 14px/16px var(--jt-font-sans); color: var(--jc-ink); margin-top: 6px; }

/* Spec sheet PDF (mobile only, as on the Elementor page) */
.jc-car .jc-pdf {
	display: none;
	align-items: center;
	justify-content: center;
	gap: var(--jt-btn-gap);
	width: 100%;
	height: var(--jt-btn-h-sm);
	padding: 0 var(--jt-btn-px-sm);
	background: rgba(255, 255, 255, 0.99);
	border: var(--jt-border-w) solid var(--jc-pdf-line);
	border-radius: var(--jt-radius);
	color: var(--jt-ink);
	font-family: var(--jt-font-sans); font-size: var(--jt-btn-fs-sm); font-weight: var(--jt-btn-fw); line-height: 1; letter-spacing: var(--jt-btn-ls);
	transition: background-color var(--jt-btn-dur) var(--jt-ease), color var(--jt-btn-dur) var(--jt-ease), border-color var(--jt-btn-dur) var(--jt-ease);
}
.jc-car .jc-pdf svg { width: 14px; height: 14px; flex: 0 0 auto; }
.jc-car .jc-pdf:hover, .jc-car .jc-pdf:focus-visible { background: var(--jc-teal-hover); border-color: var(--jc-teal-hover); color: #fff; }

/* Colour swatches */
.jc-car .jc-swatches { display: flex; align-items: flex-start; }
.jc-car .jc-swatches--desktop { margin-left: -10px; }
.jc-car .jc-swatches-scroller { display: none; }
.jc-car .jc-swatch {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	min-width: 80px;
	padding: 0 4px;
	transition: transform 0.35s var(--jc-ease-out);
}
.jc-car .jc-swatch__dot {
	position: relative;
	width: 60px; height: 60px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--jt-line-2);
	background: #fff;
	transition: border-color 0.3s var(--jc-ease), transform 0.4s var(--jc-ease-out), box-shadow 0.3s var(--jc-ease);
}
.jc-car .jc-swatch__dot img { width: 100%; height: 100%; object-fit: cover; }
.jc-car .jc-swatch__name { font: 500 12px/1.3 var(--jt-font-sans); color: var(--jc-ink-2); text-align: center; white-space: nowrap; transition: color 0.25s; }
.jc-car .jc-swatch:hover .jc-swatch__dot { border-color: var(--jc-grey); transform: translateY(-2px); }
.jc-car .jc-swatch.is-active .jc-swatch__dot { border-color: var(--jc-teal); box-shadow: var(--jt-ring-teal); }
.jc-car .jc-swatch.is-active .jc-swatch__name { color: var(--jc-ink); }
.jc-car .jc-swatch:active .jc-swatch__dot { transform: scale(0.94); }

/* Colour card + car render */
.jc-car .jc-hero__visual {
	position: relative;
	z-index: 0;
	flex: 0 1 50%;
	min-width: 0;
	height: 500px;
	display: flex;
	justify-content: flex-end; /* the original renders the card flush with the content edge */
	align-items: flex-end;
}
.jc-car .jc-hero__card {
	position: relative;
	width: 300px;
	height: 500px;
	border-radius: var(--jt-radius-lg);
	overflow: hidden;
	background: var(--jt-dark);
	transform: translateZ(0);
	isolation: isolate;
}
.jc-car .jc-hero__card-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1.04);
	transition: opacity 0.7s var(--jc-ease), transform 1.2s var(--jc-ease-out);
}
.jc-car .jc-hero__card-bg.is-active { opacity: 1; transform: none; }
.jc-car .jc-hero__car {
	position: absolute;
	left: auto;
	right: -135px;
	bottom: -60px;
	width: 910px;   /* measured from the original: the render spans ~2.3 card widths */
	max-width: none;
	z-index: 2;
	aspect-ratio: 2 / 1;
	pointer-events: none;
}
.jc-car .jc-hero__car-img {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	opacity: 0;
	transform: translate3d(28px, 0, 0) scale(0.985);
	transition: opacity 0.55s var(--jc-ease), transform 0.8s var(--jc-ease-out);
	will-change: opacity, transform;
}
.jc-car .jc-hero__car-img.is-active { opacity: 1; transform: none; }
.jc-car .jc-hero__car-img.is-leaving { transform: translate3d(-24px, 0, 0) scale(0.985); }

/* ------------------------------------------------------------------ *
 * 2. Video (only when the car has one)
 * ------------------------------------------------------------------ */
.jc-car .jc-video { overflow: hidden; background: var(--jt-black); }
.jc-car .jc-video__player { display: block; width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }

/* ------------------------------------------------------------------ *
 * 3. Three key points
 * ------------------------------------------------------------------ */
.jc-car .jc-points { display: flex; gap: 20px; background: var(--jc-bg-2); overflow: hidden; }
.jc-car .jc-points__col { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 20px; }
.jc-car .jc-points__col--middle { padding-top: 50px; }
.jc-car .jc-points__stack { display: flex; flex-direction: column; gap: 20px; }
.jc-car .jc-points__img { width: 100%; height: 600px; object-fit: cover; object-position: center; }
.jc-car .jc-points__caption { font: 500 14px/20px var(--jt-font-display); color: var(--jc-caption-ink); text-align: center; }

/* ------------------------------------------------------------------ *
 * 4. Feature carousel (centre mode, 350px peek, looping) + 01/03
 * ------------------------------------------------------------------ */
.jc-car .jc-features { position: relative; background: var(--jc-bg-2); padding: 100px 0; overflow: hidden; }
.jc-car .jc-features__head { display: none; }
.jc-car .jc-carousel { position: relative; }
.jc-car .jc-carousel__viewport { overflow: hidden; cursor: grab; }
.jc-car .jc-carousel__viewport.is-dragging { cursor: grabbing; }
.jc-car .jc-carousel__track { display: flex; align-items: flex-start; touch-action: pan-y; will-change: transform; }
.jc-car .jc-carousel__item { flex: 0 0 auto; width: var(--jc-item-w, 100%); margin-right: var(--jc-gap); user-select: none; -webkit-user-drag: none; }
.jc-car .jc-carousel__media {
	position: relative;
	height: 500px;
	overflow: hidden;
	background: var(--jt-bg-muted);
	transition: transform 0.9s var(--jc-ease-out), filter 0.6s var(--jc-ease);
}
.jc-car .jc-carousel__img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; -webkit-user-drag: none; }
.jc-car .jc-carousel__item:not(.is-current) .jc-carousel__media { filter: brightness(0.94); }
.jc-car .jc-carousel__title { padding: 10px; font: 500 14px/1.4 var(--jt-font-sans); color: var(--jc-ink); text-align: center; transition: opacity 0.4s var(--jc-ease); }
.jc-car .jc-carousel__item:not(.is-current) .jc-carousel__title { opacity: 0.72; }
/* Position only — the circle, blur and thin chevron come from .jt-arrow (components.css). */
.jc-car .jc-carousel__arrow { position: absolute; top: 220px; z-index: 2; --arrow-size: 56px; --arrow-ink: var(--jc-ink); }
.jc-car .jc-carousel__arrow--prev { left: 0; }
.jc-car .jc-carousel__arrow--next { right: 0; }
.jc-car .jc-carousel__arrow:active { transform: scale(0.95); }
.jc-car .jc-counter { display: flex; align-items: center; justify-content: center; gap: 2px; font-family: var(--jt-font-sans); font-size: 32px; line-height: 1; color: var(--jc-ink); }
.jc-car .jc-counter--foot { margin-top: -10px; }
.jc-car .jc-counter__cur { font-weight: 900; display: inline-block; font-variant-numeric: tabular-nums; }
.jc-car .jc-counter__sep { font-family: var(--jt-font-caps); font-weight: 300; color: var(--jt-black); }
.jc-car .jc-counter__total { font-weight: 100; font-variant-numeric: tabular-nums; }
.jc-car .jc-counter__cur.is-rolling { animation: jc-roll 0.45s var(--jc-ease-out); }
@keyframes jc-roll { 0% { transform: translateY(0.35em); opacity: 0; } 100% { transform: none; opacity: 1; } }
.jc-car .jc-features__nav { display: none; }

/* ------------------------------------------------------------------ *
 * 5. Comfort — expanding cards (real <button>s; the photo is an <img> cover layer)
 * ------------------------------------------------------------------ */
.jc-car .jc-comfort { padding: 50px 40px; }
.jc-car .jc-comfort__title { margin-bottom: 20px; }
.jc-car .jc-expand { display: flex; align-items: stretch; gap: 10px; width: 100%; height: 550px; }
.jc-car .jc-expand__card {
	position: relative;
	flex: 0 0 auto;
	width: 100px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 10px;
	border-radius: 0;
	background-color: var(--jt-black);
	color: #fff;
	text-align: center;
	cursor: pointer;
	transition: width 0.8s var(--jc-ease-cards), padding 0.8s var(--jc-ease-cards);
	transform: translateZ(0);
}
.jc-car .jc-expand__card.is-active {
	width: calc(100% - (var(--jc-cards, 3) - 1) * 110px);
	padding: 20px 20px 30px;
	cursor: default;
}
.jc-car .jc-expand__img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; pointer-events: none; }
.jc-car .jc-expand__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(2, 2, 2, 0) 29%, rgba(0, 0, 0, 0.92) 100%); opacity: 0; transition: opacity 0.8s var(--jc-ease-cards); }
.jc-car .jc-expand__card.is-active .jc-expand__shade { opacity: 0.8; }
.jc-car .jc-expand__label { position: relative; z-index: 2; width: 100%; max-width: 550px; display: flex; justify-content: center; align-items: center; }
.jc-car .jc-expand__text {
	display: block;
	font: 300 16px/1.4 var(--jt-font-sans);
	letter-spacing: -0.5px;
	color: #fff;
	text-align: center;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.45s ease-out 0.05s, transform 0.55s var(--jc-ease-out) 0.05s;
	width: 0;
	white-space: nowrap;
	overflow: hidden;
}
.jc-car .jc-expand__card.is-active .jc-expand__text { opacity: 1; transform: none; width: auto; white-space: normal; overflow: visible; transition-delay: 0.42s; }

/* ------------------------------------------------------------------ *
 * 6. Test drive CTA (desktop & tablet; the page hides it on mobile)
 * ------------------------------------------------------------------ */
.jc-car .jc-cta { display: flex; min-height: 500px; background: var(--jt-dark); padding: 50px 40px 0; overflow: hidden; }
.jc-car .jc-cta__text { flex: 0 1 40%; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 20px; padding-top: 100px; }
.jc-car .jc-cta__title { text-align: left; color: #fff; }
.jc-car .jc-cta__lead { font: 400 14px/1.45 var(--jt-font-sans); color: #fff; max-width: 440px; }
/* Car page CTA — same object as every other button on the site; only its colours are local. */
.jc-car .jc-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--jt-btn-gap);
	height: var(--jt-btn-h-md);
	padding: 0 var(--jt-btn-px-md);
	border: var(--jt-border-w) solid var(--jc-teal);
	border-radius: var(--jt-radius);
	background: var(--jc-teal);
	color: #fff;
	font-family: var(--jt-font-sans);
	font-size: var(--jt-btn-fs-md);
	font-weight: var(--jt-btn-fw);
	line-height: 1;
	letter-spacing: var(--jt-btn-ls);
	transition:
		background-color var(--jt-btn-dur) var(--jt-ease),
		border-color var(--jt-btn-dur) var(--jt-ease),
		color var(--jt-btn-dur) var(--jt-ease);
}
.jc-car .jc-cta__btn:hover, .jc-car .jc-cta__btn:focus-visible { background: var(--jc-teal-hover); color: #fff; transform: translateY(-2px); box-shadow: var(--jt-shadow-teal); }
.jc-car .jc-cta__visual { flex: 1 1 60%; min-width: 0; display: flex; justify-content: flex-end; align-items: flex-end; }
.jc-car .jc-model { position: relative; z-index: 3; display: block; flex: 0 0 auto; width: 900px; max-width: none; margin-right: -100px; }
.jc-car .jc-model__photo { position: relative; z-index: 3; width: 100%; height: 300px; object-fit: contain; object-position: center; transition: transform 0.7s var(--jc-ease-out); }
.jc-car .jc-model__wheel { position: absolute; z-index: 5; width: 121px; height: 121px; transition: transform 0.7s var(--jc-ease-out); }
.jc-car .jc-model__wheel--front { left: 159px; top: 151px; }
.jc-car .jc-model__wheel--rear { left: 577px; top: 153px; }
.jc-car .jc-model:hover .jc-model__photo, .jc-car .jc-model:focus-visible .jc-model__photo { transform: translateX(-100px); }
.jc-car .jc-model:hover .jc-model__wheel, .jc-car .jc-model:focus-visible .jc-model__wheel { transform: translateX(-100px) rotate(-60deg); }

/* ------------------------------------------------------------------ *
 * 7. Tablet (768–1024)
 * ------------------------------------------------------------------ */
@media (max-width: 1024px) {
	.jc-car { --jc-peek: 120px; }
	.jc-car .jc-hero__inner { flex-direction: column-reverse; align-items: stretch; }
	.jc-car .jc-hero__info { flex: 0 0 auto; width: 100%; }
	.jc-car .jc-hero__visual { flex: 0 0 auto; width: 100%; justify-content: center; }
	.jc-car .jc-hero__car { left: -100px; right: -100px; width: auto; bottom: -60px; }
	.jc-car .jc-swatches--desktop { display: none; }
	.jc-car .jc-swatches-scroller { display: block; position: relative; z-index: 30; overflow-x: auto; overflow-y: hidden; padding-top: 20px; margin-left: -20px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
	.jc-car .jc-swatches-scroller::-webkit-scrollbar { display: none; }
	.jc-car .jc-swatches--mobile { min-width: max-content; padding: 4px 20px 4px 0; }
	.jc-car .jc-model { width: 700px; margin-right: -140px; }
	.jc-car .jc-model__wheel--front { left: 124px; top: 117px; width: 94px; height: 94px; }
	.jc-car .jc-model__wheel--rear { left: 449px; top: 119px; width: 94px; height: 94px; }
	.jc-car .jc-model__photo { height: 233px; }
}

/* ------------------------------------------------------------------ *
 * 8. Mobile (≤767)
 * ------------------------------------------------------------------ */
@media (max-width: 767px) {
	.jc-car { --jc-peek: 0px; --jc-gap: 0px; }
	.jc-car .jc-h2 { font-size: 24px; }

	.jc-car .jc-hero { padding: 80px 20px 0; min-height: 0; }
	.jc-car .jc-hero__info { gap: 30px; padding: 20px 0 30px; z-index: 32; }
	.jc-car .jc-hero__head { gap: 0; }
	.jc-car .jc-hero__title { font-size: 32px; line-height: 36px; margin-bottom: 0; }
	.jc-car .jc-guarantee { margin-top: 20px; }
	.jc-car .jc-guarantee__text { width: 150px; gap: 6px; }
	.jc-car .jc-price-row { margin: 20px 0 0; }
	.jc-car .jc-badge { line-height: 36px; padding: 0 10px; }
	.jc-car .jc-specs { width: 100%; flex-wrap: wrap; justify-content: space-between; row-gap: 30px; border-top-width: var(--jt-border-w); padding-top: 30px; }
	.jc-car .jc-spec--1, .jc-car .jc-spec--3 { flex-basis: 40%; }
	.jc-car .jc-spec--2, .jc-car .jc-spec--4 { flex-basis: 60%; }
	.jc-car .jc-pdf { display: flex; }
	.jc-car .jc-swatches-scroller { padding-top: 10px; }
	.jc-car .jc-swatch { min-width: 70px; }
	.jc-car .jc-swatch__dot { width: 50px; height: 50px; }

	.jc-car .jc-hero__visual { height: 500px; }
	.jc-car .jc-hero__card { width: 100%; }
	.jc-car .jc-hero__car { left: -50px; right: -50px; width: auto; bottom: 0; }

	.jc-car .jc-video__player { aspect-ratio: 9 / 16; }

	.jc-car .jc-points { flex-direction: column; gap: 30px; padding-top: 30px; }
	.jc-car .jc-points__col { gap: 30px; }
	.jc-car .jc-points__col--middle { order: -1; padding-top: 0; }
	.jc-car .jc-points__stack { flex-direction: column-reverse; gap: 30px; }
	.jc-car .jc-points__img { height: 280px; }
	.jc-car .jc-points__caption { margin-bottom: 12px; }
	.jc-car .jc-points__col--last { padding-bottom: 20px; }

	.jc-car .jc-features { background: var(--jc-bg); padding: 30px 10px; }
	.jc-car .jc-features__head { display: flex; align-items: center; justify-content: space-between; gap: 9px; margin-bottom: 20px; }
	.jc-car .jc-features__title { font: 400 24px/1.2 var(--jt-font-display); color: var(--jc-ink); }
	.jc-car .jc-counter--head { font-family: var(--jt-font-display); font-size: 24px; }
	.jc-car .jc-counter--head .jc-counter__sep { font-family: var(--jt-font-display); }
	.jc-car .jc-counter--foot { display: none; }
	.jc-car .jc-carousel__arrow { display: none; }
	.jc-car .jc-carousel__media { height: 220px; }
	.jc-car .jc-carousel__title { padding: 10px 0 0; text-align: left; font: 300 14px/1.4 var(--jt-font-caps); } /* the source's "TBCContracticaCAPS-Medium" at 400 resolved to its Light file = Mark GEO CAPS 300 */
	.jc-car .jc-carousel__item:not(.is-current) .jc-carousel__media { filter: none; }
	.jc-car .jc-features__nav { display: flex; gap: 15px; margin-top: 20px; }
	.jc-car .jc-features__navbtn { --arrow-size: 38px; --arrow-ink: var(--jc-ink); }
	.jc-car .jc-features__navbtn:active { transform: scale(0.94); }

	.jc-car .jc-comfort { padding: 50px 10px; }
	.jc-car .jc-cta { display: none; }
}

/* Expanding cards collapse to a stack below 600px (the widget's own breakpoint) */
@media (max-width: 600px) {
	.jc-car .jc-expand { display: grid; grid-template-columns: 1fr; gap: 10px; height: auto; }
	.jc-car .jc-expand__card, .jc-car .jc-expand__card.is-active { width: 100%; height: 80px; padding: 10px; transition: height 0.7s var(--jc-ease-cards), padding 0.7s var(--jc-ease-cards); }
	.jc-car .jc-expand__card.is-active { height: 300px; padding: 20px 20px 30px; }
	.jc-car .jc-expand__text { font-size: 14px; }
}

/* ------------------------------------------------------------------ *
 * 9. Reduced motion (after the scoped reveal rules so it outranks them)
 * ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
	.jc-car *, .jc-car *::before, .jc-car *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
	.jc-car [data-reveal] { opacity: 1; transform: none; transition: none; }
	.jc-car .jc-carousel__track { will-change: auto; }
}
