:root {
    --bg: #f6f7fb;
    --card: #ffffff;
    --line: #e7e9f1;
    --muted: #6b7280;
    --text: #111827;
    --primary: #0077E1;
    --primary2: #06b6d4;
    --header: #000
}

.filters {
    width: 280px;
    border-right: 1px solid #e5e7eb;
    padding: 16px 16px 24px;
    background: #f9fafb;
    overflow-y: auto;
}

.results-area {
    flex: 1;
    padding: 16px 24px 24px;
    overflow-y: auto;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

.filters-group {
    border-top: 1px solid #e5e7eb;
    padding-top: 12px;
    margin-top: 12px;
}

.filters-group:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.filters-group-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 8px;
}

.field {
    margin-bottom: 10px;
}

.field label {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
    color: #6b7280;
}

.field input,
.field select {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
    font-size: 13px;
    outline: none;
}

.field input:focus,
.field select:focus {
    border-color: #2563eb;
}

.range-row {
    display: flex;
    gap: 8px;
}

.range-row .field {
    flex: 1;
    margin-bottom: 0;
}

.filters-footer {
    margin-top: 16px;
    display: flex;
    gap: 8px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.results-count {
    font-size: 13px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.results-controls {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: #6b7280;
}

.results-controls select {
    background: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
    padding: 4px 8px;
    font-size: 13px;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.vehicle-card {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vehicle-thumb {
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #9ca3af;
}

.vehicle-main {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.vehicle-title {
    font-size: 14px;
    font-weight: 500;
}

.vehicle-price {
    font-size: 16px;
    font-weight: 600;
    color: #b91c1c;
}

.vehicle-meta {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vehicle-tags {
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid #e5e7eb;
    padding: 3px 6px;
    background: #f9fafb;
}

.vehicle-footer {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #9ca3af;
}

.link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2563eb;
}

.link:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .main {
        flex-direction: column;
    }

    .filters {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
}

/* Chips */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.chip {
    border: 1px solid var(--line);
    background: #fff;
    color: #374151;
    border-radius: 999px;
    padding: .45rem .75rem;
    font-size: 12px;
    cursor: pointer;
    user-select: none;
    transition: background .12s ease, border-color .12s ease;
}

.chip:hover {
    background: #f8fafc;
}

.chip.active {
    background: rgba(37, 99, 235, .08);
    border-color: rgba(37, 99, 235, .35);
    color: #1f3fb8;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    ;
}

.fw-500 {
    font-weight: 500
}

/* Top gradient header */
.topwrap {
    background: var(--header)
        /* radial-gradient(900px 380px at 20% 0%, rgba(37, 99, 235, .22), transparent 60%),
        radial-gradient(800px 320px at 95% 10%, rgba(6, 182, 212, .16), transparent 55%),
        #ffffff;
      border-bottom: 1px solid var(--line); */
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary2));
    box-shadow: 0 14px 30px rgba(37, 99, 235, .18);
    flex: 0 0 auto;
}

/* Panels */
.panel {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(17, 24, 39, .06);
}

.sticky-filters {
    position: sticky;
    top: 14px;
}

@media (max-width: 991.98px) {
    .sticky-filters {
        position: static;
    }
}

/* Chips */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.chip {
    border: 1px solid var(--line);
    background: #fff;
    color: #374151;
    border-radius: 999px;
    padding: .45rem .75rem;
   
    cursor: pointer;
    user-select: none;
    transition: background .12s ease, border-color .12s ease;
}

.chip:hover {
    background: #f8fafc;
}

.chip.active {
    background: rgba(37, 99, 235, .08);
    border-color: rgba(37, 99, 235, .35);
    color: #1f3fb8;
}

/* Vehicle cards */
.vcard {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: var(--card);
    height: 100%;
    box-shadow: 0 18px 40px rgba(17, 24, 39, .06);
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.vcard:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, .25);
    box-shadow: 0 24px 56px rgba(17, 24, 39, .10);
}

.imgwrap {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #eef2ff, #f8fbff);
}

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

.badgebar {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 12px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    pointer-events: none;
}

.badge-soft {
    pointer-events: none;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    color: #111827;
    border-radius: 999px;
    padding: .35rem .55rem;
    font-size: .78rem;
    font-weight: 600;
}

.meta {
    color: var(--muted);
    font-size: .9rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: .2px;
}

.small-note {
    font-size: .82rem;
    color: var(--muted);
}

/* Search bar nicer */
.searchbar {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 14px 34px rgba(17, 24, 39, .06);
}

.searchbar .form-control {
    border: none;
    box-shadow: none;
    border-radius: 999px;
    padding-left: 44px;
    background: transparent;
}

.searchicon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

/* Primary button look */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary2)) !important;
    border: none !important;
    border-radius: none !important;
}

.btn-primary:hover {
    filter: brightness(0.97);
}

.btn-outline-secondary {
    border-color: #d7dbe8;
    color: #374151;
}

.btn-outline-secondary:hover {
    background: #f8fafc;
}

.nav-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    position: relative;
}

/* Logo */
.nav-brand img {
    display: block;
}



a.button:active,
a.button:link,
a.button:focus {
    color: #fff;
}

/* Desktop Menu */
.nav-links {
    list-style: none;
    display: flex;
    gap: 26px;
    margin: 0;
    padding: 0;
    align-items: center;
    flex: 1;
    justify-content: center;

}

.nav-links a {
    text-decoration: none;
    color: #fff !important;



    font-size: 14px;
    padding: 8px 6px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e7e9f1;
    border-radius: 10px;
    padding: 8px 0;
    list-style: none;
    display: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.dropdown li a {
    display: block;
    padding: 10px 14px;
    font-weight: 500;
    color: #111827;
}

.dropdown li a:hover {
    background: #f6f7fb;
}

.has-dropdown:hover .dropdown {
    display: block;
}

/* CTA */
.nav-cta {
    display: flex;
    align-items: center;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid #e7e9f1;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 20px;
    cursor: pointer;
}

/* Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 1040;
}

/* Drawer */
.nav-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 20px;
    transition: .35s ease;
    z-index: 1050;
    overflow-y: auto;
}

/* Drawer open */
.nav-drawer.open {
    left: 0;
}

.nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Drawer content */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 18px;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.nav-drawer a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    color: #111827;
    font-weight: 600;
    border-bottom: 1px solid #f1f5f9;
}

.drawer-section {
    margin-top: 16px;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
    max-width: 1200px;
    padding: 16px 24px 24px;
    margin: 0 auto;
    width: 100%;
}


.vdp-main{
    display:  unset!important;
    max-width: 1200px;
    padding: 16px 24px 24px;
    margin: 0 auto;
    width: 100%;
}
.drawer-title {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 14px;
    color: #6b7280;
}

/* Responsive */
@media (max-width:991.98px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }
}

.dropdown-toggle {
    position: relative;
    padding-right: 18px;
}

.dropdown-toggle::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #111827;
    border-bottom: 2px solid #111827;
    transform: translateY(-0%) rotate(90deg);
    transition: transform .2s ease;
}

/* Rotate arrow on hover */
.has-dropdown:hover .dropdown-toggle::after {
    transform: translateY(-60%) rotate(-135deg);
}

.header {
    background-color: #111827;
    color: #d1d5db;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    width: 100%;
    max-width: 1200px;
    /* ADD */
    margin: 0 auto;
}

.header ul {
    list-style: none;
    display: flex;
    gap: 50px;
}

.header li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
}

.header-right {
    display: flex;
    align-items: center;
}

.btn {
    padding: 8px 14px;
    border: 1px solid #d1d5db;
    background: transparent;
    color: #f9fafb;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
}

.btn-primary {
    background: #2563eb;
    border-color: #2563eb;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #d1d5db;
    font-size: 22px;
    cursor: pointer;
}

/* Mobile overlay menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    /* right panel width on mobile */
    background: #111827;
    color: #d1d5db;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.mobile-menu-overlay.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.close-menu {
    background: none;
    border: none;
    color: #d1d5db;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-menu-overlay li {
    border-bottom: 1px solid #1f2937;
}

.mobile-menu-overlay a {
    display: block;
    padding: 12px 0;
    color: #d1d5db;
    text-decoration: none;
    font-size: 16px;
}

.mobile-menu-footer {
    margin-top: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }

    .header-right {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

.site-footer {
    background-color: #020617;
    color: #9ca3af;
    padding: 16px 24px;
    border-top: 1px solid #1f2937;
    font-size: 13px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #e5e7eb;
}

.footer-center {
    text-align: center;
    flex: 1;
}

.footer-icons {
    display: flex;
    gap: 8px;
}

.icon-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
}

.icon-btn:hover {
    background-color: #111827;
}

/* Mobile: stack vertically */
@media (max-width: 640px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-center {
        text-align: left;
        width: 100%;
    }
}


.page-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.page-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
}

/* Content sections */
.section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 24px;
    margin-bottom: 24px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
}

.content p {
    margin-bottom: 16px;
    font-size: 15px;
}

.content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.content li {
    margin-bottom: 8px;
    font-size: 15px;
}

.highlight {
    background: #f0f9ff;
    border-left: 4px solid #2563eb;
    padding: 16px;
    margin: 16px 0;
}

.last-updated {
    font-size: 13px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    margin-top: 24px;
}

/* Footer (same as your footer template) */
.site-footer {
    background-color: #020617;
    color: #9ca3af;
    padding: 16px 24px;
    border-top: 1px solid #1f2937;
    font-size: 13px;
    margin-top: auto;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-center {
    text-align: center;
    flex: 1;
}

.footer-icons {
    display: flex;
    gap: 8px;
}

.icon-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
}

/* Mobile */
@media (max-width: 640px) {
    .main {
        padding: 24px 16px;
    }

    .header {
        padding: 12px 16px;
    }

    .section {
        padding: 20px;
    }
}

.header-right {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: #6b7280;
}

.btn {
    padding: 8px 14px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    color: unset !important
}

.btn-primary {
    background: #2563eb;
    border-color: #2563eb;
    color: #f9fafb !important;
}

ul {
    margin-bottom: 0 !important;
}

.btn:hover {
    background: #f3f4f6;
}

.btn-primary:hover {
    background: #1d4ed8;
}

/* Main layout */

.breadcrumb {
    font-size: 12px !important;
    color: #6b7280;
    margin-bottom: 12px;
}

.breadcrumb a {
    color: #6b7280;
}

.breadcrumb span {
    margin: 0 4px;
}

.title-row,.title-row-vdp {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.vehicle-title-block h1 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.vehicle-subtitle {
    font-size: 13px;
    color: #6b7280;
}

.badge-row {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    padding: 3px 6px;
    color: #6b7280 !important;

}

.price-block,.price-block-vdp {
    text-align: right;
    min-width: 220px;
}

.price-main,.price-main-vdp {
    font-size: 24px;
    font-weight: 600;
    color: #b91c1c;
    margin-bottom: 4px;
}

.price-note,.price-note-vdp {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 6px;
}

.price-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

/* Content 2-column layout */
.content-row,.content-row-vdp {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 24px;
    margin-top: 16px;
}

/* Left column: gallery + details */
.gallery {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 12px;
    margin-bottom: 16px;
}

.gallery-main {
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 8px;
}

.thumb-row {
    margin-top: 8px;
    /* display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 6px; */
}

.thumb {
    background: #f3f4f6;
    height: auto;
    width: 80px;
    padding: 5px;
    ;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 11px;
}

.section {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 12px 12px 10px;
    margin-bottom: 16px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.section-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

.section-body {
    font-size: 14px;
    color: #111827;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 16px;
    font-size: 13px;
}

.spec-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 2px;
}

.spec-value {
    font-size: 13px;
    color: #111827;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 16px;
    font-size: 13px;
    color: #111827;
}

.feature-item::before {
    content: "• ";
    color: #9ca3af;
}

/* Right column: sticky actions / dealer info */
.side-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 80px;
    align-self: flex-start;
}

.cta-card {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 12px;
}

.cta-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 8px;
}

.cta-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-sub {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

.dealer-card {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 12px;
    font-size: 13px;
}

.dealer-name {
    font-weight: 500;
    margin-bottom: 2px;
}

.dealer-location {
    color: #6b7280;
    margin-bottom: 6px;
}

.dealer-meta {
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
}

.small-link {
    font-size: 12px;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.small-link:hover {
    text-decoration: underline;
}

.badge-inline {
    display: inline-block;
    padding: 2px 4px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    margin-left: 4px;
}

/* Responsive */
@media (max-width: 960px) {
    .content-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .side-column {
        position: static;
    }

    .price-block {
        text-align: left;
    }

    .price-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .title-row {
        flex-direction: column;
        gap: 8px;
    }
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 6px 8px;
    /* ← Match inventory */
    border: 1px solid #d1d5db;
    /* ← Light theme border */
    background: #ffffff;
    /* ← Match inventory light */
    color: #111827;
    /* ← Match inventory */
    font-size: 13px;
    /* ← Match inventory */
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #2563eb;
    /* ← Match inventory focus */
}

/* Two-column layout */
.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Left: Contact details */
.contact-info {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.contact-details p,
.contact-details a {
    font-size: 15px;
    color: #374151;
    text-decoration: none;
}

.contact-details a:hover {
    color: #2563eb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-actions {
    display: flex;
    gap: 12px;
}

.field {
    margin-bottom: 10px;
}

.field label {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
    color: #6b7280;
}

.field input,
.field select {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
    font-size: 13px;
    outline: none;
}

label {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
    color: #6b7280;
}

.form-group {
    margin-bottom: 20px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 1. Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('./images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #111827;
}

/* 2. Features */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 48px;
    color: #111827;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-item {
    text-align: center;
    padding: 32px 24px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* 3. Highlight Text */
.highlight-text {
    padding: 80px 0;
    background-color: #0077E1;
    color: #fff;
}

.highlight-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.highlight-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

/* 4. CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8fafc;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    text-align: center;
}

.cta-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-link {
    display: inline-block;
    margin-top: 16px;
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

.cta-link:hover {
    text-decoration: underline;
}

/* 5. Car Brands */
.car-brands {
    padding: 80px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.brand-item {
    height: 80px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.btn-outline:hover {
    color: #000 !important
}

.brand-logos {
    padding: 80px 0;
    /* ← Matches other sections */
    background: #f8fafc;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
}

.logo-item {
    text-align: center;
}



.features,
.highlight-text,
.cta-section,
.brand-logos {
    padding: 80px 0;
}

/* CTA Images */
.cta-image {
    width: 100%;

    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Brand logos title */
.logo-brand {
    max-height: 50px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.logo-brand:hover {
    opacity: 1;
}

/* Fix button outline */
.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 28px;
    font-size: 16px;
}

.btn-outline:hover {
    background: white;
    color: #111827;
}


.search-bar {
    max-width: 400px;
    flex: 1;
    margin: 0 24px;
}

.search-bar input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    color: #111827;
    outline: none;
    font-size: 14px;
}

.search-bar input:focus {
    border-color: #2563eb;
    background: #ffffff;
}

.top-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn {
    padding: 8px 14px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
}


.main {
    flex: 1;
    display: flex;
    min-height: 0;
}
  .section-vdp {
      border: 1px solid #e5e7eb;
      background: #ffffff;
      padding: 12px 12px 10px;
      margin-bottom: 16px;
    }

    .section-header-vdp {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
    }

    .section-title-vdp {
      font-size: 13px !important;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #6b7280;
    }

    .section-body-vdp {
      font-size: 14px;
      color: #111827;
    }

    .specs-grid-vdp {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px 16px;
      font-size: 13px;
    }

    .spec-label-vdp {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #6b7280;
      margin-bottom: 2px;
    }

    .spec-value-vdp {
      font-size: 13px;
      color: #111827;
    }

    .feature-list-vdp {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 4px 16px;
      font-size: 13px;
      color: #111827;
    }

    .feature-item-vdp::before {
      content: "• ";
      color: #9ca3af;
    }

    /* Right column: sticky actions / dealer info */
    .side-column-vdp {
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: sticky;
      top: 80px;    
      align-self: flex-start;
    }

    .cta-card-vdp {
      border: 1px solid #e5e7eb;
      background: #ffffff;
      padding: 12px;
    }

    .cta-title-vdp {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #6b7280;
      margin-bottom: 8px;
    }

    .cta-row-vdp {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .cta-sub, .cta-sub-vdp {
      font-size: 12px;
      color: #6b7280;
      margin-top: 4px;
    }

    .dealer-card-vdp {
      border: 1px solid #e5e7eb;
      background: #ffffff;
      padding: 12px;
      font-size: 13px;
    }

    .dealer-name-vdp {
      font-weight: 500;
      margin-bottom: 2px;
    }

    .dealer-location-vdp {
      color: #6b7280;
      margin-bottom: 6px;
    }

    .dealer-meta-vdp {
      font-size: 12px;
      color: #6b7280;
      margin-top: 6px;
    }

    .small-link-vdp {
      font-size: 12px;
      color: #2563eb;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      cursor: pointer;
    }

    .small-link-vdp:hover {
      text-decoration: underline;
    }

    .badge-inline-vdp {
      display: inline-block;
      padding: 2px 4px;
      border: 1px solid #e5e7eb;
      background: #f9fafb;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #6b7280;
      margin-left: 4px;
    }

    /* Responsive */
    @media (max-width: 960px) {
      .content-row-vdp {
        grid-template-columns: minmax(0, 1fr);
      }

      .side-column-vdp {
        position: static;
      }

      .price-block-vdp {
        text-align: left;
      }

      .price-actions-vdp {
        justify-content: flex-start;
      }
    }

    @media (max-width: 640px) {
      .title-row-vdp {
        flex-direction: column;
        gap: 8px;
      }
    }

    .vehicle-title-block-vdp h1 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.vehicle-subtitle-vdp {
    font-size: 13px;
    color: #6b7280;
}


.badge-row-vdp {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.badge-vdp {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    padding: 3px 6px;
    color: #6b7280 !important;

}