/* ==========================================================================
   ZOOMSHOP — Main Stylesheet
   Aesthetic: Midnight + Electric Lime. Bold, automotive, modern.
   ========================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
	/* Palette */
	--zs-ink:        #0a0e1a;          /* near-black navy */
	--zs-ink-2:      #11172a;          /* slightly lifted */
	--zs-ink-3:      #1a2238;          /* card surface on dark */
	--zs-cream:      #f5f1e8;          /* warm off-white */
	--zs-paper:      #ffffff;
	--zs-bone:       #ece7d8;          /* muted cream for dividers */
	--zs-volt:       #d4ff3a;          /* electric lime — the signature */
	--zs-volt-deep:  #b8e022;
	--zs-ember:      #ff5a1f;          /* warm orange accent */
	--zs-fog:        #6b7280;
	--zs-fog-2:      #9ca3af;
	--zs-line:       rgba(245, 241, 232, 0.12);
	--zs-line-light: rgba(10, 14, 26, 0.10);

	/* Type */
	--zs-display: 'Anton', 'Impact', 'Helvetica Neue', sans-serif;
	--zs-body:    'DM Sans', system-ui, -apple-system, sans-serif;
	--zs-mono:    'JetBrains Mono', 'SF Mono', Menlo, monospace;

	/* Layout */
	--zs-radius:    14px;
	--zs-radius-lg: 22px;
	--zs-radius-sm: 8px;
	--zs-container: 1280px;
	--zs-gutter:    clamp(20px, 4vw, 48px);

	/* Motion */
	--zs-ease:      cubic-bezier(.2, .7, .2, 1);
	--zs-ease-out:  cubic-bezier(.16, 1, .3, 1);
}

/* ---------- 2. BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--zs-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--zs-ink);
	background: var(--zs-cream);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--zs-ink); text-decoration: none; transition: color .2s var(--zs-ease); }
a:hover { color: var(--zs-volt-deep); }

p { margin: 0 0 1em; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--zs-display);
	font-weight: 400;
	letter-spacing: 0.01em;
	line-height: 0.95;
	margin: 0 0 0.4em;
	text-transform: uppercase;
}

.zs-container {
	max-width: var(--zs-container);
	margin: 0 auto;
	padding-left: var(--zs-gutter);
	padding-right: var(--zs-gutter);
}

.zs-screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px; width: 1px;
	overflow: hidden; word-wrap: normal !important;
}

.zs-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--zs-mono);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--zs-fog);
}
.zs-eyebrow::before {
	content: '';
	width: 24px;
	height: 2px;
	background: var(--zs-volt-deep);
}

.is-dark .zs-eyebrow { color: var(--zs-fog-2); }
.is-dark .zs-eyebrow::before { background: var(--zs-volt); }

/* ---------- 3. BUTTONS ---------- */
.zs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 26px;
	font-family: var(--zs-body);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.02em;
	border: 2px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	transition: transform .25s var(--zs-ease), background .25s var(--zs-ease), color .25s var(--zs-ease), border-color .25s var(--zs-ease), box-shadow .25s var(--zs-ease);
	white-space: nowrap;
	text-decoration: none;
}
.zs-btn:hover { transform: translateY(-2px); }
.zs-btn .zs-arrow {
	transition: transform .25s var(--zs-ease);
}
.zs-btn:hover .zs-arrow { transform: translateX(4px); }

.zs-btn--primary {
	background: var(--zs-volt);
	color: var(--zs-ink);
	border-color: var(--zs-volt);
	box-shadow: 0 6px 0 var(--zs-volt-deep);
}
.zs-btn--primary:hover {
	background: var(--zs-volt-deep);
	color: var(--zs-ink);
	box-shadow: 0 8px 0 #95b81b;
}

.zs-btn--ink {
	background: var(--zs-ink);
	color: var(--zs-cream);
	border-color: var(--zs-ink);
}
.zs-btn--ink:hover {
	background: #000;
	color: var(--zs-volt);
}

.zs-btn--ghost {
	background: transparent;
	color: var(--zs-ink);
	border-color: var(--zs-ink);
}
.zs-btn--ghost:hover {
	background: var(--zs-ink);
	color: var(--zs-cream);
}

.is-dark .zs-btn--ghost {
	color: var(--zs-cream);
	border-color: var(--zs-cream);
}
.is-dark .zs-btn--ghost:hover {
	background: var(--zs-volt);
	color: var(--zs-ink);
	border-color: var(--zs-volt);
}

.zs-btn--small { padding: 10px 18px; font-size: 13px; }

/* ---------- 4. HEADER ---------- */
.zs-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--zs-ink);
	color: var(--zs-cream);
	border-bottom: 1px solid var(--zs-line);
}
.zs-header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 32px;
	min-height: 76px;
}
.zs-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--zs-cream);
	font-family: var(--zs-display);
	font-size: 26px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.zs-brand:hover { color: var(--zs-volt); }
.zs-brand-mark {
	width: 38px; height: 38px;
	display: grid; place-items: center;
	background: var(--zs-volt);
	color: var(--zs-ink);
	border-radius: 10px;
	font-family: var(--zs-display);
	font-size: 22px;
	transform: rotate(-6deg);
	box-shadow: 0 4px 0 var(--zs-volt-deep);
}
.zs-brand-mark::after { content: 'Z'; }
.zs-brand .zs-brand-text { font-weight: 400; }
.zs-brand .zs-brand-dot { color: var(--zs-volt); }

.zs-primary-nav {
	display: flex;
	justify-content: center;
}
.zs-primary-nav ul {
	display: flex;
	gap: 28px;
	list-style: none;
	padding: 0; margin: 0;
}
.zs-primary-nav a {
	color: var(--zs-cream);
	font-weight: 500;
	font-size: 15px;
	position: relative;
	padding: 6px 2px;
}
.zs-primary-nav a::after {
	content: '';
	position: absolute; left: 0; right: 0; bottom: 0;
	height: 2px;
	background: var(--zs-volt);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s var(--zs-ease);
}
.zs-primary-nav a:hover, .zs-primary-nav .current-menu-item > a {
	color: var(--zs-volt);
}
.zs-primary-nav a:hover::after,
.zs-primary-nav .current-menu-item > a::after { transform: scaleX(1); }

.zs-header-actions {
	display: flex; align-items: center; gap: 14px;
}
.zs-header-phone {
	display: none;
	font-family: var(--zs-mono);
	font-size: 14px;
	color: var(--zs-cream);
	letter-spacing: 0.02em;
}
.zs-header-phone strong { color: var(--zs-volt); font-weight: 700; }

.zs-menu-toggle {
	display: none;
	background: transparent;
	border: 1.5px solid var(--zs-line);
	color: var(--zs-cream);
	width: 44px; height: 44px;
	border-radius: 10px;
	cursor: pointer;
}
.zs-menu-toggle .bar { display: block; width: 18px; height: 2px; background: currentColor; margin: 3px auto; transition: transform .25s var(--zs-ease), opacity .25s var(--zs-ease); }
body.zs-menu-open .zs-menu-toggle .bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.zs-menu-open .zs-menu-toggle .bar:nth-child(2) { opacity: 0; }
body.zs-menu-open .zs-menu-toggle .bar:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (min-width: 1080px) {
	.zs-header-phone { display: inline-flex; align-items: center; gap: 8px; }
}

@media (max-width: 960px) {
	.zs-primary-nav {
		position: fixed;
		top: 76px; left: 0; right: 0;
		background: var(--zs-ink-2);
		border-top: 1px solid var(--zs-line);
		display: none;
		padding: 16px var(--zs-gutter) 24px;
	}
	.zs-primary-nav ul { flex-direction: column; gap: 0; }
	.zs-primary-nav li { border-bottom: 1px solid var(--zs-line); }
	.zs-primary-nav a { display: block; padding: 14px 0; font-size: 17px; }
	body.zs-menu-open .zs-primary-nav { display: block; }
	.zs-menu-toggle { display: block; }
}

/* ---------- 5. HERO ---------- */
.zs-hero {
	position: relative;
	background: var(--zs-ink);
	color: var(--zs-cream);
	overflow: hidden;
	padding: clamp(60px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
}
.zs-hero::before {
	content: '';
	position: absolute; inset: 0;
	background:
		radial-gradient(circle at 85% 20%, rgba(212, 255, 58, 0.18), transparent 45%),
		radial-gradient(circle at 10% 90%, rgba(255, 90, 31, 0.10), transparent 50%);
	pointer-events: none;
}
.zs-hero::after {
	content: '';
	position: absolute; inset: 0;
	background-image:
		linear-gradient(var(--zs-line) 1px, transparent 1px),
		linear-gradient(90deg, var(--zs-line) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
	pointer-events: none;
	opacity: 0.4;
}
.zs-hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: end;
}
.zs-hero-copy { position: relative; z-index: 2; }

.zs-hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 14px;
	border: 1px solid var(--zs-line);
	border-radius: 999px;
	font-family: var(--zs-mono);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--zs-volt);
	margin-bottom: 24px;
}
.zs-hero-tag .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--zs-volt); box-shadow: 0 0 0 4px rgba(212, 255, 58, 0.18); }

.zs-hero-title {
	font-size: clamp(54px, 9vw, 132px);
	letter-spacing: -0.02em;
	line-height: 0.88;
	margin: 0 0 24px;
}
.zs-hero-title em {
	font-style: normal;
	color: var(--zs-volt);
	position: relative;
	white-space: nowrap;
}
.zs-hero-title em::after {
	content: '';
	position: absolute;
	left: -4px; right: -4px; bottom: 0.06em;
	height: 0.18em;
	background: rgba(212, 255, 58, 0.25);
	z-index: -1;
}
.zs-hero-sub {
	font-size: clamp(16px, 1.6vw, 19px);
	color: var(--zs-fog-2);
	max-width: 520px;
	margin: 0 0 36px;
	line-height: 1.55;
}

.zs-hero-stats {
	display: flex; gap: 36px;
	border-top: 1px solid var(--zs-line);
	padding-top: 28px;
	margin-top: 36px;
}
.zs-hero-stat .num {
	font-family: var(--zs-display);
	font-size: 48px;
	color: var(--zs-volt);
	display: block;
	line-height: 1;
}
.zs-hero-stat .lbl {
	font-family: var(--zs-mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--zs-fog-2);
}

.zs-hero-visual {
	position: relative;
	z-index: 1;
}
.zs-hero-card {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: var(--zs-radius-lg);
	overflow: hidden;
	background: var(--zs-ink-3);
	box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.zs-hero-card img {
	width: 100%; height: 100%; object-fit: cover;
	transform: scale(1.05);
	transition: transform 6s linear;
}
.zs-hero-card:hover img { transform: scale(1.12); }
.zs-hero-card-overlay {
	position: absolute; inset: 0;
	display: flex; flex-direction: column; justify-content: space-between;
	padding: 24px;
	background: linear-gradient(180deg, rgba(10,14,26,0.4) 0%, transparent 30%, rgba(10,14,26,0.85) 100%);
	color: var(--zs-cream);
}
.zs-hero-card-tag {
	align-self: flex-start;
	background: var(--zs-volt);
	color: var(--zs-ink);
	font-family: var(--zs-mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 999px;
}
.zs-hero-card-meta .price {
	font-family: var(--zs-display);
	font-size: 36px;
	color: var(--zs-volt);
	line-height: 1;
}
.zs-hero-card-meta .name {
	font-family: var(--zs-display);
	font-size: 22px;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}
.zs-hero-card-meta .specs {
	font-family: var(--zs-mono);
	font-size: 12px;
	color: var(--zs-fog-2);
	letter-spacing: 0.06em;
	margin-top: 6px;
}

.zs-hero-floater {
	position: absolute;
	right: -30px; top: -30px;
	background: var(--zs-cream);
	color: var(--zs-ink);
	border-radius: 999px;
	padding: 18px 26px;
	font-family: var(--zs-display);
	font-size: 22px;
	letter-spacing: 0.02em;
	transform: rotate(8deg);
	box-shadow: 0 10px 30px rgba(0,0,0,0.4);
	display: flex; align-items: center; gap: 10px;
}
.zs-hero-floater::before {
	content: '★';
	color: var(--zs-ember);
}

/* Search bar */
.zs-search-bar {
	position: relative;
	z-index: 5;
	margin-top: -44px;
	margin-bottom: -44px;
	background: var(--zs-paper);
	border-radius: var(--zs-radius-lg);
	box-shadow: 0 24px 48px -12px rgba(10,14,26,0.18), 0 4px 12px rgba(10,14,26,0.06);
	padding: 18px;
	display: grid;
	grid-template-columns: repeat(4, 1fr) auto;
	gap: 8px;
}
.zs-search-field {
	display: flex; flex-direction: column;
	padding: 10px 16px;
	border-radius: var(--zs-radius);
	transition: background .2s var(--zs-ease);
	cursor: pointer;
	min-width: 0;
}
.zs-search-field + .zs-search-field { border-left: 1px solid var(--zs-line-light); }
.zs-search-field:hover { background: var(--zs-cream); }
.zs-search-field label {
	font-family: var(--zs-mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--zs-fog);
}
.zs-search-field select,
.zs-search-field input {
	border: none;
	background: transparent;
	font-family: var(--zs-body);
	font-size: 16px;
	font-weight: 500;
	color: var(--zs-ink);
	padding: 4px 0;
	width: 100%;
	min-width: 0;
}
.zs-search-field select:focus,
.zs-search-field input:focus { outline: none; }

.zs-search-submit {
	display: inline-flex; align-items: center; justify-content: center;
	width: 64px; height: 64px;
	background: var(--zs-volt);
	color: var(--zs-ink);
	border: none;
	border-radius: var(--zs-radius);
	cursor: pointer;
	transition: background .2s var(--zs-ease);
	align-self: center;
}
.zs-search-submit:hover { background: var(--zs-volt-deep); }
.zs-search-submit svg { width: 22px; height: 22px; }

@media (max-width: 880px) {
	.zs-hero-inner { grid-template-columns: 1fr; }
	.zs-hero-visual { display: none; }
	.zs-hero-stats { gap: 24px; }
	.zs-hero-stat .num { font-size: 36px; }
	.zs-search-bar {
		grid-template-columns: 1fr 1fr;
		gap: 0;
	}
	.zs-search-field + .zs-search-field { border-left: none; border-top: 1px solid var(--zs-line-light); }
	.zs-search-field:nth-child(2) { border-left: 1px solid var(--zs-line-light); border-top: none; }
	.zs-search-field:nth-child(odd) { border-left: none; }
	.zs-search-submit {
		grid-column: 1 / -1;
		width: 100%; height: 56px;
		margin-top: 8px;
	}
}

/* ---------- 6. SECTIONS ---------- */
.zs-section {
	padding: clamp(80px, 11vw, 140px) 0;
}
.zs-section--light { background: var(--zs-cream); }
.zs-section--paper { background: var(--zs-paper); }
.zs-section--dark { background: var(--zs-ink); color: var(--zs-cream); }
.zs-section--bone { background: var(--zs-bone); }

.is-dark { color: var(--zs-cream); }

.zs-section-head {
	display: grid;
	grid-template-columns: 1.4fr 0.6fr;
	gap: 40px;
	align-items: end;
	margin-bottom: 56px;
}
.zs-section-title {
	font-size: clamp(40px, 6vw, 84px);
	letter-spacing: -0.01em;
	line-height: 0.92;
	margin: 14px 0 0;
}
.zs-section-title em {
	font-style: normal;
	color: var(--zs-ember);
}
.is-dark .zs-section-title em { color: var(--zs-volt); }
.zs-section-link {
	font-family: var(--zs-mono);
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	justify-self: end;
	border-bottom: 2px solid currentColor;
	padding-bottom: 4px;
}

@media (max-width: 720px) {
	.zs-section-head { grid-template-columns: 1fr; gap: 16px; }
	.zs-section-link { justify-self: start; }
}

/* ---------- 7. BODY-TYPE BROWSE ---------- */
.zs-body-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 16px;
}
.zs-body-tile {
	display: flex; flex-direction: column; align-items: center;
	gap: 10px;
	padding: 24px 12px 20px;
	background: var(--zs-paper);
	border: 1.5px solid transparent;
	border-radius: var(--zs-radius);
	color: var(--zs-ink);
	transition: transform .25s var(--zs-ease), border-color .25s var(--zs-ease), background .25s var(--zs-ease);
	text-align: center;
}
.zs-body-tile:hover {
	transform: translateY(-4px);
	border-color: var(--zs-volt);
	background: var(--zs-paper);
	box-shadow: 0 12px 24px rgba(10,14,26,0.08);
	color: var(--zs-ink);
}
.zs-body-tile-icon {
	width: 64px; height: 32px;
	color: var(--zs-ink);
	transition: color .25s var(--zs-ease);
}
.zs-body-tile:hover .zs-body-tile-icon { color: var(--zs-volt-deep); }
.zs-body-tile-label {
	font-family: var(--zs-display);
	font-size: 16px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.zs-body-tile-count {
	font-family: var(--zs-mono);
	font-size: 11px;
	color: var(--zs-fog);
	letter-spacing: 0.08em;
}

@media (max-width: 880px) { .zs-body-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .zs-body-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 8. VEHICLE CARD ---------- */
.zs-vehicle-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
@media (max-width: 980px) { .zs-vehicle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .zs-vehicle-grid { grid-template-columns: 1fr; } }

.zs-vcard {
	background: var(--zs-paper);
	border-radius: var(--zs-radius-lg);
	overflow: hidden;
	transition: transform .3s var(--zs-ease), box-shadow .3s var(--zs-ease);
	display: flex; flex-direction: column;
	border: 1px solid var(--zs-line-light);
}
.zs-vcard:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px -16px rgba(10,14,26,0.22);
}
.zs-vcard-media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--zs-ink-3);
}
.zs-vcard-media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .8s var(--zs-ease);
}
.zs-vcard:hover .zs-vcard-media img { transform: scale(1.06); }
.zs-vcard-badge {
	position: absolute; top: 14px; left: 14px;
	background: var(--zs-volt);
	color: var(--zs-ink);
	font-family: var(--zs-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 6px 11px;
	border-radius: 999px;
}
.zs-vcard-fave {
	position: absolute; top: 14px; right: 14px;
	width: 36px; height: 36px;
	display: grid; place-items: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--zs-ink);
	border: none;
	cursor: pointer;
	transition: background .2s var(--zs-ease), color .2s var(--zs-ease);
}
.zs-vcard-fave:hover { background: var(--zs-ember); color: white; }
.zs-vcard-fave svg { width: 18px; height: 18px; }

.zs-vcard-body {
	padding: 20px 22px 22px;
	display: flex; flex-direction: column;
	flex: 1;
}
.zs-vcard-meta {
	font-family: var(--zs-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--zs-fog);
	margin-bottom: 8px;
}
.zs-vcard-title {
	font-family: var(--zs-display);
	font-size: 22px;
	letter-spacing: 0.01em;
	line-height: 1.05;
	margin: 0 0 14px;
	text-transform: uppercase;
}
.zs-vcard-title a { color: inherit; }
.zs-vcard-title a:hover { color: var(--zs-volt-deep); }

.zs-vcard-specs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	padding: 14px 0;
	border-top: 1px solid var(--zs-line-light);
	border-bottom: 1px solid var(--zs-line-light);
	margin-bottom: 14px;
}
.zs-vcard-spec {
	font-size: 13px;
	color: var(--zs-ink);
}
.zs-vcard-spec .l {
	display: block;
	font-family: var(--zs-mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--zs-fog);
	margin-bottom: 2px;
}
.zs-vcard-spec .v { font-weight: 500; }

.zs-vcard-foot {
	display: flex; align-items: center; justify-content: space-between;
	margin-top: auto;
}
.zs-vcard-price {
	font-family: var(--zs-display);
	font-size: 28px;
	letter-spacing: 0.01em;
	line-height: 1;
}
.zs-vcard-price small {
	display: block;
	font-family: var(--zs-mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	color: var(--zs-fog);
	text-transform: uppercase;
	margin-bottom: 4px;
}
.zs-vcard-cta {
	display: inline-flex; align-items: center; gap: 6px;
	font-family: var(--zs-mono);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--zs-ink);
	border-bottom: 2px solid var(--zs-volt-deep);
	padding-bottom: 3px;
}
.zs-vcard-cta:hover { color: var(--zs-volt-deep); }

/* Featured: first card extra-large */
.zs-vehicle-featured {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 24px;
	min-height: 720px;
}
.zs-vehicle-featured > .zs-vcard:first-child {
	grid-row: 1 / span 2;
}
.zs-vehicle-featured > .zs-vcard:first-child .zs-vcard-media { aspect-ratio: auto; height: 100%; min-height: 400px; }
.zs-vehicle-featured > .zs-vcard:first-child .zs-vcard-title { font-size: 30px; }
.zs-vehicle-featured > .zs-vcard:first-child .zs-vcard-price { font-size: 38px; }

@media (max-width: 980px) {
	.zs-vehicle-featured {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		min-height: auto;
	}
	.zs-vehicle-featured > .zs-vcard:first-child {
		grid-row: auto;
		grid-column: 1 / -1;
	}
	.zs-vehicle-featured > .zs-vcard:first-child .zs-vcard-media { min-height: 320px; }
}
@media (max-width: 600px) {
	.zs-vehicle-featured { grid-template-columns: 1fr; }
}

/* ---------- 9. HOW IT WORKS ---------- */
.zs-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	counter-reset: step;
}
.zs-step {
	position: relative;
	padding: 36px 32px;
	background: var(--zs-ink-2);
	border: 1px solid var(--zs-line);
	border-radius: var(--zs-radius-lg);
	transition: border-color .25s var(--zs-ease), transform .25s var(--zs-ease);
	counter-increment: step;
}
.zs-step:hover { border-color: var(--zs-volt); transform: translateY(-4px); }
.zs-step::before {
	content: '0' counter(step);
	position: absolute;
	top: 24px; right: 24px;
	font-family: var(--zs-display);
	font-size: 64px;
	color: var(--zs-volt);
	line-height: 1;
	opacity: 0.18;
	transition: opacity .25s var(--zs-ease);
}
.zs-step:hover::before { opacity: 0.6; }
.zs-step-icon {
	width: 56px; height: 56px;
	display: grid; place-items: center;
	background: var(--zs-volt);
	color: var(--zs-ink);
	border-radius: 16px;
	margin-bottom: 24px;
}
.zs-step-icon svg { width: 28px; height: 28px; }
.zs-step h3 {
	color: var(--zs-cream);
	font-size: 26px;
	margin: 0 0 12px;
}
.zs-step p {
	color: var(--zs-fog-2);
	margin: 0;
	font-size: 15px;
}

@media (max-width: 880px) { .zs-steps { grid-template-columns: 1fr; } }

/* ---------- 10. FEATURES / WHY ---------- */
.zs-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.zs-feature {
	padding: 28px 24px;
	border: 1.5px solid var(--zs-line-light);
	border-radius: var(--zs-radius);
	background: var(--zs-paper);
	transition: border-color .25s var(--zs-ease), transform .25s var(--zs-ease);
}
.zs-feature:hover { transform: translateY(-3px); border-color: var(--zs-ink); }
.zs-feature-num {
	font-family: var(--zs-mono);
	font-size: 12px;
	letter-spacing: 0.16em;
	color: var(--zs-fog);
	margin-bottom: 18px;
	display: block;
}
.zs-feature h3 {
	font-size: 24px;
	letter-spacing: 0.01em;
	margin: 0 0 10px;
}
.zs-feature p { font-size: 14px; color: var(--zs-fog); margin: 0; }

@media (max-width: 980px) { .zs-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .zs-features { grid-template-columns: 1fr; } }

/* ---------- 11. MAKES MARQUEE ---------- */
.zs-makes {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}
.zs-make-pill {
	padding: 12px 22px;
	background: var(--zs-paper);
	border: 1.5px solid var(--zs-line-light);
	border-radius: 999px;
	font-family: var(--zs-display);
	font-size: 18px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--zs-ink);
	transition: background .2s var(--zs-ease), color .2s var(--zs-ease), border-color .2s var(--zs-ease);
}
.zs-make-pill:hover {
	background: var(--zs-ink);
	color: var(--zs-volt);
	border-color: var(--zs-ink);
}

/* ---------- 12. TESTIMONIALS ---------- */
.zs-quotes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.zs-quote {
	padding: 36px 32px;
	background: var(--zs-paper);
	border-radius: var(--zs-radius-lg);
	border: 1px solid var(--zs-line-light);
	display: flex; flex-direction: column;
}
.zs-quote-stars {
	color: var(--zs-ember);
	letter-spacing: 4px;
	font-size: 18px;
	margin-bottom: 18px;
}
.zs-quote p {
	font-size: 18px;
	line-height: 1.5;
	font-weight: 500;
	flex: 1;
}
.zs-quote-author {
	display: flex; align-items: center; gap: 14px;
	border-top: 1px solid var(--zs-line-light);
	padding-top: 18px;
}
.zs-quote-author-avatar {
	width: 44px; height: 44px;
	background: var(--zs-ink);
	color: var(--zs-volt);
	border-radius: 999px;
	display: grid; place-items: center;
	font-family: var(--zs-display);
	font-size: 18px;
}
.zs-quote-author-name { font-weight: 700; }
.zs-quote-author-loc { font-size: 13px; color: var(--zs-fog); }

@media (max-width: 880px) { .zs-quotes { grid-template-columns: 1fr; } }

/* ---------- 13. CTA STRIP ---------- */
.zs-cta {
	background: var(--zs-volt);
	color: var(--zs-ink);
	padding: clamp(60px, 8vw, 100px) 0;
	position: relative;
	overflow: hidden;
}
.zs-cta::before {
	content: '';
	position: absolute;
	right: -120px; top: 50%; transform: translateY(-50%);
	width: 460px; height: 460px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--zs-volt-deep) 0%, transparent 70%);
	pointer-events: none;
}
.zs-cta-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 40px;
}
.zs-cta h2 {
	font-size: clamp(40px, 6vw, 80px);
	letter-spacing: -0.01em;
	line-height: 0.92;
	margin: 0;
}
.zs-cta p { font-size: 17px; max-width: 540px; margin: 14px 0 0; font-weight: 500; }

@media (max-width: 720px) {
	.zs-cta-inner { grid-template-columns: 1fr; }
}

/* ---------- 14. FOOTER ---------- */
.zs-site-footer {
	background: var(--zs-ink);
	color: var(--zs-cream);
	padding: 80px 0 32px;
}
.zs-footer-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 56px;
	border-bottom: 1px solid var(--zs-line);
}
.zs-footer-brand h2 {
	font-size: 56px;
	color: var(--zs-cream);
	margin: 0 0 16px;
	letter-spacing: 0;
}
.zs-footer-brand h2 span { color: var(--zs-volt); }
.zs-footer-brand p { color: var(--zs-fog-2); max-width: 360px; }

.zs-footer-col h4 {
	font-family: var(--zs-mono);
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--zs-volt);
	margin: 0 0 18px;
	font-weight: 700;
}
.zs-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.zs-footer-col a { color: var(--zs-cream); font-size: 15px; }
.zs-footer-col a:hover { color: var(--zs-volt); }

.zs-newsletter {
	display: flex;
	margin-top: 16px;
	background: var(--zs-ink-2);
	border: 1px solid var(--zs-line);
	border-radius: 999px;
	overflow: hidden;
	max-width: 360px;
}
.zs-newsletter input {
	flex: 1;
	background: transparent;
	border: none;
	color: var(--zs-cream);
	padding: 12px 18px;
	font-family: var(--zs-body);
	font-size: 14px;
}
.zs-newsletter input:focus { outline: none; }
.zs-newsletter button {
	background: var(--zs-volt);
	color: var(--zs-ink);
	border: none;
	padding: 0 22px;
	font-family: var(--zs-body);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
}
.zs-newsletter button:hover { background: var(--zs-volt-deep); }

.zs-footer-bottom {
	display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
	margin-top: 28px;
	font-family: var(--zs-mono);
	font-size: 12px;
	letter-spacing: 0.08em;
	color: var(--zs-fog-2);
}

@media (max-width: 880px) {
	.zs-footer-top { grid-template-columns: 1fr 1fr; }
	.zs-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
	.zs-footer-top { grid-template-columns: 1fr; }
}

/* ---------- 15. ARCHIVE / INVENTORY ---------- */
.zs-archive {
	padding: 60px 0 100px;
	background: var(--zs-cream);
}
.zs-archive-header {
	margin-bottom: 40px;
}
.zs-archive-title {
	font-size: clamp(40px, 6vw, 72px);
	margin: 8px 0 0;
}
.zs-archive-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 36px;
	align-items: start;
}
.zs-filter-bar {
	background: var(--zs-paper);
	border-radius: var(--zs-radius-lg);
	padding: 28px;
	border: 1px solid var(--zs-line-light);
	position: sticky; top: 96px;
}
.zs-filter-bar h3 {
	font-size: 22px;
	margin: 0 0 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--zs-line-light);
}
.zs-filter-group { margin-bottom: 22px; }
.zs-filter-group h4 {
	font-family: var(--zs-mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--zs-fog);
	margin: 0 0 10px;
	font-weight: 700;
}
.zs-filter-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.zs-filter-list label {
	display: flex; align-items: center; gap: 8px;
	font-size: 14px;
	cursor: pointer;
}
.zs-filter-list input[type="checkbox"] { accent-color: var(--zs-volt-deep); }
.zs-filter-list .count { color: var(--zs-fog); font-size: 12px; margin-left: auto; }
.zs-filter-range {
	display: flex; gap: 8px;
}
.zs-filter-range input {
	flex: 1;
	padding: 10px 12px;
	border: 1.5px solid var(--zs-line-light);
	border-radius: 8px;
	font-family: var(--zs-mono);
	font-size: 13px;
	min-width: 0;
}

.zs-results-toolbar {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 12px;
}
.zs-results-count { font-family: var(--zs-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--zs-fog); }
.zs-sort {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--zs-paper);
	border: 1.5px solid var(--zs-line-light);
	border-radius: 999px;
	padding: 8px 16px;
}
.zs-sort label { font-family: var(--zs-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--zs-fog); }
.zs-sort select { border: none; background: transparent; font-weight: 600; cursor: pointer; }

.zs-results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 600px) { .zs-results { grid-template-columns: 1fr; } }

@media (max-width: 980px) {
	.zs-archive-layout { grid-template-columns: 1fr; }
	.zs-filter-bar { position: static; }
}

/* ---------- 16. SINGLE VEHICLE ---------- */
.zs-single {
	padding: 40px 0 100px;
	background: var(--zs-cream);
}
.zs-breadcrumb {
	font-family: var(--zs-mono);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--zs-fog);
	margin-bottom: 28px;
}
.zs-breadcrumb a { color: var(--zs-fog); }
.zs-breadcrumb a:hover { color: var(--zs-ink); }
.zs-breadcrumb .sep { margin: 0 8px; }

.zs-single-layout {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 44px;
	align-items: start;
}
.zs-single-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	border-radius: var(--zs-radius-lg);
	overflow: hidden;
}
.zs-single-gallery .main {
	grid-column: 1 / -1;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--zs-ink-3);
	border-radius: var(--zs-radius-lg);
}
.zs-single-gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.zs-single-gallery .thumb {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--zs-ink-3);
	border-radius: var(--zs-radius);
}
.zs-single-gallery .thumb img { width: 100%; height: 100%; object-fit: cover; }

.zs-single-meta {
	font-family: var(--zs-mono);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--zs-fog);
	margin-bottom: 8px;
}
.zs-single-title {
	font-size: clamp(34px, 4.5vw, 56px);
	letter-spacing: -0.005em;
	line-height: 0.95;
	margin: 0 0 18px;
}
.zs-single-price-row {
	display: flex; align-items: center; gap: 16px;
	margin: 18px 0 28px;
	padding: 18px 0;
	border-top: 1px solid var(--zs-line-light);
	border-bottom: 1px solid var(--zs-line-light);
}
.zs-single-price {
	font-family: var(--zs-display);
	font-size: 56px;
	color: var(--zs-ink);
	line-height: 1;
}
.zs-single-price-label {
	font-family: var(--zs-mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--zs-fog);
	margin-bottom: 4px;
}
.zs-single-finance {
	margin-left: auto;
	text-align: right;
}
.zs-single-finance .num {
	font-family: var(--zs-display);
	font-size: 24px;
}
.zs-single-finance .lbl {
	font-family: var(--zs-mono);
	font-size: 11px;
	color: var(--zs-fog);
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.zs-spec-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-bottom: 28px;
}
.zs-spec-item {
	display: flex; align-items: center; gap: 12px;
	padding: 14px 16px;
	background: var(--zs-paper);
	border: 1px solid var(--zs-line-light);
	border-radius: var(--zs-radius);
}
.zs-spec-item .icon {
	width: 36px; height: 36px;
	display: grid; place-items: center;
	background: var(--zs-cream);
	color: var(--zs-ink);
	border-radius: 10px;
	flex-shrink: 0;
}
.zs-spec-item .icon svg { width: 20px; height: 20px; }
.zs-spec-item .lbl {
	display: block;
	font-family: var(--zs-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--zs-fog);
}
.zs-spec-item .v { font-weight: 600; font-size: 14px; }

.zs-single-actions {
	display: flex; gap: 12px;
	margin-bottom: 32px;
}

.zs-single-section {
	margin-top: 56px;
	padding-top: 36px;
	border-top: 1px solid var(--zs-line-light);
}
.zs-single-section h2 {
	font-size: 32px;
	letter-spacing: 0.005em;
	margin: 0 0 20px;
}

.zs-feature-list {
	list-style: none;
	padding: 0; margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}
.zs-feature-list li {
	display: flex; align-items: center; gap: 10px;
	font-size: 14px;
	padding: 10px 14px;
	background: var(--zs-paper);
	border-radius: 10px;
}
.zs-feature-list li::before {
	content: '';
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--zs-volt-deep);
	flex-shrink: 0;
}

@media (max-width: 980px) {
	.zs-single-layout { grid-template-columns: 1fr; gap: 32px; }
	.zs-spec-grid { grid-template-columns: 1fr; }
	.zs-feature-list { grid-template-columns: 1fr; }
}

/* ---------- 17. PAGE / ARTICLE ---------- */
.zs-page-header {
	background: var(--zs-ink);
	color: var(--zs-cream);
	padding: clamp(60px, 8vw, 110px) 0 clamp(50px, 7vw, 90px);
}
.zs-page-header h1 {
	font-size: clamp(40px, 7vw, 96px);
	margin: 12px 0 0;
}
.zs-page-content {
	padding: 60px 0 100px;
	background: var(--zs-cream);
}
.zs-prose {
	max-width: 760px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.75;
}
.zs-prose h2 { font-size: 36px; margin: 1.6em 0 .6em; }
.zs-prose h3 { font-size: 26px; margin: 1.4em 0 .5em; }
.zs-prose a { color: var(--zs-ink); border-bottom: 2px solid var(--zs-volt); padding-bottom: 1px; }
.zs-prose a:hover { background: var(--zs-volt); }
.zs-prose blockquote {
	border-left: 4px solid var(--zs-volt-deep);
	padding: 0 0 0 20px;
	margin: 1.4em 0;
	font-size: 22px;
	font-weight: 500;
	font-style: italic;
}
.zs-prose img, .zs-prose figure { border-radius: var(--zs-radius); margin: 1.4em 0; }
.zs-prose ul, .zs-prose ol { padding-left: 22px; }

/* ---------- 18. PAGINATION ---------- */
.zs-pagination {
	display: flex; gap: 8px; justify-content: center;
	margin-top: 48px;
}
.zs-pagination a, .zs-pagination span {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 44px; height: 44px;
	padding: 0 14px;
	border-radius: 12px;
	font-family: var(--zs-mono);
	font-weight: 700;
	font-size: 14px;
	border: 1.5px solid var(--zs-line-light);
	background: var(--zs-paper);
	color: var(--zs-ink);
}
.zs-pagination a:hover { background: var(--zs-ink); color: var(--zs-volt); border-color: var(--zs-ink); }
.zs-pagination .current {
	background: var(--zs-ink);
	color: var(--zs-volt);
	border-color: var(--zs-ink);
}

/* ---------- 19. SAMPLE NOTICE (when plugin not active) ---------- */
.zs-demo-notice {
	background: var(--zs-ember);
	color: white;
	font-family: var(--zs-mono);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-align: center;
	padding: 10px 16px;
}
.zs-demo-notice strong { letter-spacing: 0.04em; }

/* ---------- 20. ANIMATIONS ---------- */
@keyframes zs-fade-up {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
.zs-reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--zs-ease-out), transform .6s var(--zs-ease-out); }
.zs-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Reveal stagger inside hero */
.zs-hero-tag,
.zs-hero-title,
.zs-hero-sub,
.zs-hero-actions,
.zs-hero-stats {
	animation: zs-fade-up .8s var(--zs-ease-out) both;
}
.zs-hero-title { animation-delay: .08s; }
.zs-hero-sub { animation-delay: .18s; }
.zs-hero-actions { animation-delay: .26s; }
.zs-hero-stats { animation-delay: .36s; }

.zs-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- 21. UTILITIES ---------- */
.zs-mt-0 { margin-top: 0; }
.zs-text-center { text-align: center; }

/* ---------- 22. WP CORE COMPAT ---------- */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--zs-fog); margin-top: 6px; }
.gallery { display: grid; gap: 8px; grid-template-columns: repeat(3, 1fr); }

/* Comments */
.zs-comments {
	margin-top: 56px;
	padding-top: 36px;
	border-top: 1px solid var(--zs-line-light);
	max-width: 760px;
}
.zs-comments h2 { font-size: 28px; margin: 0 0 24px; }
.zs-comments .comment { padding: 16px 0; border-bottom: 1px solid var(--zs-line-light); }
.zs-comments .comment-meta { font-size: 13px; color: var(--zs-fog); margin-bottom: 6px; }
.zs-comments textarea, .zs-comments input[type="text"], .zs-comments input[type="email"], .zs-comments input[type="url"] {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--zs-line-light);
	border-radius: 10px;
	font-family: var(--zs-body);
	margin-bottom: 12px;
	font-size: 15px;
}
.zs-comments label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--zs-fog); }
.zs-comments .comment-form-cookies-consent { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.zs-comments .comment-form-cookies-consent input { width: auto; }
.zs-comments .form-submit input[type="submit"] {
	background: var(--zs-volt);
	color: var(--zs-ink);
	border: none;
	padding: 14px 28px;
	border-radius: 999px;
	font-family: var(--zs-mono);
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform .2s var(--zs-ease-out);
}
.zs-comments .form-submit input[type="submit"]:hover { transform: translateY(-2px); }
.zs-comments ol.zs-comments__list { list-style: none; padding: 0; margin: 0 0 32px; }

/* 404 */
.zs-error-404 {
	padding: clamp(64px, 12vw, 140px) 0 clamp(80px, 14vw, 160px);
	background: var(--zs-cream);
	min-height: 70vh;
	display: flex;
	align-items: center;
}
.zs-error-404__inner {
	max-width: 720px;
	text-align: center;
}
.zs-error-404__code {
	font-family: var(--zs-display);
	font-size: clamp(140px, 28vw, 280px);
	line-height: .85;
	margin: 18px 0 12px;
	color: var(--zs-ink);
	letter-spacing: -.02em;
}
.zs-error-404__zero {
	display: inline-block;
	color: var(--zs-volt);
	transform: rotate(-8deg);
	text-shadow: 0 6px 0 var(--zs-volt-deep);
}
.zs-error-404__title {
	font-family: var(--zs-display);
	font-size: clamp(32px, 5vw, 48px);
	line-height: 1.05;
	margin: 0 0 16px;
	letter-spacing: -.01em;
}
.zs-error-404__lead {
	font-size: 18px;
	color: var(--zs-fog);
	margin: 0 auto 36px;
	max-width: 540px;
	line-height: 1.55;
}
.zs-error-404__actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 56px;
}
.zs-error-404__search {
	max-width: 460px;
	margin: 0 auto;
	padding-top: 36px;
	border-top: 1px solid var(--zs-line-light);
}
.zs-error-404__search .zs-eyebrow { margin-bottom: 14px; }

/* Sidebar */
.zs-sidebar {
	font-family: var(--zs-body);
}
.zs-sidebar .widget {
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--zs-line-light);
}
.zs-sidebar .widget:last-child { border-bottom: 0; }
.zs-sidebar .widget-title,
.zs-sidebar h2.widgettitle {
	font-family: var(--zs-display);
	font-size: 20px;
	margin: 0 0 14px;
	letter-spacing: .01em;
}
.zs-sidebar ul { list-style: none; padding: 0; margin: 0; }
.zs-sidebar li { padding: 6px 0; }
.zs-sidebar a { color: var(--zs-ink); text-decoration: none; }
.zs-sidebar a:hover { color: var(--zs-volt-deep); }

/* Comments title (override generic) */
.zs-comments__title {
	font-family: var(--zs-display);
	font-size: 28px;
	margin: 0 0 24px;
	letter-spacing: -.005em;
}
.zs-comments__closed {
	padding: 14px 18px;
	background: var(--zs-cream);
	border-radius: 10px;
	color: var(--zs-fog);
	font-size: 14px;
}

/* Header scroll state */
body.is-scrolled .zs-header {
	box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
