*, *::before, *::after { box-sizing: border-box; }

.mi {
    font-family: 'Material Icons Round';
    font-style: normal;
    font-size: inherit;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

:root {
    --ink:        #0B0B0E;
    --ink2:       #111115;
    --ink3:       #17171D;
    --ink4:       #1C1C23;
    --accent:     #FF4D00;
    --accent2:    #FF6B2B;
    --accent-dim: rgba(255,77,0,.10);
    --border:     rgba(255,255,255,.06);
    --border2:    rgba(255,255,255,.11);
    --w10:        rgba(255,255,255,.10);
    --w20:        rgba(255,255,255,.20);
    --w40:        rgba(255,255,255,.40);
    --w60:        rgba(255,255,255,.60);
    --r16:        16px;
    --r12:        12px;
    --r8:         8px;
}

/* ── HERO ── */
.vl-hero {
    position: relative;
    background: var(--ink);
    padding: 48px 0 44px;
    overflow: hidden;
}
.vl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 500px 350px at -5% 120%, rgba(255,77,0,.15) 0%, transparent 65%),
        radial-gradient(ellipse 300px 200px at 105% -10%, rgba(255,77,0,.07) 0%, transparent 60%);
}
.vl-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.013) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.013) 1px, transparent 1px);
    background-size: 60px 60px;
}
.vl-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}
.vl-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.vl-tag::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--accent), transparent);
}
.vl-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.05;
}
.vl-hero-sub { font-size: 13px; font-weight: 300; color: var(--w40); }

.vl-hero-count {
    background: var(--ink3);
    border: 1px solid var(--border2);
    border-radius: 14px;
    padding: 16px 24px;
    text-align: center;
    flex-shrink: 0;
}
.vl-hero-count-num {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.vl-hero-count-label {
    font-size: 11px;
    color: var(--w40);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .07em;
}

/* ── LAYOUT ── */
.vl-wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.vl-body { padding: 40px 0 80px; background: var(--ink); }

/* ── FILTER ── */
.vl-filter {
    background: var(--ink2);
    border: 1px solid var(--border);
    border-radius: var(--r16);
    padding: 20px 24px;
    margin-bottom: 28px;
}
.vl-filter-grid {
    display: grid;
    grid-template-columns: 1fr 180px 200px auto;
    gap: 14px;
    align-items: end;
}
.vl-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--w40);
    margin-bottom: 7px;
}
.vl-input, .vl-select {
    width: 100%;
    background: var(--ink3);
    border: 1px solid var(--border2);
    border-radius: var(--r12);
    padding: 11px 14px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
}
.vl-input::placeholder { color: rgba(255,255,255,.22); }
.vl-input:focus, .vl-select:focus {
    border-color: rgba(255,77,0,.45);
    box-shadow: 0 0 0 3px rgba(255,77,0,.08);
}
.vl-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='rgba(255,255,255,.4)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.vl-select option { background: var(--ink3); color: #fff; }

.vl-search-wrap { position: relative; }
.vl-search-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--w40);
    display: flex;
    align-items: center;
    pointer-events: none;
}
.vl-input.has-icon { padding-left: 40px; }

.vl-btn-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--accent);
    border: none;
    border-radius: var(--r12);
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}
.vl-btn-filter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.1), transparent);
}
.vl-btn-filter:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,77,0,.3); }

/* ── META ── */
.vl-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.vl-meta-count { font-size: 13px; color: var(--w40); }
.vl-meta-count strong { color: var(--accent); font-weight: 700; }

/* ── VEHICLE GRID ── */
.vl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ── VEHICLE CARD ── */
.vl-card {
    background: var(--ink2);
    border: 1px solid var(--border);
    border-radius: var(--r16);
    overflow: hidden;
    transition: border-color .25s, transform .25s;
    display: flex;
    flex-direction: column;
}
.vl-card:hover { border-color: rgba(255,77,0,.25); transform: translateY(-4px); }

.vl-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--ink3);
    flex-shrink: 0;
}
.vl-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.vl-card:hover .vl-card-img img { transform: scale(1.1); }

.vl-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--ink3);
    color: var(--accent);
}
.vl-card-placeholder .label { font-size: 11px; color: var(--w40); text-transform: uppercase; letter-spacing: .08em; }

.vl-badge-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
}
.vl-badge-avail {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(16,185,129,.9);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.vl-badge-avail-dot { width: 5px; height: 5px; border-radius: 50%; background: #fff; opacity: .8; }

.vl-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.vl-card-name {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.25;
}
.vl-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--w40);
    margin-bottom: 14px;
}
.vl-card-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--w20); }

.vl-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.vl-card-price-num {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.vl-card-price-unit { font-size: 11px; color: var(--w40); margin-top: 2px; }

.vl-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--ink3);
    border: 1px solid var(--border2);
    border-radius: var(--r8);
    font-size: 12px;
    font-weight: 600;
    color: var(--w60);
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}
.vl-card-btn:hover { background: var(--accent-dim); border-color: rgba(255,77,0,.3); color: var(--accent); }

/* ── EMPTY STATE ── */
.vl-empty { grid-column: 1 / -1; text-align: center; padding: 70px 20px; }
.vl-empty-icon { color: var(--w20); margin-bottom: 16px; }
.vl-empty h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--w60); margin-bottom: 8px; }
.vl-empty p { font-size: 13px; color: var(--w40); }

/* ── PAGINATION ── */
.vl-pagination { margin-top: 32px; }
.vl-pagination nav { display: flex; justify-content: center; }
.vl-pagination .pagination { display: flex; gap: 6px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; justify-content: center; }
.vl-pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    background: var(--ink2);
    border: 1px solid var(--border2);
    border-radius: 8px;
    font-size: 13px;
    color: var(--w60);
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}
.vl-pagination .page-item.active .page-link    { background: var(--accent); border-color: var(--accent); color: #fff; }
.vl-pagination .page-item .page-link:hover     { background: var(--ink3); border-color: rgba(255,77,0,.3); color: #fff; }
.vl-pagination .page-item.disabled .page-link  { opacity: .35; pointer-events: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .vl-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) {
    .vl-wrap          { padding: 0 20px; }
    .vl-hero          { padding: 36px 0 32px; }
    .vl-hero-inner    { flex-direction: column; align-items: flex-start; padding: 0 20px; }
    .vl-grid          { grid-template-columns: repeat(2, 1fr); }
    .vl-filter-grid   { grid-template-columns: 1fr 1fr; gap: 12px; }
    .vl-filter-grid > div:last-child { grid-column: span 2; }
}
@media (max-width: 500px) { .vl-grid { grid-template-columns: 1fr; } }
