/* ─── Vintage GT — Bike Catalogue styles ────────────────────────────
   Minimal, layout-focused. Inherits WoodMart's typography & colours.
   ──────────────────────────────────────────────────────────────── */
:root {
	--vgt-accent: #46C3E1;
	--vgt-accent-hover: #2eaecf;
}

.vgt-single-bike .container,
.vgt-bike-archive .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1em 2em;
}

/* ─── Breadcrumbs (above the hero, full width) ────────────────── */
.vgt-breadcrumbs {
	font-size: 0.875em;
	color: #666;
	margin: 0 0 1.5em 0;
}
.vgt-breadcrumbs a { color: #666; text-decoration: none; }
.vgt-breadcrumbs a:hover { color: var(--vgt-accent); }
.vgt-breadcrumbs .sep { margin: 0 0.4em; color: #ccc; }
.vgt-breadcrumbs .current { color: #000; font-weight: 600; }

/* ─── Single-bike hero ────────────────────────────────────────── */
.vgt-bike-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 2.5em;
	margin-bottom: 3em;
	align-items: start;
}
@media (max-width: 768px) {
	.vgt-bike-hero {
		grid-template-columns: 1fr;
		gap: 1.5em;
	}
}
.vgt-bike-hero__image { min-width: 0; }
.vgt-bike-hero__image img,
.vgt-bike-image {
	max-width: 100%;
	width: 100%;
	height: auto;
	display: block;
}
.vgt-bike-hero__body { min-width: 0; }

/* ─── Lightbox trigger + overlay ──────────────────────────────── */
.vgt-lightbox-trigger {
	position: relative;
	display: block;
	cursor: zoom-in;
}
.vgt-lightbox-hint {
	position: absolute;
	right: 0.75em;
	bottom: 0.75em;
	background: rgba(0,0,0,0.6);
	color: #fff;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9em;
	transition: background 0.15s ease;
	pointer-events: none;
}
.vgt-lightbox-trigger:hover .vgt-lightbox-hint { background: rgba(0,0,0,0.85); }

body.vgt-lightbox-open { overflow: hidden; }
.vgt-lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.92);
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: zoom-out;
	animation: vgt-lightbox-fade 0.15s ease;
}
@keyframes vgt-lightbox-fade {
	from { opacity: 0; } to { opacity: 1; }
}
.vgt-lightbox-image {
	max-width: 95vw;
	max-height: 95vh;
	object-fit: contain;
	box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}
.vgt-lightbox-close {
	position: absolute;
	top: 1em;
	right: 1em;
	width: 2.5em;
	height: 2.5em;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 2em;
	line-height: 1;
	cursor: pointer;
	border-radius: 50%;
	transition: background 0.15s ease;
}
.vgt-lightbox-close:hover { background: rgba(255,255,255,0.1); }

/* ─── Social share ────────────────────────────────────────────── */
.vgt-share {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	list-style: none;
	margin: 1.25em 0 0 0;
	padding: 0;
}
.vgt-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25em;
	height: 2.25em;
	border-radius: 50%;
	background: var(--vgt-accent);
	color: #fff;
	text-decoration: none;
	transition: background 0.15s ease, transform 0.15s ease;
}
.vgt-share__btn:hover,
.vgt-share__btn:focus {
	background: var(--vgt-accent-hover);
	color: #fff;
	transform: translateY(-1px);
}
.vgt-share__btn svg {
	width: 1.05em;
	height: 1.05em;
}

/* ─── Section heading (used by Description + Tech Spec columns) ── */
.vgt-section-heading {
	font-size: 1.5em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin: 0 0 1em 0;
	padding-bottom: 0.4em;
	border-bottom: 2px solid #000;
}

/* ─── Detail row: Description (left) + Tech Spec (right) ─────── */
.vgt-bike-detail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
	gap: 3em;
	margin: 0 0 3em 0;
	align-items: start;
}
@media (max-width: 900px) {
	.vgt-bike-detail {
		grid-template-columns: 1fr;
		gap: 2em;
	}
}

.vgt-bike-intro__prose {
	font-size: 1.0625em;
	line-height: 1.7;
}
.vgt-bike-intro__prose p:first-child { margin-top: 0; }

/* ─── Geometry chart section ────────────────────────────────── */
.vgt-bike-geometry {
	margin-top: 2.5em;
}
.vgt-bike-geometry__link {
	display: block;
	background: #fff;
	border: 1px solid #e3e6ea;
	border-radius: 4px;
	padding: 1em;
	transition: border-color 0.15s ease;
}
.vgt-bike-geometry__link:hover { border-color: var(--vgt-accent, #46c3e1); }
.vgt-bike-geometry__img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.vgt-empty-note { color: #999; font-style: italic; }

/* ─── Compact catalogue card (in hero right column) ──────────── */
.vgt-catalogue-card {
	display: block;
	text-decoration: none;
	color: inherit;
	border: 1px solid #eee;
	background: #fff;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.vgt-catalogue-card--compact {
	width: 120px;
	margin-top: 1.5em;
}
.vgt-catalogue-card:hover,
.vgt-catalogue-card:focus {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	border-color: var(--vgt-accent);
	color: inherit;
}
.vgt-catalogue-card__thumb {
	background: #f3f3f3;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	display: flex;
	align-items: center;
	justify-content: center;
}
.vgt-catalogue-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.vgt-catalogue-card__thumb--placeholder {
	background: repeating-linear-gradient(45deg, #f5f5f5, #f5f5f5 8px, #eee 8px, #eee 16px);
}
.vgt-catalogue-card__label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.4em;
	padding: 0.5em 0.6em;
	font-size: 0.7em;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.25;
	background: var(--vgt-accent);
	color: #fff;
	transition: background 0.15s ease;
}
.vgt-catalogue-card:hover .vgt-catalogue-card__label {
	background: var(--vgt-accent-hover);
}
.vgt-catalogue-card__arrow {
	transition: transform 0.15s ease;
}
.vgt-catalogue-card:hover .vgt-catalogue-card__arrow {
	transform: translateX(3px);
}
.vgt-bike-image--placeholder {
	background: #fafafa;
	border: 1px solid #eee;
	max-width: 100%;
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	padding: 1.5em;
	box-sizing: border-box;
}
.vgt-bike-card__image-fallback {
	width: 100%;
	height: 180px;
	background: #fafafa;
	object-fit: contain;
	display: block;
	padding: 0.75em;
	box-sizing: border-box;
}
.vgt-bike-title {
	margin: 0 0 0.25em 0;
	font-size: 2em;
	line-height: 1.2;
}
.vgt-bike-meta {
	color: #666;
	margin: 0 0 1.5em 0;
}
.vgt-bike-meta a { color: #666; text-decoration: underline; }
.vgt-bike-description {
	line-height: 1.55;
	font-size: 1.15em;
	color: #2a2a2a;
}
.vgt-bike-description p:first-child { margin-top: 0.25em; }
.vgt-empty-note--inline { color: #999; font-style: italic; }
.vgt-bike-notes {
	margin-top: 1.5em;
	padding: 1em 1.25em;
	background: #fafafa;
	border-left: 3px solid var(--vgt-accent);
}
.vgt-bike-notes h3 {
	margin: 0 0 0.5em 0;
	font-size: 1.15em;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #222;
}
.vgt-bike-notes p:first-of-type { margin-top: 0; }
.vgt-bike-notes p:last-child    { margin-bottom: 0; }

/* ─── Spec table ──────────────────────────────────────────────── */
.vgt-bike-spec {
	margin: 0;
}
.vgt-bike-spec__group {
	margin-bottom: 1.75em;
}
.vgt-bike-spec__group-heading {
	font-size: 0.8em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #999;
	margin: 0 0 0.6em 0;
	border-bottom: 1px solid #eee;
	padding-bottom: 0.4em;
}
.vgt-bike-spec__list {
	display: grid;
	grid-template-columns: minmax(110px, 0.5fr) minmax(0, 1fr);
	gap: 0.4em 1em;
	margin: 0;
}
@media (max-width: 600px) {
	.vgt-bike-spec__list { grid-template-columns: 1fr; gap: 0 0; }
	.vgt-bike-spec__list dt { padding-top: 0.4em; }
}
.vgt-bike-spec__list dt {
	font-weight: 600;
	color: #444;
}
.vgt-bike-spec__list dd { margin: 0; color: #222; }
.vgt-bike-spec__list dd a { color: #d83a3a; text-decoration: none; }
.vgt-bike-spec__list dd a:hover { text-decoration: underline; }
.vgt-bike-spec__extras {
	margin-top: 2em;
	padding-top: 1.5em;
	border-top: 1px solid #eee;
}
.vgt-bike-spec__extras h3 {
	font-size: 0.875em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #999;
}
.vgt-bike-spec--empty .vgt-empty-note {
	font-style: italic;
	color: #999;
}

/* ─── Related bikes / archive grid ────────────────────────────── */
.vgt-related-bikes { margin-top: 3em; }
.vgt-related-bikes h2 { margin-bottom: 1em; }

.vgt-bike-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.5em;
	margin: 1.5em 0;
}
.vgt-bike-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 4px;
	overflow: hidden;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.vgt-bike-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.08);
	border-color: var(--vgt-accent);
}
.vgt-bike-card:hover .vgt-bike-card__title a {
	color: var(--vgt-accent);
}
.vgt-bike-card__image-link,
.vgt-bike-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.vgt-bike-card__image img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}
.vgt-bike-card__image-placeholder {
	width: 100%;
	height: 180px;
	background: #f3f3f3;
	background-image: linear-gradient(45deg, #fafafa 25%, transparent 25%),
	                  linear-gradient(-45deg, #fafafa 25%, transparent 25%);
	background-size: 12px 12px;
}
.vgt-bike-card__body {
	padding: 0.6em 1em 1em;
}
.vgt-bike-card__heading {
	display: flex;
	align-items: flex-start;
	gap: 0.5em;
	justify-content: space-between;
}
.vgt-bike-card__title {
	font-size: 1rem;
	margin: 0.15em 0 0.25em;
	line-height: 1.3;
	flex: 1 1 auto;
	min-width: 0;
}
.vgt-bike-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s ease;
}
.vgt-bike-card__meta {
	margin: 0;
	font-size: 0.875em;
	color: #666;
}

/* ─── Tech doc archive + cards ─────────────────────────────────── */
.vgt-tech-doc-archive__header {
	margin: 1.5em 0 1em;
}
.vgt-tech-doc-archive__title {
	margin: 0 0 0.25em;
}
.vgt-tech-doc-archive__description {
	color: #666;
	max-width: 700px;
}

.vgt-tech-doc-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	align-items: flex-end;
	padding: 1em;
	margin: 1em 0 1.5em;
	background: #f7f7f7;
	border-radius: 4px;
}
.vgt-tech-doc-filters__field {
	display: flex;
	flex-direction: column;
	min-width: 180px;
}
.vgt-tech-doc-filters__label {
	font-size: 0.8em;
	font-weight: 600;
	color: #444;
	margin-bottom: 0.25em;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.vgt-tech-doc-filters__field select {
	padding: 0.45em 0.6em;
	border: 1px solid #ccc;
	border-radius: 3px;
	background: #fff;
}
.vgt-tech-doc-filters__actions {
	display: flex;
	gap: 0.5em;
	margin-left: auto;
}
.vgt-tech-doc-filters__apply {
	padding: 0.5em 1.2em;
	background: var(--vgt-accent);
	color: #fff;
	border: 1px solid var(--vgt-accent);
	border-radius: 3px;
	font-weight: 600;
	cursor: pointer;
}
.vgt-tech-doc-filters__apply:hover {
	background: var(--vgt-accent-hover);
	border-color: var(--vgt-accent-hover);
	color: #fff;
}
.vgt-tech-doc-filters__clear {
	padding: 0.5em 1em;
	color: #666;
	text-decoration: none;
	border: 1px solid transparent;
	align-self: center;
}
.vgt-tech-doc-filters__clear:hover { color: var(--vgt-accent); }

.vgt-tech-doc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.5em;
	margin: 1.5em 0;
}
.vgt-tech-doc-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.vgt-tech-doc-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.08);
	border-color: var(--vgt-accent);
}
.vgt-tech-doc-card:hover .vgt-tech-doc-card__title a {
	color: var(--vgt-accent);
}
.vgt-tech-doc-card__cover-link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.vgt-tech-doc-card__cover {
	background: #f5f5f5;
	height: 240px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.vgt-tech-doc-card__cover-img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.vgt-tech-doc-card__cover-fallback {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4em;
	color: #b6b6b6;
}
.vgt-tech-doc-card__cover-fallback svg {
	width: 56px;
	height: 70px;
}
.vgt-tech-doc-card__cover-fallback-label {
	font-size: 0.75em;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #888;
}
.vgt-tech-doc-card__body {
	padding: 0.6em 1em 1em;
	display: flex;
	flex-direction: column;
	gap: 0.4em;
	flex: 1 1 auto;
}
.vgt-tech-doc-card__title {
	font-size: 1rem;
	margin: 0;
	line-height: 1.3;
}
.vgt-tech-doc-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s ease;
}
.vgt-tech-doc-card__meta {
	margin: 0;
	font-size: 0.85em;
	color: #666;
}
.vgt-tech-doc-card__actions {
	margin-top: auto;
	padding-top: 0.6em;
}
.vgt-tech-doc-card__download {
	display: inline-block;
	padding: 0.5em 1em;
	font-size: 0.85em;
	font-weight: 600;
	color: #fff;
	background: var(--vgt-accent);
	border: 1px solid var(--vgt-accent);
	border-radius: 3px;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease;
}
.vgt-tech-doc-card__download:hover {
	background: var(--vgt-accent-hover);
	border-color: var(--vgt-accent-hover);
	color: #fff;
}
.vgt-tech-doc-card__pages {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 400;
}

/* Related-tech-docs grid (on single-bike pages) — tighter than the
   archive grid so several docs fit alongside the bike content. */
.vgt-tech-doc-grid--related {
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 1em;
}
.vgt-tech-doc-grid--related .vgt-tech-doc-card__cover {
	height: 180px;
}
.vgt-tech-doc-grid--related .vgt-tech-doc-card__title {
	font-size: 0.95rem;
}
.vgt-tech-doc-grid--related .vgt-tech-doc-card__meta {
	font-size: 0.8em;
}
.vgt-tech-doc-grid--related .vgt-tech-doc-card__download {
	padding: 0.4em 0.85em;
	font-size: 0.8em;
}

/* ─── Tech doc single page ─────────────────────────────────────── */
.vgt-tech-doc-detail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
	gap: 2em;
	margin: 1.5em 0;
}
@media (max-width: 700px) {
	.vgt-tech-doc-detail { grid-template-columns: 1fr; }
}
.vgt-tech-doc-detail__cover {
	background: #f5f5f5;
	padding: 1em;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	border-radius: 4px;
}
.vgt-tech-doc-detail__cover-img {
	max-width: 100%;
	height: auto;
	display: block;
	box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.vgt-tech-doc-detail__title {
	margin: 0 0 0.5em;
}
.vgt-tech-doc-detail__meta {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 0.4em 1em;
	margin: 0 0 1.5em;
	font-size: 0.95em;
}
.vgt-tech-doc-detail__meta dt {
	font-weight: 600;
	color: #444;
}
.vgt-tech-doc-detail__meta dd {
	margin: 0;
	color: #555;
}
.vgt-tech-doc-detail__download-wrap { margin: 0 0 1.5em; }
.vgt-tech-doc-detail__download {
	display: inline-block;
	padding: 0.7em 1.5em;
	background: var(--vgt-accent);
	color: #fff;
	border: 1px solid var(--vgt-accent);
	border-radius: 3px;
	font-weight: 600;
	text-decoration: none;
}
.vgt-tech-doc-detail__download:hover {
	background: var(--vgt-accent-hover);
	border-color: var(--vgt-accent-hover);
	color: #fff;
}
.vgt-tech-doc-detail__description { line-height: 1.6; }

.vgt-related-tech-docs { margin-top: 3em; }
.vgt-related-tech-docs h2 { margin-bottom: 1em; }

/* ─── Archive description (taxonomy archives only) ────────────── */
.vgt-archive-description { color: #666; margin-bottom: 1.5em; }

/* ─── Archive toolbar (count + per-page + cols + sort) ────────── */
.vgt-archive-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75em 1.75em;
	padding: 0.75em 1em;
	margin-bottom: 1.2em;
	background: #fafafa;
	border: 1px solid #ececec;
	border-radius: 4px;
	font-size: 0.9em;
}
.vgt-archive-toolbar__count {
	color: #555;
	font-size: 0.95em;
}
.vgt-archive-toolbar__controls {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em 1.5em;
	align-items: center;
}
.vgt-toolbar-form {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	margin: 0;
}
.vgt-toolbar-label {
	color: #999;
	font-size: 0.75em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.vgt-archive-toolbar .vgt-toolbar-form select {
	height: 34px;
	padding: 0 2em 0 0.75em;
	font-size: 0.9em;
	line-height: 1;
	border: 1px solid #e0e0e0;
	border-radius: 3px;
	background-color: #fff;
	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'><path fill='%23888' d='M0 0l5 6 5-6z'/></svg>") !important;
	background-repeat: no-repeat !important;
	background-position: right 0.65em center !important;
	background-size: 10px 6px !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	cursor: pointer;
	color: #333;
	min-width: 76px;
}
/* Kill any pseudo-element chevron the theme may add. */
.vgt-archive-toolbar .vgt-toolbar-form > select::-ms-expand { display: none; }
.vgt-toolbar-form select:hover { border-color: #ccc; }
.vgt-toolbar-form select:focus { outline: none; border-color: var(--vgt-accent); box-shadow: 0 0 0 2px rgba(70, 195, 225, 0.18); }

.vgt-toolbar-form--cols { gap: 0.25em; }
.vgt-toolbar-form--cols .vgt-toolbar-label { margin-right: 0.35em; }
.vgt-toolbar-cols-btn {
	height: 34px;
	min-width: 38px;
	padding: 0 0.7em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 3px;
	color: #888;
	font-size: 0.78em;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.vgt-toolbar-cols-btn svg { display: block; }
.vgt-toolbar-cols-btn:hover {
	border-color: var(--vgt-accent);
	color: var(--vgt-accent);
}
.vgt-toolbar-cols-btn.is-active {
	background: var(--vgt-accent);
	border-color: var(--vgt-accent);
	color: #fff;
}
.vgt-toolbar-cols-auto { line-height: 1; }

/* Grid column-count overrides (default keeps the auto-fill behaviour) */
@media (min-width: 700px) {
	.vgt-bike-grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vgt-bike-grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.vgt-bike-grid--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ─── Archive 2-column layout (sidebar filters + grid) ────────── */
.vgt-archive-layout {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 2.5em;
	align-items: start;
}
@media (max-width: 900px) {
	.vgt-archive-layout {
		grid-template-columns: 1fr;
		gap: 1.5em;
	}
}
.vgt-archive-sidebar { min-width: 0; }
.vgt-archive-main    { min-width: 0; }

/* ─── Filter form (sidebar) ───────────────────────────────────── */
.vgt-filters {
	background: rgba(70, 195, 225, 0.08);
	border: 1px solid rgba(70, 195, 225, 0.4);
	border-radius: 4px;
	padding: 1.25em;
	position: sticky;
	top: 1em;
}
.vgt-filters__heading {
	font-size: 0.9em;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--vgt-accent-hover);
	margin: 0 0 1em 0;
	padding-bottom: 0.5em;
	border-bottom: 2px solid var(--vgt-accent);
}
.vgt-filters__field {
	display: flex;
	flex-direction: column;
	gap: 0.3em;
	margin-bottom: 1em;
}
.vgt-filters__label {
	font-size: 0.75em;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #777;
	font-weight: 600;
}
.vgt-filters select {
	padding: 0.55em 0.6em;
	border: 1px solid #d4e7ed;
	background: #fff;
	border-radius: 3px;
	font-size: 0.95em;
	width: 100%;
	transition: border-color 0.15s ease;
}
.vgt-filters select:hover,
.vgt-filters select:focus {
	border-color: var(--vgt-accent);
	outline: none;
}
/* Active-filter chips inside the sidebar (replaces the old standalone bar above the grid). */
.vgt-filters__active {
	margin-bottom: 1.25em;
	padding-bottom: 1em;
	border-bottom: 1px dashed rgba(70, 195, 225, 0.4);
}
.vgt-filters__active-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.6em;
}
.vgt-filters__active-label {
	font-size: 0.75em;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #555;
	font-weight: 600;
}
.vgt-filters__active-count {
	display: inline-block;
	min-width: 1.4em;
	height: 1.4em;
	padding: 0 0.4em;
	margin-left: 0.25em;
	background: var(--vgt-accent);
	color: #fff;
	border-radius: 999px;
	text-align: center;
	line-height: 1.4em;
	font-size: 0.95em;
}
.vgt-filters__clear-all {
	font-size: 0.8em;
	color: #c33;
	text-decoration: underline;
}
.vgt-filters__clear-all:hover { color: #000; }
.vgt-filters__active-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4em;
}
/* The chips themselves reuse the shared .vgt-filter-chip styles from the
   old above-grid bar — same teal pill, same × affordance — so they read
   consistently. Override slightly tighter sizing for the sidebar context. */
.vgt-filters__active-chips .vgt-filter-chip {
	padding: 0.3em 0.7em;
	font-size: 0.78em;
}

/* Highlight a dropdown whose value is active, so the chip's source is obvious. */
.vgt-filters__field--has-value .vgt-filters__label {
	color: var(--vgt-accent-hover);
}
.vgt-filters__field--has-value select {
	border-color: var(--vgt-accent);
	background: rgba(70, 195, 225, 0.08);
	font-weight: 600;
}

.vgt-filters__actions {
	display: flex;
	flex-direction: column;
	gap: 0.5em;
	align-items: stretch;
	margin-top: 1.25em;
	padding-top: 1em;
	border-top: 1px dashed rgba(70, 195, 225, 0.4);
}
.vgt-filters__apply {
	background: var(--vgt-accent);
	color: #fff;
	border: 0;
	padding: 0.75em 1em;
	font-size: 0.9em;
	cursor: pointer;
	border-radius: 3px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: background 0.15s ease;
}
.vgt-filters__apply:hover { background: var(--vgt-accent-hover); }
.vgt-filters__clear {
	color: #666;
	text-align: center;
	text-decoration: underline;
	font-size: 0.85em;
}
.vgt-filters__clear:hover { color: #000; }

/* ─── Era switch (sits below the filter card) ────────────────── */
.vgt-era-switch {
	margin-top: 1em;
	padding: 1em 1.1em 1.1em;
	border-radius: 4px;
	border: 1px solid #e3e6ea;
	background: #fff;
}
.vgt-era-switch__heading {
	font-size: 0.75em;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #777;
	font-weight: 700;
	margin-bottom: 0.6em;
}
.vgt-era-switch__track {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
	background: #f1f3f5;
	border-radius: 999px;
	padding: 4px;
	position: relative;
}
.vgt-era-switch__option {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0.55em 0.5em;
	border-radius: 999px;
	color: #444;
	text-decoration: none;
	font-size: 0.9em;
	line-height: 1.15;
	transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
	text-align: center;
}
.vgt-era-switch__option:hover {
	color: #000;
}
.vgt-era-switch__option.is-active {
	background: var(--vgt-accent, #46c3e1);
	color: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.vgt-era-switch__main {
	font-weight: 700;
	letter-spacing: 0.02em;
}
.vgt-era-switch__sub {
	font-size: 0.75em;
	opacity: 0.85;
	margin-top: 1px;
}
.vgt-era-switch__help {
	margin: 0.75em 0 0;
	font-size: 0.78em;
	color: #777;
	line-height: 1.35;
}
.vgt-era-switch.is-classic .vgt-era-switch__help { color: #555; }

/* ─── Active filter chips (above the grid) ───────────────────── */
.vgt-filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	align-items: center;
	margin: 0 0 1.5em 0;
	padding-bottom: 1em;
	border-bottom: 1px solid #eee;
}
.vgt-filter-chips__label {
	font-size: 0.85em;
	color: #666;
	margin-right: 0.25em;
}
.vgt-filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	background: var(--vgt-accent);
	color: #fff;
	border: 1px solid var(--vgt-accent);
	padding: 0.35em 0.85em;
	font-size: 0.85em;
	border-radius: 999px;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.vgt-filter-chip:hover {
	background: var(--vgt-accent-hover);
	border-color: var(--vgt-accent-hover);
	color: #fff;
	transform: translateY(-1px);
}
.vgt-filter-chip__key { color: rgba(255,255,255,0.75); font-weight: 500; }
.vgt-filter-chip__value { font-weight: 600; }
.vgt-filter-chip__x {
	font-size: 1.1em;
	line-height: 1;
	color: rgba(255,255,255,0.85);
	margin-left: 0.15em;
}
.vgt-filter-chip:hover .vgt-filter-chip__x { color: #fff; }

.vgt-filter-chip--clear {
	background: transparent;
	color: var(--vgt-accent);
	border-color: var(--vgt-accent);
	font-weight: 600;
}
.vgt-filter-chip--clear:hover {
	background: var(--vgt-accent);
	color: #fff;
	border-color: var(--vgt-accent);
}
.vgt-load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 2em;
}
.vgt-load-more-wrap[hidden] {
	display: none;
}
.vgt-load-more {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	padding: 0.7em 1.6em;
	font: inherit;
	font-weight: 600;
	color: #fff;
	background: var(--vgt-accent);
	border: 1px solid var(--vgt-accent);
	border-radius: 3px;
	cursor: pointer;
	transition: background 0.15s ease, opacity 0.15s ease;
}
.vgt-load-more:hover {
	background: var(--vgt-accent-hover);
	border-color: var(--vgt-accent-hover);
	color: #fff;
}
.vgt-load-more[disabled] {
	cursor: progress;
	opacity: 0.7;
}
.vgt-load-more__spinner {
	display: none;
	width: 0.9em;
	height: 0.9em;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: vgt-load-more-spin 0.7s linear infinite;
}
.vgt-load-more-wrap.is-loading .vgt-load-more__spinner {
	display: inline-block;
}
.vgt-load-more-wrap.has-error::after {
	content: "Couldn't load more — try again.";
	margin-left: 0.75em;
	color: #b00020;
	align-self: center;
}
.vgt-load-more-done {
	margin: 0;
	padding: 0.6em 1.2em;
	color: #555;
	font-size: 0.9em;
	font-style: italic;
}
@keyframes vgt-load-more-spin {
	to { transform: rotate(360deg); }
}

.vgt-pagination {
	display: flex;
	gap: 0.5em;
	justify-content: center;
	margin-top: 2em;
}
.vgt-pagination[hidden] { display: none; }
.vgt-pagination .page-numbers {
	padding: 0.4em 0.8em;
	border: 1px solid #ddd;
	border-radius: 3px;
	color: #444;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.vgt-pagination a.page-numbers:hover {
	background: var(--vgt-accent);
	color: #fff;
	border-color: var(--vgt-accent);
}
.vgt-pagination .page-numbers.current {
	background: var(--vgt-accent);
	color: #fff;
	border-color: var(--vgt-accent);
}

/* ─── Compare bikes — inline toggle next to title ─────────────── */
.vgt-compare-toggle-wrap {
	display: inline-flex;
	align-items: center;
	gap: 0.3em;
	padding: 0.2em 0.5em;
	background: #f6f6f6;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	font-size: 0.7em;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #666;
	cursor: pointer;
	transition: background 0.12s, border-color 0.12s, color 0.12s;
	white-space: nowrap;
	flex: 0 0 auto;
	align-self: center;
}
.vgt-compare-toggle-wrap:hover {
	border-color: var(--vgt-accent);
	color: var(--vgt-accent);
}
.vgt-compare-toggle-wrap.is-selected {
	background: var(--vgt-accent);
	border-color: var(--vgt-accent);
	color: #fff;
}
.vgt-compare-toggle {
	margin: 0;
	accent-color: var(--vgt-accent);
}
.vgt-compare-toggle:disabled + .vgt-compare-toggle-label {
	opacity: 0.5;
}

/* ─── Compare bikes — floating bottom bar ─────────────────────── */
.vgt-compare-bar {
	position: fixed;
	left: 50%;
	bottom: 1.25em;
	transform: translate(-50%, 200%);
	z-index: 9999;
	max-width: 720px;
	width: max-content;
	max-width: min(720px, calc(100% - 2em));
	background: var(--vgt-accent);
	color: #fff;
	border-radius: 999px;
	box-shadow: 0 10px 28px rgba(70,195,225,0.32), 0 2px 6px rgba(0,0,0,0.08);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.vgt-compare-bar.is-visible {
	transform: translate(-50%, 0);
}
.vgt-compare-bar__inner {
	display: flex;
	align-items: center;
	gap: 0.55em;
	padding: 0.4em 0.45em 0.4em 1.1em;
	flex-wrap: nowrap;
}
.vgt-compare-bar__title {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	font-size: 0.72em;
	color: rgba(255,255,255,0.9);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	white-space: nowrap;
	font-weight: 600;
}
.vgt-compare-bar__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: var(--vgt-accent);
	min-width: 1.6em;
	height: 1.6em;
	border-radius: 50%;
	font-weight: 700;
	font-size: 0.95em;
	letter-spacing: 0;
}
.vgt-compare-bar__labels {
	display: flex;
	gap: 0.3em;
	flex-wrap: nowrap;
	flex: 0 1 auto;
	min-width: 0;
	overflow: hidden;
}
.vgt-compare-bar__chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	background: #fff;
	padding: 0.45em 0.85em 0.45em 1.2em;
	border-radius: 999px;
	font-size: 0.78em;
	font-weight: 600;
	color: #222;
	white-space: nowrap;
	max-width: 220px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.vgt-compare-bar .vgt-compare-bar__remove,
button.vgt-compare-bar__remove {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 16px !important;
	height: 16px !important;
	min-width: 16px;
	min-height: 16px;
	padding: 0 !important;
	background: rgba(0,0,0,0.08) !important;
	border: 0 !important;
	border-radius: 50% !important;
	color: #555 !important;
	font-size: 11px !important;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	outline: 0 !important;
	box-shadow: none !important;
	text-shadow: none !important;
	text-transform: none;
	transition: background 0.12s, color 0.12s, transform 0.12s;
}
.vgt-compare-bar .vgt-compare-bar__remove:hover,
.vgt-compare-bar .vgt-compare-bar__remove:focus,
.vgt-compare-bar .vgt-compare-bar__remove:active,
button.vgt-compare-bar__remove:hover,
button.vgt-compare-bar__remove:focus,
button.vgt-compare-bar__remove:active {
	background: transparent !important;
	color: var(--vgt-accent) !important;
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	transform: none !important;
}
.vgt-compare-bar__link {
	background: #fff;
	color: var(--vgt-accent);
	padding: 0.55em 1.5em;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.82em;
	letter-spacing: 0.02em;
	white-space: nowrap;
	transition: background 0.12s, color 0.12s;
}
.vgt-compare-bar__link:hover {
	background: rgba(255,255,255,0.88);
	color: var(--vgt-accent-hover);
}
.vgt-compare-bar .vgt-compare-bar__clear,
a.vgt-compare-bar__clear,
button.vgt-compare-bar__clear {
	display: inline-block;
	background: #fff !important;
	color: var(--vgt-accent) !important;
	border: 0 !important;
	padding: 0.55em 1.5em !important;
	border-radius: 999px !important;
	font-weight: 700;
	font-size: 0.82em;
	letter-spacing: 0.02em;
	text-decoration: none !important;
	text-transform: none;
	white-space: nowrap;
	cursor: pointer;
	line-height: 1.2;
	box-shadow: none !important;
	transition: background 0.12s, color 0.12s;
}
.vgt-compare-bar .vgt-compare-bar__clear:hover,
a.vgt-compare-bar__clear:hover,
button.vgt-compare-bar__clear:hover {
	background: rgba(255,255,255,0.88) !important;
	color: var(--vgt-accent-hover) !important;
}
@media (max-width: 600px) {
	.vgt-compare-bar__labels { display: none; }
	.vgt-compare-bar__inner { padding-left: 0.85em; gap: 0.4em; }
}

/* ─── /compare/ page layout ──────────────────────────────────── */
.vgt-compare-page .container { padding-top: 1.5em; }
.vgt-compare-header { margin-bottom: 1.5em; }
.vgt-compare-header h1 { margin: 0 0 0.25em; }
.vgt-compare-sub { color: #666; margin: 0; }
.vgt-compare-empty {
	padding: 1.5em;
	background: #fafafa;
	border: 1px dashed #ddd;
	border-radius: 4px;
}

/* The grid: N equal columns. Each row is a separate render pass in PHP,
   so items in the same "row" naturally align across columns. */
.vgt-compare-grid {
	display: grid;
	grid-template-columns: repeat(var(--vgt-cols, 3), minmax(0, 1fr));
	gap: 1em 1.5em;
	margin-bottom: 2em;
}
.vgt-compare-cell {
	min-width: 0; /* prevent grid blowout from long spec values */
}

.vgt-compare-cell--picker select {
	width: 100%;
	padding: 0.5em 0.65em;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	background: #fff;
	font-size: 0.92em;
}
.vgt-compare-cell--image {
	background: #fafafa;
	border-radius: 4px;
	overflow: hidden;
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
}
.vgt-compare-cell--image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}
.vgt-compare-cell--title {
	padding-top: 0.5em;
	border-bottom: 2px solid #000;
	padding-bottom: 0.5em;
	margin-bottom: 0.5em;
}
.vgt-compare-cell--title h2 {
	margin: 0;
	font-size: 1.1em;
	line-height: 1.3;
}
.vgt-compare-cell--title h2 a { color: inherit; text-decoration: none; }
.vgt-compare-cell--title h2 a:hover { color: var(--vgt-accent); }
.vgt-compare-meta { color: #666; font-size: 0.85em; margin: 0.25em 0 0; }

.vgt-compare-cell--desc h3,
.vgt-compare-cell--spec .vgt-section-heading {
	font-size: 0.85em;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #999;
	margin: 0 0 0.6em;
	padding-bottom: 0.35em;
	border-bottom: 1px solid #eee;
}
.vgt-compare-desc-body { font-size: 0.92em; line-height: 1.55; color: #333; }
.vgt-compare-cell--spec .vgt-bike-spec { font-size: 0.88em; }

@media (max-width: 800px) {
	.vgt-compare-grid {
		grid-template-columns: 1fr;
	}
	.vgt-compare-cell--title { border-bottom-width: 1px; }
}

/* ─── Hide WoodMart's default page-title bar on bike + compare pages.
   The PHP filter handles most WoodMart versions; this is a fallback
   for variants that don't expose a filter. ───────────────────────── */
body.vgt-bike-context .page-title-default,
body.vgt-bike-context .page-title,
body.vgt-bike-context .woodmart-page-title-container,
body.vgt-bike-context .page-title-vertical,
body.vgt-bike-context .single-product-page-title,
body.vgt-bike-context > .header-shop,
body.vgt-bike-context .title-size-default {
	display: none !important;
}

/* ─── Year overview (/year/YYYY/) header + lead ─────────────────── */
.vgt-year-overview__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1em;
	margin-bottom: 1em;
	padding-bottom: 0.5em;
	border-bottom: 2px solid #000;
}
.vgt-year-overview__title {
	margin: 0;
	font-size: 2em;
	letter-spacing: 0.02em;
	line-height: 1.1;
}
.vgt-year-overview__catalogue-link {
	color: var(--vgt-accent);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95em;
	white-space: nowrap;
}
.vgt-year-overview__catalogue-link:hover { color: var(--vgt-accent-hover); }

.vgt-year-overview__lead {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 180px;
	gap: 2.5em;
	margin: 0 0 2em;
	padding-bottom: 1.5em;
	border-bottom: 1px solid #eee;
}
@media (max-width: 768px) {
	.vgt-year-overview__lead {
		grid-template-columns: 1fr;
	}
}
.vgt-year-overview__lead-body {
	font-size: 1.05em;
	line-height: 1.65;
	color: #333;
}
.vgt-year-overview__lead-body p:first-child { margin-top: 0; }

.vgt-year-overview__catalogue-card {
	display: block;
	text-decoration: none;
	color: inherit;
	border: 1px solid #eee;
	background: #fff;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.vgt-year-overview__catalogue-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	border-color: var(--vgt-accent);
}
.vgt-year-overview__catalogue-card img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
}
.vgt-year-overview__catalogue-cta {
	display: block;
	background: var(--vgt-accent);
	color: #fff;
	padding: 0.5em 0.65em;
	font-size: 0.75em;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.vgt-year-overview__catalogue-card:hover .vgt-year-overview__catalogue-cta {
	background: var(--vgt-accent-hover);
}

/* ─── Feedback bubble (front-end) ────────────────────────────── */
.vgt-feedback-bubble {
	position: fixed;
	right: 1.25em;
	bottom: 6em; /* clear the theme's back-to-top button which sits at ~1em, with a small gap */
	z-index: 9998;
	font-family: inherit;
}
@media (max-width: 600px) {
	.vgt-feedback-bubble { bottom: 5.25em; }
}
.vgt-feedback-bubble__toggle {
	display: inline-flex !important;
	align-items: center;
	gap: 0.5em;
	background: var(--vgt-accent) !important;
	color: #fff !important;
	border: 0 !important;
	padding: 0.65em 1.1em 0.65em 0.9em !important;
	border-radius: 999px !important;
	font-size: 0.85em;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none !important;
	text-transform: none;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(70,195,225,0.32), 0 2px 6px rgba(0,0,0,0.08) !important;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.vgt-feedback-bubble__toggle:hover {
	background: var(--vgt-accent-hover) !important;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(70,195,225,0.4), 0 2px 6px rgba(0,0,0,0.08) !important;
	color: #fff !important;
}
.vgt-feedback-bubble__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.4em;
	height: 1.4em;
	border-radius: 50%;
	background: #fff;
	color: var(--vgt-accent);
	font-weight: 700;
	font-style: italic;
	font-size: 0.92em;
}
.vgt-feedback-bubble__label { white-space: nowrap; }

.vgt-feedback-panel {
	position: absolute;
	right: 0;
	bottom: 100%;
	margin-bottom: 0.75em;
	width: 360px;
	max-width: calc(100vw - 2.5em);
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 14px 36px rgba(0,0,0,0.16), 0 2px 8px rgba(0,0,0,0.06);
	padding: 1.1em 1.1em 0.9em;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
}
.vgt-feedback-bubble.is-open .vgt-feedback-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: opacity 0.15s ease, transform 0.15s ease;
}
.vgt-feedback-panel .vgt-feedback-panel__close,
button.vgt-feedback-panel__close {
	position: absolute !important;
	top: 0.5em !important;
	right: 0.5em !important;
	left: auto !important;
	width: 1.8em !important;
	height: 1.8em !important;
	min-width: 1.8em;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: #888 !important;
	font-size: 1.4em !important;
	line-height: 1 !important;
	cursor: pointer;
	border-radius: 50% !important;
	box-shadow: none !important;
	text-shadow: none !important;
	text-transform: none;
	z-index: 2;
}
.vgt-feedback-panel .vgt-feedback-panel__close:hover,
button.vgt-feedback-panel__close:hover {
	background: #f4f4f4 !important;
	color: #222 !important;
}
.vgt-feedback-panel__title {
	margin: 0 0 0.25em;
	font-size: 1em;
	font-weight: 700;
	color: #222;
}
.vgt-feedback-panel__sub {
	margin: 0 0 1em;
	color: #666;
	font-size: 0.85em;
	line-height: 1.4;
}
.vgt-feedback-panel__field {
	display: block;
	margin-bottom: 0.75em;
	font-size: 0.85em;
	color: #444;
}
.vgt-feedback-panel__field > span {
	display: block;
	margin-bottom: 0.25em;
	font-weight: 600;
	color: #333;
}
.vgt-feedback-panel__field small { color: #999; font-weight: 400; }
.vgt-feedback-panel__field input[type="text"],
.vgt-feedback-panel__field input[type="email"],
.vgt-feedback-panel__field textarea {
	width: 100%;
	padding: 0.5em 0.65em;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 0.92em;
	font-family: inherit;
	background: #fff;
	box-sizing: border-box;
}
.vgt-feedback-panel__field input[type="file"] { font-size: 0.85em; }
.vgt-feedback-panel__field textarea { resize: vertical; min-height: 80px; }
.vgt-feedback-panel__honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.vgt-feedback-panel__actions {
	display: flex;
	align-items: center;
	gap: 0.75em;
	margin-top: 0.25em;
}
.vgt-feedback-panel__submit {
	background: var(--vgt-accent) !important;
	color: #fff !important;
	border: 0 !important;
	padding: 0.55em 1.4em !important;
	border-radius: 999px !important;
	font-weight: 700;
	font-size: 0.85em;
	cursor: pointer;
	text-transform: none;
	box-shadow: none !important;
}
.vgt-feedback-panel__submit:hover { background: var(--vgt-accent-hover) !important; color: #fff !important; }
.vgt-feedback-panel__status { font-size: 0.85em; }

@media (max-width: 480px) {
	.vgt-feedback-bubble__label { display: none; }
	.vgt-feedback-bubble__toggle { padding: 0.65em !important; }
}

/* ─── Components glossary ────────────────────────────────────── */
.vgt-component-archive .vgt-component-archive__header {
	margin: 2em 0 1.5em;
	text-align: center;
}
.vgt-component-archive__title { margin: 0 0 0.3em; }
.vgt-component-archive__lead { color: #666; max-width: 600px; margin: 0 auto; }

.vgt-component-archive__group { margin-bottom: 2.5em; }
.vgt-component-archive__group-title {
	font-size: 1.2em;
	margin: 0 0 0.75em;
	padding-bottom: 0.4em;
	border-bottom: 1px solid #eee;
}
.vgt-component-archive__group-title a { color: inherit; text-decoration: none; }
.vgt-component-archive__group-title a:hover { color: var(--vgt-accent); }
.vgt-component-archive__group-count { color: #999; font-weight: 400; font-size: 0.85em; }

.vgt-component-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.25em;
}
.vgt-component-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.15s, transform 0.15s;
}
.vgt-component-card:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	transform: translateY(-1px);
}
.vgt-component-card__image {
	aspect-ratio: 4 / 3;
	background: #f6f6f6;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.vgt-component-card__image img { max-width: 100%; max-height: 100%; }
.vgt-component-card__image--placeholder {
	background: repeating-linear-gradient(45deg, #f3f3f3, #f3f3f3 8px, #ececec 8px, #ececec 16px);
}
.vgt-component-card__body { padding: 0.75em 1em 1em; }
.vgt-component-card__manufacturer {
	font-size: 0.78em;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 0.2em;
}
.vgt-component-card__title { font-size: 1em; margin: 0 0 0.4em; line-height: 1.3; }
.vgt-component-card__usage { font-size: 0.85em; color: var(--vgt-accent, #46c3e1); }

/* Single component page */
.vgt-component-single .vgt-component__header { margin: 2em 0 1.5em; }
.vgt-component__type { margin-bottom: 0.5em; }
.vgt-component__type a {
	display: inline-block;
	font-size: 0.78em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.2em 0.7em;
	background: #f2f2f2;
	color: #555;
	border-radius: 999px;
	text-decoration: none;
	margin-right: 0.4em;
}
.vgt-component__title { font-size: 2em; margin: 0 0 0.3em; }
.vgt-component__meta {
	display: flex;
	gap: 1em;
	color: #777;
	font-size: 0.95em;
}
.vgt-component__manufacturer { font-weight: 600; }

.vgt-component__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
	gap: 2.5em;
	align-items: start;
}
@media (max-width: 900px) {
	.vgt-component__layout { grid-template-columns: 1fr; }
}
.vgt-component__image {
	background: #f6f6f6;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 1em;
}
.vgt-component__image img { width: 100%; height: auto; display: block; }
.vgt-component__description { line-height: 1.65; color: #333; }

.vgt-component__used-on-title {
	font-size: 1.1em;
	margin: 0 0 1em;
	padding-bottom: 0.4em;
	border-bottom: 1px solid #eee;
}
.vgt-component__used-count { color: #888; font-weight: 400; font-size: 0.85em; }

/* Auto-linked component spans inside the bike spec table */
.vgt-bike-spec a.vgt-component-link {
	color: var(--vgt-accent, #46c3e1);
	text-decoration: none;
	border-bottom: 1px dotted currentColor;
}
.vgt-bike-spec a.vgt-component-link:hover {
	color: var(--vgt-accent-hover, #2aa8c4);
	border-bottom-style: solid;
}

/* ─── Series timeline view ───────────────────────────────────── */
.vgt-series-timeline__header {
	margin: 0 0 1.5em;
}
.vgt-series-timeline__title {
	margin: 0 0 0.5em;
	font-size: 2em;
}
.vgt-series-timeline__summary {
	color: #666;
	font-size: 0.95em;
	margin: 0 0 2em;
}

/* Grid/Timeline view toggle — used in both the toolbar (top of series
   grid view) and the timeline page header. */
.vgt-view-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.3em;
	background: #f4f4f4;
	border-radius: 999px;
	padding: 0.25em;
}
.vgt-view-toggle__btn {
	display: inline-block;
	padding: 0.35em 1em;
	border-radius: 999px;
	font-size: 0.85em;
	font-weight: 600;
	color: #555;
	text-decoration: none;
	background: transparent;
	transition: background 0.15s, color 0.15s;
}
.vgt-view-toggle__btn:hover { color: #000; }
.vgt-view-toggle__btn.is-active {
	background: var(--vgt-accent, #46c3e1);
	color: #fff;
}
.vgt-series-timeline__view-toggle {
	margin-top: 0.75em;
}

/* The timeline itself — a single column with a vertical accent rail,
   year labels on the left, bike content on the right. */
.vgt-timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}
.vgt-timeline::before {
	content: "";
	position: absolute;
	left: 132px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, #eee 0%, #ddd 50%, #eee 100%);
}
.vgt-timeline__year {
	position: relative;
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 1.5em;
	padding: 1.5em 0;
	align-items: start;
}
.vgt-timeline__year::before {
	content: "";
	position: absolute;
	left: 126px;
	top: 1.9em;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--vgt-accent, #46c3e1);
	border: 3px solid #fff;
	box-shadow: 0 0 0 1px #ddd;
	z-index: 1;
}
.vgt-timeline__year-label {
	font-size: 1.6em;
	font-weight: 700;
	color: #222;
	text-align: right;
	padding-right: 1.5em;
	line-height: 1;
}
.vgt-timeline__year-label a {
	color: inherit;
	text-decoration: none;
}
.vgt-timeline__year-label a:hover {
	color: var(--vgt-accent, #46c3e1);
}

/* Bike(s) for each year — usually one, occasionally two (team/standard). */
.vgt-timeline__bikes {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5em;
}
.vgt-timeline__bike {
	display: flex;
	flex-direction: column;
}
.vgt-timeline__note {
	margin: 0.75em 0 0;
	padding: 0.7em 1em;
	background: #fafafa;
	border-left: 3px solid var(--vgt-accent, #46c3e1);
	font-size: 0.92em;
	color: #444;
	line-height: 1.5;
	border-radius: 0 4px 4px 0;
}

@media (max-width: 700px) {
	.vgt-timeline::before { left: 76px; }
	.vgt-timeline__year {
		grid-template-columns: 70px 1fr;
		gap: 0.75em;
	}
	.vgt-timeline__year::before { left: 70px; }
	.vgt-timeline__year-label {
		font-size: 1.2em;
		padding-right: 0.75em;
	}
}

/* ─── Community photo gallery ────────────────────────────────── */
.vgt-community-archive__header {
	margin: 0 0 1.5em;
	text-align: center;
}
.vgt-community-archive__title { margin: 0 0 0.3em; }
.vgt-community-archive__lead {
	color: #666;
	max-width: 640px;
	margin: 0 auto;
}

.vgt-photo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.5em;
}
.vgt-photo-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 6px;
	overflow: hidden;
	transition: box-shadow 0.15s, transform 0.15s;
}
.vgt-photo-card:hover {
	box-shadow: 0 6px 20px rgba(0,0,0,0.09);
	transform: translateY(-1px);
}
.vgt-photo-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f5f5f5;
}
.vgt-photo-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}
.vgt-photo-card:hover .vgt-photo-card__image img {
	transform: scale(1.03);
}
.vgt-photo-card__placeholder {
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(45deg, #f3f3f3, #f3f3f3 8px, #ececec 8px, #ececec 16px);
}
.vgt-photo-card__body { padding: 0.75em 1em 1em; }
.vgt-photo-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3em;
	margin-bottom: 0.5em;
}
.vgt-photo-card__tag {
	display: inline-block;
	font-size: 0.74em;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 0.25em 0.7em;
	background: #f2f2f2;
	color: #555;
	border-radius: 999px;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}
.vgt-photo-card__tag:hover {
	background: var(--vgt-accent, #46c3e1);
	color: #fff;
}
.vgt-photo-card__tag--year { background: #fff5d0; color: #7a5a00; }
.vgt-photo-card__tag--year:hover { background: var(--vgt-accent, #46c3e1); color: #fff; }
.vgt-photo-card__title {
	font-size: 1.05em;
	margin: 0 0 0.3em;
	line-height: 1.3;
}
.vgt-photo-card__title a { color: inherit; text-decoration: none; }
.vgt-photo-card__title a:hover { color: var(--vgt-accent, #46c3e1); }
.vgt-photo-card__owner { color: #888; font-size: 0.88em; margin: 0; }

/* Single community photo page */
.vgt-community-single .container { max-width: 1200px; margin: 0 auto; padding: 0 1em 2em; }
.vgt-community-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: 2.5em;
	align-items: start;
}
@media (max-width: 900px) {
	.vgt-community-single__layout { grid-template-columns: 1fr; }
}
.vgt-community-single__image {
	background: #1a1a1a;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.vgt-community-single__image img {
	width: 100%;
	height: auto;
	display: block;
}
.vgt-community-single__tags {
	display: flex;
	gap: 0.4em;
	flex-wrap: wrap;
	margin-bottom: 0.75em;
}
.vgt-community-single__title { font-size: 1.8em; margin: 0 0 0.3em; line-height: 1.25; }
.vgt-community-single__owner { color: #777; margin: 0 0 1.5em; font-size: 1em; }
.vgt-community-single__story {
	font-size: 1.05em;
	line-height: 1.7;
	color: #333;
}
.vgt-community-single__story p:first-child { margin-top: 0; }

/* ─── For-sale listings ─────────────────────────────────────────── */
.vgt-listing-archive__header {
	margin: 0 0 1.5em;
	text-align: center;
}
.vgt-listing-archive__title { margin: 0 0 0.3em; }
.vgt-listing-archive__lead { color: #666; max-width: 640px; margin: 0 auto; }

.vgt-listing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5em;
}

/* Card */
.vgt-listing-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 6px;
	overflow: hidden;
	transition: box-shadow 0.15s, transform 0.15s;
}
.vgt-listing-card:hover {
	box-shadow: 0 6px 20px rgba(0,0,0,0.09);
	transform: translateY(-1px);
}
.vgt-listing-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f5f5f5;
	position: relative;
}
.vgt-listing-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.vgt-listing-card__placeholder {
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(45deg, #f3f3f3, #f3f3f3 8px, #ececec 8px, #ececec 16px);
}

.vgt-listing-card__sold-stamp,
.vgt-listing-single__sold-stamp {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-12deg);
	font-size: 2.4em;
	font-weight: 900;
	letter-spacing: 0.1em;
	color: #c33;
	background: rgba(255,255,255,0.92);
	border: 4px solid #c33;
	padding: 0.15em 0.5em;
	border-radius: 6px;
	pointer-events: none;
	text-transform: uppercase;
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.vgt-listing-card.is-sold .vgt-listing-card__image img {
	filter: grayscale(0.6);
	opacity: 0.85;
}
.vgt-listing-card.is-sold .vgt-listing-card__body { opacity: 0.85; }

.vgt-listing-card__body { padding: 0.85em 1em 1em; display: flex; flex-direction: column; gap: 0.3em; }
.vgt-listing-card__title {
	font-size: 1.05em;
	margin: 0;
	line-height: 1.3;
}
.vgt-listing-card__title a { color: inherit; text-decoration: none; }
.vgt-listing-card__title a:hover { color: var(--vgt-accent, #46c3e1); }
.vgt-listing-card__meta { color: #666; font-size: 0.88em; margin: 0; }
.vgt-listing-card__location {
	color: #888;
	font-size: 0.85em;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.3em;
}
.vgt-listing-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 0.6em;
	padding-top: 0.7em;
	border-top: 1px solid #f0f0f0;
}
.vgt-listing-card__price {
	font-weight: 700;
	font-size: 1.1em;
	color: #1a1a1a;
}
.vgt-listing-card__contact {
	background: var(--vgt-accent, #46c3e1);
	color: #fff !important;
	border: 0;
	border-radius: 999px;
	padding: 0.4em 1em;
	font-size: 0.85em;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.15s;
}
.vgt-listing-card__contact:hover {
	background: var(--vgt-accent-hover, #2eaecf);
	color: #fff !important;
}
.vgt-listing-card__contact--disabled {
	background: #ccc !important;
	color: #fff !important;
	cursor: not-allowed;
	pointer-events: none;
}

/* Single listing */
.vgt-listing-single .container { max-width: 1200px; margin: 0 auto; padding: 0 1em 2em; }
.vgt-listing-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	gap: 2.5em;
	align-items: start;
}
@media (max-width: 900px) {
	.vgt-listing-single__layout { grid-template-columns: 1fr; }
}
.vgt-listing-single__hero {
	position: relative;
	background: #f5f5f5;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 0.75em;
}
.vgt-listing-single__hero img {
	width: 100%;
	height: auto;
	display: block;
}
.vgt-listing-single__hero.is-sold img {
	filter: grayscale(0.5);
	opacity: 0.85;
}
.vgt-listing-single__gallery {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
	gap: 0.5em;
}
.vgt-listing-single__gallery li { aspect-ratio: 1 / 1; }
.vgt-listing-single__gallery a {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	overflow: hidden;
	background: #f5f5f5;
}
.vgt-listing-single__gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.2s;
}
.vgt-listing-single__gallery a:hover img { transform: scale(1.05); }

.vgt-listing-single__tags {
	display: flex;
	gap: 0.4em;
	flex-wrap: wrap;
	margin-bottom: 0.75em;
}
.vgt-listing-single__title { font-size: 1.8em; margin: 0 0 0.4em; line-height: 1.25; }
.vgt-listing-single__price {
	font-size: 1.5em;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 0.5em;
}
.vgt-listing-single__location {
	color: #666;
	margin: 0 0 1.25em;
	display: flex;
	align-items: center;
	gap: 0.35em;
	font-size: 0.95em;
}
.vgt-listing-single__story {
	font-size: 1em;
	line-height: 1.65;
	color: #333;
	margin: 1.25em 0;
}
.vgt-listing-single__story p:first-child { margin-top: 0; }
.vgt-listing-single__actions {
	padding-top: 1.25em;
	border-top: 1px solid #eee;
	margin-top: 1em;
}
.vgt-listing-single__contact {
	display: inline-block;
	background: var(--vgt-accent, #46c3e1);
	color: #fff !important;
	border: 0;
	border-radius: 999px;
	padding: 0.75em 2em;
	font-size: 1em;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(70, 195, 225, 0.25);
	transition: background 0.15s, transform 0.15s;
}
.vgt-listing-single__contact:hover {
	background: var(--vgt-accent-hover, #2eaecf);
	transform: translateY(-1px);
	color: #fff !important;
}
.vgt-listing-single__contact--disabled {
	background: #ccc !important;
	cursor: not-allowed;
	pointer-events: none;
	box-shadow: none;
}
.vgt-listing-single__seller { margin: 0.75em 0 0; color: #777; font-size: 0.92em; }

/* Listing gate (logged-out / not-approved messages) */
.vgt-listing-gate {
	max-width: 540px;
	margin: 2em auto;
	padding: 2em;
	text-align: center;
	background: #fafafa;
	border: 1px solid #eee;
	border-radius: 8px;
}
.vgt-listing-gate h3 { margin: 0 0 0.5em; }

/* Contact modal */
.vgt-listing-contact {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
}
.vgt-listing-contact.is-open { display: flex; }
.vgt-listing-contact__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.55);
}
.vgt-listing-contact__panel {
	position: relative;
	background: #fff;
	border-radius: 8px;
	padding: 1.75em 1.5em 1.25em;
	width: min(480px, 92vw);
	box-shadow: 0 16px 48px rgba(0,0,0,0.25);
	animation: vgt-modal-in 0.18s ease;
}
@keyframes vgt-modal-in {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}
.vgt-listing-contact__close {
	position: absolute;
	top: 0.6em;
	right: 0.7em;
	width: 28px;
	height: 28px;
	border: 0;
	background: transparent;
	color: #666;
	font-size: 1.4em;
	line-height: 1;
	cursor: pointer;
	border-radius: 50%;
}
.vgt-listing-contact__close:hover { background: #f2f2f2; color: #000; }
.vgt-listing-contact__title {
	margin: 0 0 0.3em;
	font-size: 1.2em;
	padding-right: 1.5em;
}
.vgt-listing-contact__sub {
	color: #666;
	font-size: 0.88em;
	margin: 0 0 1.25em;
	line-height: 1.4;
}
.vgt-listing-contact__field {
	display: block;
	margin-bottom: 0.85em;
}
.vgt-listing-contact__field > span {
	display: block;
	font-weight: 600;
	font-size: 0.85em;
	color: #333;
	margin-bottom: 0.3em;
}
.vgt-listing-contact__field input,
.vgt-listing-contact__field textarea {
	width: 100%;
	padding: 0.55em 0.75em;
	border: 1px solid #d8d8d8;
	border-radius: 6px;
	font-size: 0.95em;
	font-family: inherit;
	box-sizing: border-box;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.vgt-listing-contact__field input:focus,
.vgt-listing-contact__field textarea:focus {
	outline: 0;
	border-color: var(--vgt-accent, #46c3e1);
	box-shadow: 0 0 0 3px rgba(70,195,225,0.15);
}
.vgt-listing-contact__field textarea { min-height: 110px; resize: vertical; }
.vgt-listing-contact__actions {
	display: flex;
	align-items: center;
	gap: 0.75em;
	margin-top: 0.75em;
}
.vgt-listing-contact__send {
	background: var(--vgt-accent, #46c3e1);
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 0.6em 1.5em;
	font-size: 0.95em;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s;
}
.vgt-listing-contact__send:hover { background: var(--vgt-accent-hover, #2eaecf); }
.vgt-listing-contact__send:disabled { background: #ccc; cursor: not-allowed; }
.vgt-listing-contact__status {
	font-size: 0.85em;
	color: #666;
}

/* ─── Facebook feed shortcode ───────────────────────────────────── */
.vgt-fb-feed {
	display: grid;
	gap: 1.25em;
	margin: 1.5em 0;
}
.vgt-fb-feed--cols-1 { grid-template-columns: 1fr; }
.vgt-fb-feed--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vgt-fb-feed--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vgt-fb-feed--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 800px) {
	.vgt-fb-feed--cols-3, .vgt-fb-feed--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
	.vgt-fb-feed { grid-template-columns: 1fr !important; }
}
.vgt-fb-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 6px;
	overflow: hidden;
	transition: box-shadow 0.15s, transform 0.15s;
}
.vgt-fb-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-1px); }
.vgt-fb-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f5f5f5;
}
.vgt-fb-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}
.vgt-fb-card:hover .vgt-fb-card__image img { transform: scale(1.03); }
.vgt-fb-card__body {
	padding: 0.85em 1em 1em;
	display: flex;
	flex-direction: column;
	gap: 0.4em;
	flex-grow: 1;
}
.vgt-fb-card__date {
	font-size: 0.78em;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0;
}
.vgt-fb-card__message {
	font-size: 0.94em;
	line-height: 1.5;
	color: #2a2a2a;
	margin: 0;
}
.vgt-fb-card__link {
	margin-top: auto;
	color: var(--vgt-accent, #46c3e1);
	font-size: 0.85em;
	font-weight: 600;
	text-decoration: none;
}
.vgt-fb-card__link:hover { color: var(--vgt-accent-hover, #2eaecf); }

/* ─── Sectioned search results ─────────────────────────────────── */
.vgt-search-archive .container { max-width: 1200px; margin: 0 auto; padding: 0 1em 2em; }
.vgt-search__header {
	margin: 0.5em 0 2em;
	text-align: center;
}
.vgt-search__title { margin: 0 0 0.25em; }
.vgt-search__query { color: #666; margin: 0; font-size: 1.05em; }

.vgt-search-section {
	margin-bottom: 2.5em;
	padding-bottom: 2em;
	border-bottom: 1px solid #eee;
}
.vgt-search-section:last-child { border-bottom: 0; padding-bottom: 0; }

.vgt-search-section__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1em;
	flex-wrap: wrap;
	margin-bottom: 1.25em;
	padding-bottom: 0.5em;
	border-bottom: 2px solid #000;
}
.vgt-search-section__title {
	margin: 0;
	font-size: 1.3em;
	display: flex;
	align-items: baseline;
	gap: 0.6em;
}
.vgt-search-section__count {
	font-size: 0.65em;
	color: #fff;
	background: var(--vgt-accent, #46c3e1);
	padding: 0.15em 0.7em;
	border-radius: 999px;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.vgt-search-section__view-all {
	font-size: 0.9em;
	font-weight: 600;
	color: var(--vgt-accent, #46c3e1);
	text-decoration: none;
}
.vgt-search-section__view-all:hover { color: var(--vgt-accent-hover, #2eaecf); }

/* Per-section grid widths (defer to the card type's own width logic
   where possible, fall back to a sensible default). */
.vgt-search-section__grid {
	display: grid;
	gap: 1.25em;
}
.vgt-search-section__grid--bike-card,
.vgt-search-section__grid--photo-card,
.vgt-search-section__grid--listing-card {
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.vgt-search-section__grid--component-card {
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.vgt-search-section__grid--search-result-card {
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Generic search-result card */
.vgt-search-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 6px;
	overflow: hidden;
	transition: box-shadow 0.15s, transform 0.15s;
}
.vgt-search-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-1px); }
.vgt-search-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f5f5f5;
}
.vgt-search-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.vgt-search-card__body {
	padding: 0.85em 1em 1em;
	display: flex;
	flex-direction: column;
	gap: 0.4em;
}
.vgt-search-card__title {
	font-size: 1em;
	margin: 0;
	line-height: 1.3;
}
.vgt-search-card__title a { color: inherit; text-decoration: none; }
.vgt-search-card__title a:hover { color: var(--vgt-accent, #46c3e1); }
.vgt-search-card__excerpt {
	font-size: 0.88em;
	color: #666;
	line-height: 1.5;
	margin: 0;
}
