
:root { --gold:#C8A951; --muted:#9aa0a6; --maxw:1200px; }
*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;background:#000;color:#fff}
a{color:var(--gold);text-decoration:none}
a:hover{text-decoration:underline}
header{position:sticky;top:0;background:rgba(0,0,0,.9);border-bottom:1px solid rgba(200,169,81,.2);backdrop-filter:blur(8px)}
.nav{max-width:var(--maxw);margin:0 auto;display:flex;gap:20px;align-items:center;padding:12px 16px}
.nav img{height:40px}
.nav ul{margin-left:auto;list-style:none;display:flex;gap:18px;padding:0}
.nav a.btn{padding:10px 16px;border:1px solid var(--gold);border-radius:999px}
.hero{display:grid;place-items:center;min-height:60vh;text-align:center;padding:80px 16px;background:linear-gradient(180deg,#0b0b0b,#000)}
.hero h1{font-size:clamp(30px,6vw,60px);margin:0 0 12px}
.hero p{color:var(--muted);max-width:760px;margin:0 auto 22px}
.btn-primary{background:var(--gold);color:#111;padding:12px 18px;border:0;border-radius:10px;font-weight:700}
.btn-outline{background:transparent;border:1px solid var(--gold);color:var(--gold);padding:12px 18px;border-radius:10px}
.section{max-width:var(--maxw);margin:0 auto;padding:56px 16px}
.grid{display:grid;gap:16px}
.cards{grid-template-columns:repeat(auto-fit,minmax(270px,1fr))}
.card{background:#0e0e0e;border:1px solid rgba(200,169,81,.15);border-radius:10px;padding:16px}
.kpis{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}
.kpi{text-align:center;background:#0e0e0e;border:1px solid rgba(200,169,81,.15);border-radius:10px;padding:18px}
.form input,.form textarea{width:100%;background:#0e0e0e;color:#fff;border:1px solid rgba(200,169,81,.25);border-radius:10px;padding:12px;margin-bottom:10px}
.actions{display:grid;gap:10px}
@media(min-width:560px){.actions{grid-template-columns:1fr 1fr}}
.fab{position:fixed;right:16px;bottom:16px;background:var(--gold);color:#111;padding:12px 18px;border-radius:999px}
footer{border-top:1px solid rgba(200,169,81,.25);background:#0b0b0b;padding:40px 16px}
footer .cols{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;max-width:var(--maxw);margin:auto}
.reviews.cards{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.review-card .stars{font-size:18px;letter-spacing:2px}
.review-card .name{font-weight:700;margin-top:8px}
.review-card .date{color:var(--muted);font-size:12px}


/* === Premium layout layer (multi-page, minimal & editorial) === */
html { scroll-behavior: smooth; }
body { letter-spacing: 0.2px; }

/* Header */
header.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,175,55,0.25);
}
header.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand img{ height: 36px; width:auto; display:block; }
.brand .brand-name{
  font-weight: 800;
  letter-spacing: 1px;
}

/* Nav */
nav.site-nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:nowrap;
  justify-content:flex-end;
}
nav.site-nav a{
  text-decoration:none;
  opacity:0.9;
}
nav.site-nav a:hover{ opacity:1; }

/* CTA buttons in header */
.header-actions{
  display:flex;
  gap:10px;
  align-items:center;
  margin-left: 10px;
}
.btn-ghost{
  border:1px solid rgba(212,175,55,0.55);
  padding: 10px 14px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
}
.btn-ghost:hover{ border-color: rgba(212,175,55,0.9); }
.btn-whatsapp{
  background: var(--gold);
  color:#111 !important;
  border:1px solid var(--gold);
  padding: 10px 14px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
}
.btn-whatsapp:hover{ filter: brightness(1.05); }

/* Hero (home only) */
.hero-premium{
       /* Remove the enforced minimum height so the hero only takes up as much space as its content */
       display:flex;
       align-items:center;
       justify-content:center;
       text-align:center;
       padding: 60px 16px 20px;
}
.hero-premium .inner{
  max-width: 900px;
}
.kicker{
  display:inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 999px;
  font-weight: 700;
  opacity: 0.95;
  margin-bottom: 18px;
}
.hero-premium h1{
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}
.hero-premium p{
  max-width: 720px;
  margin: 0 auto 22px;
  opacity: 0.9;
  font-size: 16px;
}
.cta-row{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 6px;
}

/* Page shell */
.page{
  padding: 56px 16px;
}
.page .container{
  max-width: 1000px;
  margin: 0 auto;
}
.page h1{
  margin:0 0 10px;
  letter-spacing: -0.3px;
}
.page p{ opacity:0.92; }

/* Footer */
footer.site-footer{
  border-top: 1px solid rgba(212,175,55,0.18);
  padding: 28px 16px;
  opacity: 0.95;
}
footer.site-footer .container{
  max-width: 1100px;
  margin: 0 auto;
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer-small{ opacity:0.85; font-size: 13px; }

/* Home should feel non-scrollable */
body.home { overflow: hidden; }
body.home header.site-header{ position: fixed; width: 100%; }
/* Reduce the top padding on the home hero to bring content closer to the header */
body.home .hero-premium{ padding-top: 80px; }
@media (max-width: 860px){
  body.home{ overflow:auto; } /* allow small screens to scroll if needed */
  body.home header.site-header{ position: sticky; }
  /* On smaller screens reduce the top padding further so there isn't excessive space */
  .hero-premium{ padding-top: 60px; }
  nav.site-nav ul{ gap: 12px; }
}

/* === FINAL: header connect icons + homepage sections + warranty layout === */
.header-right{ display:flex; align-items:center; gap:10px; }
.connect{
  display:flex; align-items:center; gap:10px;
  padding-left: 8px; border-left: 1px solid rgba(212,175,55,0.22);
  margin-left: 6px;
}
.connect-label{ font-size: 11px; letter-spacing: 1.5px; opacity: 0.85; font-weight: 800; }
.social{ width: 22px; height: 22px; display:inline-flex; align-items:center; justify-content:center; opacity: 0.9; color: inherit; }
.social svg{ width: 22px; height: 22px; fill: currentColor; }
.social:hover{ opacity:1; filter: brightness(1.05); }

body.home-scroll{ overflow:auto; }
.section{ padding: 72px 16px; }
.section-alt{ border-top: 1px solid rgba(212,175,55,0.12); border-bottom: 1px solid rgba(212,175,55,0.12); }
.section h2{ margin: 0 0 10px; letter-spacing: -0.2px; }
.muted{ opacity: 0.9; }
.trust-list{list-style:none;padding:0;margin:18px 0 0;display:grid;gap:10px;max-width:820px;}
.trust-list li{padding:10px 0;border:0;background:transparent;border-radius:0;margin:0;color:rgba(255,255,255,0.92);display:flex;gap:10px;align-items:flex-start;}
/* Remove default bullet and prepare list items for inline ticks */
.trust-list li::before{content:none;}

/* Styled list for the finance page. Mirrors the trust-list styling so that bullets are consistent across the site */
.finance-list{list-style:none;padding:0;margin:18px 0 0;display:block;max-width:820px;}
/* Reduce vertical spacing and adjust the gap so the finance bullets look tighter on smaller screens */
.finance-list li{padding:6px 0;background:transparent;border-radius:0;margin:0;color:rgba(255,255,255,0.92);display:flex;gap:4px;align-items:flex-start;}
/* Hide the default tick for finance lists (tick will be embedded in HTML) */
.finance-list li::before{content:none;}
.finance-list li strong{
  /* Keep the label and description snug; only a small space after the colon */
  margin-right:2px;
}

/* ==== Custom list tick styling ====
   The tick icons for trust and finance lists are now inserted via an explicit
   <span class="tick"> element at the end of each list item in the HTML.
   Hide the original ::before pseudo-elements to avoid duplicate icons.
*/
.trust-list li::before,
.finance-list li::before{
  content: none;
}

/* Style applied to tick spans */
.tick{
  color: var(--gold);
  font-weight: 700;
  margin-left: 4px;
  white-space: nowrap;
}

/* Ensure list items display as block elements without flex so the tick flows inline */
.trust-list li,
.finance-list li{
  display: block;
  align-items: initial;
  gap: 0;
}

/* Remove horizontal gap for trust and finance list items so the tick sits flush after the sentence */
.trust-list li,
.finance-list li{
  gap: 0;
}

.two-col{
  display:grid; grid-template-columns: 1.6fr 0.9fr;
  gap: 18px; margin-top: 18px; align-items:start;
}
.badge-card{
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 16px; padding: 16px; text-align:center;
}
.badge{ max-width: 220px; width: 100%; height:auto; }
.h3{ font-size: 18px; margin-top: 0; }
.bullet{ padding-left: 18px; }
.fine{ font-size: 13px; opacity: 0.85; margin-top: 10px; }

.media-grid{
  display:grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 22px;
}
.media{
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 16px; padding: 14px;
}
.media figcaption{ font-weight: 800; margin-bottom: 10px; opacity: 0.95; }
.media img{ width: 100%; height: auto; border-radius: 12px; display:block; }
.details summary{ cursor: pointer; }

@media (max-width: 980px){
  .site-nav{ display:none; }
  .header-right{ flex-wrap:nowrap; justify-content:flex-end; gap:10px; }
  .header-actions .btn{ padding:8px 12px; font-size:14px; }
  .two-col{ grid-template-columns: 1fr; }
  .media-grid{ grid-template-columns: 1fr; }
  .header-right{ flex-wrap: wrap; justify-content:flex-end; }
  .connect{ border-left:none; padding-left:0; margin-left:0; }
}

.trust-block{margin-top:44px;border-top:1px solid rgba(255,255,255,0.08);padding-top:36px;}
/* Footer (enhanced) */
.footer-wrap{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:28px;padding:26px 0;}
.footer-col h4{margin:0 0 10px;font-size:13px;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.75);}
.footer-links{display:flex;flex-wrap:wrap;gap:10px;}
.footer-links a{color:var(--gold);text-decoration:none;font-size:13px;}
.footer-links a:hover{text-decoration:underline;}
.footer-legal{margin-top:14px;color:rgba(255,255,255,0.62);font-size:12px;line-height:1.55;}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.08);padding:14px 0;display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;}
.footer-brandline{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,0.75);font-size:12px;}
.footer-brandline img{width:22px;height:22px;object-fit:contain;opacity:0.95;}
@media (max-width:900px){
  .footer-wrap{grid-template-columns:1fr;gap:18px;}
}


/* Warranty media */
.warranty-media-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:22px;}
.warranty-media{border:1px solid rgba(255,255,255,0.10);border-radius:16px;padding:14px;background:rgba(255,255,255,0.02);}
.warranty-media img{width:100%;height:240px;object-fit:cover;border-radius:12px;display:block;cursor:zoom-in;}
.warranty-media figcaption{margin-top:10px;color:rgba(255,255,255,0.7);font-size:13px;}
@media (max-width:900px){.warranty-media-grid{grid-template-columns:1fr;}.warranty-media img{height:220px;}}
/* Image modal */
.img-modal{position:fixed;inset:0;background:rgba(0,0,0,0.85);display:none;align-items:center;justify-content:center;padding:24px;z-index:9999;}
.img-modal.open{display:flex;}
.img-modal img{max-width:min(1100px, 96vw);max-height:92vh;border-radius:14px;box-shadow:0 20px 70px rgba(0,0,0,0.5);}
.img-modal button{position:absolute;top:16px;right:16px;border:1px solid rgba(255,255,255,0.25);background:rgba(0,0,0,0.35);color:#fff;border-radius:999px;padding:10px 12px;cursor:pointer;}


/* Header spacing fix for inner pages */
main.page { padding-top: 120px; }
@media (max-width: 768px) {
  main.page { padding-top: 90px; }
}


/* Header spacing normalization */
header + main, header + .page, header + section {
  margin-top: 0;
}
.page-header, .page-hero, .hero {
  padding-top: 120px;
}
@media (max-width: 768px){
  .page-header, .page-hero, .hero {
    padding-top: 90px;
  }
}


/* === Warranty page final alignment fix === */
.warranty-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.warranty-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .warranty-media-grid {
    grid-template-columns: 1fr;
  }
  .warranty-media img {
    height: 220px;
  }
}


/* FINAL NAVBAR FIX – unified button height */
.nav-actions a {
  height: 44px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  line-height: 1;
}

.hamburger{display:none;background:none;border:none}
.hamburger span{display:block;width:24px;height:2px;margin:5px 0;background:#d4af37}
.mobile-menu{position:fixed;top:0;right:-100%;width:75%;height:100%;background:#000;padding:80px 24px;transition:right .3s}
.mobile-menu a{color:#fff;text-decoration:none;font-size:18px;padding:12px 0}
.mobile-menu.active{right:0}
@media(max-width:768px){
.nav-links{display:none!important}
.hamburger{display:block}
}


/* Mobile menu */
#mobileMenuBtn {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  font-size: 28px;
  color: #d4af37;
  cursor: pointer;
  display: none;
}

#mobileMenu {
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100%;
  background: #000;
  z-index: 9998;
  padding: 80px 20px;
  transition: right 0.3s ease;
}

#mobileMenu a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 18px;
}

#mobileMenu.open {
  right: 0;
}

@media (max-width: 900px) {
  #mobileMenuBtn {
    display: block;
  }
}


/* === Mobile Header Rebuild === */
@media (max-width: 768px) {
  /* Equalise CTA buttons */
  .cta-buttons, .header-ctas, .nav-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .cta-buttons a, .header-ctas a, .nav-ctas a {
    width: 100%;
    text-align: center;
  }
}

/* Slim mobile top bar */
.mobile-topbar {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #000;
  padding: 8px 12px;
  display: none;
}
.mobile-topbar button {
  background: none;
  border: 0;
  color: #d4af37;
  font-size: 26px;
}

/* Slide-in menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #000;
  padding: 80px 20px;
  z-index: 9999;
  transition: right .3s ease;
}
.mobile-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 0;
}
.mobile-menu.open { right: 0; }

@media (max-width: 768px) {
  .mobile-topbar { display: block; }
}



/* === Mobile header layout: logo spans button stack, equal CTA widths === */
@media (max-width: 768px){
  .site-header .container{
    display: grid !important;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 10px 12px;
    align-items: center;
  }
  .site-header .brand{
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: stretch;
    display:flex;
    align-items:center;
  }
  .site-header .brand img{
    height: 44px;
    width: auto;
  }
  .site-header .brand-name{ display:none; } /* keep it clean on mobile */
  .site-header .header-right{
    grid-column: 2;
    grid-row: 1 / span 2;
    display:flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: nowrap !important;
  }
  .site-header .btn-ghost,
  .site-header .btn-whatsapp{
    /* Use fixed widths for CTAs on small screens to match the home page */
    width: 168px;
    min-width: 168px;
    text-align: center;
    padding: 10px 14px;
    white-space: nowrap;
  }
  .site-header .connect{
    grid-column: 1 / -1;
    grid-row: 3;
    justify-content: center;
    width: 100%;
    padding-left: 0 !important;
    margin-left: 0 !important;
    border-left: none !important;
  }
  .site-nav{ display:none !important; } /* keep header compact */
}


/* ================================
   iPad / Tablet Cleanup FIX
   ================================ */

/* Kill desktop hero/logo layer on tablet */
@media (max-width: 1024px) {
  .hero-background,
  .hero-bg,
  .hero-logo,
  .hero-image,
  .desktop-hero,
  .hero-desktop {
    display: none !important;
  }
}

/* Disable mobile CTA + floating actions on tablet & desktop */
@media (min-width: 768px) {
  .mobile-cta,
  .mobile-actions,
  .floating-cta,
  .mobile-buttons,
  .mobile-bar {
    display: none !important;
  }
}


/* === HARD HEADER LOCK === */

/* Desktop & iPad: desktop header ONLY */
@media (min-width: 768px) {
  .mobile-header,
  .mobile-cta,
  .floating-cta,
  .hamburger {
    display: none !important;
  }
}

/* Mobile only */
@media (max-width: 767px) {
  .desktop-header,
  .site-header {
    display: none !important;
  }
}


/* ===== FINAL HEADER RULES ===== */

/* Phones only */
@media (max-width: 767px) {
  .hamburger {
    display: block;
  }
}

/* iPad + Desktop */
@media (min-width: 768px) {
  .hamburger,
  .mobile-nav,
  .mobile-menu,
  .slide-menu {
    display: none !important;
  }
}

/* Normalize CTA buttons */
.header-buttons a {
  min-width: auto;
  white-space: nowrap;
  text-align: center;
}

/* Keep header CTA buttons same height on tablets/desktop */
.header-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  line-height: 1;
  white-space: nowrap;
}


/* Ensure header CTA buttons stay the same height and never wrap */
.header-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  line-height: 1;
  white-space: nowrap;
}

/* ===== Mobile top bar (phones only) ===== */
@media (max-width: 767px) {
  /* Hide the desktop header entirely on phones */
  .site-header {
    display: none !important;
  }

  .mobile-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    background: rgba(0,0,0,0.92);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .mobile-brand {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 13px;
    text-decoration: none;
  }

  .mobile-menu-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 28px;
    line-height: 1;
    padding: 6px 10px;
    cursor: pointer;
  }

  .mobile-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 1199;
    background: rgba(0,0,0,0.96);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: none;
    flex-direction: column;
    padding: 10px 14px;
    gap: 10px;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px 8px;
    border-radius: 10px;
  }

  .mobile-menu a:hover {
    background: rgba(255,255,255,0.06);
  }

  /* Push page content below fixed bar */
  body {
    padding-top: 56px;
  }
}

@media (min-width: 768px) {
  .mobile-topbar,
  .mobile-menu {
    display: none !important;
  }
  body {
    padding-top: 0;
  }
}


/* --- Showroom placeholders (added) --- */
.showroom-listings{margin-top:24px}
.showroom-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
@media (max-width: 900px){.showroom-grid{grid-template-columns:1fr}}
.vehicle-card{overflow:hidden}
.vehicle-media{display:block}
.vehicle-media img{
  /*
   * Constrain the height of vehicle listing thumbnails so that
   * portrait photos don’t stretch the card vertically. We set
   * a fixed height and allow the image to crop itself to fit.
   * object-fit: cover maintains the aspect ratio and avoids
   * distortion while filling the available space.
   */
  width: 100%;
  /* Increase the fixed height of the showroom thumbnails so vehicles are
   * presented more prominently (similar to competitor listings). */
  height: 260px;
  /*
   * Crop taller images from the top to better showcase the car. We use
   * object-fit: cover to fill the container and anchor the focal point to
   * the bottom of the image so that more of the vehicle remains visible.
   * This avoids large letterboxing while still keeping a consistent
   * thumbnail height.
   */
  object-fit: cover;
  object-position: center;
  display: block;
  border-bottom: 1px solid rgba(200,169,81,.25);
}
.vehicle-body{padding:14px}
.vehicle-top{display:flex;align-items:baseline;justify-content:space-between;gap:12px}
.vehicle-title{margin:0;font-size:18px}
.vehicle-price{font-weight:700;color:var(--gold)}
.vehicle-meta{margin-top:6px}
.vehicle-points{margin:12px 0 0 18px}
.vehicle-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}

/* Featured grid for home page */
.featured-grid{
  display: grid;
  /* Limit the width of the featured listings to prevent oversized thumbnails */
  max-width: 600px;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 22px auto 0;
}
.vehicle-detail{padding:0;overflow:hidden}
.vehicle-detail-image{width:100%;display:block}
.vehicle-detail-body{padding:16px}

/* Gallery styles for vehicle detail pages */
.vehicle-detail-gallery{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.vehicle-detail-gallery img{
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(200,169,81,0.25);
  border-radius: 8px;
}

/* Slider styles for vehicle detail pages */
.vehicle-slider{
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 0;
  margin-bottom: 24px;
  /* Constrain height so the slider never exceeds the screen */
  height: 55vh;
}
.vehicle-slider img{
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  scroll-snap-align: start;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(200,169,81,0.25);
  border-radius: 8px;
}
.vehicle-slider::-webkit-scrollbar{
  display: none;
}

/* Wrapper around slider to position navigation arrows */
.vehicle-slider-wrapper{
  position: relative;
}
/* Slider navigation arrows */
.slider-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  padding: 0;
}
.slider-arrow:hover{
  background: rgba(0, 0, 0, 0.55);
}
.slider-arrow.slider-prev{
  left: 10px;
}
.slider-arrow.slider-next{
  right: 10px;
}

