/* Used Vehicles hub — rebuilt to match
   design_handoff_cbm_marketplace/pages/CBM Used Vehicles.dc.html exactly
   (see page-templates/template-used-vehicles.php's header comment). Grid /
   sidebar / CTA-button / dealer-carousel / offer-card / "View More" /
   Facebook-box layout reuses Rent Vehicles' .cbm-rv-* classes and New
   Vehicles' sponsor-row .cbm-nv-* classes (assets/css/rent-vehicles.css,
   assets/css/new-vehicles.css) — pixel-identical values in all three real
   sources. Only the pieces unique to this page are defined here. */

.cbm-uv-sell-btn {
	display: block; background: var(--cbm-green); color: #fff; font-weight: 700; font-size: 15px;
	letter-spacing: 0.03em; text-transform: uppercase; text-align: center; padding: 18px; border-radius: 2px;
}
.cbm-uv-sell-btn:hover { filter: brightness(1.1); }

.cbm-uv-steps { background: #1A1A1A; color: #fff; border-radius: 2px; padding: 20px; }
.cbm-uv-steps__title { font-family: var(--cbm-font-heading); font-weight: 700; font-size: 17px; text-align: center; margin-bottom: 16px; }
.cbm-uv-steps__step { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 13px; }
.cbm-uv-steps__num {
	width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.cbm-uv-steps__cta { display: block; background: var(--cbm-green); color: #fff; font-weight: 700; font-size: 13px; text-align: center; padding: 10px; border-radius: 2px; margin-top: 4px; }

.cbm-uv-contact { border: 1px solid var(--cbm-hairline); border-radius: 2px; padding: 18px; text-align: center; }
.cbm-uv-contact__label { font-family: var(--cbm-font-heading); font-size: 16px; color: #555; }
.cbm-uv-contact__divider { border: none; border-top: 1px solid var(--cbm-red); width: 60%; margin: 8px auto; }
.cbm-uv-contact__phone {
	display: flex; align-items: center; justify-content: center; gap: 8px;
	font-family: var(--cbm-font-mono); font-weight: 700; font-size: 17px; color: var(--cbm-red);
}
.cbm-uv-contact__phone span {
	width: 26px; height: 26px; border-radius: 50%; background: var(--cbm-green); color: #fff;
	display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-family: initial;
}

.cbm-uv-sidebar-ad { min-height: 150px; }
.cbm-uv-sidebar-ad .cbm-ad-empty-slot { background: var(--cbm-fill-light); border: 1px dashed #757880; border-radius: 2px; min-height: 150px; }

/* Sticky wandering finance ad — hidden until the visitor scrolls past the
   hero (used-vehicles.js toggles .cbm-visible), then drifts to a new
   position every ~16-28s via the transition below (source: the exact same
   values in CBM Used Vehicles.dc.html's inline <style>/<script>). */
#cbm-finance-ad {
	position: fixed; top: 300px; left: 200px; width: 120px; background: #fff; border: 1px solid var(--cbm-hairline);
	border-radius: 2px; box-shadow: 0 4px 16px rgba(0,0,0,0.15); z-index: 45; padding: 8px; text-align: center;
	opacity: 0; pointer-events: none; transition: opacity 0.6s, top 16s ease-in-out, left 16s ease-in-out;
}
#cbm-finance-ad.cbm-visible { opacity: 1; pointer-events: auto; }
#cbm-finance-ad .cbm-uv-finance-label {
	font-family: var(--cbm-font-mono); font-size: 9px; letter-spacing: 0.05em; text-transform: uppercase;
	color: #757880; margin-bottom: 6px;
}
#cbm-finance-ad .cbm-uv-finance-slot { aspect-ratio: 1/1; }
#cbm-finance-ad .cbm-uv-finance-slot .cbm-ad-empty-slot {
	aspect-ratio: 1/1; background: var(--cbm-fill-light); border: 1px dashed #757880; border-radius: 2px;
	display: flex; align-items: center; justify-content: center; font-size: 9px;
}
@media (prefers-reduced-motion: reduce) {
	#cbm-finance-ad { transition: opacity 0.6s; }
}

@media (max-width: 1024px) {
	#cbm-finance-ad { display: none; }
}
