.fleet-vl {
    --fleet-vl-accent: #65cad9;
    --fleet-vl-primary: #65cad9;
    --fleet-vl-border: #dce5ec;
    --fleet-vl-text: #101728;
    --fleet-vl-muted: #7c8190;
    --fleet-vl-radius: 12px;
    font-family: inherit;
    color: var(--fleet-vl-text);
    position: relative;
}

.fleet-vl.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.68);
    z-index: 20;
    cursor: progress;
}

.fleet-vl__filters {
    margin: 0 0 26px;
}

.fleet-vl__filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.fleet-vl__filter {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.fleet-vl__filter-label {
    font-size: 13px;
    font-weight: 800;
}

.fleet-vl select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--fleet-vl-border);
    border-radius: 7px;
    background: #fff;
    color: var(--fleet-vl-text);
    padding: 0 38px 0 13px;
    font: inherit;
    font-size: 14px;
    outline: none;
}

.fleet-vl select:focus {
    border-color: var(--fleet-vl-accent);
    box-shadow: 0 0 0 2px rgba(101,202,217,.15);
}

.fleet-vl__reset {
    margin-top: 12px;
    border: 0;
    background: transparent;
    color: var(--fleet-vl-primary);
    font: inherit;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
}

.fleet-vl__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.fleet-vl__count {
    font-weight: 800;
    color: var(--fleet-vl-primary);
}

.fleet-vl__sort-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
}

.fleet-vl__sort-wrap select {
    width: auto;
    min-width: 190px;
    min-height: 40px;
}

/* Vehica-szerű, teljes szélességű autósáv */
.fleet-vl__grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fleet-vl-card {
    position: relative;
    min-width: 0;
    min-height: 224px;
    padding: 14px 16px;
    display: flex;
    align-items: stretch;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--fleet-vl-border);
    border-radius: var(--fleet-vl-radius);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.fleet-vl-card:hover {
    border-color: #cddce5;
    box-shadow: 0 7px 24px rgba(19,44,61,.06);
}

.fleet-vl-card__media {
    position: relative;
    flex: 0 0 264px;
    width: 264px;
    aspect-ratio: 4 / 3;
    min-height: 0;
    border-radius: 11px;
    overflow: hidden;
    background: #edf1f3;
}

.fleet-vl-card__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    color: var(--fleet-vl-muted);
    text-decoration: none;
}

.fleet-vl-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    transition: transform .3s ease;
}

.fleet-vl-card:hover .fleet-vl-card__image img {
    transform: scale(1.018);
}

.fleet-vl-card__no-image {
    display: grid;
    height: 100%;
    min-height: 0;
    place-items: center;
}

.fleet-vl-card__ribbon {
    position: absolute;
    z-index: 3;
    top: 19px;
    left: -44px;
    width: 170px;
    padding: 6px 0;
    transform: rotate(-45deg);
    background: var(--fleet-vl-accent);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0,0,0,.06);
}

.fleet-vl-card__photos {
    position: absolute;
    right: 10px;
    bottom: 9px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 23px;
    padding: 2px 7px;
    border-radius: 5px;
    background: rgba(95,95,95,.78);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.fleet-vl-card__photos svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fleet-vl-card__main {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0 10px 0;
}

.fleet-vl-card__title {
    margin: 0 0 30px;
    font-size: 27px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.35px;
}

.fleet-vl-card__title a {
    color: var(--fleet-vl-text);
    text-decoration: none;
}

.fleet-vl-card__title a:hover {
    color: var(--fleet-vl-primary);
}

.fleet-vl-card__facts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px 18px;
}

.fleet-vl-card__fact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    color: var(--fleet-vl-muted);
    font-size: 16px;
    line-height: 1.15;
    font-weight: 800;
    white-space: nowrap;
}

.fleet-vl-card__fact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    color: var(--fleet-vl-accent);
}

.fleet-vl-card__fact-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fleet-vl-card__fact--date {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 6px;
    background: var(--fleet-vl-accent);
    color: #fff;
}

.fleet-vl-card__fact--date .fleet-vl-card__fact-icon {
    color: #fff;
}

.fleet-vl-card__price-wrap {
    flex: 0 0 285px;
    min-width: 230px;
    align-self: center;
    margin-left: auto;
    text-align: right;
    padding: 14px 0 14px 18px;
}

.fleet-vl-card__price {
    color: var(--fleet-vl-accent);
    font-weight: 800;
    font-size: 27px;
    line-height: 1.08;
    letter-spacing: -.35px;
    white-space: nowrap;
}

.fleet-vl-card__net {
    color: var(--fleet-vl-muted);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
    margin-top: 9px;
}

.fleet-vl__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 32px;
}

.fleet-vl__pagination button {
    min-width: 38px;
    height: 38px;
    border: 1px solid var(--fleet-vl-border);
    border-radius: 6px;
    background: #fff;
    color: var(--fleet-vl-text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.fleet-vl__pagination button:hover,
.fleet-vl__pagination button.is-active {
    border-color: var(--fleet-vl-primary);
    background: var(--fleet-vl-primary);
    color: #fff;
}

.fleet-vl__empty,
.fleet-vl-notice {
    padding: 20px;
    border: 1px solid var(--fleet-vl-border);
    border-radius: var(--fleet-vl-radius);
    background: #fff;
    text-align: center;
}

@media (max-width: 1180px) {
    .fleet-vl-card__price-wrap {
        flex-basis: 245px;
        min-width: 205px;
    }
    .fleet-vl-card__price {
        font-size: 24px;
    }
    .fleet-vl-card__title {
        font-size: 23px;
    }
    .fleet-vl-card__facts {
        gap: 10px 13px;
    }
    .fleet-vl-card__fact {
        font-size: 14px;
    }
}

@media (max-width: 980px) {
    .fleet-vl__filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .fleet-vl-card {
        flex-wrap: wrap;
    }
    .fleet-vl-card__main {
        min-width: calc(100% - 300px);
    }
    .fleet-vl-card__price-wrap {
        flex: 1 0 100%;
        width: 100%;
        min-width: 0;
        padding: 2px 4px 8px;
        text-align: right;
    }
}

@media (max-width: 650px) {
    .fleet-vl__filter-grid {
        grid-template-columns: 1fr;
    }
    .fleet-vl__toolbar {
        align-items: stretch;
        flex-direction: column;
    }
    .fleet-vl__sort-wrap {
        align-items: stretch;
        flex-direction: column;
        gap: 6px;
    }
    .fleet-vl__sort-wrap select {
        width: 100%;
    }
    .fleet-vl-card {
        display: block;
        padding: 12px;
    }
    .fleet-vl-card__media {
        width: 100%;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }
    .fleet-vl-card__image,
    .fleet-vl-card__image img,
    .fleet-vl-card__no-image {
        min-height: 0;
        height: 100%;
    }
    .fleet-vl-card__main {
        padding: 20px 3px 8px;
    }
    .fleet-vl-card__title {
        margin-bottom: 18px;
        font-size: 21px;
    }
    .fleet-vl-card__facts {
        gap: 8px 13px;
    }
    .fleet-vl-card__fact {
        min-height: 32px;
        font-size: 13px;
    }
    .fleet-vl-card__fact--date {
        min-height: 34px;
        padding: 0 10px;
    }
    .fleet-vl-card__price-wrap {
        padding: 14px 3px 5px;
        text-align: left;
    }
    .fleet-vl-card__price {
        font-size: 24px;
    }
}

/* 0.1.3 - 4:3 képarány és kompaktabb árblokk. */

/* 0.1.2 - Vehica-kompatibilis adatsor és ikonok. */
.fleet-vl-card__facts.vehica-car-card__info {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 14px 26px !important;
    overflow: visible !important;
}

.fleet-vl-card__fact.vehica-car-card__info__single {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: var(--fleet-vl-muted) !important;
    overflow: visible !important;
}

/* A Vehica eredeti HTML-jéhez hasonlóan az i elem fa-circle marad;
   a tényleges ikonokat a pseudo-element adja. */
.fleet-vl-card__fact.vehica-car-card__info__single > i {
    display: none !important;
}

.fleet-vl-card__fact.vehica-car-card__info__single::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--fleet-vl-accent);
    font-size: 16px;
    width: 18px;
    min-width: 18px;
    line-height: 1 !important;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}

/* 1. dátum */
.fleet-vl-card__fact.vehica-car-card__info__single:nth-child(1)::before {
    content: "\f073";
    color: #fff !important;
}

/* 2. teljesítmény - ugyanaz a motor piktogram, mint a meglévő Fleet listán. */
.fleet-vl-card__fact.vehica-car-card__info__single:nth-child(2)::before {
    content: "" !important;
    width: 24px !important;
    min-width: 24px !important;
    height: 18px !important;
    background-color: var(--fleet-vl-accent) !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 8h18v6h7c2.2 0 4 1.8 4 4v5h5v-6h5v20h-5v-7h-5v4c0 2.2-1.8 4-4 4H35l-6 6H14c-2.2 0-4-1.8-4-4v-8H4V20h6v-4c0-2.2 1.8-4 4-4h8V8zm4 4v6H14v22h13l6-6h14V18H36v-6H26zM17 23h9v5h-9v-5zm14 0h10v5H31v-5z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 8h18v6h7c2.2 0 4 1.8 4 4v5h5v-6h5v20h-5v-7h-5v4c0 2.2-1.8 4-4 4H35l-6 6H14c-2.2 0-4-1.8-4-4v-8H4V20h6v-4c0-2.2 1.8-4 4-4h8V8zm4 4v6H14v22h13l6-6h14V18H36v-6H26zM17 23h9v5h-9v-5zm14 0h10v5H31v-5z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

/* 3. hengerűrtartalom - Font Awesome cog, nem a korábbi "napocska" SVG. */
.fleet-vl-card__fact.vehica-car-card__info__single:nth-child(3)::before {
    content: "\f013";
}

/* 4. futásteljesítmény */
.fleet-vl-card__fact.vehica-car-card__info__single:nth-child(4)::before {
    content: "\f3fd";
}


/* 0.1.4 - Fleet/Vehica-szerű szűrődesign, egységes #65cad9 akcentus, kategóriaszalag nélkül. */
.fleet-vl {
    --fleet-vl-accent: #65cad9;
    --fleet-vl-primary: #65cad9;
    --fleet-vl-filter-bg: #f3f6fb;
    --fleet-vl-input-border: #dfe5eb;
    --fleet-vl-input-text: #101728;
}

.fleet-vl__filters {
    margin: 0 0 26px;
    padding: 22px 24px 18px;
    border: 1px solid #e8edf2;
    border-radius: 14px;
    background: var(--fleet-vl-filter-bg);
}

.fleet-vl__filter-grid {
    gap: 14px;
}

.fleet-vl__filter {
    gap: 8px;
}

.fleet-vl__filter-label {
    color: var(--fleet-vl-input-text);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0;
}

.fleet-vl select {
    -webkit-appearance: none;
    appearance: none;
    min-height: 54px;
    border: 1px solid var(--fleet-vl-input-border);
    border-radius: 12px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%23101728' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 17px center;
    background-size: 12px 8px;
    color: var(--fleet-vl-input-text);
    padding: 0 46px 0 17px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(16, 23, 40, .025);
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
    cursor: pointer;
}

.fleet-vl select:hover {
    border-color: #c9d5de;
}

.fleet-vl select:focus {
    border-color: var(--fleet-vl-accent);
    box-shadow: 0 0 0 3px rgba(101, 202, 217, .14);
}

.fleet-vl__reset {
    display: block;
    width: fit-content;
    margin: 13px 0 0 auto;
    color: #4b5260;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
    transition: color .18s ease;
}

.fleet-vl__reset:hover {
    color: var(--fleet-vl-accent);
}

.fleet-vl__toolbar {
    margin-bottom: 18px;
}

.fleet-vl__count {
    color: var(--fleet-vl-input-text);
    font-size: 19px;
    line-height: 1.25;
    font-weight: 800;
}

.fleet-vl__sort-wrap {
    color: var(--fleet-vl-input-text);
    font-size: 14px;
    font-weight: 600;
}

.fleet-vl__sort-wrap select {
    min-width: 210px;
    min-height: 46px;
    border-radius: 11px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* A lista már eleve fix Ajánlat típusra szűr, ezért a képen nincs kategóriaszalag. */
.fleet-vl-card__ribbon {
    display: none !important;
}

.fleet-vl-card__title a:hover {
    color: var(--fleet-vl-accent);
}

.fleet-vl__pagination button:hover,
.fleet-vl__pagination button.is-active {
    border-color: var(--fleet-vl-accent);
    background: var(--fleet-vl-accent);
    color: #fff;
}

@media (max-width: 980px) {
    .fleet-vl__filters {
        padding: 18px;
    }
}

@media (max-width: 650px) {
    .fleet-vl__filters {
        padding: 15px;
        border-radius: 12px;
    }

    .fleet-vl select {
        min-height: 50px;
    }

    .fleet-vl__count {
        font-size: 17px;
    }
}
