/* =========================================================================
LavishCars — Single Vehicle template
Palette: charcoal + warm ivory + brass accent
Type: Fraunces (display) / Inter (body + utility)
========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;1,9..144,500&family=Inter:wght@400;500;600&display=swap');

.lcv-single {
	--lcv-bg: #121316;
	--lcv-surface: #1b1d22;
	--lcv-border: #2b2e35;
	--lcv-ink: #ede9e0;
	--lcv-ink-dim: #9b9c9e;
	--lcv-brass: #fdbe15;
	--lcv-brass-soft: rgba(180, 137, 79, 0.14);

	/*   background: var(--lcv-bg); */
	color: #000;
	font-family: 'Inter', -apple-system, sans-serif;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 0 64px;
}

.lcv-single * { box-sizing: border-box; }

/* ---------- Breadcrumb ---------- */

.lcv-breadcrumb {
	font-size: 13px;
	color: var(--lcv-ink-dim);
	margin: 0 0 18px;
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.lcv-breadcrumb a {
	color: var(--lcv-ink-dim);
	text-decoration: none;
	transition: color .15s ease;
}

.lcv-breadcrumb a:hover { color: #fdbe15; }

.lcv-breadcrumb-sep { color: var(--lcv-border); }

.lcv-breadcrumb span[aria-current] {
	color: #fdbe15;
}

/* ---------- Gallery ---------- */

.lcv-gallery { margin-bottom: 28px; }

.lcv-gallery-hero {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 10px;
	overflow: hidden;
	background: var(--lcv-surface);
	cursor: zoom-in;
}

.lcv-gallery-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: opacity .25s ease;
}

.lcv-gallery-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--lcv-ink-dim);
	cursor: default;
}

.lcv-thumb-rail {
	display: flex;
	gap: 10px;
	margin-top: 10px;
	overflow-x: auto;
	padding-bottom: 4px;
	flex-wrap: wrap;
}

.lcv-thumb {
	flex: 0 0 auto;
	width: 73px;
	height: 72px;
	border-radius: 6px;
	overflow: hidden;
	border: 2px solid transparent;
	padding: 0;
	cursor: pointer;
	background: var(--lcv-surface);
	opacity: .6;
	transition: opacity .15s ease, border-color .15s ease;
}

.lcv-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lcv-thumb:hover { opacity: .85; }

.lcv-thumb.is-active {
	opacity: 1;
	border-color: #fdbe15;
}

/* ---------- Layout ---------- */

.lcv-body {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
	align-items: start;
}

@media (max-width: 860px) {
	.lcv-body { grid-template-columns: 1fr; }
}

/* ---------- Main content ---------- */

.lcv-eyebrow {
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #fdbe15;
	margin: 0 0 8px;
	font-weight: 600;
}

.lcv-title {
	font-family: 'Fraunces', serif;
	font-weight: 600;
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.1;
	margin: 0 0 28px;
}

/* Spec plate — signature element: a build-sheet style grid */

.lcv-spec-plate {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border: 1px solid var(--lcv-border);
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 40px;
}

@media (max-width: 700px) {
	.lcv-spec-plate { grid-template-columns: repeat(2, 1fr); }
}

.lcv-spec {
	padding: 16px 18px;
	border-right: 1px solid var(--lcv-border);
	border-bottom: 1px solid var(--lcv-border);
}

.lcv-spec:nth-child(5n) { border-right: none; }

@media (max-width: 700px) {
	.lcv-spec:nth-child(5n) { border-right: 1px solid var(--lcv-border); }
	.lcv-spec:nth-child(2n) { border-right: none; }
}

.lcv-spec-label {
	display: block;
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #383838;
	margin-bottom: 6px;
	font-weight: 500;
}

.lcv-spec-value {
	display: block;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	font-variant-numeric: tabular-nums;
	color: #000;
}

.lcv-section-heading {
	font-family: 'Fraunces', serif;
	font-weight: 500;
	font-style: italic;
	font-size: 32px;
	color: #fdbe15;
	margin: 0 0 14px;
}

.lcv-description {
	font-size: 16px;
	line-height: 1.7;
	color: #000;
}

.lcv-description p { margin: 0 0 16px; }
.lcv-description ul { padding-left: 20px; margin: 0 0 16px; }
.lcv-description li { margin-bottom: 6px; }

.lcv-section-heading-plain {
	font-family: 'Fraunces', serif;
	font-weight: 600;
	font-size: 24px;
	color: #000;
	margin: 60px 0 18px;
}

/* ---------- What's Included grid ---------- */

.lcv-included-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

@media (max-width: 640px) {
	.lcv-included-grid { grid-template-columns: 1fr 1fr; }
}

.lcv-included-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 16px;
	background: var(--lcv-surface);
	border: 1px solid var(--lcv-border);
	border-radius: 8px;
}

.lcv-included-icon {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	color: #fdbe15;
}

.lcv-included-icon svg { width: 100%; height: 100%; }

.lcv-included-text {
	display: flex;
	flex-direction: column;
	font-size: 13px;
	color: var(--lcv-ink-dim);
	line-height: 1.5;
}

.lcv-included-text strong {
	color: var(--lcv-ink);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 2px;
}

/* ---------- Related listings (same Brand) ---------- */

.lcv-related-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

@media (max-width: 640px) {
	.lcv-related-grid { grid-template-columns: 1fr; }
}

.lcv-related-card {
	display: block;
	text-decoration: none;
	background: var(--lcv-surface);
	border: 1px solid var(--lcv-border);
	border-radius: 8px;
	overflow: hidden;
	transition: border-color .15s ease;
}

.lcv-related-card:hover { border-color: #fdbe15; }

.lcv-related-photo {
	aspect-ratio: 4 / 3;
	background: var(--lcv-bg);
}

.lcv-related-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lcv-related-info {
	padding: 12px 14px;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 10px;
}

.lcv-related-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--lcv-ink);
}

.lcv-related-rate {
	font-size: 13px;
	color: #fdbe15;
	white-space: nowrap;
}

/* ---------- Pricing sidebar ---------- */

.lcv-sidebar { position: sticky; top: 24px; }

.lcv-price-card {
	background: var(--lcv-surface);
	border: 1px solid var(--lcv-border);
	border-radius: 10px;
	padding: 24px;
}

.lcv-price-currency {
	display: inline-block;
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #fdbe15;
	background: var(--lcv-brass-soft);
	padding: 4px 10px;
	border-radius: 100px;
	margin-bottom: 18px;
}

.lcv-price-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 12px 0;
	border-top: 1px solid var(--lcv-border);
}

.lcv-price-row--primary { border-top: none; padding-top: 0; }

.lcv-price-label {
	font-size: 13px;
	color: var(--lcv-ink-dim);
}

.lcv-price-row--primary .lcv-price-label {
	font-size: 14px;
}

.lcv-price-value {
	font-family: 'Fraunces', serif;
	font-size: 20px;
	font-variant-numeric: tabular-nums;
	color: #fff;
}

.lcv-price-row--primary .lcv-price-value {
	font-size: 30px;
	color: #fdbe15;
}

.lcv-cta {
	display: block;
	text-align: center;
	margin-top: 20px;
	padding: 14px 20px;
	background: #fdbe15;
	color: #16171a;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	border-radius: 8px;
	transition: background .15s ease;
}

.lcv-cta:hover { background: #c69a5f; color: #16171a; }

.lcv-cta-whatsapp {
	background: #fdbe15;
}

.lcv-cta-call {
	background: transparent;
	border: 1px solid #9b9c9e;
	color: #ede9e0;
	margin-top: 10px;
}

.lcv-cta-call:hover {
	background: var(--lcv-surface);
	border-color: #fdbe15;
	color: var(--lcv-ink);
}

.lcv-cta-note {
	text-align: center;
	font-size: 12px;
	color: var(--lcv-ink-dim);
	margin: 14px 0 0;
}

/* ---------- How to Rent card ---------- */

.lcv-howto-card {
	background: var(--lcv-surface);
	border: 1px solid var(--lcv-border);
	border-radius: 10px;
	padding: 24px;
	margin-top: 20px;
}

.lcv-howto-card h3 {
	font-family: 'Fraunces', serif;
	font-weight: 600;
	font-size: 17px;
	margin: 0 0 18px;
	color: var(--lcv-ink);
}

.lcv-howto-card ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.lcv-howto-card li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.lcv-howto-num {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--lcv-brass-soft);
	color: #fdbe15;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lcv-howto-card li strong {
	display: block;
	font-size: 14px;
	color: var(--lcv-ink);
	margin-bottom: 3px;
}

.lcv-howto-card li p {
	margin: 0;
	font-size: 13px;
	color: var(--lcv-ink-dim);
	line-height: 1.5;
}

/* ---------- Lightbox ---------- */

.lcv-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(10, 10, 11, 0.94);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 40px;
}

.lcv-lightbox.is-open { display: flex; }

.lcv-lightbox img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 4px;
}

.lcv-lightbox-close,
.lcv-lightbox-nav {
	position: absolute;
	background: rgba(255, 255, 255, 0.08);
	border: none;
	color: #ede9e0;
	cursor: pointer;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .15s ease;
}

.lcv-lightbox-close:hover,
.lcv-lightbox-nav:hover { background: rgba(255, 255, 255, 0.18); }

.lcv-lightbox-close { top: 24px; right: 24px; }
.lcv-lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lcv-lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

@media (prefers-reduced-motion: reduce) {
	.lcv-gallery-hero img { transition: none; }
}

@media (max-width: 767px){
	body.single.single-vehicles .site-content {
		padding: 35px 0 0;
	}
	.lcv-single {
		padding: 0 10px;
	}
	.lcv-title {
		margin: 0 0 15px;
	}
	.lcv-thumb {
		width: 17.9%;
	}
}