/* ============================================================
   VORIK VEHICLES
   CLEAN PREMIUM CATALOG — 2026
   DEDUPLICATED FINAL VERSION
   ============================================================ */


/* ============================================================
   TOKENS
   ============================================================ */

:root {
    --v-navy: #10284d;
    --v-navy-dark: #071a36;

    --v-blue: #3978e8;
    --v-blue-soft: #eaf2ff;

    --v-yellow: #ffd21f;
    --v-yellow-dark: #e2b800;

    --v-green: #22a861;
    --v-green-soft: #edfff5;

    --v-red: #e74c5b;

    --v-text: #10284d;
    --v-muted: #60728d;
    --v-border: #e2e8f0;

    --v-surface: #ffffff;
    --v-background: #f4f7fb;

    --v-radius: 18px;
    --v-radius-sm: 12px;

    --v-shadow:
        0 10px 28px
        rgba(16, 40, 77, 0.07);

    --v-shadow-hover:
        0 18px 42px
        rgba(16, 40, 77, 0.12);

    /*
     * MAIN VISUAL TUNING
     *
     * LIST:
     *   reduce/increase --v-list-card-height
     *
     * GRID:
     *   reduce/increase --v-grid-image-height
     */
    --v-list-card-height: 160px;
    --v-grid-image-height: 190px;
}


/* ============================================================
   BASE
   ============================================================ */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.vorik-catalog-body {
    margin: 0;

    color: var(--v-text);
    background: var(--v-background);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 16px;
}

button,
input,
select {
    font: inherit;
}

a {
    color: inherit;
}


/* ============================================================
   GLOBAL CATALOG TYPOGRAPHY
   ============================================================ */

.vorik-catalog-body p,
.vorik-catalog-body input,
.vorik-catalog-body select,
.vorik-catalog-body button {
    font-size: 16px;
}

.vorik-field label,
.vorik-filter-panel legend {
    font-size: 14px;
}

.vorik-radio-row small,
.vorik-price small,
.vorik-lazy-status small {
    font-size: 13px;
}


/* ============================================================
   MAIN CATALOG WRAPPER
   ============================================================ */

.vorik-catalog {
    width: min(1180px, 100%);
    margin: 0 auto;

    padding:
        22px
        clamp(10px, 3vw, 32px)
        60px;
}


/* ============================================================
   DESKTOP HEADER
   ============================================================ */

.vorik-catalog-header {
    position: sticky;
    top: 0;
    z-index: 80;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 68px;

    padding:
        0
        clamp(16px, 4vw, 56px);

    border-bottom:
        1px solid
        rgba(226, 232, 240, .85);

    background:
        rgba(255,255,255,.94);

    backdrop-filter:
        blur(18px);
}

.vorik-catalog-brand {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--v-navy);

    font-size: 21px;
    font-weight: 900;

    text-decoration: none;
}

.vorik-catalog-brand-mark {
    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

    border-radius: 12px;

    color: var(--v-navy);

    background:
        var(--v-yellow);
}

.vorik-catalog-nav {
    display: flex;
    align-items: center;

    gap: 26px;
}

.vorik-catalog-nav a {
    color: #475569;

    font-weight: 700;

    text-decoration: none;
}

.vorik-catalog-nav a.is-active {
    color: var(--v-blue);
}


/* ============================================================
   HERO / DESKTOP SEARCH
   ============================================================ */

.vorik-catalog-hero {
    padding:
        clamp(
            24px,
            4vw,
            48px
        );

    border-radius: 26px;

    color: #fff;

    background:
        radial-gradient(
            circle at 84% 15%,
            rgba(57,120,232,.55),
            transparent 30%
        ),
        radial-gradient(
            circle at 70% 100%,
            rgba(255,210,31,.14),
            transparent 35%
        ),
        linear-gradient(
            130deg,
            var(--v-navy-dark),
            var(--v-navy)
        );

    box-shadow:
        var(--v-shadow);
}

.vorik-catalog-hero-copy {
    max-width: 760px;
}

.vorik-catalog-eyebrow {
    display: inline-flex;

    padding:
        6px 11px;

    border:
        1px solid
        rgba(255,210,31,.30);

    border-radius:
        999px;

    color:
        #fff4b4;

    background:
        rgba(255,210,31,.10);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .08em;
}

.vorik-catalog-hero h1 {
    margin:
        16px 0 10px;

    max-width: 700px;

    font-size:
        clamp(
            30px,
            5vw,
            54px
        );

    line-height: 1.03;

    letter-spacing:
        -.05em;
}

.vorik-catalog-hero p {
    margin: 0;

    max-width: 650px;

    color:
        #cbd5e1;

    font-size: 16px;

    line-height: 1.6;
}


/* ============================================================
   SEARCH PANEL
   ============================================================ */

.vorik-search-panel {
    display: grid;

    grid-template-columns:
        minmax(190px,1.45fr)
        repeat(
            3,
            minmax(130px,.75fr)
        )
        auto;

    gap: 8px;

    margin-top: 28px;

    padding: 8px;

    border-radius: 17px;

    color: var(--v-navy);

    background: #fff;
}

.vorik-field {
    min-width: 0;

    padding:
        6px 11px;

    border-right:
        1px solid
        var(--v-border);
}

.vorik-field label {
    display: block;

    margin-bottom: 3px;

    color: var(--v-muted);

    font-weight: 800;

    text-transform: uppercase;
}

.vorik-field input,
.vorik-field select {
    width: 100%;
    min-height: 32px;

    padding: 0;

    border: 0;

    outline: 0;

    background:
        transparent;

    color:
        var(--v-navy);

    font-weight: 700;
}

.vorik-input-shell {
    display: flex;
    align-items: center;

    gap: 7px;
}

.vorik-search-button {
    min-height: 55px;

    padding:
        0 22px;

    border: 0;

    border-radius: 12px;

    background:
        var(--v-yellow);

    color:
        var(--v-navy);

    cursor: pointer;

    font-weight: 900;
}


/* ============================================================
   BACK NAVIGATION
   ============================================================ */

.vorik-catalog-back-navigation {
    display: flex;
    align-items: center;

    width: 100%;

    margin: 0;

    padding:
        10px 0 8px;
}

.vorik-catalog-body .vorik-catalog-back-button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;

    gap: 8px;

    width: auto;
    min-width: 0;

    height: auto;
    min-height: 38px;

    margin: 0;

    padding:
        0 4px;

    border: 0;
    border-radius: 0;

    background:
        transparent;

    box-shadow:
        none;

    color:
        var(--v-navy);

    cursor: pointer;

    font-size: 14px;
    font-weight: 850;

    line-height: 1;

    text-decoration: none;
}

.vorik-catalog-body .vorik-catalog-back-button:hover {
    color:
        var(--v-blue);
}

.vorik-catalog-body .vorik-catalog-back-button svg {
    flex:
        0 0 auto;

    width: 20px;
    height: 20px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ============================================================
   TOOLBAR
   ============================================================ */

.vorik-catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    padding:
        22px 2px 16px;
}

.vorik-catalog-toolbar strong {
    color:
        var(--v-navy);

    font-size: 22px;
    font-weight: 900;

    line-height: 1.05;
}

.vorik-catalog-toolbar > div > span,
.vorik-catalog-toolbar span {
    color:
        var(--v-muted);

    font-size: 14px;
}

.vorik-toolbar-actions {
    display: flex;
    align-items: center;

    gap: 8px;
}


/* ============================================================
   VIEW SWITCHER
   ============================================================ */

.vorik-view-switcher {
    display: inline-flex;
    align-items: center;

    gap: 3px;

    min-height: 44px;

    padding: 4px;

    border:
        1px solid
        #dde5ef;

    border-radius: 13px;

    background:
        #e9eef5;
}

.vorik-view-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    min-width: 40px;
    min-height: 36px;

    padding:
        0 11px;

    border: 0;

    border-radius: 10px;

    color:
        var(--v-muted);

    background:
        transparent;

    cursor: pointer;

    font-size: 12px;
    font-weight: 850;
}

.vorik-view-button.is-active {
    color:
        var(--v-navy);

    background:
        var(--v-yellow);

    box-shadow:
        0 4px 12px
        rgba(16,40,77,.11);
}

.vorik-view-button svg,
.vorik-mobile-filter-button svg,
.vorik-mobile-map-button svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.9;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ============================================================
   FILTER + MAP BUTTONS
   ============================================================ */

.vorik-mobile-filter-button,
.vorik-mobile-map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    min-height: 44px;

    padding:
        0 13px;

    border-radius: 12px;

    cursor: pointer;

    font-size: 12px;
    font-weight: 850;
}

.vorik-mobile-filter-button {
    border:
        1px solid
        var(--v-border);

    color:
        var(--v-navy);

    background:
        #fff;
}

.vorik-mobile-map-button {
    border: 0;

    color:
        #fff;

    background:
        var(--v-navy);
}


/* ============================================================
   MAIN LAYOUT
   ============================================================ */

.vorik-catalog-layout {
    display: grid;

    grid-template-columns:
        250px
        minmax(0, 1fr);

    gap: 20px;

    align-items: start;
}

.vorik-results-panel {
    min-width: 0;
}


/* ============================================================
   FILTER PANEL
   ============================================================ */

.vorik-filter-panel {
    position: sticky;
    top: 90px;

    padding: 19px;

    border:
        1px solid
        var(--v-border);

    border-radius:
        var(--v-radius);

    background:
        var(--v-surface);

    box-shadow:
        0 6px 20px
        rgba(16,40,77,.045);
}

.vorik-filter-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 8px;
}

.vorik-filter-heading span {
    color:
        var(--v-blue);

    font-size: 11px;
    font-weight: 900;

    text-transform: uppercase;
}

.vorik-filter-heading h2 {
    margin:
        3px 0 0;

    font-size: 17px;
}

.vorik-filter-heading button {
    display: none;
}

.vorik-filter-panel fieldset {
    margin: 0;

    padding:
        16px 0;

    border: 0;

    border-bottom:
        1px solid
        var(--v-border);
}

.vorik-filter-panel legend {
    margin-bottom:
        10px;

    padding: 0;

    color:
        var(--v-navy);

    font-weight: 900;
}

.vorik-filter-panel select,
.vorik-filter-panel input[type="number"] {
    width: 100%;

    min-height: 42px;

    padding:
        0 10px;

    border:
        1px solid
        var(--v-border);

    border-radius:
        10px;

    background:
        #f8fafc;

    color:
        var(--v-navy);

    outline: 0;
}

.vorik-radio-row {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    margin-bottom: 10px;

    cursor: pointer;
}

.vorik-radio-row input {
    margin-top: 3px;

    accent-color:
        var(--v-yellow-dark);
}

.vorik-radio-row span {
    display: grid;

    gap: 1px;
}

.vorik-radio-row strong {
    color:
        var(--v-navy);

    font-size: 12px;
}

.vorik-radio-row small {
    color:
        var(--v-muted);
}

.vorik-price-input {
    position: relative;
}

.vorik-filter-panel
.vorik-price-input
input[type="number"] {
    padding-right: 55px;
}

.vorik-price-input span {
    position: absolute;

    top: 50%;
    right: 11px;

    transform:
        translateY(-50%);

    color:
        var(--v-muted);

    font-size: 11px;
    font-weight: 800;
}

.vorik-filter-actions {
    display: grid;

    gap: 8px;

    padding-top: 17px;
}

.vorik-filter-actions button {
    min-height: 44px;

    border: 0;

    border-radius: 11px;

    color: #fff;

    background:
        var(--v-navy);

    cursor: pointer;

    font-weight: 900;
}

.vorik-filter-actions a {
    color:
        var(--v-blue);

    font-size: 12px;
    font-weight: 750;

    text-align: center;
}


/* ============================================================
   VEHICLE LIST CONTAINER
   ============================================================ */

.vorik-vehicle-list {
    display: grid;

    grid-template-columns:
        1fr;

    gap: 12px;
}

.vorik-vehicle-list.is-grid {
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 10px;
}


/* ============================================================
   CARD BASE
   ============================================================ */

.vorik-vehicle-card {
    position: relative;

    overflow: hidden;

    border:
        1px solid
        var(--v-border);

    border-radius:
        var(--v-radius);

    background:
        #ffffff;

    box-shadow:
        var(--v-shadow);

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.vorik-vehicle-card:hover {
    transform:
        translateY(-2px);

    box-shadow:
        var(--v-shadow-hover);
}


/* ============================================================
   IMAGE BASE
   ============================================================ */

.vorik-vehicle-image-link {
    position: relative;

    display: block;

    overflow: hidden;

    background:
        #e7edf4;
}

.vorik-vehicle-image-link img,
.vorik-image-placeholder {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.vorik-image-placeholder {
    display: grid;

    place-items: center;

    color:
        #94a3b8;

    background:
        linear-gradient(
            135deg,
            #e2e8f0,
            #f8fafc
        );

    font-weight: 900;
}


/* ============================================================
   AVAILABILITY
   ============================================================ */

.vorik-availability-badge {
    position: absolute;

    top: 9px;
    left: 9px;

    z-index: 3;

    display: inline-flex;
    align-items: center;

    gap: 5px;

    padding:
        4px 8px;

    border:
        1px solid
        rgba(34,168,97,.18);

    border-radius:
        999px;

    color:
        #11663b;

    background:
        rgba(240,253,244,.96);

    box-shadow:
        0 4px 12px
        rgba(16,40,77,.09);

    font-size: 9px;
    font-weight: 900;
}

.vorik-availability-badge::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius:
        50%;

    background:
        var(--v-green);
}


/* ============================================================
   FAVORITE
   ============================================================ */

.vorik-favorite-button--image {
    position: absolute;

    top: 8px;
    right: 8px;

    z-index: 4;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;

    padding: 0;

    border:
        1px solid
        rgba(255,255,255,.7);

    border-radius:
        50%;

    color: #fff;

    background:
        rgba(16,40,77,.48);

    cursor: pointer;

    font-size: 16px;
}

.vorik-favorite-button--image.is-active {
    color: #fff;

    background:
        var(--v-red);
}


/* ============================================================
   CARD CONTENT BASE
   ============================================================ */

.vorik-vehicle-content {
    min-width: 0;

    background: #fff;
}

.vorik-vehicle-primary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;

    min-width: 0;
}

.vorik-vehicle-name-wrap {
    display: flex;
    align-items: center;

    gap: 5px;

    min-width: 0;
}

.vorik-vehicle-name-wrap h2 {
    min-width: 0;

    margin: 0;

    color:
        var(--v-navy);

    font-size: 17px;
    font-weight: 850;

    line-height: 1.13;

    letter-spacing:
        -.02em;
}

.vorik-vehicle-name-wrap h2 a {
    display: block;

    overflow: hidden;

    color: inherit;

    text-decoration: none;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.vorik-title-verified {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex:
        0 0 14px;

    width: 14px;
    height: 14px;

    border-radius: 50%;

    color: #fff;

    background:
        var(--v-blue);

    font-size: 7px;
    font-weight: 900;
}


/* ============================================================
   PROVIDER
   ============================================================ */

.vorik-provider-avatar {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    flex:
        0 0 35px;

    width: 35px;
    height: 35px;

    border:
        2px solid
        #fff;

    border-radius: 50%;

    color:
        var(--v-navy);

    background:
        linear-gradient(
            145deg,
            var(--v-yellow),
            var(--v-yellow-dark)
        );

    box-shadow:
        0 4px 12px
        rgba(16,40,77,.12);

    font-size: 9px;
    font-weight: 900;
}

.vorik-provider-avatar small {
    position: absolute;

    right: -2px;
    bottom: -2px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 13px;
    height: 13px;

    border:
        2px solid
        #fff;

    border-radius: 50%;

    color: #fff;

    background:
        var(--v-blue);

    font-size: 6px;
}


/* ============================================================
   ESSENTIAL INFORMATION
   ============================================================ */

.vorik-vehicle-essential-line {
    display: flex;
    align-items: center;

    flex-wrap: nowrap;

    overflow: hidden;

    gap: 4px;

    color:
        var(--v-muted);

    font-size: 13px;
    font-weight: 650;

    line-height: 1.25;

    white-space: nowrap;
}

.vorik-essential-item {
    display: inline-flex;
    align-items: center;

    gap: 2px;

    white-space: nowrap;
}

.vorik-essential-icon {
    color:
        var(--v-blue);
}

.vorik-essential-separator {
    color:
        #a6b3c4;
}


/* ============================================================
   PRICE + CTA
   ============================================================ */

.vorik-vehicle-decision-line {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 6px;

    border-top:
        1px solid
        var(--v-border);
}

.vorik-price {
    min-width: 0;
}

.vorik-price small {
    display: block;

    color:
        var(--v-muted);
}

.vorik-price > div {
    display: flex;
    align-items: baseline;

    gap: 3px;
}

.vorik-price strong {
    color:
        var(--v-navy);

    font-size: 17px;
    font-weight: 900;

    line-height: 1;
}

.vorik-price span {
    color:
        var(--v-muted);

    font-size: 13px;

    white-space: nowrap;
}

.vorik-detail-button {
    display: inline-flex;
    align-items: center;

    gap: 4px;

    width: auto;

    padding: 0;

    border: 0;

    color:
        var(--v-blue);

    background:
        transparent;

    font-size: 14px;
    font-weight: 850;

    text-decoration: none;

    white-space: nowrap;
}

.vorik-detail-arrow {
    color:
        var(--v-yellow-dark);

    line-height: 1;
}


/* ============================================================
   LIST VIEW ONLY
   Compact horizontal premium card

   MAIN TUNING:
   --v-list-card-height
   ============================================================ */

.vorik-vehicle-list:not(.is-grid)
.vorik-vehicle-card {
    display: grid;

    grid-template-columns:
        44%
        minmax(0, 56%);

    height:
        var(--v-list-card-height);
}

.vorik-vehicle-list:not(.is-grid)
.vorik-vehicle-image-link {
    width: 100%;
    height:
        var(--v-list-card-height);
}

.vorik-vehicle-list:not(.is-grid)
.vorik-vehicle-image-link img,
.vorik-vehicle-list:not(.is-grid)
.vorik-image-placeholder {
    width: 100%;
    height: 100%;

    min-height: 0;

    object-fit: cover;
    object-position: center;
}

.vorik-vehicle-list:not(.is-grid)
.vorik-vehicle-content {
    display: flex;

    flex-direction: column;
    justify-content: space-between;

    min-width: 0;

    padding:
        10px 14px;
}

.vorik-vehicle-list:not(.is-grid)
.vorik-vehicle-name-wrap h2 {
    font-size: 16px;

    line-height: 1.15;
}

.vorik-vehicle-list:not(.is-grid)
.vorik-vehicle-essential-line {
    margin-top: 5px;

    font-size: 12px;
}

.vorik-vehicle-list:not(.is-grid)
.vorik-vehicle-decision-line {
    margin-top: auto;

    padding-top: 7px;
}

.vorik-vehicle-list:not(.is-grid)
.vorik-price small {
    display: none;
}

.vorik-vehicle-list:not(.is-grid)
.vorik-price strong {
    font-size: 17px;
}

.vorik-vehicle-list:not(.is-grid)
.vorik-price span {
    font-size: 11px;
}

.vorik-vehicle-list:not(.is-grid)
.vorik-detail-button {
    font-size: 13px;
}

.vorik-vehicle-list:not(.is-grid)
.vorik-detail-arrow {
    font-size: 15px;
}


/* ============================================================
   GRID VIEW ONLY
   Premium image-dominant card

   MAIN TUNING:
   --v-grid-image-height
   ============================================================ */

.vorik-vehicle-list.is-grid
.vorik-vehicle-card {
    display: flex;

    flex-direction: column;

    height: auto;
    min-height: 0;
}

.vorik-vehicle-list.is-grid
.vorik-vehicle-image-link {
    width: 100%;

    height:
        var(--v-grid-image-height);

    min-height:
        var(--v-grid-image-height);

    aspect-ratio: auto;
}

.vorik-vehicle-list.is-grid
.vorik-vehicle-image-link img,
.vorik-vehicle-list.is-grid
.vorik-image-placeholder {
    width: 100%;
    height: 100%;

    min-height: 0;

    object-fit: cover;

    /*
     * 25% = higher crop
     * 35% = recommended
     * 50% = centered crop
     */
    object-position:
        center 35%;
}

.vorik-vehicle-list.is-grid
.vorik-vehicle-content {
    display: flex;

    flex-direction: column;

    width: 100%;

    padding:
        10px 12px 11px;
}

.vorik-vehicle-list.is-grid
.vorik-provider-avatar {
    flex-basis: 32px;

    width: 32px;
    height: 32px;

    margin-top:
        -23px;

    font-size: 8px;
}

.vorik-vehicle-list.is-grid
.vorik-vehicle-name-wrap h2 {
    font-size: 16px;
}

.vorik-vehicle-list.is-grid
.vorik-vehicle-essential-line {
    margin-top: 6px;

    font-size: 12px;
}

.vorik-vehicle-list.is-grid
.vorik-vehicle-decision-line {
    margin-top: 8px;

    padding-top: 7px;
}

.vorik-vehicle-list.is-grid
.vorik-price small {
    display: none;
}

.vorik-vehicle-list.is-grid
.vorik-price strong {
    font-size: 17px;
}

.vorik-vehicle-list.is-grid
.vorik-price span {
    font-size: 11px;
}

.vorik-vehicle-list.is-grid
.vorik-detail-button {
    font-size: 13px;
}

.vorik-vehicle-list.is-grid
.vorik-detail-arrow {
    font-size: 14px;
}


/* ============================================================
   MAP
   ============================================================ */

.vorik-map-panel {
    display: none;

    position: fixed;

    inset:
        82px 16px 16px;

    z-index: 95;

    overflow: hidden;

    border:
        1px solid
        var(--v-border);

    border-radius:
        18px;

    background:
        #dbeafe;

    box-shadow:
        var(--v-shadow-hover);
}

.vorik-map-panel.is-open {
    display: block;
}

#vorik-vehicle-map {
    width: 100%;
    height: 100%;
}

.vorik-map-count {
    position: absolute;

    top: 12px;
    left: 50%;

    z-index: 5;

    transform:
        translateX(-50%);

    padding:
        8px 12px;

    border:
        1px solid
        var(--v-border);

    border-radius:
        999px;

    background:
        rgba(255,255,255,.95);

    box-shadow:
        0 7px 18px
        rgba(16,40,77,.12);

    font-size: 12px;

    white-space: nowrap;
}

.vorik-map-marker {
    min-width: 64px;

    padding:
        6px 9px;

    border:
        2px solid
        #fff;

    border-radius:
        999px;

    color: #fff;

    background:
        var(--v-navy);

    box-shadow:
        0 5px 14px
        rgba(16,40,77,.25);

    cursor: pointer;

    font-size: 10px;
    font-weight: 900;
}

.vorik-map-marker.is-active {
    color:
        var(--v-navy);

    background:
        var(--v-yellow);
}


/* ============================================================
   FILTER MOBILE DRAWER
   ============================================================ */

.vorik-filter-overlay {
    display: none;

    position: fixed;

    inset: 0;

    z-index: 105;

    background:
        rgba(15,23,42,.52);
}

.vorik-filter-overlay.is-open {
    display: block;
}


/* ============================================================
   LAZY LOADER
   ============================================================ */

.vorik-lazy-loader {
    position: relative;

    display: grid;

    place-items: center;

    width: 100%;

    min-height: 80px;

    margin-top: 15px;

    padding:
        10px 0 20px;
}

.vorik-lazy-status {
    display: none;

    align-items: center;

    gap: 10px;

    padding:
        11px 14px;

    border:
        1px solid
        var(--v-border);

    border-radius: 14px;

    color:
        var(--v-navy);

    background:
        rgba(255,255,255,.96);

    box-shadow:
        var(--v-shadow);
}

.vorik-lazy-loader.is-loading
.vorik-lazy-status {
    display: flex;
}

.vorik-lazy-status-icon {
    position: relative;

    width: 34px;
    height: 34px;

    flex:
        0 0 34px;

    border-radius: 11px;

    background:
        var(--v-blue-soft);
}

.vorik-lazy-status-icon::before {
    position: absolute;

    inset: 8px;

    border:
        2px solid
        rgba(57,120,232,.20);

    border-top-color:
        var(--v-blue);

    border-radius: 50%;

    content: "";

    animation:
        vorik-spin .75s linear infinite;
}

.vorik-lazy-skeletons {
    display: none;

    width: 100%;

    gap: 10px;
}

.vorik-lazy-loader.is-loading
.vorik-lazy-skeletons {
    display: grid;
}

.vorik-skeleton-card {
    overflow: hidden;

    min-height: 180px;

    border:
        1px solid
        var(--v-border);

    border-radius:
        var(--v-radius);

    background: #fff;
}

.vorik-catalog-complete {
    display: none;

    align-items: center;

    gap: 9px;

    padding:
        11px 14px;

    border:
        1px solid
        #d8f2e3;

    border-radius:
        14px;

    color:
        var(--v-navy);

    background:
        #edfff5;
}

.vorik-lazy-loader.is-complete
.vorik-catalog-complete {
    display: flex;
}

.vorik-lazy-loader.is-complete
.vorik-lazy-status,
.vorik-lazy-loader.is-complete
.vorik-lazy-skeletons {
    display: none;
}


/* ============================================================
   ANIMATIONS
   ============================================================ */

.vorik-vehicle-card.is-entering {
    opacity: 0;

    transform:
        translateY(18px);
}

.vorik-vehicle-card.is-entering.is-visible {
    opacity: 1;

    transform:
        translateY(0);

    transition:
        opacity .35s ease,
        transform .45s
        cubic-bezier(.22,1,.36,1);
}

@keyframes vorik-spin {
    to {
        transform:
            rotate(360deg);
    }
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 920px) {

    .vorik-catalog {
        padding-top:
            18px;
    }

    .vorik-catalog-nav a:not(.is-active) {
        display: none;
    }

    .vorik-catalog-layout {
        grid-template-columns:
            1fr;
    }

    .vorik-filter-panel {
        position: fixed;

        inset:
            0 auto 0 0;

        z-index: 110;

        width:
            min(
                88vw,
                350px
            );

        overflow-y: auto;

        padding: 20px;

        border-radius:
            0 18px 18px 0;

        transform:
            translateX(-105%);

        transition:
            transform .22s ease;
    }

    .vorik-filter-panel.is-open {
        transform:
            translateX(0);
    }

    .vorik-filter-heading button {
        display: grid;

        place-items: center;

        width: 38px;
        height: 38px;

        border:
            1px solid
            var(--v-border);

        border-radius:
            50%;

        background:
            #f8fafc;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 640px) {

    :root {
        --v-list-card-height: 150px;
        --v-grid-image-height: 158px;
    }

    .vorik-catalog {
        padding:
            16px 8px 40px;
    }

    .vorik-catalog-hero,
    .vorik-catalog-header {
        display: none;
    }

    .vorik-catalog-back-navigation {
        padding:
            8px 2px 10px;
    }

    .vorik-catalog-body .vorik-catalog-back-button {
        min-height: 36px;

        gap: 7px;

        font-size: 14px;
    }

    .vorik-catalog-body .vorik-catalog-back-button svg {
        width: 19px;
        height: 19px;
    }

    .vorik-catalog-toolbar {
        align-items:
            flex-end;

        padding:
            14px 0 12px;

        gap: 8px;
    }

    .vorik-catalog-toolbar strong {
        font-size:
            22px;
    }

    .vorik-catalog-toolbar span {
        font-size:
            14px;
    }

    .vorik-toolbar-actions {
        gap: 5px;
    }

    .vorik-mobile-filter-button,
    .vorik-mobile-map-button {
        width: 42px;
        min-width: 42px;

        height: 42px;

        padding: 0;
    }

    .vorik-mobile-filter-button span,
    .vorik-map-button-label {
        display: none;
    }

    .vorik-view-switcher {
        min-height: 42px;
    }

    .vorik-view-button {
        width: 37px;
        min-width: 37px;
        min-height: 34px;

        padding: 0;
    }

    .vorik-view-button span {
        display: none;
    }


    /* LIST */

    .vorik-vehicle-list:not(.is-grid)
    .vorik-vehicle-card {
        grid-template-columns:
            45%
            minmax(0, 55%);

        border-radius:
            14px;
    }

    .vorik-vehicle-list:not(.is-grid)
    .vorik-vehicle-content {
        padding:
            9px 11px;
    }

    .vorik-vehicle-list:not(.is-grid)
    .vorik-vehicle-name-wrap h2 {
        font-size:
            16px;
    }

    .vorik-vehicle-list:not(.is-grid)
    .vorik-vehicle-essential-line {
        font-size:
            12px;
    }

    .vorik-vehicle-list:not(.is-grid)
    .vorik-price strong {
        font-size:
            16px;
    }

    .vorik-vehicle-list:not(.is-grid)
    .vorik-price span {
        font-size:
            11px;
    }

    .vorik-vehicle-list:not(.is-grid)
    .vorik-detail-button {
        font-size:
            13px;
    }


    /* GRID */

    .vorik-vehicle-list.is-grid {
        gap: 8px;
    }

    .vorik-vehicle-list.is-grid
    .vorik-vehicle-card {
        border-radius:
            13px;
    }

    .vorik-vehicle-list.is-grid
    .vorik-vehicle-image-link {
        border-radius:
            13px 13px 0 0;
    }

    .vorik-vehicle-list.is-grid
    .vorik-vehicle-content {
        padding:
            9px 10px 10px;
    }

    .vorik-vehicle-list.is-grid
    .vorik-provider-avatar {
        width: 32px;
        height: 32px;

        flex-basis: 32px;

        margin-top:
            -23px;
    }

    .vorik-vehicle-list.is-grid
    .vorik-vehicle-name-wrap h2 {
        font-size:
            15px;
    }

    .vorik-vehicle-list.is-grid
    .vorik-vehicle-essential-line {
        margin-top:
            6px;

        font-size:
            11px;
    }

    .vorik-vehicle-list.is-grid
    .vorik-price strong {
        font-size:
            15px;
    }

    .vorik-vehicle-list.is-grid
    .vorik-price span {
        font-size:
            10px;
    }

    .vorik-vehicle-list.is-grid
    .vorik-detail-button {
        font-size:
            12px;
    }

}


/* ============================================================
   SMALL PHONES
   ============================================================ */

@media (max-width: 380px) {

    :root {
        --v-list-card-height: 144px;
        --v-grid-image-height: 155px;
    }

    .vorik-vehicle-list.is-grid {
        gap: 6px;
    }

    .vorik-vehicle-list.is-grid
    .vorik-vehicle-name-wrap h2 {
        font-size:
            14px;
    }

    .vorik-vehicle-list.is-grid
    .vorik-vehicle-essential-line {
        font-size:
            10px;
    }

    .vorik-vehicle-list.is-grid
    .vorik-price strong {
        font-size:
            14px;
    }

}