/* Orillia Dodge — Wrangler Campaign
 * Matches orilliadodge.ca look & feel (SM360 theme).
 * Brand primary: #436FB0 (blue). Type: Roboto + Montserrat.
 */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Montserrat:wght@500;700;900&display=swap');

:root {
  --brand-primary: #436fb0;
  --brand-primary-dark: #2f5a99;
  --brand-dark: #19222b;
  --brand-accent-green: #1aa84f;
  --brand-savings-green: #2fb34a;
  --text-default: #222222;
  --text-muted: #666666;
  --text-fine: #888888;
  --border-color: #e4e4e4;
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
  --bg-light: #f2f2f2;
  --header-bg: #eaeaea;
  --max-width: 1440px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--text-default);
  background: #ffffff;
  line-height: 1.4;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-primary); text-decoration: none; }
a:hover { color: var(--brand-primary-dark); text-decoration: underline; }

/* ---------- Utility Bar (top strip) ---------- */
.utility-bar {
  background: #19222b;
  color: #ffffff;
  font-size: 13px;
  padding: 8px 0;
}
.utility-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-bar .my-transaction { display: flex; align-items: center; gap: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; }
.utility-bar .my-transaction .icons { display: flex; gap: 10px; }
.utility-bar .my-transaction .icons span { width: 24px; height: 24px; background: #2a333d; border-radius: 4px; display: inline-block; }
.utility-bar .user-actions { display: flex; align-items: center; gap: 16px; font-size: 12px; }
.utility-bar .user-actions a { color: #fff; text-transform: uppercase; font-weight: 500; letter-spacing: 0.5px; }
.utility-bar .user-actions .cta-create { background: #2a333d; padding: 6px 14px; border-radius: 2px; }

/* ---------- Header (brand bar) ---------- */
.header {
  background: var(--header-bg);
  border-bottom: 1px solid #d8d8d8;
  padding: 14px 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header .brand-logo img { max-height: 72px; width: auto; }
.header .phones {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--text-default);
  flex: 1;
  justify-content: center;
}
.header .phones .phone-label { color: var(--text-muted); font-weight: 400; }
.header .phones a { color: var(--text-default); font-weight: 700; }
.header .phones .address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-default);
  margin-top: 6px;
}
.header .phones .address::before { content: '📍'; font-size: 13px; }
.header .service-cta a {
  display: inline-block;
  background: var(--brand-primary);
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px 28px;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: background 0.2s;
}
.header .service-cta a:hover { background: var(--brand-primary-dark); text-decoration: none; }

/* ---------- Main Nav ---------- */
.main-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
}
.main-nav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  align-items: center;
}
.main-nav .nav-list > li > a {
  display: block;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-default);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.main-nav .nav-list > li > a:hover,
.main-nav .nav-list > li.active > a { color: var(--brand-primary); text-decoration: none; }
.main-nav .nav-list > li.compare-item { margin-left: auto; }
.main-nav .nav-list .compare-count {
  display: inline-block;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  margin-left: 6px;
  font-size: 12px;
  font-weight: 700;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Promo Banner ---------- */
.promo-banner {
  background: linear-gradient(135deg, #19222b 0%, #2a333d 100%);
  color: #fff;
  padding: 28px 0;
  margin: 0;
}
.promo-banner .container { display: flex; align-items: center; gap: 24px; }
.promo-banner .promo-icon { width: 64px; height: 64px; background: #fff; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--brand-dark); font-size: 28px; font-weight: 900; }
.promo-banner .promo-text { flex: 1; }
.promo-banner .promo-text h3 { margin: 0 0 4px; font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 900; letter-spacing: 1px; }
.promo-banner .promo-text p { margin: 0; font-size: 15px; opacity: 0.85; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
  padding: 48px 0 24px;
  text-align: center;
}
.hero h1 {
  margin: 0 0 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--text-default);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.hero .hero-sub {
  margin: 0 auto 24px;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.5;
}
.hero .hero-ctas { display: inline-flex; gap: 12px; margin-top: 8px; }
.hero .btn { padding: 14px 32px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 2px; transition: all 0.2s; cursor: pointer; border: 2px solid transparent; display: inline-flex; align-items: center; gap: 8px; }
.hero .btn-primary { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.hero .btn-primary:hover { background: var(--brand-primary-dark); border-color: var(--brand-primary-dark); text-decoration: none; }
.hero .btn-secondary { background: transparent; color: var(--brand-primary); border-color: var(--brand-primary); }
.hero .btn-secondary:hover { background: var(--brand-primary); color: #fff; text-decoration: none; }

/* ---------- Listing Layout ---------- */
.listing-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 32px 20px 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ---------- Filters sidebar ---------- */
.filters { background: #fff; padding: 4px; font-size: 14px; }
.filters h2 { margin: 0 0 16px; font-size: 24px; font-weight: 400; color: var(--text-default); }
.filters .filter-group { border-top: 1px solid var(--border-color); padding: 18px 0; }
.filters .filter-group:first-of-type { border-top: none; }
.filters .filter-title { margin: 0 0 12px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-default); display: flex; justify-content: space-between; align-items: center; }
.filters .filter-title .clear-link { font-size: 12px; color: var(--brand-primary); font-weight: 400; text-transform: none; cursor: pointer; }
.filters .chip-toggle { display: inline-flex; gap: 8px; margin-bottom: 12px; border: 1px solid var(--border-color); border-radius: 2px; overflow: hidden; width: 100%; }
.filters .chip-toggle .chip { flex: 1; padding: 8px 12px; font-size: 13px; text-align: center; cursor: pointer; border: 0; background: #fff; color: var(--text-muted); }
.filters .chip-toggle .chip.active { color: var(--text-default); border-bottom: 2px solid var(--brand-primary); font-weight: 700; }
.filters .checkbox-list { list-style: none; margin: 0; padding: 0; }
.filters .checkbox-list li { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 13px; color: var(--text-default); }
.filters .checkbox-list input { accent-color: var(--brand-primary); }
.filters .price-range { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-default); margin-bottom: 6px; font-weight: 500; }
.filters .price-slider { width: 100%; accent-color: var(--brand-primary); }
.filters .color-swatches { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.filters .color-swatches .swatch { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-color); cursor: pointer; }

/* ---------- Listing header ---------- */
.listing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}
.listing-header .result-count { font-size: 14px; color: var(--text-default); }
.listing-header .result-count strong { font-weight: 700; }
.listing-header .sort-by { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.listing-header select { padding: 6px 10px; border: 1px solid var(--border-color); border-radius: 2px; background: #fff; font-size: 13px; cursor: pointer; }

/* ---------- Vehicle grid ---------- */
.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ---------- Vehicle card ---------- */
.v-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  font-size: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
  position: relative;
}
.v-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.v-card .savings-ribbon {
  background: #e9f9ed;
  color: var(--brand-savings-green);
  padding: 8px 16px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.v-card .savings-ribbon::before { content: '🏷'; font-size: 14px; }
.v-card .card-image {
  position: relative;
  background: #f0f0f0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.v-card .card-image img { width: 100%; height: 100%; object-fit: cover; }
.v-card .photo-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 2px;
  padding: 4px 10px;
  font-weight: 700;
  font-size: 13px;
}
.v-card .card-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.v-card .v-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-default);
  line-height: 1.2;
}
.v-card .v-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--text-muted);
}
.v-card .v-chips span { display: inline-flex; align-items: center; gap: 4px; }
.v-card .v-chips span + span::before { content: '•'; margin-right: 8px; color: var(--text-fine); }
.v-card .v-features-strip {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.3px;
  padding: 6px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.v-card .price-block { padding-top: 6px; }
.v-card .price-block .msrp-row { display: flex; justify-content: space-between; align-items: flex-start; font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.3px; }
.v-card .price-block .msrp-row .purchase-label { color: var(--text-default); font-weight: 500; text-transform: none; }
.v-card .price-block .msrp-price { font-size: 22px; font-weight: 700; color: var(--text-default); text-align: right; line-height: 1; }
.v-card .price-block .fine-print { font-size: 11px; color: var(--text-fine); margin: 4px 0 12px; line-height: 1.4; }
.v-card .price-block .discount-row,
.v-card .price-block .rebate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--text-default);
}
.v-card .price-block .discount-row .label { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-primary); font-weight: 500; }
.v-card .price-block .discount-row .label::before { content: '🏷'; }
.v-card .price-block .discount-row .amount { color: var(--brand-savings-green); font-weight: 700; }
.v-card .price-block .dealer-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 6px;
  border-top: 1px solid var(--border-color);
}
.v-card .price-block .dealer-price-row .label { font-size: 16px; font-weight: 700; color: var(--text-default); }
.v-card .price-block .dealer-price-row .price { font-size: 24px; font-weight: 700; color: var(--text-default); }
.v-card .btn-details {
  display: block;
  background: #444;
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: 12px;
  transition: background 0.2s;
}
.v-card .btn-details:hover { background: #222; color: #fff; text-decoration: none; }
.v-card .btn-prequalify {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  padding: 12px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: 8px;
  cursor: pointer;
}
.v-card .btn-prequalify img { height: 18px; width: auto; }
.v-card .btn-prequalify .equifax { background: #c8102e; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 2px; letter-spacing: 0.3px; }
.v-card .vin-line { font-size: 11px; color: var(--text-fine); margin-top: 10px; text-transform: uppercase; letter-spacing: 0.3px; }
.v-card .installed-options { border-top: 1px solid var(--border-color); padding-top: 12px; margin-top: 12px; }
.v-card .installed-options .io-head { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-fine); text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 6px; }
.v-card .installed-options .io-list { list-style: none; margin: 0; padding: 0; font-size: 13px; color: var(--text-default); }
.v-card .installed-options .io-list li { display: flex; align-items: center; gap: 6px; padding: 2px 0; }
.v-card .installed-options .io-list li::before { content: '✓'; color: var(--brand-savings-green); font-weight: 700; }
.v-card .installed-options .io-colour { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.v-card .show-legal {
  font-size: 13px;
  color: var(--brand-primary);
  padding: 12px 0;
  border-top: 1px solid var(--border-color);
  margin-top: 12px;
  text-align: left;
  cursor: pointer;
  font-weight: 500;
}
.v-card .show-legal:hover { text-decoration: underline; }
.v-card .legal-text {
  display: none;
  font-size: 11px;
  color: var(--text-fine);
  line-height: 1.5;
  padding: 8px 0 0;
}
.v-card.legal-open .legal-text { display: block; }

/* ---------- SEO content section ---------- */
.seo-section {
  background: var(--bg-light);
  padding: 56px 0;
  margin-top: 48px;
}
.seo-section .container { max-width: 1000px; }
.seo-section h2 { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 700; margin: 0 0 20px; color: var(--text-default); }
.seo-section h3 { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700; margin: 28px 0 10px; color: var(--text-default); }
.seo-section p { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin: 0 0 16px; }

/* ---------- Footer ---------- */
.footer {
  background: #19222b;
  color: #c8cdd3;
  padding: 48px 0 0;
}
.footer .footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2d3840;
}
.footer h4 { color: #fff; font-size: 14px; font-weight: 700; margin: 0 0 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { padding: 4px 0; font-size: 14px; }
.footer a { color: #c8cdd3; font-size: 14px; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer .dealer-info { font-size: 14px; line-height: 1.6; }
.footer .dealer-info address { font-style: normal; margin: 8px 0; }
.footer .dealer-info .phones-list { margin-top: 12px; }
.footer .dealer-info .phones-list div { display: flex; justify-content: space-between; gap: 16px; font-size: 13px; padding: 4px 0; }
.footer .dealer-info .phones-list .label { color: #8b939b; }
.footer .social-row { display: flex; gap: 10px; margin-top: 16px; }
.footer .social-row a { width: 36px; height: 36px; background: #2d3840; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; font-size: 16px; }
.footer .social-row a:hover { background: var(--brand-primary); }
.footer .footer-bottom {
  padding: 20px 0;
  font-size: 12px;
  color: #8b939b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer .footer-bottom a { color: #8b939b; }
.footer .footer-bottom .legal-links { display: flex; gap: 24px; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  padding: 10px;
  gap: 8px;
  z-index: 100;
}
.sticky-mobile-cta a { flex: 1; text-align: center; padding: 12px; font-weight: 700; text-transform: uppercase; font-size: 13px; border-radius: 2px; }
.sticky-mobile-cta .call { background: #19222b; color: #fff; }
.sticky-mobile-cta .test-drive { background: var(--brand-primary); color: #fff; }

/* ---------- VDP page-specific ---------- */
.breadcrumb { padding: 16px 0; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand-primary); }
.breadcrumb .sep { margin: 0 8px; color: var(--text-fine); }
.breadcrumb .current { color: var(--text-default); }

.vdp-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  padding: 0 20px 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.vdp-main .vdp-title { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 900; margin: 0 0 8px; color: var(--text-default); line-height: 1.15; }
.vdp-main .vdp-sub { font-size: 14px; color: var(--text-muted); margin: 0 0 20px; }
.vdp-main .vdp-sub span { margin-right: 16px; }

.gallery-main {
  background: #f0f0f0;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.gallery-thumbs img { cursor: pointer; aspect-ratio: 4/3; object-fit: cover; border: 2px solid transparent; transition: border-color 0.2s; }
.gallery-thumbs img:hover, .gallery-thumbs img.active { border-color: var(--brand-primary); }
.gallery-thumbs .more-thumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.vdp-aside { background: #fff; border: 1px solid var(--border-color); padding: 24px; position: sticky; top: 20px; align-self: start; }
.vdp-aside .price-stack h3 { font-size: 14px; text-transform: uppercase; color: var(--text-muted); margin: 0 0 4px; letter-spacing: 0.4px; font-weight: 500; }
.vdp-aside .price-stack .purchase-label { font-size: 13px; color: var(--text-default); margin-bottom: 2px; }
.vdp-aside .price-stack .price-main { font-size: 36px; font-weight: 700; color: var(--text-default); line-height: 1; margin: 4px 0 8px; }
.vdp-aside .price-stack .fine-print { font-size: 11px; color: var(--text-fine); line-height: 1.4; margin-bottom: 16px; }
.vdp-aside .price-stack .line-item { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--border-color); font-size: 14px; }
.vdp-aside .price-stack .line-item.rebate .value,
.vdp-aside .price-stack .line-item.discount .value { color: var(--brand-savings-green); font-weight: 700; }
.vdp-aside .price-stack .line-item.final { border-top: 2px solid #19222b; margin-top: 4px; padding-top: 14px; }
.vdp-aside .price-stack .line-item.final .label { font-size: 16px; font-weight: 700; }
.vdp-aside .price-stack .line-item.final .value { font-size: 28px; font-weight: 700; color: var(--text-default); }
.vdp-aside .cta-stack { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.vdp-aside .cta-stack .btn { display: block; padding: 14px; text-align: center; font-weight: 700; font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 2px; border: 2px solid transparent; cursor: pointer; transition: all 0.2s; }
.vdp-aside .cta-stack .btn-primary { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.vdp-aside .cta-stack .btn-primary:hover { background: var(--brand-primary-dark); text-decoration: none; }
.vdp-aside .cta-stack .btn-dark { background: #19222b; color: #fff; }
.vdp-aside .cta-stack .btn-dark:hover { background: #000; text-decoration: none; }
.vdp-aside .cta-stack .btn-outline { background: #fff; color: var(--brand-primary); border-color: var(--brand-primary); }
.vdp-aside .cta-stack .btn-outline:hover { background: var(--brand-primary); color: #fff; text-decoration: none; }

.vdp-specs { margin-top: 40px; }
.vdp-specs h2 { font-family: 'Montserrat', sans-serif; font-size: 26px; margin: 0 0 16px; color: var(--text-default); padding-bottom: 8px; border-bottom: 2px solid var(--border-color); }
.vdp-specs .spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 32px; }
.vdp-specs .spec-item { display: flex; flex-direction: column; gap: 2px; padding: 12px 0; border-bottom: 1px solid var(--border-color); }
.vdp-specs .spec-item .label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.4px; }
.vdp-specs .spec-item .value { font-size: 15px; color: var(--text-default); font-weight: 500; }

.vdp-features { margin-top: 40px; }
.vdp-features h2 { font-family: 'Montserrat', sans-serif; font-size: 26px; margin: 0 0 16px; color: var(--text-default); padding-bottom: 8px; border-bottom: 2px solid var(--border-color); }
.vdp-features .feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px; }
.vdp-features .feat-grid li { list-style: none; padding: 8px 0; display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-default); border-bottom: 1px solid var(--border-color); }
.vdp-features .feat-grid li::before { content: '✓'; color: var(--brand-savings-green); font-weight: 700; font-size: 14px; }

.vdp-options { margin-top: 40px; }
.vdp-options h2 { font-family: 'Montserrat', sans-serif; font-size: 26px; margin: 0 0 16px; color: var(--text-default); padding-bottom: 8px; border-bottom: 2px solid var(--border-color); }
.vdp-options .opt-list { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 32px; }
.vdp-options .opt-list li { padding: 6px 0; font-size: 14px; color: var(--text-default); break-inside: avoid; display: flex; gap: 8px; align-items: center; }
.vdp-options .opt-list li::before { content: '›'; color: var(--brand-primary); font-weight: 700; }

.vdp-forms { margin-top: 48px; background: var(--bg-light); padding: 40px; }
.vdp-forms h2 { font-family: 'Montserrat', sans-serif; font-size: 26px; margin: 0 0 8px; }
.vdp-forms p { margin: 0 0 24px; color: var(--text-muted); }
.vdp-forms .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 12px; }
.vdp-forms label { display: block; font-size: 13px; font-weight: 500; color: var(--text-default); margin-bottom: 6px; }
.vdp-forms input, .vdp-forms textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--border-color); border-radius: 2px; font-size: 14px; font-family: inherit; }
.vdp-forms input:focus, .vdp-forms textarea:focus { outline: none; border-color: var(--brand-primary); }
.vdp-forms textarea { min-height: 100px; resize: vertical; }
.vdp-forms .consent { font-size: 12px; color: var(--text-muted); margin: 12px 0; display: flex; gap: 8px; }
.vdp-forms button[type="submit"] { background: var(--brand-primary); color: #fff; padding: 14px 40px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; border: 0; border-radius: 2px; cursor: pointer; }
.vdp-forms button[type="submit"]:hover { background: var(--brand-primary-dark); }

/* ---------- Lightbox ---------- */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 1000; justify-content: center; align-items: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92%; max-height: 92%; object-fit: contain; }
.lightbox .close { position: absolute; top: 20px; right: 20px; color: #fff; font-size: 36px; cursor: pointer; background: none; border: 0; }
.lightbox .nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); color: #fff; border: 0; width: 56px; height: 56px; font-size: 28px; cursor: pointer; border-radius: 50%; }
.lightbox .nav.prev { left: 20px; }
.lightbox .nav.next { right: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .listing-wrap { grid-template-columns: 1fr; }
  .filters { display: none; }
  .hero h1 { font-size: 36px; }
  .vdp-layout { grid-template-columns: 1fr; }
  .vdp-aside { position: static; }
}

@media (max-width: 640px) {
  .header .phones { display: none; }
  .main-nav .nav-list { overflow-x: auto; }
  .main-nav .nav-list > li > a { padding: 16px 14px; font-size: 13px; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .hero { padding: 32px 0 16px; }
  .hero h1 { font-size: 28px; }
  .footer .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
  .vdp-specs .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .vdp-features .feat-grid { grid-template-columns: 1fr; }
  .vdp-options .opt-list { columns: 1; }
  .vdp-forms { padding: 24px; }
  .vdp-forms .form-row { grid-template-columns: 1fr; }
  .promo-banner .container { flex-direction: column; text-align: center; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
}

/* ========================================================================
   VDP v2 — matches orilliadodge.ca 1-for-1
   ======================================================================== */

/* Black Book trade-in banner */
.blackbook-banner {
  background: #1d1d1d;
  color: #fff;
  padding: 28px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.blackbook-banner .container { display: flex; align-items: center; gap: 32px; }
.blackbook-banner .bb-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blackbook-banner .bb-logo .leaf { font-size: 14px; margin-bottom: 2px; }
.blackbook-banner .bb-content h3 { margin: 0 0 8px; font-size: 22px; font-weight: 700; }
.blackbook-banner .bb-input-row { display: flex; align-items: center; gap: 16px; }
.blackbook-banner .bb-input { background: #fff; color: #222; padding: 10px 16px; border-radius: 2px; width: 420px; display: flex; align-items: center; gap: 10px; }
.blackbook-banner .bb-input span { color: #999; }
.blackbook-banner .bb-sub { font-size: 12px; color: #bbb; margin-top: 6px; }
.blackbook-banner .bb-alt { color: #fff; font-size: 13px; margin-left: auto; text-decoration: underline; }

/* Journey / step bar */
.vdp-journey {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  padding: 0;
}
.vdp-journey .container { display: flex; align-items: stretch; gap: 0; padding: 0 20px; }
.vdp-journey .see-showroom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-right: 1px solid var(--border-color);
  gap: 4px;
  min-width: 100px;
}
.vdp-journey .see-showroom::before { content: '🚗'; font-size: 18px; }
.vdp-journey .vehicle-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  flex: 1;
  border-right: 1px solid var(--border-color);
}
.vdp-journey .vehicle-strip img { width: 80px; height: 44px; object-fit: contain; }
.vdp-journey .vehicle-strip .make-model { font-size: 14px; color: var(--text-default); }
.vdp-journey .vehicle-strip .make-model .make { color: var(--text-muted); font-weight: 500; margin-right: 10px; letter-spacing: 0.3px; }
.vdp-journey .vehicle-strip .make-model strong { font-weight: 700; }
.vdp-journey .step-list { display: flex; align-items: stretch; }
.vdp-journey .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  gap: 4px;
  border-right: 1px solid var(--border-color);
  min-width: 92px;
}
.vdp-journey .step::before { content: '✓'; color: var(--brand-savings-green); font-size: 14px; font-weight: 700; }
.vdp-journey .step.current { background: #555; color: #fff; }
.vdp-journey .step.current::before { color: #fff; }

/* Garage strip */
.garage-strip {
  background: #555;
  color: #fff;
  padding: 14px 0;
  text-align: center;
}
.garage-strip .container { display: flex; justify-content: center; align-items: center; gap: 24px; }
.garage-strip .label { font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }
.garage-strip .label::before { content: '✓'; color: var(--brand-savings-green); font-size: 16px; }
.garage-strip .btn {
  background: #fff;
  color: var(--text-default);
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.garage-strip .btn::before { content: '🚗'; }

/* VDP v2 hero layout (price/ctas LEFT, image RIGHT) */
.vdp2 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 20px 0;
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 40px;
}
.vdp2-left { padding-right: 10px; }
.vdp2-left .make-label { font-size: 20px; font-weight: 700; color: var(--text-default); margin: 0 0 4px; }
.vdp2-left h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text-default);
  line-height: 1.15;
}
.vdp2-left .meta-line { font-size: 13px; color: var(--text-default); margin: 0 0 6px; letter-spacing: 0.3px; }
.vdp2-left .meta-line .label-k { color: var(--text-default); font-weight: 500; }
.vdp2-left .features-strip {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.3px;
  padding: 14px 0;
  margin: 14px 0;
}
.vdp2-left .price-box { border-top: 1px solid var(--border-color); padding: 14px 0; }
.vdp2-left .price-box .row-top { display: flex; justify-content: space-between; align-items: flex-start; }
.vdp2-left .price-box .row-top .msrp { font-size: 13px; text-transform: uppercase; color: var(--text-default); font-weight: 500; letter-spacing: 0.3px; }
.vdp2-left .price-box .row-top .cash-label { font-size: 11px; color: var(--text-default); text-align: right; }
.vdp2-left .price-box .fine-print-2 { font-size: 11px; color: var(--text-fine); line-height: 1.4; margin-top: 4px; flex: 1; padding-right: 20px; }
.vdp2-left .price-box .big-price { font-size: 26px; font-weight: 700; color: var(--text-default); text-align: right; white-space: nowrap; }
.vdp2-left .price-box.with-border { border-bottom: 2px solid #222; }
.vdp2-left .discount-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--text-default);
}
.vdp2-left .discount-row .amount { color: var(--brand-savings-green); font-weight: 700; }
.vdp2-left .discount-row .label-k { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-primary); font-weight: 500; }
.vdp2-left .discount-row .label-k::before { content: '🏷'; }
.vdp2-left .dealer-price-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--border-color);
  align-items: center;
}
.vdp2-left .dealer-price-row .label-k { font-size: 15px; font-weight: 700; color: var(--text-default); }
.vdp2-left .dealer-price-row .price { font-size: 20px; font-weight: 700; color: var(--text-default); }

.vdp2-left .cta-stack2 { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.vdp2-left .cta-stack2 .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  background: #fff;
  color: var(--text-default);
  transition: all 0.2s;
  cursor: pointer;
}
.vdp2-left .cta-stack2 .btn-prequal { border: 1px solid var(--brand-primary); color: var(--brand-primary); }
.vdp2-left .cta-stack2 .btn-prequal .equifax { background: #c8102e; color: #fff; font-size: 9px; font-weight: 700; padding: 2px 5px; border-radius: 2px; }
.vdp2-left .cta-stack2 .btn-primary-dark {
  background: #555;
  color: #fff;
  border-color: #555;
}
.vdp2-left .cta-stack2 .btn-primary-dark:hover { background: #333; text-decoration: none; }
.vdp2-left .cta-stack2 .btn:hover { text-decoration: none; border-color: #999; }

/* VDP v2 right — hero image */
.vdp2-right .hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #eee;
  overflow: hidden;
  position: relative;
}
.vdp2-right .hero-img img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.vdp2-right .thumb-strip { display: flex; justify-content: center; padding: 14px 0; }
.vdp2-right .thumb-strip .thumb-wrap {
  position: relative;
  width: 120px;
  height: 72px;
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
}
.vdp2-right .thumb-strip img { width: 100%; height: 100%; object-fit: cover; }
.vdp2-right .thumb-strip .more-count {
  position: absolute;
  inset: 0;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  opacity: 0.9;
}

/* Your vehicle affordability banner */
.affordability {
  background: linear-gradient(135deg, #19222b 0%, #2a333d 100%);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}
.affordability::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path d="M0 20 L40 20" stroke="%23ffffff08" stroke-width="1"/></svg>') repeat;
  opacity: 0.4;
}
.affordability .container { position: relative; max-width: 1000px; }
.affordability h2 { font-family: 'Montserrat', sans-serif; font-size: 38px; font-weight: 700; margin: 0 0 12px; }
.affordability p { font-size: 16px; margin: 0 0 24px; opacity: 0.85; }
.affordability .cta-row { display: inline-flex; flex-direction: column; gap: 10px; }
.affordability .pre-qual-btn {
  background: #fff;
  color: var(--text-default);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  display: inline-block;
  text-decoration: none;
}
.affordability .no-credit-hit { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.8; }

/* Three-column content grid */
.vdp2-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
}
.vdp2-content .panel {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 28px;
}
.vdp2-content .panel h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text-default);
}
.vdp2-content .panel .trim-badge { font-size: 13px; color: var(--text-muted); margin-top: -12px; margin-bottom: 16px; font-weight: 500; letter-spacing: 0.4px; }
.vdp2-content .specs-row { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-size: 14px; color: var(--text-default); }
.vdp2-content .specs-row .spec-icon {
  width: 24px;
  height: 24px;
  color: var(--text-default);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vdp2-content .specs-row .spec-icon svg { width: 20px; height: 20px; }
.vdp2-content .specs-row .spec-text { line-height: 1.4; }
.vdp2-content .specs-row .spec-text .sub { display: block; font-size: 11px; color: var(--text-fine); margin-top: 2px; }
.vdp2-content .specs-row .swatch-dot { width: 20px; height: 20px; border-radius: 50%; border: 1px solid #ccc; margin-right: 6px; flex-shrink: 0; }
.vdp2-content .specs-row .spec-label-k { display: block; font-size: 11px; color: var(--text-fine); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 2px; }

.vdp2-content .features-list { list-style: none; margin: 0; padding: 0; }
.vdp2-content .features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--text-default);
}
.vdp2-content .features-list li .ficon {
  width: 24px;
  height: 24px;
  color: var(--text-default);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.vdp2-content .see-all { font-size: 13px; color: var(--brand-primary); text-decoration: underline; margin-top: 16px; display: inline-block; cursor: pointer; }

.vdp2-content .acc-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vdp2-content .acc-tile {
  background: #19222b;
  color: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-radius: 2px;
  line-height: 1.3;
  min-height: 56px;
}
.vdp2-content .acc-tile::after { content: '›'; font-size: 18px; font-weight: 700; color: #fff; }

/* Take Action recap */
.take-action { padding: 40px 20px 20px; text-align: center; }
.take-action h2 { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 700; margin: 0 0 30px; }
.take-action .recap-card {
  background: #fff;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px;
  border-top: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 40px;
  align-items: center;
}
.take-action .recap-card .recap-img img { max-width: 100%; height: auto; }
.take-action .recap-card .recap-details { text-align: left; }
.take-action .recap-card .recap-details .make-label { font-size: 15px; font-weight: 700; margin: 0 0 6px; }
.take-action .recap-card .recap-details h3 { font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 700; margin: 0 0 20px; }
.take-action .recap-card .recap-details .price-mini { border-top: 1px solid var(--border-color); padding: 12px 0; display: flex; justify-content: space-between; align-items: center; }
.take-action .recap-card .recap-details .price-mini .label-k { font-size: 12px; text-transform: uppercase; color: var(--text-default); font-weight: 500; letter-spacing: 0.3px; }
.take-action .recap-card .recap-details .price-mini .price { font-size: 20px; font-weight: 700; }
.take-action .recap-card .recap-details .fine-print-3 { font-size: 11px; color: var(--text-fine); line-height: 1.4; margin: 4px 0; }
.take-action .recap-card .recap-details .final-price-row { border-top: 2px solid #111; padding: 14px 0; }
.take-action .recap-card .recap-ctas { display: flex; flex-direction: column; gap: 10px; min-width: 220px; }
.take-action .recap-card .recap-ctas .btn {
  display: block;
  padding: 14px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  background: #fff;
  color: var(--text-default);
}
.take-action .recap-card .recap-ctas .btn-dark { background: #555; color: #fff; border-color: #555; }
.take-action .payment-calc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-color);
  background: #fff;
  color: var(--text-default);
  padding: 12px 28px;
  margin: 40px 0 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  cursor: pointer;
}
.take-action .legal-block {
  max-width: 1100px;
  margin: 20px auto;
  font-size: 12px;
  color: var(--text-fine);
  line-height: 1.6;
  text-align: center;
}
.take-action .legal-block p { margin: 0 0 14px; }

/* Card tweaks — match OD title format + thumbnail in installed options */
.v-card .v-title .trim-muted {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.4px;
  margin-left: 4px;
  text-transform: uppercase;
}
.v-card .installed-options.with-thumb { display: grid; grid-template-columns: 1fr 120px; gap: 16px; align-items: center; }
.v-card .installed-options.with-thumb .io-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--border-color);
}
.v-card .installed-options.with-thumb .io-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v-card .installed-options.with-thumb .io-thumb .plus-count {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 2px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 700;
}
.v-card .show-legal-link {
  background: none;
  border: 0;
  color: var(--text-default);
  text-decoration: underline;
  font-size: 13px;
  cursor: pointer;
  padding: 14px 0 0;
  display: block;
}

/* responsive VDP v2 */
@media (max-width: 1024px) {
  .vdp2 { grid-template-columns: 1fr; gap: 24px; }
  .vdp2-content { grid-template-columns: 1fr; }
  .vdp-journey .step-list { display: none; }
  .blackbook-banner .container { flex-direction: column; align-items: flex-start; gap: 14px; }
  .blackbook-banner .bb-input { width: 100%; }
  .take-action .recap-card { grid-template-columns: 1fr; text-align: center; }
  .take-action .recap-card .recap-details { text-align: center; }
}

@media (max-width: 640px) {
  .vdp2 { padding: 20px 16px 0; }
  .vdp2-left h1 { font-size: 24px; }
  .vdp2-content .panel { padding: 20px; }
  .take-action h2 { font-size: 28px; }
  .garage-strip .container { flex-direction: column; gap: 12px; }
  .affordability { padding: 36px 0; }
  .affordability h2 { font-size: 28px; }
}

/* ========================================================================
   Card alignment fixes — keep SEE DETAILS at same Y across all cards
   ======================================================================== */

/* Feature strip always takes up space, even when empty */
.v-card .v-features-strip {
  min-height: 36px;
  display: flex;
  align-items: center;
}
.v-card .v-features-strip.placeholder {
  border: 0 !important;
  background: transparent;
  color: transparent;
}

/* Discount rows — placeholders preserve height but render invisibly */
.v-card .price-block .discount-row {
  min-height: 42px;
  box-sizing: border-box;
}
.v-card .price-block .discount-row.placeholder {
  visibility: hidden;
}

/* Flex: align CTAs to push INSTALLED OPTIONS area to bottom when content varies.
   Ensure min-heights on the installed-options block so Show Legal lines up. */
.v-card .installed-options.with-thumb {
  min-height: 120px;
}
.v-card .installed-options.with-thumb .io-list {
  min-height: 44px;
}
.v-card .show-legal-link {
  margin-top: auto;
}

/* Lock installed-options list to exactly 3 rows of option space so Show Legal aligns */
.v-card .installed-options.with-thumb .io-list {
  min-height: 68px;
  max-height: 68px;
  overflow: hidden;
}
.v-card .installed-options.with-thumb {
  min-height: 150px;
}

/* ========================================================================
   V1.1 — Ad-focused landing page
   ======================================================================== */

/* Hero */
.ad-hero { position: relative; min-height: 600px; overflow: hidden; background: #19222b; }
.ad-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.ad-hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  min-height: 600px;
  align-items: center;
}
.ad-hero-text { max-width: 640px; color: #fff; }
.ad-kicker {
  display: inline-block;
  background: var(--brand-primary);
  padding: 6px 12px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.ad-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 900;
  margin: 0 0 20px;
  letter-spacing: -1px;
}
.ad-hero h1 .hl-yellow { color: #ffd23f; }
.ad-hero .ad-sub {
  font-size: 19px;
  line-height: 1.5;
  margin: 0 0 24px;
  opacity: 0.95;
}
.ad-hero .ad-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}
.ad-hero .ad-bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.4;
}
.ad-hero .ad-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2fb34a;
  font-weight: 900;
  font-size: 18px;
}
.ad-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.ad-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
}
.ad-cta-primary {
  background: var(--brand-primary);
  color: #fff;
  border: 2px solid var(--brand-primary);
}
.ad-cta-primary:hover { background: var(--brand-primary-dark); border-color: var(--brand-primary-dark); text-decoration: none; color: #fff; }
.ad-cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.ad-cta-secondary:hover { background: #fff; color: var(--text-default); text-decoration: none; }
.ad-cta-tel {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.ad-cta-tel:hover { background: rgba(255,255,255,0.25); color: #fff; text-decoration: none; }
.ad-trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: 0.85;
  align-items: center;
}
.ad-trust-row span:first-child { color: #ffd23f; font-weight: 700; }

/* Stats strip */
.ad-stats {
  background: #19222b;
  color: #fff;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ad-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.ad-stat strong {
  font-family: 'Montserrat', sans-serif;
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: #ffd23f;
  line-height: 1;
}
.ad-stat span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #c8cdd3;
  margin-top: 8px;
}

/* Section heading utility */
.ad-section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 32px;
}

/* Trim picker */
.ad-trim-picker { padding: 72px 0; background: var(--bg-light); }
.ad-trim-picker .container { max-width: var(--max-width); }
.ad-trim-picker h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--text-default);
}
.trim-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trim-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.trim-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); text-decoration: none; color: inherit; }
.trim-card-img {
  background: linear-gradient(180deg, #f4f5f7 0%, #e8eaee 100%);
  padding: 24px;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trim-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.trim-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.trim-card-body h3 { font-family: 'Montserrat', sans-serif; font-size: 24px; margin: 0 0 8px; color: var(--text-default); font-weight: 800; }
.trim-card-body .trim-blurb { font-size: 14px; color: var(--text-muted); margin: 0 0 auto; line-height: 1.5; }
.trim-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
}
.trim-meta .count { font-weight: 700; color: var(--brand-primary); }
.trim-meta .arrow { font-size: 22px; font-weight: 700; color: var(--brand-primary); }

/* Full-width inventory (no sidebar) */
.ad-inventory { padding: 72px 0; background: #fff; }
.ad-inventory .container { max-width: var(--max-width); }
.ad-inventory h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--text-default);
}
.ad-inventory-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.ad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1280px) {
  .ad-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .ad-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ad-grid { grid-template-columns: 1fr; }
}

/* Why buy */
.ad-why { padding: 72px 0; background: var(--bg-light); }
.ad-why .container { max-width: var(--max-width); text-align: center; }
.ad-why h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 40px;
  color: var(--text-default);
}
.why-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.why-col {
  background: #fff;
  padding: 28px;
  border: 1px solid var(--border-color);
  border-radius: 2px;
}
.why-col .why-icon { font-size: 36px; margin-bottom: 12px; }
.why-col h3 { font-family: 'Montserrat', sans-serif; font-size: 18px; margin: 0 0 8px; color: var(--text-default); font-weight: 800; }
.why-col p { font-size: 14px; line-height: 1.5; color: var(--text-muted); margin: 0; }

/* Testimonial */
.ad-testimonial {
  padding: 72px 0;
  background: var(--brand-primary);
  color: #fff;
  text-align: center;
}
.ad-testimonial .container { max-width: 800px; }
.ad-testimonial .quote-mark { font-family: Georgia, serif; font-size: 120px; line-height: 1; opacity: 0.25; }
.ad-testimonial .quote {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 300;
  font-style: italic;
  margin: -20px 0 20px;
}
.ad-testimonial .attribution { font-size: 14px; margin: 0 0 12px; opacity: 0.9; }
.ad-testimonial .stars { font-size: 22px; letter-spacing: 4px; color: #ffd23f; }

/* Final CTA */
.ad-final-cta {
  padding: 72px 0 48px;
  background: linear-gradient(135deg, #19222b 0%, #2a333d 100%);
  color: #fff;
  text-align: center;
}
.ad-final-cta .container { max-width: 900px; }
.ad-final-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 32px;
  line-height: 1.2;
}
.ad-final-cta .ad-cta-row { justify-content: center; }
.ad-final-cta .ad-final-fine-print { font-size: 12px; opacity: 0.6; margin-top: 24px; }

/* Responsive */
@media (max-width: 1024px) {
  .ad-hero h1 { font-size: 40px; }
  .ad-hero-inner { padding: 60px 24px; min-height: 500px; }
  .ad-hero-bg { background-position: center right -100px; }
  .trim-cards { grid-template-columns: 1fr; gap: 16px; }
  .why-cols { grid-template-columns: repeat(2, 1fr); }
  .ad-stats .container { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .ad-stat strong { font-size: 32px; }
}
@media (max-width: 640px) {
  .ad-hero h1 { font-size: 32px; }
  .ad-hero .ad-bullets { grid-template-columns: 1fr; }
  .ad-hero-inner { padding: 48px 20px; min-height: 480px; }
  .why-cols { grid-template-columns: 1fr; }
  .ad-testimonial .quote { font-size: 18px; }
  .ad-final-cta h2 { font-size: 24px; }
  .ad-trim-picker, .ad-why, .ad-inventory, .ad-final-cta, .ad-testimonial { padding: 48px 0; }
}

/* ========================================================================
   V1.1 hero video background
   ======================================================================== */
.ad-hero .ad-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.ad-hero .ad-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(25,34,43,0.85) 0%,
    rgba(25,34,43,0.60) 45%,
    rgba(25,34,43,0.15) 100%);
  z-index: 1;
}
.ad-hero .ad-hero-inner { position: relative; z-index: 2; }

/* Reduced motion — honour users who disable animation; show poster only */
@media (prefers-reduced-motion: reduce) {
  .ad-hero .ad-hero-video { display: none; }
  .ad-hero {
    background-image: linear-gradient(90deg, rgba(25,34,43,0.85) 0%, rgba(25,34,43,0.6) 45%, rgba(25,34,43,0.15) 100%), url('../hero/wrangler-trail-hero-poster.jpg');
    background-size: cover;
    background-position: center;
  }
}

/* Mobile — save bandwidth, use poster only */
@media (max-width: 640px) {
  .ad-hero .ad-hero-video { display: none; }
  .ad-hero {
    background-image: linear-gradient(180deg, rgba(25,34,43,0.3) 0%, rgba(25,34,43,0.9) 100%), url('../hero/wrangler-trail-hero-poster.jpg');
    background-size: cover;
    background-position: center;
  }
}

/* Why-buy SVG icons (replacing emoji) */
.why-col .why-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  color: var(--brand-primary);
  background: rgba(67, 111, 176, 0.08);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.why-col .why-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

/* On-Order badge on vehicle card images (for stub records) */
.v-card .card-image .on-order-badge {
  position: absolute;
  top: 12px;
  left: 0;
  background: #19222b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 0 2px 2px 0;
  z-index: 2;
}

/* Refine savings-ribbon placeholder when no savings */
.v-card .savings-ribbon.placeholder {
  color: transparent;
  background: transparent;
  min-height: 36px;
}
.v-card .savings-ribbon.placeholder::before {
  content: none;
}

/* Icon polish — Lucide icons deserve better geometry than default why-icon box */
.why-col .why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(67, 111, 176, 0.10) 0%, rgba(67, 111, 176, 0.05) 100%);
  color: var(--brand-primary);
}
.why-col .why-icon svg {
  width: 26px;
  height: 26px;
}
.why-col:hover .why-icon {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: #fff;
  transition: background 0.3s, color 0.3s;
}
.why-col { transition: box-shadow 0.2s, transform 0.2s; }
.why-col:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }

/* ========================================================================
   v1.3 — Inventory pricing: regular price strike + WOW Orillia Dodge price
   ======================================================================== */

/* Regular Purchase Price (Cash) — single-line label replacing the
   stacked MSRP / Purchase-Price-(Cash) treatment */
.v-card .price-block .msrp-row .purchase-label-top {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.3;
  max-width: 160px;
}

/* Struck-through regular price — visually de-emphasised vs. OD price */
.v-card .price-block .msrp-price .price-strike {
  position: relative;
  display: inline-block;
  font-size: 19px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(231, 76, 60, 0.65);
  text-decoration-thickness: 2px;
  letter-spacing: -0.2px;
}

/* The WOW dealer-price-row treatment.
   Goal: make the Orillia Dodge Price the visual anchor of every card. */
.v-card .price-block .dealer-price-row.dealer-price-row--wow {
  position: relative;
  margin-top: 10px;
  padding: 14px 14px 12px;
  background: linear-gradient(135deg, #fff8d6 0%, #fff2a8 100%);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-top: 3px solid var(--brand-savings-green);
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 4px 14px rgba(47, 179, 74, 0.18),
    0 1px 3px rgba(25, 34, 43, 0.08);
}
.v-card .price-block .dealer-price-row.dealer-price-row--wow::before {
  content: 'BEST PRICE';
  position: absolute;
  top: -10px;
  left: 12px;
  padding: 3px 8px;
  background: var(--brand-savings-green);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(47, 179, 74, 0.3);
}
.v-card .price-block .dealer-price-row.dealer-price-row--wow .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  align-self: flex-end;
  padding-bottom: 4px;
  max-width: 110px;
  line-height: 1.2;
}
.v-card .price-block .dealer-price-row.dealer-price-row--wow .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--brand-savings-green);
  letter-spacing: -0.6px;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Slight responsive tweak — keep card readable on small phones */
@media (max-width: 380px) {
  .v-card .price-block .dealer-price-row.dealer-price-row--wow .price {
    font-size: 26px;
  }
  .v-card .price-block .dealer-price-row.dealer-price-row--wow .label {
    font-size: 11px;
  }
}

/* v1.3.1 — Align BEST PRICE row across cards with mismatched discount-row counts.
   Pins the dealer-price-row to a consistent baseline regardless of whether the
   card has 0 / 1 / 2 discount rows. */
.v-card .price-block {
  display: flex;
  flex-direction: column;
  min-height: 245px;
}
.v-card .price-block .dealer-price-row,
.v-card .price-block .dealer-price-row.dealer-price-row--wow {
  margin-top: auto;
}
