/**
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 5,700+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Template:     astra

/* Note: The CSS files are loaded from assets/css/ folder. */

:root {
  --bs-dropdown-item-padding-y: 5px;
  --bs-dropdown-item-padding-x: 15px;
}

.hide {
  display: none;
}

.overview-inner {
  border: solid 1px #cdcdcd;
  padding: 6px 0px;
  margin: 14px 0;
  border-radius: 15px;
}

.brand-box {
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 0px 0 0;
  max-width: 100%;
  overflow: hidden;
  background: #fff;
  margin: 50px auto;
}

ul.car-brands {
  /* width: 100%; */
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid #eee;
}

li.brand {
  /* list-style-type: none;
  display: inline-block;
  padding: 30px 25px;
  text-align: center;
  border: solid 1px #cdcdcd;
  border-right-width: 0;
  width: 16.6667%; */
  text-align: center;
  /* padding: 18px 10px; */
  padding: 25px 50px;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

ul.car-brands li:nth-child(6n) {
  border-right: none;
}

li div.category-image-wrapper {
  width: 100%;
  height: auto;
}

.accordion-button {
  background-color: var(--bs-accordion-btn-bg);
  color: var(--bs-accordion-btn-color);
}

/**********************************/

/* Horizontal scroll wrapper */
.tab-cards-wrapper {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Each card should snap nicely */
.tab-cards-wrapper > div {
  scroll-snap-align: start;
}

/* Optional: hide scrollbar on Webkit */
.tab-cards-wrapper::-webkit-scrollbar {
  display: none;
}

/**********************************/
/**********************************/

.tabs-wrapper {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
}

.tabs {
  position: relative;
  display: flex;
  background: #ffffff;
  padding: 10px;
  border-radius: 12px;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
}

.ast-single-post .entry-content a,
.tabs a {
  text-decoration: none !important;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  position: relative;
  padding: 12px 20px;
  white-space: nowrap;
  cursor: pointer;
  color: #6b7280;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
  border-radius: 8px;
}

.tab:hover {
  color: #6366f1;
  /* background: #f3f4f6; */
}

.tab.active {
  color: #4f46e5;
  font-weight: 600;
}

/* Sliding indicator */
.indicator {
  position: absolute;
  bottom: 5px;
  height: 3px;
  background: linear-gradient(90deg, #4f46e5, #6366f1);
  border-radius: 4px;
  transition: 0.3s ease;
  pointer-events: none;
}

/* -------------------- Tab Content -------------------- */
.tab-content {
  /* margin-top: 25px; */
  padding: 10px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: none;
  /* hidden by default */
  animation: fade 0.3s ease;
}

/* Show only active content */
.tab-content.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/**********************************/
/**********************************/

.search-container {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  margin: 50px auto;
}

.search-type {
  display: flex;
  background: #f0f2f5;
  border-radius: 25px;
  overflow: hidden;
}

.search-type button {
  border: none;
  background: none;
  padding: 8px 20px;
  cursor: pointer;
  font-weight: 500;
  color: #555;
}

.search-type button.active {
  background: #00796b;
  color: white;
  border-radius: 25px;
}

.search-box {
  position: relative;
  flex: 1;
  display: flex;
  min-width: 500px;
}

.search-box input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid #d1d9e0;
  border-radius: 25px;
  font-size: 15px;
  outline: none;
}

.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  font-size: 18px;
  pointer-events: none;
}

/* Dropdown styling */
.search-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: none;
  z-index: 100;
  max-height: 200px;
  overflow: auto;
}

/* .search-box input:focus + .search-icon + .search-dropdown {
  display: block;
} */

.dropdown-section {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.dropdown-section:last-child {
  border-bottom: none;
}

.section-title {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  padding: 5px 15px;
}

.dropdown-item {
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  padding: 5px 15px;
}

.dropdown-item:hover {
  background: #f8f9fb;
}

.dropdown-item a {
  text-decoration: none !important;
  font-size: 15px;
  line-height: 18px;
}

.icon {
  color: #888;
}

.section-recent-viewed {
  display: none;
}

/**********************************/
/**********************************/
/**********************************/
/**********************************/

.hidden-row {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}

.show-row {
  display: table-row;
  opacity: 1;
  transform: translateY(0);
}

.view-more-variants-wrapper {
  display: flex;
  justify-content: center;
}

/**********************************/
/**********************************/

.container.cars_by_budget,
.container.cars_by_fueltype,
.container.cars_by_bodytype {
  margin-bottom: 20px;
}

/**********************************/
/**********************************/
/**********************************/

/* Responsive (4 per row) */
@media (max-width: 992px) {
  .brand-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .search-container .search-box {
    min-width: 100%;
  }
}

/* Responsive (3 per row) */
@media (max-width: 600px) {

  .brand-list {
    grid-template-columns: repeat(3, 1fr);
 padding: 15px !important;
  }
}

/* Mobile styling */
@media (max-width: 480px) {
  body {
    padding: 8px !important;
  }

  .tab {
    font-size: 13px;
    padding: 10px 16px;
  }
}

/**********************************/
/**********************************/

/* Reduce gap between header and page content */
.site-content,
#content,
.ast-separate-container,
.ast-article-post,
.ast-container { padding-top: 0 !important; margin-top: 0 !important; }
#primary,
.ast-separate-container #primary { padding-top: 1em !important; }
@media (min-width: 993px) {
    .ast-separate-container #primary,
    .ast-separate-container.ast-left-sidebar #primary,
    .ast-separate-container.ast-right-sidebar #primary { margin: 0 !important; }
}

/* Shift car page tab nav to left */
#carTabs { justify-content: flex-start !important; padding-left: 0 !important; margin-left: 0 !important; }
#carTabs .nav-link { padding-left: 0.5em; padding-right: 0.5em; }

/* Heading sizes — car single pages */
body #primary h1 { font-size: 1.4rem !important; }
body #primary h2 { font-size: 1.2rem !important; }
body #primary h3 { font-size: 1.0rem !important; }

/* Car card link — remove underline from all grids site-wide */
.gdp-card-link { display: block; text-decoration: none !important; color: inherit; }

/* ── Car card image box — fixed equal height across all widgets ── */
.gdp-card-img-wrap {
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    overflow: hidden;
    position: relative;
    background: #fff;
    flex-shrink: 0;
    border: 1px solid #e8e8e8;
    border-radius: 8px 8px 0 0;
    padding: 8px;
    box-sizing: border-box;
}
.gdp-card-img-wrap img,
.gdp-card-img { width: 100%; height: 100% !important; object-fit: contain; display: block; }
@media (max-width: 600px) {
    .gdp-card-img-wrap {
        height: 120px !important;
        min-height: 120px !important;
        max-height: 120px !important;
    }
}

/* ── Defensive nav-icon safety net ──────────────────────────────────────────
   Astra's parent CSS hides .ast-icon by default and sizes the arrow SVG.
   These rules duplicate that so the header stays intact even when the parent
   stylesheet has a temporary load failure on the server.               ── */
.ast-icon { display: none; }
.ast-icon.icon-arrow { display: inline-block; pointer-events: none; }
.ast-icon svg, header .ast-icon svg,
.main-header-bar .ast-icon svg,
.main-navigation .ast-icon svg {
    max-width: 1em !important;
    max-height: 1em !important;
    width: .95em !important;
    height: .85em !important;
    position: relative;
    margin-left: 10px;
}

/* Force desktop horizontal nav above Astra's default 921px mobile breakpoint */
@media (min-width: 922px) {
    .ast-header-break-point .main-header-bar .ast-button-wrap .menu-toggle { display: none !important; }
    .ast-header-break-point .main-header-bar .main-navigation { display: block !important; }
}

/* ── Pagination — applies to astra_pagination() on tag.php / blog pages ── */
.navigation.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
}
.navigation.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1.5px solid #dde0e8;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    background: #fff;
    transition: border-color .15s, color .15s;
    white-space: nowrap;
    line-height: 1;
}
.navigation.pagination a.page-numbers:hover {}
.navigation.pagination .page-numbers.current {
    background: #e84118;
    border-color: #e84118;
    color: #fff;
    pointer-events: none;
}
.navigation.pagination .page-numbers.dots {
    border: none;
    background: none;
    min-width: auto;
    padding: 0 4px;
    color: #888;
    font-weight: 500;
}
.navigation.pagination .prev.page-numbers,
.navigation.pagination .next.page-numbers {
    padding: 0 14px;
}

/* ── Kill Bootstrap/browser default blue focus highlight on all buttons & links ── */
*:focus,
*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
button:focus,
button:hover,
a:focus,
a:hover,
.btn:focus,
.btn:hover,
.btn:focus-visible,
.btn-check:focus + .btn,
.btn-check:checked + .btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* ═══════════════════════════════════════════════════════════
   Blog Archive  —  /blog/  (archive-blog.php)
   ═══════════════════════════════════════════════════════════ */

/* ── Single root wrapper (ONE flex item inside Astra's .ast-container) ── */
.gdp-barc-wrap { --accent: #e84118; --card-radius: 10px; --shadow: 0 2px 12px rgba(0,0,0,.08); font-family: inherit; width: 100%; min-height: 60vh; background: #fff; }

/* ── Page header ── */
.gdp-barc-header { background: #fff; border-bottom: 1px solid #e8e8e8; padding: 24px 20px 16px; }
.gdp-barc-page-title { font-size: 1.6rem; font-weight: 700; color: #1a1a1a; margin: 0 0 4px; }
.gdp-barc-page-desc  { font-size: 0.9rem; color: #666; margin: 0 0 16px; }

/* ── Tag filter chips ── */
.gdp-barc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.gdp-barc-chip  {
    display: inline-block; padding: 5px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
    border: 1.5px solid #ddd; color: #444; text-decoration: none; background: #fff;
    transition: all .18s;
}
.gdp-barc-chip:hover  {}
.gdp-barc-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── Body layout ── */
.gdp-barc-body  { display: flex; align-items: flex-start; gap: 28px; padding: 28px 0 48px; }
.gdp-barc-main  { flex: 1; min-width: 0; }
.gdp-barc-sidebar { width: 300px; flex-shrink: 0; align-self: flex-start; position: sticky; top: 90px; }

/* ── Shared: All Brands grid (used in single-blog + archive-blog sidebars) ── */
.gdp-art-brands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #eee; margin: 8px 0 0; }
.gdp-art-brand-item { background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 10px 6px; gap: 4px; text-decoration: none; color: inherit; transition: background .15s; }
.gdp-art-brand-item:hover { background: #fff8f6; }
.gdp-art-brand-img { max-width: 56px; max-height: 36px; width: auto; height: auto; object-fit: contain; display: block; }
.gdp-art-brand-noimg { width: 44px; height: 32px; display: flex; align-items: center; justify-content: center; background: #f0f0f0; border-radius: 4px; font-size: 0.55rem; font-weight: 700; color: #999; text-align: center; }
.gdp-art-brand-name { font-size: 0.65rem; color: #555; font-weight: 600; text-align: center; }

/* ── No-image placeholder ── */
.gdp-barc-noimg    { background: #e0e0e0; display: flex; align-items: center; justify-content: center; }
.gdp-barc-noimg::after    { content: '🚗'; font-size: 2rem; opacity: .35; }
.gdp-barc-noimg-sm { background: #e8e8e8; }

/* ── Shared card link reset ── */
.gdp-barc-hero-link,
.gdp-barc-card-link,
.gdp-barc-list-link { display: block; text-decoration: none; color: inherit; }

/* ── HERO ── */
.gdp-barc-hero { position: relative; border-radius: var(--card-radius); overflow: hidden; margin-bottom: 20px; box-shadow: var(--shadow); }
.gdp-barc-hero-img { width: 100%; height: 420px; object-fit: cover; display: block; }
.gdp-barc-hero .gdp-barc-noimg { height: 420px; }
.gdp-barc-hero-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
    padding: 40px 24px 24px;
}
.gdp-barc-label {
    display: inline-block; background: var(--accent); color: #fff;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    padding: 3px 10px; border-radius: 4px; margin-bottom: 10px; letter-spacing: .5px;
}
.gdp-barc-hero-title { font-size: 1.5rem; font-weight: 700; color: #fff; margin: 0 0 8px; line-height: 1.3; }
.gdp-barc-hero-meta  { font-size: 0.8rem; color: rgba(255,255,255,.75); }
.gdp-barc-hero-link:hover .gdp-barc-hero-title { text-decoration: underline; }

/* ── 3-COLUMN GRID ── */
.gdp-barc-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.gdp-barc-card  { background: #fff; border-radius: var(--card-radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.gdp-barc-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.gdp-barc-card-imgwrap { position: relative; overflow: hidden; }
.gdp-barc-card-img { width: 100%; height: 175px; object-fit: cover; display: block; transition: transform .3s; }
.gdp-barc-card .gdp-barc-noimg { height: 175px; }
.gdp-barc-card:hover .gdp-barc-card-img { transform: scale(1.04); }
.gdp-barc-card-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--accent); color: #fff;
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    padding: 3px 8px; border-radius: 4px; letter-spacing: .4px;
}
.gdp-barc-card-body    { padding: 14px; }
.gdp-barc-card-title   { font-size: 0.92rem; font-weight: 700; color: #1a1a1a; margin: 0 0 6px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gdp-barc-card-excerpt { font-size: 0.8rem; color: #666; margin: 0 0 10px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gdp-barc-card-meta    { font-size: 0.75rem; color: #999; }

/* ── LIST SECTION ── */
.gdp-barc-section-heading { font-size: 1.05rem; font-weight: 700; color: #1a1a1a; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); display: inline-block; }
.gdp-barc-list-item {
    background: #fff; border-radius: var(--card-radius); margin-bottom: 14px;
    box-shadow: var(--shadow); overflow: hidden; transition: box-shadow .2s;
}
.gdp-barc-list-item:hover { box-shadow: 0 4px 18px rgba(0,0,0,.12); }
.gdp-barc-list-link { display: flex; gap: 0; }
.gdp-barc-list-imgwrap { width: 220px; flex-shrink: 0; overflow: hidden; }
.gdp-barc-list-img { width: 100%; height: 140px; object-fit: cover; display: block; transition: transform .3s; }
.gdp-barc-list-item:hover .gdp-barc-list-img { transform: scale(1.04); }
.gdp-barc-list-item .gdp-barc-noimg { width: 220px; height: 140px; }
.gdp-barc-list-body { padding: 14px 18px; flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.gdp-barc-list-tag  { display: inline-block; background: #fff3f0; color: var(--accent); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; padding: 2px 8px; border-radius: 4px; margin-bottom: 7px; letter-spacing: .4px; }
.gdp-barc-list-title   { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin: 0 0 6px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gdp-barc-list-excerpt { font-size: 0.82rem; color: #666; margin: 0 0 10px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gdp-barc-list-meta    { font-size: 0.78rem; color: #999; }
.gdp-barc-dot { margin: 0 4px; }

/* ── PAGINATION ── */
.gdp-barc-pagination { margin-top: 24px; }
.gdp-barc-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 6px; }
.gdp-barc-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 10px; border-radius: 6px;
    border: 1.5px solid #ddd; font-size: 0.85rem; font-weight: 600; color: #444;
    text-decoration: none; background: #fff; transition: all .18s;
}
.gdp-barc-pagination .page-numbers:hover {}
.gdp-barc-pagination .page-numbers.current { background: var(--accent); border-color: var(--accent); color: #fff; }
.gdp-barc-empty { padding: 40px 0; text-align: center; color: #888; font-size: 1rem; }

/* ── SIDEBAR ── */
.gdp-barc-widget { background: #fff; border-radius: var(--card-radius); box-shadow: var(--shadow); padding: 20px; margin-bottom: 20px; }
.gdp-barc-widget-title { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); }

/* Car list */
.gdp-barc-carlist { display: flex; flex-direction: column; gap: 0; }
.gdp-barc-car-row {
    display: flex; align-items: center; gap: 12px; padding: 11px 0;
    border-bottom: 1px solid #f0f0f0; text-decoration: none; color: inherit; transition: background .15s;
}
.gdp-barc-car-row:last-child { border-bottom: none; }
.gdp-barc-car-row:hover .gdp-barc-car-name { color: var(--accent); }
.gdp-barc-car-thumb { width: 72px; height: 52px; flex-shrink: 0; border-radius: 6px; overflow: hidden; background: #f3f3f3; }
.gdp-barc-car-img   { width: 72px; height: 52px; object-fit: cover; display: block; }
.gdp-barc-noimg-sm  { width: 72px; height: 52px; }
.gdp-barc-car-info  { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.gdp-barc-car-brand { font-size: 0.7rem; color: #999; text-transform: uppercase; font-weight: 600; }
.gdp-barc-car-name  { font-size: 0.88rem; font-weight: 700; color: #1a1a1a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .15s; }
.gdp-barc-viewall   { display: block; text-align: center; margin-top: 14px; padding: 9px; border: 1.5px solid var(--accent); border-radius: 6px; font-size: 0.82rem; font-weight: 700; color: var(--accent); text-decoration: none; transition: all .18s; }
.gdp-barc-viewall:hover {}

/* Tag cloud */
.gdp-barc-tagcloud  { display: flex; flex-wrap: wrap; gap: 7px; }
.gdp-barc-tagpill   { display: inline-block; padding: 5px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; background: #f5f5f5; color: #555; text-decoration: none; border: 1px solid #e0e0e0; transition: all .18s; }
.gdp-barc-tagpill:hover {}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .gdp-barc-body { flex-direction: column; padding: 20px 16px 40px; align-items: stretch; }
    .gdp-barc-main { width: 100%; max-width: 100%; overflow-x: hidden; }
    .gdp-barc-sidebar { width: 100%; position: static; }
    .gdp-barc-grid3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gdp-barc-grid3 { grid-template-columns: 1fr; }
    .gdp-barc-hero-img, .gdp-barc-hero .gdp-barc-noimg { height: 240px; }
    .gdp-barc-hero-title { font-size: 1.1rem; }
    .gdp-barc-list-link { flex-direction: column; }
    .gdp-barc-list-imgwrap { width: 100%; }
    .gdp-barc-list-img, .gdp-barc-list-item .gdp-barc-noimg { width: 100%; height: 180px; }
    .gdp-barc-page-title { font-size: 1.2rem; }
}

/* ─────────────────────────────────────────────────────────────
   Global Swiper Navigation Arrows — site-wide beautiful style
───────────────────────────────────────────────────────────── */
.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1.5px solid rgba(232,65,24,.22) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,.10) !important;
    color: #e84118 !important;
    transition: background .2s, border-color .2s, box-shadow .2s, transform .15s !important;
}
.swiper-button-next:hover:not(.swiper-button-disabled),
.swiper-button-prev:hover:not(.swiper-button-disabled) {
    background: #e84118 !important;
    border-color: #e84118 !important;
    box-shadow: 0 4px 18px rgba(232,65,24,.30) !important;
    color: #fff !important;
    transform: scale(1.08) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 12px !important;
    font-weight: 900;
    transition: color .2s;
}
.swiper-button-disabled {
    opacity: .3 !important;
}

/* ── Car page L2 navigation ─────────────────────────────────────────────────── */
.gdp-l2-nav {
    background: #fff;
    border-bottom: 1.5px solid #e0e2ea;
    box-shadow: 0 2px 10px rgba(0,0,0,.09);
    width: 100%;
    z-index: 9990;
}
/* JS adds this class; left/width/top are set via inline style to match natural position */
.gdp-l2-stuck {
    position: fixed !important;
    z-index: 9990;
}

/* Horizontal scroll on mobile — prevent wrapping */
.gdp-l2-nav .nav,
.gdp-l2-nav ul.nav {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0 !important;
}
.gdp-l2-nav .nav::-webkit-scrollbar,
.gdp-l2-nav ul.nav::-webkit-scrollbar { display: none; }
.gdp-l2-nav .nav-link,
.gdp-l2-nav .nav-item a { white-space: nowrap; }
