/* =========================================================
   01. VARIABLES / RESET
========================================================= */

:root {
    --blue: #0134ff;
    --blue-dark: #0026c7;
    --blue-soft: #eef3ff;

    --accent-green: #00dd89;
    --green: #138a3d;
    --green-soft: #e9f7ed;

    --text: #0c1428;
    --text-strong: #101524;
    --muted: #747b8a;

    --line: #e5e8ef;
    --background: #f6f8fc;
    --surface: #ffffff;

    --container: 1440px;

    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;

    --shadow:
        0 20px 60px
        rgba(28, 45, 85, .09);
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    color: var(--text);
    background: #fff;

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

    -webkit-font-smoothing: antialiased;
}


body,
html {
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
select,
textarea {
    font: inherit;
}


button {
    cursor: pointer;
}


img {
    max-width: 100%;
}


[hidden] {
    display: none !important;
}


.container {
    width:
        min(
            calc(100% - 56px),
            var(--container)
        );

    margin: 0 auto;
}


/* =========================================================
   02. COMMON
========================================================= */

.logo {
    display: inline-flex;
    align-items: center;

    color: var(--blue);

    font-size: 27px;
    font-weight: 900;
    line-height: 1;

    letter-spacing: -.06em;

    white-space: nowrap;
}


.logo span + span {
    margin-left: 4px;
}


.asset-card-link {
    display: block;

    color: inherit;
    text-decoration: none;
}


/* =========================================================
   03. BUTTONS
========================================================= */

.button {
    min-height: 48px;

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

    padding: 0 22px;

    border: 0;
    border-radius: 14px;

    color: #fff;
    background: var(--blue);

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

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


.button:hover {
    background: var(--blue-dark);

    transform: translateY(-1px);
}


.button--small {
    min-height: 42px;

    padding: 0 18px;

    border-radius: 12px;
}


/* =========================================================
   04. HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;

    z-index: 1000;

    border-bottom:
        1px solid rgba(226, 230, 237, .92);

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

    backdrop-filter: blur(20px);

    box-shadow:
        0 4px 20px
        rgba(22, 34, 64, .025);
}


/* ---------------------------------------------------------
   SERVICE BAR
--------------------------------------------------------- */

.header__service {
    border-bottom:
        1px solid #edf0f4;

    background: #fafbfc;
}


.header__service-inner {
    min-height: 36px;

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

    gap: 24px;
}


.header-freshness {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #737b89;

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

    white-space: nowrap;
}


.header-freshness strong {
    color: #4d5563;

    font-weight: 700;
}


.header-freshness__dot {
    flex: 0 0 7px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #20a857;

    box-shadow:
        0 0 0 4px
        rgba(32, 168, 87, .10);
}


/* ---------------------------------------------------------
   CONTACTS
--------------------------------------------------------- */

.header-contacts {
    display: flex;
    align-items: center;

    gap: 20px;
}


.header-phone {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #151b26;

    font-size: 16px;
    font-weight: 700;

    white-space: nowrap;

    transition: color .18s ease;
}


.header-phone:hover {
    color: var(--blue);
}


.header-phone svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: #727b89;

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


.header-callback {
    padding: 0;

    border: 0;

    color: var(--blue);
    background: transparent;

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

    transition: opacity .18s ease;
}


.header-callback:hover {
    opacity: .7;
}


/* ---------------------------------------------------------
   MAIN HEADER
--------------------------------------------------------- */

.header__main {
    position: relative;

    min-height: 76px;

    display: flex;
    align-items: center;

    gap: 18px;
}


.header__logo {
    flex: 0 0 auto;

    margin-right: 12px;
}


.header__logo img {
    display: block;

    width: auto;
    height: 33px;
}


/* ---------------------------------------------------------
   CATALOG BUTTON
--------------------------------------------------------- */

.header-catalog-wrap {
    position: relative;

    flex: 0 0 auto;
}


.header-catalog {
    height: 44px;

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

    gap: 9px;

    padding: 0 15px;

    border:
        1px solid #e1e5ec;

    border-radius: 12px;

    color: #1d2430;
    background: #fff;

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

    transition:
        border-color .18s ease,
        background .18s ease,
        color .18s ease;
}


.header-catalog:hover,
.header-catalog[aria-expanded="true"] {
    color: var(--blue);

    border-color:
        rgba(1, 52, 255, .22);

    background: #f8faff;
}


.header-catalog svg {
    fill: none;
    stroke: currentColor;

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


.header-catalog__menu-icon {
    width: 18px;
    height: 18px;
}


.header-catalog__arrow {
    width: 15px;
    height: 15px;

    transition:
        transform .18s ease;
}


.header-catalog[aria-expanded="true"]
.header-catalog__arrow {
    transform: rotate(180deg);
}


/* ---------------------------------------------------------
   CATALOG DROPDOWN
--------------------------------------------------------- */

.header-catalog-menu {
    position: absolute;

    z-index: 1100;

    top: calc(100% + 12px);
    left: 0;

    width: 380px;

    padding: 18px;

    border:
        1px solid #e4e8ef;

    border-radius: 18px;

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

    box-shadow:
        0 22px 60px
        rgba(25, 39, 75, .13);

    backdrop-filter: blur(20px);
}


.header-catalog-menu__eyebrow {
    display: block;

    margin:
        2px 5px 10px;

    color: #a0a8b5;

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

    letter-spacing: .13em;
}


.header-catalog-menu__items {
    display: flex;
    flex-direction: column;

    gap: 3px;
}


.header-catalog-menu__items > a {
    min-height: 47px;

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

    gap: 20px;

    padding: 0 11px;

    border-radius: 10px;

    color: #252c38;

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

    transition:
        color .18s ease,
        background .18s ease;
}


.header-catalog-menu__items > a:hover {
    color: var(--blue);

    background: #f4f7ff;
}


.header-catalog-menu__items svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;

    opacity: .55;

    transition:
        transform .18s ease,
        opacity .18s ease;
}


.header-catalog-menu__items > a:hover svg {
    opacity: 1;

    transform: translateX(3px);
}


.header-catalog-menu__all {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 10px;

    padding:
        13px 11px 3px;

    border-top:
        1px solid #e9ecf2;

    color: var(--blue);

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


/* ---------------------------------------------------------
   HEADER SEARCH
--------------------------------------------------------- */

.header-search-wrap {
    position: relative;

    flex: 1 1 auto;

    display: flex;
    align-items: center;

    min-width: 170px;
    max-width: 520px;
}


.header-search-toggle {
    width: 100%;
    height: 44px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 0 15px;

    border:
        1px solid #e2e7ef;

    border-radius: 13px;

    color: #303846;

    background:
        linear-gradient(
            180deg,
            #fff 0%,
            #f8faff 100%
        );

    box-shadow:
        0 3px 10px
        rgba(20, 35, 70, .04);

    font: inherit;
    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

    transition:
        border-color .18s ease,
        background .18s ease,
        box-shadow .18s ease,
        color .18s ease;
}


.header-search-toggle:hover {
    color: var(--blue);

    border-color:
        rgba(1, 52, 255, .24);

    background: #fff;

    box-shadow:
        0 6px 18px
        rgba(20, 35, 70, .08);
}


.header-search-toggle svg {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* ---------------------------------------------------------
   HOME HEADER SEARCH ATTENTION
--------------------------------------------------------- */

@keyframes header-search-pulse {

    0%,
    100% {
        border-color:
            rgba(1, 52, 255, .22);

        box-shadow:
            0 3px 10px
            rgba(20, 35, 70, .04);
    }

    50% {
        border-color:
            rgba(1, 52, 255, .72);

        box-shadow:
            0 0 0 4px
            rgba(1, 52, 255, .07),
            0 6px 18px
            rgba(20, 35, 70, .06);
    }

}


@media (min-width: 768px) {

    .storefront-home
    .header-search-toggle {
        animation:
            header-search-pulse
            2.3s ease-in-out
            infinite;
    }


    .storefront-home
    .header-search-toggle:hover {
        animation: none;
    }


    .storefront-home
    .header-search-wrap:has(
        .header-search:not([hidden])
    )
    .header-search-toggle {
        animation: none;
    }

}


@media (prefers-reduced-motion: reduce) {

    .storefront-home
    .header-search-toggle {
        animation: none;
    }

}

/* OPEN SEARCH */

.header-search {
    width: 430px;
    height: 44px;

    display: flex;
    align-items: center;

    gap: 5px;

    padding:
        4px
        5px
        4px
        15px;

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

    border-radius: 14px;

    background: #fff;

    box-shadow:
        0 0 0 3px
        rgba(1, 52, 255, .06),

        0 7px 24px
        rgba(20, 35, 70, .09);
}


.header-search input {
    min-width: 0;
    height: 100%;

    flex: 1;

    padding: 0;

    border: 0;
    outline: 0;

    color: #18202c;
    background: transparent;

    font: inherit;
    font-size: 12px;
    font-weight: 500;
}


.header-search input::placeholder {
    color: #929aa7;

    opacity: 1;
}


.header-search input::-webkit-search-cancel-button {
    display: none;
}


.header-search__submit {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;
    border-radius: 10px;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #194cff,
            var(--blue)
        );

    box-shadow:
        0 5px 13px
        rgba(1, 52, 255, .20);

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


.header-search__submit:hover {
    transform:
        translateY(-1px);

    box-shadow:
        0 7px 18px
        rgba(1, 52, 255, .26);
}


.header-search__submit svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
}


.header-search__close {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;
    border-radius: 10px;

    color: #8c94a0;
    background: transparent;

    transition:
        color .15s ease,
        background .15s ease;
}


.header-search__close:hover {
    color: #202733;

    background: #f1f4f8;
}


.header-search__close svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
}


/* ---------------------------------------------------------
   LIVE SEARCH
--------------------------------------------------------- */

.live-search {
    position: absolute;

    z-index: 1200;

    top: calc(100% + 9px);
    left: 0;

    width: 430px;

    overflow: hidden;

    border:
        1px solid #e2e7ef;

    border-radius: 18px;

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

    box-shadow:
        0 22px 60px
        rgba(20, 35, 70, .16);

    backdrop-filter:
        blur(18px);
}


.live-search__item {
    display: grid;

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

    align-items: center;

    gap: 12px;

    padding: 11px 13px;

    color: inherit;

    border-bottom:
        1px solid #edf0f4;

    transition:
        background .15s ease;
}


.live-search__item:hover {
    background: #f7f9fc;
}


.live-search__item:last-of-type {
    border-bottom: 0;
}


.live-search__media {
    width: 66px;
    height: 48px;

    overflow: hidden;

    border-radius: 10px;

    background: #f0f2f5;
}


.live-search__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.live-search__placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    color: #b4bbc5;

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
}


.live-search__content {
    min-width: 0;
}


.live-search__category {
    display: block;

    margin-bottom: 3px;

    color: #9098a5;

    font-size: 9px;
    font-weight: 700;
    line-height: 1.2;

    text-transform: uppercase;

    letter-spacing: .05em;
}


.live-search__title {
    display: block;

    overflow: hidden;

    color: #18202c;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;

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


.live-search__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 5px;

    margin-top: 4px;

    color: #858d99;

    font-size: 10px;
}


.live-search__meta span + span::before {
    content: "•";

    margin-right: 5px;

    color: #c1c6ce;
}


.live-search__price {
    padding-left: 10px;

    color: #18202c;

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

    white-space: nowrap;
}


.live-search__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding: 13px 15px;

    color: var(--blue);
    background: #f8faff;

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


.live-search__footer span:last-child {
    font-size: 16px;

    transition:
        transform .18s ease;
}


.live-search__footer:hover
span:last-child {
    transform:
        translateX(3px);
}


.live-search__message {
    padding: 18px;

    color: #7b8491;

    font-size: 12px;

    text-align: center;
}


/* ---------------------------------------------------------
   HEADER FAVORITES
--------------------------------------------------------- */

.header__actions {
    flex: 0 0 auto;

    margin-left: auto;

    display: flex;
    align-items: center;
}


.header-favorites {
    position: relative;

    min-height: 44px;

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

    gap: 8px;

    padding: 0 11px;

    border-radius: 11px;

    color: #313845;

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

    transition:
        color .18s ease,
        background .18s ease;
}


.header-favorites:hover {
    color: var(--blue);

    background: #f5f7fc;
}


.header-favorites svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;

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


.header-favorites__count {
    min-width: 19px;
    height: 19px;

    padding: 0 5px;

    border-radius: 999px;

    color: #fff;
    background: var(--blue);

    font-size: 10px;
    font-weight: 700;
    line-height: 19px;

    text-align: center;
}


/* =========================================================
   05. BREADCRUMBS
========================================================= */

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 6px;

    margin-bottom: 18px;

    color: #8a929f;

    font-size: 11px;
    line-height: 1.4;
}


.breadcrumbs a {
    color: #737b89;

    transition:
        color .18s ease;
}


.breadcrumbs a:hover {
    color: var(--blue);
}


.breadcrumbs__separator {
    color: #c0c6d0;
}


.breadcrumbs__current {
    color: #404754;
}


/* =========================================================
   06. HOME — INTRO
========================================================= */

.home-intro {
    padding:
        46px 0 28px;

    background: #fff;
}


.home-intro__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 30px;
}


.home-intro__eyebrow {
    display: block;

    margin-bottom: 10px;

    color: var(--blue);

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

    letter-spacing: .11em;
}


.home-intro h1 {
    max-width: 760px;

    margin: 0;

    color: #111827;

    font-size:
        clamp(
            36px,
            4vw,
            58px
        );

    font-weight: 700;
    line-height: .98;

    letter-spacing: -.045em;
}


.home-intro h1 span {
    color: var(--accent-green);
}


.home-intro__copy p {
    max-width: 620px;

    margin:
        17px 0 0;

    color: #737b89;

    font-size: 14px;
    line-height: 1.6;
}


.home-intro__stock {
    flex: 0 0 auto;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 10px;

    min-width: 235px;

    padding: 15px 17px;

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

    border-radius: 15px;

    background: #fafbfc;

    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease;
}


.home-intro__stock:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(1, 52, 255, .20);

    background: #f7f9ff;
}


.home-intro__stock strong {
    color: #151b26;

    font-size: 20px;
    line-height: 1;
}


.home-intro__stock span {
    max-width: 95px;

    color: #7a8290;

    font-size: 10px;
    line-height: 1.3;
}


.home-intro__stock svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: var(--blue);

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


/* =========================================================
   HOME — CATEGORIES
========================================================= */

.home-categories {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}


.home-category-card {
    position: relative;

    min-height: 280px;

    overflow: hidden;

    border:
        1px solid #eceef2;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #f7f7f8 0%,
            #f2f3f5 100%
        );

    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}


.home-category-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(1, 52, 255, .15);

    box-shadow:
        0 18px 45px
        rgba(20, 34, 68, .07);
}


.home-category-card::after {
    content: "";

    position: absolute;

    right: -100px;
    bottom: -130px;

    width: 270px;
    height: 270px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(1, 52, 255, .08),
            transparent 68%
        );

    pointer-events: none;
}


.home-category-card__content {
    position: relative;

    z-index: 3;

    /* width: 55%; */

    padding: 30px;
}


.home-category-card__count {
    display: inline-flex;

    margin-bottom: 13px;

    color: #8a929f;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .04em;

    text-transform: uppercase;
}


.home-category-card h2 {
    max-width: 360px;

    margin: 0;

    color: #171c25;

    font-size: 27px;
    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -.035em;
}


.home-category-card__action {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 22px;

    color: var(--blue);

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


.home-category-card__action svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform .18s ease;
}


.home-category-card:hover
.home-category-card__action svg {
    transform:
        translateX(4px);
}


.home-category-card__image {
    position: absolute;

    z-index: 2;

    right: -2%;
    bottom: -5%;

    width: 50%;
    height: 82%;

    object-fit: contain;
    object-position: right bottom;

    transition:
        transform .35s ease;
}


.home-category-card:hover
.home-category-card__image {
    transform:
        translateX(-5px)
        scale(1.025);
}


/* =========================================================
   HOME — STOCK MAP
========================================================= */

.stock-map {
    position: relative;

    margin: 0 auto;

    padding: 26px;

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

    border-radius: 30px;

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

    box-shadow:
        0 30px 80px
        rgba(46, 66, 110, .10);
}


.stock-map__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 20px;
}


.stock-map__eyebrow {
    color: var(--blue);

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

    letter-spacing: .14em;
}


.stock-map__head h2 {
    margin:
        7px 0 0;

    font-size: 25px;

    letter-spacing: -.035em;
}


.stock-map__catalog-link {
    padding-bottom: 3px;

    color: var(--blue);

    font-size: 13px;
    font-weight: 700;
}


.parking-map {
    position: relative;

    z-index: 1;

    width: 100%;
    height: 480px;

    overflow: hidden;

    border-radius: 18px;

    background: #eef1f5;
}


.parking-map-empty {
    min-height: 300px;

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

    gap: 8px;

    text-align: center;

    border-radius: 22px;

    color: var(--muted);

    background:
        linear-gradient(
            135deg,
            #f7f9fd,
            #edf2fb
        );
}


.parking-map-empty strong {
    color: var(--text);

    font-size: 17px;
}


.parking-map-empty span {
    max-width: 420px;

    font-size: 13px;
    line-height: 1.5;
}


.stock-map__glow {
    position: absolute;

    inset: -30px;

    pointer-events: none;

    background:
        radial-gradient(
            circle at center,
            rgba(1, 52, 255, .08),
            transparent 62%
        );
}


.stock-map__label {
    position: relative;

    z-index: 2;

    width: max-content;

    margin: 0 auto;

    padding: 7px 13px;

    border-radius: 999px;

    color: var(--blue);
    background: #fff;

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

    box-shadow:
        0 8px 22px
        rgba(41, 56, 91, .08);
}


.stock-stats {
    position: relative;

    z-index: 3;

    display: flex;
    justify-content: center;

    gap: 9px;

    margin-top: -10px;
}


.stock-stats > div {
    min-width: 160px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 12px 18px;

    border-radius: 14px;

    background: #fff;

    box-shadow:
        0 12px 25px
        rgba(36, 52, 91, .08);
}


.stock-stats strong {
    color: var(--blue);

    font-size: 23px;
    line-height: 1;
}


.stock-stats span {
    color: var(--muted);

    font-size: 11px;
    line-height: 1.2;
}


/* =========================================================
   HOME — LATEST
========================================================= */

.latest,
.catalog-page {
    padding: 80px 0;
}


.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 32px;
}


.section-head span,
.catalog-page__caption {
    color: var(--blue);

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

    letter-spacing: .13em;
}


.section-head h2,
.catalog-page__head h1 {
    margin:
        7px 0 0;

    font-size:
        clamp(
            34px,
            3vw,
            48px
        );

    line-height: 1.02;

    letter-spacing: -.045em;
}


.section-head > a {
    color: var(--blue);

    font-size: 14px;
    font-weight: 700;
}


.assets {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 17px;
}


.asset {
    overflow: hidden;

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

    border-radius: 22px;

    background: #fff;

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


.asset:hover {
    transform:
        translateY(-4px);

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


.asset__image {
    position: relative;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #f6f7f9 0%,
            #eef1f5 100%
        );
}

.asset__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.asset__placeholder {
    width: 100%;
    height: 100%;

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

    gap: 8px;

    padding: 24px;

    color: #8a93a2;

    text-align: center;
}


.asset__placeholder-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 4px;

    border:
        1px solid #dfe4eb;

    border-radius: 15px;

    color: #949dab;

    background:
        rgba(255, 255, 255, .72);
}


.asset__placeholder-icon svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: currentColor;

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


.asset__placeholder strong {
    color: #535c6a;

    font-size: 13px;
    font-weight: 700;
}


.asset__placeholder span {
    color: #929aa6;

    font-size: 11px;
    line-height: 1.4;
}


.asset__badges {
    position: absolute;

    top: 14px;
    left: 14px;

    display: flex;
    flex-wrap: wrap;

    gap: 6px;
}


.asset__badges span {
    padding: 7px 10px;

    border-radius: 999px;

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

    font-size: 10px;
    font-weight: 700;

    backdrop-filter:
        blur(8px);
}


.asset__badge--available {
    color: var(--green);

    background:
        rgba(233, 247, 237, .94) !important;
}


.asset-badge--demand {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: #fff;
    background: #000;

    font-weight: 600;
}


.asset__special-offers {
    position: absolute;

    z-index: 4;

    left: 14px;
    bottom: 14px;

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

    gap: 6px;

    max-width:
        calc(100% - 28px);
}


.asset__special-offer {
    display: inline-flex;
    align-items: center;

    max-width: 100%;

    padding: 7px 10px;

    overflow: hidden;

    border-radius: 999px;

    color: #fff;
    background: var(--blue);

    font-size: 10px;
    font-weight: 700;
    line-height: 1.15;

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

    box-shadow:
        0 5px 16px
        rgba(1, 52, 255, .22);
}


.asset__content {
    padding: 19px;
}


.asset__type {
    min-height: 16px;

    margin-bottom: 7px;

    color: var(--blue);

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

    text-transform: uppercase;

    letter-spacing: .05em;
}


.asset h3 {
    min-height: 50px;

    margin: 0;

    font-size: 18px;
    line-height: 1.27;

    letter-spacing: -.02em;
}


.asset__details {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 13px;
}


.asset__details span {
    padding: 6px 9px;

    border-radius: 8px;

    color: #636a77;
    background: #f5f6f8;

    font-size: 12px;
}


.asset__bottom {
    margin-top: 19px;

    padding-top: 17px;

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

    gap: 12px;

    border-top:
        1px solid #edf0f4;
}


.asset__price {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.asset__price strong {
    font-size: 21px;
    line-height: 1;
}


.asset__price del {
    color: #949ba8;

    font-size: 13px;
    font-weight: 500;
    line-height: 1.15;

    text-decoration-thickness: 1.4px;
}


.asset__price small {
    color: var(--muted);

    font-size: 10px;
}


.asset__arrow {
    flex-shrink: 0;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #fff;
    background: var(--blue);

    font-size: 18px;
}


.latest__more {
    margin-top: 34px;

    text-align: center;
}


/* =========================================================
   HOME — ADVANTAGES
========================================================= */

.advantages {
    padding: 82px 0;

    background:
        linear-gradient(
            180deg,
            #f7f9fc 0%,
            #fff 100%
        );
}


.advantages__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 30px;
}


.advantages__head > div {
    max-width: 760px;
}


.advantages__eyebrow {
    display: block;

    margin-bottom: 9px;

    color: var(--blue);

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

    letter-spacing: .12em;
}


.advantages__head h2 {
    margin: 0;

    color: #121827;

    font-size:
        clamp(
            30px,
            3vw,
            44px
        );

    line-height: 1.05;

    letter-spacing: -.035em;
}


.advantages__head > p {
    max-width: 430px;

    margin: 0;

    color: #737b89;

    font-size: 13px;
    line-height: 1.6;
}


.advantages__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}


.advantage-card {
    position: relative;

    min-height: 245px;

    padding: 24px;

    overflow: hidden;

    border:
        1px solid #e5e9f0;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #fff 0%,
            #f9fbff 100%
        );

    box-shadow:
        0 14px 38px
        rgba(20, 34, 68, .045);

    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}


.advantage-card::after {
    content: "";

    position: absolute;

    right: -70px;
    bottom: -80px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(1, 52, 255, .08),
            transparent 70%
        );

    pointer-events: none;
}


.advantage-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(1, 52, 255, .17);

    box-shadow:
        0 18px 45px
        rgba(20, 34, 68, .07);
}


.advantage-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}


.advantage-card__icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

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

    border-radius: 16px;

    color: var(--blue);

    background:
        linear-gradient(
            145deg,
            #edf2ff,
            #f6f8ff
        );
}


.advantage-card__icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;

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


.advantage-card__number {
    color: #a5adba;

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

    letter-spacing: .12em;
}


.advantage-card h3 {
    margin:
        30px 0 9px;

    color: #151b26;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;

    letter-spacing: -.02em;
}


.advantage-card p {
    max-width: 245px;

    margin: 0;

    color: #727a88;

    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   HOME — REQUEST
========================================================= */

.request {
    padding:
        40px 0 90px;
}


.request__box {
    position: relative;

    min-height: 280px;

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

    gap: 60px;

    padding:
        50px 56px;

    overflow: hidden;

    border:
        1px solid #e5e9f1;

    border-radius: 30px;

    color: #151b26;

    background:
        linear-gradient(
            135deg,
            #fff 0%,
            #f7f9ff 58%,
            #f1f5ff 100%
        );

    box-shadow:
        0 24px 60px
        rgba(26, 41, 78, .08);
}


.request__box::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background:
        linear-gradient(
            115deg,
            rgba(255, 255, 255, .7),
            transparent 45%
        );

    pointer-events: none;
}


.request__glow {
    position: absolute;

    top: -180px;
    right: -140px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(1, 52, 255, .16) 0%,
            rgba(1, 52, 255, .06) 38%,
            transparent 72%
        );

    pointer-events: none;
}


.request__content {
    position: relative;

    z-index: 2;

    max-width: 730px;
}


.request__eyebrow {
    display: block;

    margin-bottom: 11px;

    color: var(--blue);

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

    letter-spacing: .13em;
}


.request h2 {
    max-width: 680px;

    margin: 0;

    color: #121827;

    font-size:
        clamp(
            34px,
            3.3vw,
            50px
        );

    font-weight: 700;
    line-height: 1.02;

    letter-spacing: -.04em;
}


.request p {
    max-width: 650px;

    margin:
        16px 0 0;

    color: #727b89;

    font-size: 14px;
    line-height: 1.6;
}


.request__actions {
    position: relative;

    z-index: 2;

    flex: 0 0 250px;

    display: flex;
    flex-direction: column;

    gap: 17px;
}


.request__button {
    width: 100%;
    min-height: 56px;

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

    gap: 10px;

    padding: 0 20px;

    border: 0;
    border-radius: 14px;

    color: #fff;
    background: var(--blue);

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

    box-shadow:
        0 12px 28px
        rgba(1, 52, 255, .20);

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


.request__button:hover {
    transform:
        translateY(-2px);

    background: #002bd6;

    box-shadow:
        0 16px 34px
        rgba(1, 52, 255, .26);
}


.request__button svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform .18s ease;
}


.request__button:hover svg {
    transform:
        translateX(3px);
}


.request__phone {
    display: flex;
    flex-direction: column;

    gap: 3px;

    color: #1b2230;
}


.request__phone span {
    color: #8b93a0;

    font-size: 12px;
}


.request__phone strong {
    color: #1c2431;

    font-size: 17px;
    font-weight: 700;
}


/* =========================================================
   HOME — ABOUT
========================================================= */

.home-about {
    padding: 72px 0;
}


.home-about__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(320px, .9fr);

    gap: 64px;

    align-items: start;
}


.home-about__eyebrow {
    display: block;

    margin-bottom: 12px;

    color: var(--blue);

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

    letter-spacing: .11em;

    text-transform: uppercase;
}


.home-about__content h2 {
    max-width: 720px;

    margin:
        0 0 20px;

    color: #151c28;

    font-size: 36px;
    line-height: 1.08;

    letter-spacing: -.035em;
}


.home-about__content p {
    max-width: 760px;

    margin:
        0 0 14px;

    color: #69717e;

    font-size: 14px;
    line-height: 1.75;
}


.home-about__facts {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}


.home-about__fact {
    min-height: 145px;

    padding: 20px;

    border:
        1px solid #e6eaf0;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #f7f9fc
        );

    box-shadow:
        0 8px 26px
        rgba(22, 35, 70, .05);
}


.home-about__fact strong {
    display: block;

    margin-bottom: 8px;

    color: #1b2330;

    font-size: 16px;
    font-weight: 700;
}


.home-about__fact span {
    color: #7d8592;

    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   HOME — FAQ
========================================================= */

.home-faq {
    padding:
        20px 0 88px;
}


.home-faq__head {
    max-width: 650px;

    margin-bottom: 28px;
}


.home-faq__eyebrow {
    display: block;

    margin-bottom: 10px;

    color: var(--blue);

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

    letter-spacing: .11em;

    text-transform: uppercase;
}


.home-faq__head h2 {
    margin:
        0 0 10px;

    color: #151c28;

    font-size: 34px;
    line-height: 1.1;

    letter-spacing: -.03em;
}


.home-faq__head p {
    margin: 0;

    color: #7c8491;

    font-size: 13px;
    line-height: 1.6;
}


.faq-list {
    border-top:
        1px solid #e5e9ef;
}


.faq-item {
    border-bottom:
        1px solid #e5e9ef;
}


.faq-item summary {
    min-height: 72px;

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

    gap: 24px;

    padding: 18px 4px;

    color: #202733;

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

    cursor: pointer;

    list-style: none;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-item__icon {
    position: relative;

    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    border-radius: 50%;

    background: #f3f6fb;
}


.faq-item__icon::before,
.faq-item__icon::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 10px;
    height: 1.5px;

    background: var(--blue);

    transform:
        translate(-50%, -50%);
}


.faq-item__icon::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);

    transition:
        transform .2s ease;
}


.faq-item[open]
.faq-item__icon::after {
    transform:
        translate(-50%, -50%)
        rotate(0deg);
}


.faq-item__content {
    max-width: 860px;

    padding:
        0 48px 22px 4px;

    color: #747d89;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   07. CATALOG PAGE
========================================================= */
.asset-lead-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;

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

    padding: 20px;
}

.asset-lead-modal.is-open {
    display: flex;
}

.asset-lead-modal__backdrop {
    position: absolute;
    inset: 0;

    background: rgba(15, 23, 42, .58);
    backdrop-filter: blur(4px);
}

.asset-lead-modal__dialog {
    position: relative;
    z-index: 1;

    width: min(100%, 610px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;

    padding: 24px;

    background: #fff;

    border: 1px solid #edf0f4;
    border-radius: 20px;

    box-shadow:
        0 24px 70px rgba(15, 23, 42, .22);
}

.asset-lead-modal__close {
    position: absolute;

    top: 14px;
    right: 14px;

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

    width: 34px;
    height: 34px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #f1f5f9;
    color: #475569;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;

    transition:
        background .15s ease,
        color .15s ease,
        transform .15s ease;
}

.asset-lead-modal__close:hover {
    background: #e8eef5;
    color: #0f172a;
    transform: scale(1.04);
}

.asset-lead-modal__heading {
    padding-right: 40px;
    margin-bottom: 18px;
}

.asset-lead-modal__eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #0134ff;

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

    letter-spacing: .08em;
    text-transform: uppercase;
}

.asset-lead-modal__heading h2 {
    margin: 0 0 5px;

    font-size: clamp(
        22px,
        3vw,
        28px
    );

    line-height: 1.15;
}

.asset-lead-modal__heading p {
    margin: 0;

    color: #64748b;

    font-size: 13px;
    line-height: 1.45;
}

.asset-lead-form__grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px 14px;
}

.asset-lead-field {
    position: relative;
    display: block;

    margin-bottom: 12px;
}

.asset-lead-field > span,
.asset-lead-field > label {
    display: block;

    margin-bottom: 5px;

    color: #334155;

    font-size: 13px;
    font-weight: 600;
}

.asset-lead-field b,
.asset-lead-consent b {
    color: #0134ff;
}

.asset-lead-field input,
.asset-lead-field textarea,
.asset-lead-field select {
    width: 100%;

    border: 1px solid #dbe2ea;
    border-radius: 10px;

    outline: none;

    background: #fff;

    padding: 10px 12px;

    color: #0f172a;

    font: inherit;
    font-size: 14px;

    transition:
        border-color .15s ease,
        box-shadow .15s ease;
}

.asset-lead-field textarea {
    min-height: 78px;
    resize: vertical;
}

.asset-lead-field input:focus,
.asset-lead-field textarea:focus,
.asset-lead-field select:focus {
    border-color: #0134ff;

    box-shadow:
        0 0 0 3px
        rgba(1, 52, 255, .08);
}

.asset-lead-field input[readonly] {
    background: #f8fafc;
    color: #475569;
}

.asset-lead-field select {
    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;

    padding-right: 38px;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            #64748b 50%
        ),
        linear-gradient(
            135deg,
            #64748b 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 17px) 50%,
        calc(100% - 12px) 50%;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}

.asset-lead-field.has-error input,
.asset-lead-field.has-error textarea,
.asset-lead-field.has-error select {
    border-color: #dc2626;
}

.asset-lead-field__error {
    display: block;

    min-height: 14px;
    margin-top: 3px;

    color: #dc2626;

    font-size: 11px;
}

.asset-lead-company {
    z-index: 5;
}

.asset-lead-consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;

    margin: 2px 0 14px;

    color: #64748b;

    font-size: 12px;
    line-height: 1.4;

    cursor: pointer;
}

.asset-lead-consent input {
    flex: 0 0 auto;

    width: 17px;
    height: 17px;

    margin-top: 0;

    accent-color: #0134ff;
}

.asset-lead-form__submit {
    width: 100%;
    min-height: 46px;

    border: 0;
    border-radius: 10px;

    background: #0134ff;
    color: #fff;

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

    cursor: pointer;

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

.asset-lead-form__submit:hover {
    transform: translateY(-1px);

    box-shadow:
        0 8px 20px
        rgba(1, 52, 255, .22);
}

.asset-lead-form__submit:disabled {
    opacity: .55;
    cursor: not-allowed;

    transform: none;
    box-shadow: none;
}

.asset-lead-form__message {
    margin-bottom: 10px;
    padding: 10px 12px;

    border-radius: 9px;

    background: #fff7ed;
    color: #9a3412;

    font-size: 12px;
}

.asset-company-suggestions {
    position: absolute;
    top: calc(100% - 17px);
    left: 0;
    right: 0;
    z-index: 10;
    overflow: hidden;
    max-height: 310px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
}

.asset-company-suggestion {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: 0;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
    text-align: left;
    cursor: pointer;
}

.asset-company-suggestion:hover {
    background: #f8fafc;
}

.asset-company-suggestion strong {
    display: block;
    margin-bottom: 3px;
    color: #0f172a;
}

.asset-company-suggestion span {
    display: block;
    color: #64748b;
    font-size: 12px;
}

.asset-company-selected {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f0f4ff;
    color: #334155;
    font-size: 13px;
}

.asset-lead-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 3px 0 20px;
    color: #475569;
    font-size: 13px;
    line-height: 1.45;
    cursor: pointer;
}

.asset-lead-consent input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: #0134ff;
}

.asset-lead-form__submit {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 12px;
    background: #0134ff;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.asset-lead-form__submit:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.asset-lead-form__message {
    margin-bottom: 15px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff7ed;
    color: #9a3412;
    font-size: 13px;
}

body.asset-lead-modal-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .asset-lead-modal {
        padding: 0;
        align-items: flex-end;
    }

    .asset-lead-modal__dialog {
        width: 100%;
        max-height: 94vh;

        padding: 20px 16px 18px;

        border-radius:
            20px 20px 0 0;
    }

    .asset-lead-modal__heading {
        margin-bottom: 14px;
    }

    .asset-lead-form__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .asset-lead-field {
        margin-bottom: 10px;
    }
}
.catalog-page {
    min-height: 700px;

    background: #f8f9fb;
}


.catalog-page__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}


.catalog-page__head > strong {
    padding-bottom: 7px;

    color: var(--muted);

    font-size: 14px;
}


.catalog-search {
    display: grid;
    font-size:12px;
    grid-template-columns:
        minmax(0, 1fr)
        280px
        130px;

    gap: 9px;

    margin-bottom: 28px;

    padding: 12px;

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

    border-radius: 18px;

    background: #fff;
}


.catalog-search input,
.catalog-search select {
    height: 48px;

    padding: 0 14px;

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

    border-radius: 11px;

    outline: none;

    background: #fff;
}


.catalog-search input:focus,
.catalog-search select:focus {
    border-color:
        var(--blue);
}


.catalog-search button {
    border: 0;

    border-radius: 11px;

    color: #fff;
    background: var(--blue);

    font-weight: 700;
}


/* =========================================================
CATALOG — TOOLBAR / FILTERS
========================================================= */

.catalog-toolbar {
    min-height: 66px;

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

    gap: 20px;

    margin-bottom: 20px;

    padding: 10px 12px;

    border:
        1px solid #e3e7ee;

    border-radius: 16px;

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

    box-shadow:
        0 5px 18px
        rgba(20, 34, 68, .035);
}


.catalog-toolbar__left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;
}


.catalog-filter-trigger {
    min-height: 44px;

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

    gap: 9px;

    padding: 0 15px;

    border:
        1px solid #dce2eb;

    border-radius: 12px;

    color: #222a37;
    background: #fff;

    font: inherit;
    font-size: 13px;
    font-weight: 700;

    transition:
        color .18s ease,
        border-color .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}


.catalog-filter-trigger:hover,
.catalog-filter-trigger.is-active {
    color: var(--blue);

    border-color:
        rgba(1, 52, 255, .24);

    background: #f6f8ff;

    box-shadow:
        0 5px 16px
        rgba(1, 52, 255, .06);
}


.catalog-filter-trigger svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;

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


.catalog-filter-trigger strong {
    min-width: 21px;
    height: 21px;

    display: grid;
    place-items: center;

    padding: 0 5px;

    border-radius: 999px;

    color: #fff;
    background: var(--blue);

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


.catalog-toolbar__result {
    color: #818997;

    font-size: 12px;
}


.catalog-toolbar__result strong {
    color: #303845;

    font-weight: 700;
}


.catalog-toolbar__reset {
    color: #8a929f;

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

    transition:
        color .18s ease;
}


.catalog-toolbar__reset:hover {
    color: var(--blue);
}


/* SORT */

.catalog-sort {
    position: relative;

    min-width: 205px;
}


.catalog-sort > span {
    position: absolute;

    z-index: 2;

    top: 7px;
    left: 13px;

    color: #9aa2ae;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .08em;

    pointer-events: none;
}


.catalog-sort select {
    width: 100%;
    height: 48px;

    padding:
        15px 38px 3px 13px;

    appearance: none;

    border:
        1px solid #e0e5ec;

    border-radius: 12px;

    outline: none;

    color: #242b37;
    background: #fff;

    font: inherit;
    font-size: 12px;
    font-weight: 650;

    cursor: pointer;

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


.catalog-sort select:focus {
    border-color:
        rgba(1, 52, 255, .35);

    box-shadow:
        0 0 0 3px
        rgba(1, 52, 255, .06);
}


.catalog-sort > svg {
    position: absolute;

    top: 50%;
    right: 13px;

    width: 16px;
    height: 16px;

    fill: none;
    stroke: #737c89;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transform:
        translateY(-50%);

    pointer-events: none;
}


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

.catalog-filter-panel {
    display: none;

    margin-bottom: 24px;
}


.catalog-filter-panel.is-open {
    display: block;
}


.catalog-filter-panel__backdrop {
    display: none;
}


.catalog-filter-panel__dialog {
    overflow: hidden;

    border:
        1px solid #e2e7ef;

    border-radius: 20px;

    background: #fff;

    box-shadow:
        0 14px 40px
        rgba(20, 34, 68, .065);
}


.catalog-filter-form {
    width: 100%;
}


.catalog-filter-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 22px 24px 18px;

    border-bottom:
        1px solid #edf0f4;
}


.catalog-filter-panel__eyebrow {
    display: block;

    margin-bottom: 4px;

    color: #9aa3b1;

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

    letter-spacing: .12em;
}


.catalog-filter-panel__head h2 {
    margin: 0;

    color: #151c28;

    font-size: 22px;
    line-height: 1.1;

    letter-spacing: -.025em;
}


.catalog-filter-panel__close {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    padding: 0;

    border:
        1px solid #e2e6ed;

    border-radius: 10px;

    color: #758090;
    background: #fff;
}


.catalog-filter-panel__close:hover {
    color: #202733;

    background: #f4f6f9;
}


.catalog-filter-panel__close svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
}


/* BODY */

.catalog-filter-panel__body {
    padding: 22px 24px 26px;
}


.catalog-filter-fields {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        22px 18px;

    margin-top: 24px;
}


/* GROUP */

.catalog-filter-group {
    min-width: 0;
}


.catalog-filter-group--price {
    max-width: 520px;
}


.catalog-filter-group__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;

    gap: 8px;

    margin-bottom: 8px;
}


.catalog-filter-group__head strong {
    color: #343c49;

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


.catalog-filter-group__head span {
    color: #969eaa;

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


/* INPUT */

.catalog-filter-input {
    width: 100%;
    height: 44px;

    padding: 0 12px;

    border:
        1px solid #e0e5ec;

    border-radius: 10px;

    outline: none;

    color: #252c38;
    background: #fff;

    font: inherit;
    font-size: 12px;

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


.catalog-filter-input:focus {
    border-color:
        rgba(1, 52, 255, .38);

    box-shadow:
        0 0 0 3px
        rgba(1, 52, 255, .055);
}


.catalog-filter-input:disabled {
    color: #9ba3af;

    cursor: not-allowed;

    background: #f5f6f8;

    opacity: .7;
}


/* SELECT */

.catalog-select-wrap {
    position: relative;
}


.catalog-select-wrap select {
    appearance: none;

    padding-right: 36px;
}


.catalog-select-wrap > svg {
    position: absolute;

    top: 50%;
    right: 12px;

    width: 16px;
    height: 16px;

    fill: none;
    stroke: #8b94a1;

    stroke-width: 1.8;

    transform:
        translateY(-50%);

    pointer-events: none;
}


/* RANGE */

.catalog-filter-range {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 7px;
}


/* PRICE */

.catalog-price-range {
    display: grid;

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

    align-items: center;

    gap: 8px;
}


.catalog-price-range label {
    position: relative;
}


.catalog-price-range label > span {
    position: absolute;

    z-index: 2;

    top: 7px;
    left: 12px;

    color: #9aa2ae;

    font-size: 8px;

    pointer-events: none;
}


.catalog-price-range input {
    width: 100%;
    height: 48px;

    padding:
        14px 12px 2px;

    border:
        1px solid #dfe4eb;

    border-radius: 11px;

    outline: none;

    color: #202733;
    background: #fff;

    font: inherit;
    font-size: 13px;
    font-weight: 600;
}


.catalog-price-range input:focus {
    border-color:
        rgba(1, 52, 255, .35);

    box-shadow:
        0 0 0 3px
        rgba(1, 52, 255, .055);
}


.catalog-price-range__divider {
    color: #a2a9b4;
}


/* MULTISELECT PILLS */

.catalog-filter-pills {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;
}


.catalog-filter-pills label {
    position: relative;

    cursor: pointer;
}


.catalog-filter-pills input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.catalog-filter-pills label span {
    min-height: 34px;

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

    padding: 0 11px;

    border:
        1px solid #e0e5ec;

    border-radius: 999px;

    color: #626c7a;
    background: #fff;

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

    transition:
        color .18s ease,
        border-color .18s ease,
        background .18s ease;
}


.catalog-filter-pills
input:checked + span {
    color: var(--blue);

    border-color:
        rgba(1, 52, 255, .28);

    background: #eef2ff;
}


/* BOOLEAN */

.catalog-filter-segmented {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    padding: 3px;

    border-radius: 10px;

    background: #f2f4f7;
}


.catalog-filter-segmented label {
    position: relative;

    cursor: pointer;
}


.catalog-filter-segmented input {
    position: absolute;

    opacity: 0;
}


.catalog-filter-segmented span {
    min-height: 36px;

    display: grid;
    place-items: center;

    padding: 0 8px;

    border-radius: 8px;

    color: #7b8491;

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


.catalog-filter-segmented
input:checked + span {
    color: #1f2733;
    background: #fff;

    box-shadow:
        0 2px 8px
        rgba(20, 34, 68, .07);
}


.catalog-filter-empty {
    color: #9aa2ae;

    font-size: 11px;
}


/* FOOTER */

.catalog-filter-panel__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 10px;

    padding: 14px 24px;

    border-top:
        1px solid #edf0f4;

    background: #fafbfc;
}


.catalog-filter-clear {
    min-height: 44px;

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

    padding: 0 17px;

    border:
        1px solid #e0e4eb;

    border-radius: 10px;

    color: #6f7886;
    background: #fff;

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


.catalog-filter-submit {
    min-height: 44px;

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

    gap: 7px;

    padding: 0 19px;

    border: 0;
    border-radius: 10px;

    color: #fff;
    background: var(--blue);

    font: inherit;
    font-size: 12px;
    font-weight: 700;
}


.catalog-filter-submit:hover {
    background: var(--blue-dark);
}


.catalog-filter-submit strong {
    min-width: 20px;

    padding: 3px 6px;

    border-radius: 999px;

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

    font-size: 10px;
}
@media (max-width: 1100px) {

    .catalog-filter-fields {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 900px) {

    .catalog-filter-fields {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

.catalog-list {
    display: grid;

    gap: 16px;

    margin-top: 24px;
}


.catalog-card {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(230px, 300px)
        minmax(300px, 1fr)
        150px
        minmax(210px, 245px);

    min-height: 0;

    overflow: visible;

    border:
        1px solid #e5e7eb;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 5px 18px
        rgba(16, 24, 40, .045);

    transition:
        background-color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}


.catalog-card:hover {
    background: #f7f9fc;

    border-color: #d8dee8;

    box-shadow:
        0 10px 28px
        rgba(16, 24, 40, .09);

    transform:
        translateY(-1px);
}


.catalog-card__link {
    position: absolute;

    inset: 0;

    z-index: 1;

    border-radius: inherit;
}


.catalog-card__link:focus-visible {
    outline:
        3px solid rgba(0, 31, 249, .28);

    outline-offset: 3px;
}


.catalog-card__media {
    position: relative;

    min-width: 0;

    overflow: hidden;

    border-radius:
        17px 0 0 17px;

    background: #f0f2f5;
}


.catalog-card__media img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 190px;

    object-fit: cover;
}


.catalog-card__placeholder {
    display: grid;
    place-items: center;

    height: 100%;
    min-height: 190px;

    color: #868f9f;

    font-size: 14px;
}


.catalog-card__info,
.catalog-card__usage,
.catalog-card__offer {
    min-width: 0;

    padding: 16px;
}


.catalog-card__info {
    display: flex;
    flex-direction: column;

    padding-right: 12px;
}


.catalog-card__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;
    min-width: 0;
}


.catalog-card__category {
    display: block;

    margin:
        0 0 7px;

    color: #7a8493;

    font-size: 9px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: .06em;

    text-transform: uppercase;
}


.catalog-card__badges-inline {
    position: relative;

    z-index: 3;

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

    width: 100%;

    gap: 6px;

    margin:
        0 0 10px;
}


.catalog-card__badge {
    position: relative;

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

    flex: 0 0 auto;

    gap: 5px;

    min-height: 27px;

    padding: 5px 9px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 600;
    line-height: 1.15;

    white-space: nowrap;
}


.catalog-card__badge--demand {
    color: #934000;

    background: #fff3df;

    border:
        1px solid #f3c882;
}


.catalog-card__badge-icon {
    font-size: 13px;
    line-height: 1;
}


.catalog-card__badge--special {
    z-index: 4;

    color: var(--blue);
    background: var(--blue-soft);

    border:
        1px solid #ccd6ff;

    cursor: help;

    pointer-events: auto;
}


.catalog-card__special-tooltip {
    position: absolute;

    z-index: 50;

    top: calc(100% + 8px);
    left: 0;

    width: 280px;
    max-width:
        min(
            280px,
            75vw
        );

    padding: 12px 14px;

    border-radius: 10px;

    color: #202633;
    background: #fff;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;

    white-space: normal;

    text-align: left;

    box-shadow:
        0 12px 32px
        rgba(15, 23, 42, .18);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(-4px);

    pointer-events: none;

    transition:
        opacity .15s ease,
        visibility .15s ease,
        transform .15s ease;
}


.catalog-card__badge--special:hover
.catalog-card__special-tooltip,
.catalog-card__badge--special:focus
.catalog-card__special-tooltip,
.catalog-card__badge--special:focus-within
.catalog-card__special-tooltip {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}


.catalog-card__special-tooltip p {
    margin:
        0 0 7px;
}


.catalog-card__special-tooltip p:last-child {
    margin-bottom: 0;
}


.catalog-card__heading h2 {
    width: 100%;

    margin:
        0 0 16px;

    color: var(--text-strong);

    font-size: 18px;
    line-height: 1.12;

    letter-spacing: -.025em;
}


.catalog-card__spec {
    margin:
        0 0 7px;

    color: #293140;

    font-size: 14px;
    line-height: 1.35;
}


.catalog-card__location {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-top: auto;

    padding-top: 16px;

    color: #697386;

    font-size: 14px;
}


.catalog-card__location svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
}


.catalog-card__usage {
    display: flex;
    flex-direction: column;

    gap: 20px;

    padding-left: 12px;

    border-left:
        1px solid #edf0f4;
}


.catalog-card__usage div {
    display: grid;

    gap: 3px;
}


.catalog-card__usage strong {
    color: var(--text-strong);

    font-size: 21px;
    line-height: 1.15;

    white-space: nowrap;
}


.catalog-card__usage span {
    color: #87909e;

    font-size: 12px;
}


.catalog-card__offer {
    position: relative;

    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    text-align: right;
}


.catalog-card__prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


.catalog-card__prices strong {
    color: #001ff9;

    font-size:
        clamp(
            24px,
            1.8vw,
            32px
        );

    line-height: 1.08;

    letter-spacing: -.03em;

    white-space: nowrap;
}


.catalog-card__vat {
    margin-top: 5px;

    color: #677180;

    font-size: 13px;
}


.catalog-card__prices del {
    margin-top: 8px;

    color: #9aa1ac;

    font-size: 16px;

    white-space: nowrap;

    text-decoration-thickness: 1.5px;
}


.catalog-card__price-request {
    color: var(--text-strong) !important;

    font-size: 19px !important;
}


.catalog-card__actions {
    display: flex;

    gap: 9px;

    margin-top: auto;
}


.catalog-card__action {
    position: relative;

    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    padding: 0;

    border:
        1px solid #dfe3e9;

    border-radius: 50%;

    background: #fff;

    color: #303847;

    transition:
        color .18s ease,
        border-color .18s ease,
        background-color .18s ease,
        transform .18s ease;
}


.catalog-card__action:hover,
.catalog-card__action:focus-visible {
    color: #001ff9;

    border-color: #b9c3ff;

    background: #f0f3ff;

    transform:
        translateY(-1px);

    outline: none;
}


.catalog-card__action[aria-pressed="true"],
.catalog-card__action.is-active {
    color: #001ff9;

    border-color: #aebaff;

    background: #e9edff;
}


.catalog-card__action svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;

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


.catalog-card__action[data-asset-favorite].is-active svg,
.catalog-card__action[data-asset-favorite][aria-pressed="true"] svg {
    fill: currentColor;
}


.catalog-card__action::after {
    content:
        attr(data-tooltip);

    position: absolute;

    right: 0;
    bottom: calc(100% + 10px);

    width: max-content;
    max-width: 190px;

    padding: 8px 10px;

    border-radius: 8px;

    color: #fff;
    background: #171b24;

    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;

    pointer-events: none;

    opacity: 0;

    transform:
        translateY(4px);

    transition:
        opacity .16s ease,
        transform .16s ease;
}


.catalog-card__action:hover::after,
.catalog-card__action:focus-visible::after {
    opacity: 1;

    transform:
        translateY(0);
}


.pagination {
    margin-top: 36px;
}


.empty {
    grid-column:
        1 / -1;

    padding: 50px;

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

    border-radius: 20px;

    color: var(--muted);
    background: #fff;

    text-align: center;
}


/* =========================================================
   08. ASSET DETAIL
========================================================= */

.asset-page {
    --asset-blue: #0134ff;
    --asset-ink: #101524;
    --asset-muted: #687086;
    --asset-line: #e3e7f0;

    padding:
        32px 0 72px;

    color:
        var(--asset-ink);
}

/* =========================================================
   ASSET ID
========================================================= */

.asset-summary--id {
    min-width: 0;
}


.asset-id-card {
    padding: 22px;

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

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f5f8ff 100%
        );

    box-shadow:
        0 10px 28px
        rgba(20, 34, 68, .04);
}


.asset-id-card__label {
    display: block;

    margin-bottom: 8px;

    color: #7b8492;

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


.asset-id-card__value {
    display: block;

    color: var(--blue);

    font-size:
        clamp(
            28px,
            2.5vw,
            36px
        );

    font-weight: 800;
    line-height: 1;

    letter-spacing: -.03em;
}


.asset-id-card p {
    margin:
        12px 0 0;

    color: #747d89;

    font-size: 12px;
    line-height: 1.5;
}
/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.asset-page__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 28px;

    margin-bottom: 28px;
}


.asset-page__title-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;
}


.asset-page__title {
    margin: 0;

    font-size:
        clamp(
            30px,
            3vw,
            38px
        );

    line-height: 1.05;

    letter-spacing: -.035em;
}


.asset-page__badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;
}


.asset-badge {
    display: inline-flex;
    align-items: center;

    min-height: 30px;

    padding: 5px 12px;

    border-radius: 999px;

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

    white-space: nowrap;
}


.asset-badge--used {
    color: #394052;

    background: #f0f1f4;
}


.asset-badge--available {
    color: #000;

    border:
        1px solid var(--accent-green);
}


.asset-badge--rent {
    color: var(--asset-blue);

    background: #e8eeff;
}


.asset-badge--offer {
    position: relative;

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

    padding: 8px 13px;

    border:
        1px solid #c9d5ff;

    border-radius: 999px;

    color: var(--asset-blue);
    background: #eef2ff;

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

    cursor: help;
}


.asset-badge--offer:hover,
.asset-badge--offer:focus {
    border-color:
        var(--asset-blue);

    outline: none;
}


.asset-offer-tooltip {
    position: absolute;

    z-index: 30;

    top: calc(100% + 10px);
    left: 0;

    width: 300px;

    max-width:
        min(
            300px,
            80vw
        );

    padding: 14px 16px;

    border-radius: 12px;

    color: #1f2937;
    background: #fff;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;

    box-shadow:
        0 12px 35px
        rgba(15, 23, 42, .16);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(-5px);

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;

    pointer-events: none;
}


.asset-badge--offer:hover
.asset-offer-tooltip,
.asset-badge--offer:focus
.asset-offer-tooltip,
.asset-badge--offer:focus-within
.asset-offer-tooltip {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}


.asset-offer-tooltip p {
    margin:
        0 0 8px;
}


.asset-offer-tooltip p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   ASSET LIVE VIEWERS
========================================================= */

.asset-badge--live {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #17663a;

/*    background: #edf9f2;

    border:
        1px solid #bce5ca; */
}


.asset-badge__live-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #20a857;

    box-shadow:
        0 0 0 4px
        rgba(32, 168, 87, .10);
}


.asset-badge--live strong {
    font-weight: 800;
}
/* ---------------------------------------------------------
   TOP ACTIONS
--------------------------------------------------------- */

.asset-page__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex-wrap: nowrap;
    flex-shrink: 0;

    gap: 8px;
}


.asset-top-action {
    position: relative;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: grid;
    place-items: center;

    padding: 0;

    border:
        1px solid var(--asset-line);

    border-radius: 11px;

    color: var(--asset-blue);
    background: #fff;

    transition:
        color .16s ease,
        background-color .16s ease,
        border-color .16s ease,
        transform .16s ease,
        box-shadow .16s ease;
}


.asset-top-action svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;

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


.asset-top-action:hover,
.asset-top-action:focus-visible {
    color: #fff;
    background: var(--asset-blue);

    border-color:
        var(--asset-blue);

    transform:
        translateY(-1px);

    box-shadow:
        0 7px 18px
        rgba(1, 52, 255, .16);

    outline: none;
}


.asset-top-action[aria-pressed="true"],
.asset-top-action.is-active {
    color: #fff;

    background:
        var(--asset-blue);

    border-color:
        var(--asset-blue);
}


.asset-top-action[aria-pressed="true"] svg,
.asset-top-action.is-active svg {
    fill: currentColor;
}


/* TOOLTIP */

.asset-top-action::after {
    content:
        attr(data-tooltip);

    position: absolute;

    z-index: 100;

    top: calc(100% + 10px);
    left: 50%;

    width: max-content;
    max-width: 220px;

    padding: 8px 10px;

    border-radius: 8px;

    color: #fff;
    background: #171b24;

    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform:
        translateX(-50%)
        translateY(-4px);

    transition:
        opacity .16s ease,
        visibility .16s ease,
        transform .16s ease;

    box-shadow:
        0 8px 22px
        rgba(16, 21, 36, .18);
}


.asset-top-action::before {
    content: "";

    position: absolute;

    z-index: 101;

    top: calc(100% + 5px);
    left: 50%;

    border:
        5px solid transparent;

    border-bottom-color: #171b24;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform:
        translateX(-50%);

    transition:
        opacity .16s ease,
        visibility .16s ease;
}


.asset-top-action:hover::after,
.asset-top-action:hover::before,
.asset-top-action:focus-visible::after,
.asset-top-action:focus-visible::before {
    opacity: 1;
    visibility: visible;
}


.asset-top-action:hover::after,
.asset-top-action:focus-visible::after {
    transform:
        translateX(-50%)
        translateY(0);
}


/* ---------------------------------------------------------
   FIRST SCREEN
--------------------------------------------------------- */

.asset-hero {
    display: grid;

    grid-template-columns:
        minmax(0, 1.65fr)
        minmax(260px, .95fr)
        minmax(280px, .92fr);

    gap: 34px;

    align-items: start;
}


/* ---------------------------------------------------------
   GALLERY
--------------------------------------------------------- */

.asset-gallery {
    min-width: 0;
}


.asset-gallery__main {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    display: grid;
    place-items: center;

    overflow: hidden;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #f6f7f9 0%,
            #eef1f5 100%
        );
}


.asset-gallery__main-image,
.asset-gallery__main >
.asset-gallery__main-image {
    width: 100%;
    height: 100%;

    object-fit: contain !important;
    object-position: center;

    cursor: zoom-in;
}


.asset-gallery__placeholder {
    width: 100%;
    height: 100%;

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

    gap: 8px;

    padding: 32px;

    color: #8a93a2;

    text-align: center;
}


.asset-gallery__placeholder-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 6px;

    border:
        1px solid #dfe4eb;

    border-radius: 17px;

    color: #949dab;

    background:
        rgba(255, 255, 255, .72);
}


.asset-gallery__placeholder-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;

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


.asset-gallery__placeholder strong {
    color: #535c6a;

    font-size: 15px;
    font-weight: 700;
}


.asset-gallery__placeholder span {
    max-width: 260px;

    color: #929aa6;

    font-size: 12px;
    line-height: 1.45;
}


.asset-gallery__nav,
.asset-gallery__zoom,
.asset-gallery__thumb-scroll,
.asset-lightbox__close,
.asset-lightbox__nav {
    display: grid;
    place-items: center;

    border: 0;

    cursor: pointer;
}


.asset-gallery__nav {
    position: absolute;

    top: 50%;

    z-index: 2;

    width: 46px;
    height: 46px;

    border-radius: 50%;

    color: var(--asset-ink);

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

    box-shadow:
        0 6px 24px
        rgba(16, 21, 36, .14);

    transform:
        translateY(-50%);
}


.asset-gallery__nav--prev {
    left: 16px;
}


.asset-gallery__nav--next {
    right: 16px;
}


.asset-gallery__nav svg,
.asset-gallery__zoom svg,
.asset-gallery__thumb-scroll svg,
.asset-lightbox svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: currentColor;

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


.asset-gallery__zoom {
    position: absolute;

    right: 16px;
    bottom: 16px;

    z-index: 2;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    color: var(--asset-blue);

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

    box-shadow:
        0 6px 24px
        rgba(16, 21, 36, .14);
}


.asset-gallery__thumbs-row {
    display: grid;

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

    align-items: center;

    gap: 10px;

    margin-top: 14px;
}


.asset-gallery__thumbs {
    display: flex;

    gap: 10px;

    overflow-x: auto;

    padding: 3px;

    scrollbar-width: none;

    scroll-snap-type:
        x proximity;
}


.asset-gallery__thumbs::-webkit-scrollbar {
    display: none;
}


.asset-gallery__thumb {
    flex:
        0 0 92px;

    height: 66px;

    overflow: hidden;

    padding: 0;

    border:
        2px solid transparent;

    border-radius: 10px;

    background: #f2f3f6;

    cursor: pointer;

    scroll-snap-align: start;
}


.asset-gallery__thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.asset-gallery__thumb.is-active {
    border-color:
        var(--asset-blue);

    box-shadow:
        0 0 0 2px
        rgba(1, 52, 255, .12);
}


.asset-gallery__thumb-scroll {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    color: var(--asset-ink);
    background: #f4f5f8;
}


/* GALLERY SPECIAL OFFERS */

.asset-gallery__offers,
.asset-special-offers {
    position: absolute;

    z-index: 20;

    top: 18px;
    left: 18px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 8px;

    max-width:
        calc(100% - 36px);

    pointer-events: none;
}


.asset-gallery__offer,
.asset-special-offer {
    position: relative;

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

    max-width: 320px;

    padding: 9px 14px;

    border: 0;
    border-radius: 999px;

    color: #fff;
    background: var(--asset-blue);

    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;

    white-space: nowrap;

    box-shadow:
        0 6px 20px
        rgba(1, 52, 255, .22);

    cursor: help;

    pointer-events: auto;
}


.asset-special-offer__tooltip {
    position: absolute;

    z-index: 100;

    top: calc(100% + 10px);
    left: 0;

    width: 300px;
    max-width: 80vw;

    padding: 14px 16px;

    border-radius: 12px;

    color: #202633;
    background: #fff;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;

    white-space: normal;

    box-shadow:
        0 14px 40px
        rgba(15, 23, 42, .18);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(-5px);

    transition:
        opacity .15s ease,
        visibility .15s ease,
        transform .15s ease;

    pointer-events: none;
}


.asset-special-offer:hover
.asset-special-offer__tooltip,
.asset-special-offer:focus
.asset-special-offer__tooltip,
.asset-special-offer:focus-within
.asset-special-offer__tooltip {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}


/* ---------------------------------------------------------
   SUMMARY
--------------------------------------------------------- */

.asset-summary {
    min-width: 0;
}


.asset-summary__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 18px;
}


.asset-summary__heading h2 {
    margin: 0;

    font-size: 20px;
}


.asset-summary__count {
    padding: 5px 10px;

    border-radius: 999px;

    color: var(--asset-blue);
    background: #eef2ff;

    font-size: 12px;
}


.asset-summary__row {
    display: flex;
    justify-content: space-between;

    gap: 18px;

    padding: 15px 0;

    border-bottom:
        1px solid var(--asset-line);

    font-size: 14px;
}


.asset-summary__row span {
    color: var(--asset-muted);
}


.asset-summary__row strong {
    text-align: right;
}


.asset-summary__all {
    display: inline-flex;

    margin-top: 18px;

    color: var(--asset-blue);

    font-weight: 600;
}


/* ---------------------------------------------------------
   COMMERCIAL
--------------------------------------------------------- */

.asset-commercial {
    padding: 28px;

    border:
        1px solid var(--asset-line);

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 10px 30px
        rgba(16, 21, 36, .04);
}


.asset-commercial__price {
    display: block;

    margin-bottom: 14px;
}


.asset-commercial__price-main {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;

    gap: 10px;
}


.asset-commercial__price-main strong,
.asset-commercial__price > strong {
    font-size:
        clamp(
            28px,
            2.25vw,
            32px
        );

    line-height: 1.08;

    letter-spacing: -.025em;

    white-space: nowrap;
}


.asset-commercial__price-main > span,
.asset-commercial__price > span {
    color: var(--asset-muted);

    font-size: 14px;
    font-weight: 400;
}


.asset-commercial__request-price {
    font-size:
        30px !important;
}


.asset-commercial__discount {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 10px;
}


.asset-commercial__discount del {
    color: #9298a3;

    font-size: 18px;
    line-height: 1;
}


.asset-commercial__discount > span {
    display: inline-flex;
    align-items: center;

    padding: 6px 10px;

    border:
        1px solid var(--accent-green);

    border-radius: 999px;

    color: var(--accent-green);

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


/* LEASING */

.asset-commercial__lease {
    display: flex;
    align-items: center;

    gap: 10px;

    margin:
        0 0 20px;

    color: var(--asset-blue);

    font-size: 15px;
}


.asset-commercial__lease svg {
    width: 22px;
    height: 22px;

    flex: 0 0 auto;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
}


.asset-commercial__lease-copy {
    flex: 1 1 auto;

    display: grid;

    gap: 3px;

    min-width: 0;
}


.asset-commercial__lease-copy strong {
    font-size: 16px;
    line-height: 1.25;
}


.asset-commercial__lease-copy span {
    color: var(--asset-muted);

    font-size: 12px;
    line-height: 1.35;
}


.asset-commercial__lease-help {
    position: relative;

    display: inline-flex;

    flex: 0 0 auto;

    margin-left: auto;
}


.asset-commercial__info {
    width: 22px;
    height: 22px;

    display: grid;
    place-items: center;

    padding: 0;

    border:
        1px solid #98a3c6;

    border-radius: 50%;

    color: #6a76a0;
    background: #fff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    cursor: help;
}


.asset-commercial__lease-tooltip {
    position: absolute;

    z-index: 20;

    right: 0;
    bottom: calc(100% + 10px);

    width:
        min(
            360px,
            calc(100vw - 48px)
        );

    padding: 13px 15px;

    border-radius: 10px;

    color: #fff;
    background: #182033;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;

    text-align: left;

    box-shadow:
        0 12px 32px
        rgba(16, 21, 36, .22);

    pointer-events: none;

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(4px);

    transition:
        opacity .16s ease,
        transform .16s ease,
        visibility .16s ease;
}


.asset-commercial__lease-tooltip::after {
    content: "";

    position: absolute;

    right: 7px;
    top: 100%;

    border:
        6px solid transparent;

    border-top-color: #182033;
}


.asset-commercial__lease-help:hover
.asset-commercial__lease-tooltip,
.asset-commercial__lease-help:focus-within
.asset-commercial__lease-tooltip {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}


/* TAX SAVING */

.asset-commercial__tax-saving {
    margin:
        -6px 0 18px;

    padding: 11px 13px;

    border-radius: 10px;

    color: #687086;
    background: #f4f5f7;
}


.asset-commercial__tax-saving-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;

    gap: 10px;

    font-size: 12px;
    line-height: 1.25;
}


.asset-commercial__tax-saving-head > span {
    color: #737b89;
}


.asset-commercial__tax-saving-head > strong {
    color: #363d49;

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

    white-space: nowrap;
}


.asset-commercial__tax-saving-details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap:
        5px 12px;

    margin-top: 7px;

    color: #868d99;

    font-size: 11px;
    line-height: 1.3;
}


.asset-commercial__tax-saving-details > span {
    display: inline-flex;
    align-items: baseline;

    gap: 4px;
}


.asset-commercial__tax-saving-details strong {
    color: #626a77;

    font-weight: 600;

    white-space: nowrap;
}


/* CTA */

.asset-commercial__primary,
.asset-commercial__secondary button {
    min-height: 56px;

    border-radius: 10px;

    font: inherit;
    font-weight: 700;
}


.asset-commercial__primary {
    width: 100%;

    border:
        1px solid var(--asset-blue);

    color: #fff;
    background: var(--asset-blue);
}


.asset-commercial__secondary {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-top: 12px;
}


.asset-commercial__secondary button {
    border:
        1px solid var(--asset-blue);

    color: var(--asset-blue);
    background: #fff;
}


.asset-commercial__primary:hover,
.asset-commercial__primary:focus-visible {
    background: #0026bd;
}


.asset-commercial__secondary button:hover,
.asset-commercial__secondary button:focus-visible {
    background: #eef2ff;
}


.asset-commercial__note {
    margin:
        14px 0 0;

    color: var(--asset-muted);

    font-size: 13px;
    line-height: 1.45;
}


/* ---------------------------------------------------------
   SECOND ROW
--------------------------------------------------------- */

.asset-info-grid {
    display: grid;

    grid-template-columns:
        minmax(300px, .9fr)
        minmax(0, 1.55fr)
        minmax(300px, .85fr);

    gap: 24px;

    margin-top: 30px;
}


/* LOCATION */

.asset-location {
    position: relative;

    padding: 24px;

    overflow: hidden;

    border:
        1px solid #e4e8f0;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #fff 0%,
            #f8faff 100%
        );

    box-shadow:
        0 14px 40px
        rgba(20, 34, 68, .05);
}


.asset-location::after {
    content: "";

    position: absolute;

    top: -70px;
    right: -70px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(1, 52, 255, .07),
            transparent 70%
        );

    pointer-events: none;
}


.asset-location__head {
    position: relative;

    z-index: 1;

    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 18px;
}


.asset-location__icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

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

    border-radius: 15px;

    color: var(--blue);

    background:
        linear-gradient(
            145deg,
            #edf2ff,
            #f6f8ff
        );
}


.asset-location__icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;

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


.asset-location__eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #9aa3b2;

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

    letter-spacing: .12em;
}


.asset-location h2 {
    margin: 0;

    color: #121827;

    font-size: 18px;
    line-height: 1.2;

    letter-spacing: -.015em;
}


.asset-location__address {
    position: relative;

    z-index: 1;

    display: flex;
    flex-direction: column;

    gap: 3px;

    margin-bottom: 16px;

    color: #717987;
}


.asset-location__address strong {
    color: #252c39;

    font-size: 14px;
    font-weight: 650;
}


.asset-location__address span {
    font-size: 13px;
    line-height: 1.45;
}
.asset-location__pending {
    position: relative;
    z-index: 1;

    min-height: 190px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 22px;

    border:
        1px dashed #d8dee8;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #fafbfc 0%,
            #f4f6f9 100%
        );
}


.asset-location__pending-status {
    width: max-content;

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

    gap: 7px;

    margin-bottom: 14px;

    padding: 6px 9px;

    border-radius: 999px;

    color: #687282;
    background: #fff;

    font-size: 10px;
    font-weight: 700;

    box-shadow:
        0 4px 14px
        rgba(20, 34, 68, .045);
}


.asset-location__pending-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #f0a229;

    box-shadow:
        0 0 0 4px
        rgba(240, 162, 41, .10);
}


.asset-location__pending > strong {
    display: block;

    color: #252c39;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}


.asset-location__pending > p {
    max-width: 280px;

    margin:
        7px 0 0;

    color: #7a8391;

    font-size: 12px;
    line-height: 1.55;
}

.asset-location__map {
    position: relative;

    z-index: 1;

    height: 190px;

    overflow: hidden;

    border:
        1px solid #e4e8ef;

    border-radius: 14px;

    background: #eef1f6;

    box-shadow:
        inset
        0 0 0 1px
        rgba(255, 255, 255, .5);
}


.asset-location__route {
    position: relative;

    z-index: 1;

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

    gap: 8px;

    margin-top: 15px;

    color: var(--blue);

    font-size: 13px;
    font-weight: 700;
}


.asset-location__route svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform .18s ease;
}


.asset-location__route:hover svg {
    transform:
        translateX(3px);
}


/* BENEFITS */

.asset-benefits {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    padding: 12px;

    border:
        1px solid #e4e8f0;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #f8faff 0%,
            #f3f6fb 100%
        );

    box-shadow:
        0 14px 40px
        rgba(20, 34, 68, .05);
}


.asset-benefit {
    position: relative;

    min-height: 145px;

    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding: 24px;

    overflow: hidden;

    border:
        1px solid
        rgba(225, 230, 239, .9);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #fff 0%,
            #fbfcff 100%
        );

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


.asset-benefit::after {
    content: "";

    position: absolute;

    right: -50px;
    bottom: -55px;

    width: 110px;
    height: 110px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(1, 52, 255, .07),
            transparent 70%
        );

    pointer-events: none;
}


.asset-benefit:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(1, 52, 255, .18);

    box-shadow:
        0 12px 28px
        rgba(31, 49, 93, .08);
}


.asset-benefit__icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

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

    border-radius: 16px;

    color: var(--blue);

    background:
        linear-gradient(
            145deg,
            #edf2ff,
            #f5f7ff
        );

    box-shadow:
        inset
        0 1px 0
        rgba(255, 255, 255, .9);
}


.asset-benefit__icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;

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


.asset-benefit__content {
    min-width: 0;

    padding-top: 1px;
}


.asset-benefit__number {
    display: block;

    margin-bottom: 7px;

    color: #a0a8b7;

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

    letter-spacing: .12em;
}


.asset-benefit h3 {
    margin:
        0 0 8px;

    color: #121827;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;

    letter-spacing: -.015em;
}


.asset-benefit p {
    max-width: 260px;

    margin: 0;

    color: #717987;

    font-size: 13px;
    line-height: 1.55;
}


/* SIDE */

.asset-side {
    display: flex;
    flex-direction: column;

    gap: 16px;
}


.asset-side-card {
    display: block;

    padding: 24px;

    border:
        1px solid var(--asset-line);

    border-radius: 18px;

    color: inherit;
    background: #fff;
}


.asset-side-card strong {
    display: block;

    color: var(--blue);

    font-size: 17px;
}


.asset-side-card p,
.asset-side-card span {
    color: #737a88;

    line-height: 1.5;
}


.asset-side-card button {
    padding: 0;

    border: 0;

    color: var(--blue);
    background: transparent;

    font: inherit;
}


.asset-side-card--subscribe {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding: 24px;

    overflow: hidden;

    border:
        1px solid #e4e8f0;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #fff 0%,
            #f8faff 100%
        );

    box-shadow:
        0 14px 40px
        rgba(20, 34, 68, .05);
}


.asset-side-card--subscribe::after {
    content: "";

    position: absolute;

    right: -55px;
    bottom: -65px;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(1, 52, 255, .08),
            transparent 70%
        );

    pointer-events: none;
}


.asset-side-card__icon {
    flex: 0 0 56px;

    width: 56px;
    height: 56px;

    display: grid;
    place-items: center;

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

    border-radius: 16px;

    color: var(--blue);

    background:
        linear-gradient(
            145deg,
            #edf2ff,
            #f5f7ff
        );
}


.asset-side-card__icon svg {
    width: 26px;
    height: 26px;

    fill: none;
    stroke: currentColor;

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


.asset-side-card__content {
    position: relative;

    z-index: 1;

    min-width: 0;
}


.asset-side-card__eyebrow {
    display: block;

    margin-bottom: 6px;

    color: #9aa3b2;

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

    letter-spacing: .12em;
}


.asset-side-card--subscribe strong {
    display: block;

    margin-bottom: 8px;

    color: #121827;

    font-size: 17px;
    line-height: 1.25;

    letter-spacing: -.015em;
}


.asset-side-card--subscribe p {
    margin: 0;

    color: #717987;

    font-size: 13px;
    line-height: 1.55;
}


.asset-side-card--subscribe button {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 16px;

    padding: 0;

    border: 0;

    color: var(--blue);
    background: transparent;

    font: inherit;
    font-size: 13px;
    font-weight: 700;
}


.asset-side-card--subscribe button span {
    transition:
        transform .18s ease;
}


.asset-side-card--subscribe button:hover span {
    transform:
        translateX(3px);
}


/* ---------------------------------------------------------
   CONTENT SECTIONS
--------------------------------------------------------- */

.asset-section {
    margin-top: 64px;

    border-color:
        var(--asset-line);

    border-radius: 18px;
}


.asset-section__heading {
    margin-bottom: 24px;
}


.asset-section__heading h2 {
    margin: 0;

    font-size: 28px;
}


.asset-characteristics {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    column-gap: 60px;

    font-size: 14px;
}


.asset-characteristics__row {
    display: flex;
    justify-content: space-between;

    gap: 30px;

    padding: 17px 0;

    border-bottom:
        1px solid #e7e9ef;
}


.asset-characteristics__row span {
    color: #6a7180;
}


.asset-characteristics__row strong {
    text-align: right;

    font-weight: 500;
}


.asset-description {
    max-width: 1000px;

    color: #414754;

    font-size: 14px;
    line-height: 1.75;
}


/* COLLAPSIBLE DESCRIPTION */

.asset-description-collapsible {
    position: relative;

    max-width: 1000px;

    overflow: hidden;
}


.asset-description-collapsible__content {
    max-height: 170px;

    overflow: hidden;

    transition:
        max-height .35s ease;
}


.asset-description-collapsible__fade {
    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    height: 90px;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, .88) 45%,
            #fff 100%
        );

    transition:
        opacity .2s ease,
        visibility .2s ease;
}


.asset-description-collapsible.is-expanded
.asset-description-collapsible__content {
    max-height: 5000px;
}


.asset-description-collapsible.is-expanded
.asset-description-collapsible__fade {
    opacity: 0;
    visibility: hidden;
}


.asset-description-toggle {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 12px;

    padding: 0;

    border: 0;

    color: var(--blue);
    background: transparent;

    font: inherit;
    font-size: 14px;
    font-weight: 600;
}


.asset-description-toggle:hover {
    color: #0026bd;
}


.asset-description-toggle svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;

    stroke-width: 2;

    transition:
        transform .2s ease;
}


.asset-description-toggle[aria-expanded="true"] svg {
    transform:
        rotate(180deg);
}


/* DOCUMENTS */

.asset-documents {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}


.asset-document {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 20px;

    border:
        1px solid #e2e5ed;

    border-radius: 16px;

    color: inherit;
}


.asset-document__icon {
    flex: 0 0 48px;

    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: var(--blue);
    background: #eef2ff;

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


.asset-document strong,
.asset-document small {
    display: block;
}


.asset-document small {
    margin-top: 4px;

    color: #7c8390;
}


/* SIMILAR */

.asset-similar-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 17px;
}


.asset-similar-card {
    min-width: 0;

    overflow: hidden;

    border:
        1px solid #e4e8ef;

    border-radius: 20px;

    color: inherit;
    background: #fff;

    box-shadow:
        0 8px 26px
        rgba(20, 34, 68, .04);

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


.asset-similar-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(1, 52, 255, .18);

    box-shadow:
        0 16px 38px
        rgba(20, 34, 68, .09);
}


.asset-similar-card__image {
    position: relative;

    aspect-ratio:
        16 / 10;

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #f5f6f8,
            #eceff4
        );
}


.asset-similar-card__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    transition:
        transform .25s ease;
}


.asset-similar-card:hover
.asset-similar-card__image img {
    transform:
        scale(1.025);
}


.asset-similar-card__placeholder {
    width: 100%;
    height: 100%;

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

    gap: 8px;

    color: #929aa7;
}


.asset-similar-card__placeholder svg {
    width: 31px;
    height: 31px;

    fill: none;
    stroke: currentColor;

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


.asset-similar-card__placeholder span {
    font-size: 11px;
    font-weight: 600;
}


.asset-similar-card__discount-badge {
    position: absolute;

    top: 12px;
    left: 12px;

    padding: 6px 9px;

    border-radius: 999px;

    color: var(--blue);
    background:
        rgba(238, 243, 255, .94);

    font-size: 10px;
    font-weight: 700;

    backdrop-filter:
        blur(8px);
}


.asset-similar-card__body {
    display: flex;
    flex-direction: column;

    min-height: 190px;

    padding: 17px;
}


.asset-similar-card__category {
    display: block;

    margin-bottom: 7px;

    overflow: hidden;

    color: #8992a0;

    font-size: 9px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: .06em;

    text-transform: uppercase;

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


.asset-similar-card__title {
    display: -webkit-box;

    min-height: 43px;

    overflow: hidden;

    color: #171d28;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.32;

    letter-spacing: -.015em;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.asset-similar-card__meta {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 11px;
}


.asset-similar-card__meta span {
    padding: 5px 7px;

    border-radius: 7px;

    color: #707987;
    background: #f4f6f8;

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


.asset-similar-card__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 12px;

    margin-top: auto;
    padding-top: 17px;

    border-top:
        1px solid #edf0f4;
}


.asset-similar-card__price {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 4px;
}


.asset-similar-card__price strong {
    color: var(--blue);

    font-size: 20px;
    font-weight: 750;
    line-height: 1.1;

    letter-spacing: -.02em;
}


.asset-similar-card__price del {
    color: #969eaa;

    font-size: 12px;
    line-height: 1.2;

    text-decoration-thickness: 1.3px;
}


.asset-similar-card__price small {
    color: #8a929f;

    font-size: 10px;
}


.asset-similar-card__price-request {
    color: #343c49 !important;

    font-size: 15px !important;
}


.asset-similar-card__arrow {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #fff;
    background: var(--blue);

    transition:
        transform .18s ease,
        background .18s ease;
}


.asset-similar-card__arrow svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

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


.asset-similar-card:hover
.asset-similar-card__arrow {
    transform:
        translateX(2px);

    background:
        var(--blue-dark);
}

/* ---------------------------------------------------------
   LIGHTBOX
--------------------------------------------------------- */

.asset-lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: grid;

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

    align-items: center;

    padding: 28px;

    background:
        rgba(5, 8, 18, .94);
}


.asset-lightbox__figure {
    width: 100%;
    height: 100%;
    min-height: 0;

    display: grid;

    grid-template-rows:
        minmax(0, 1fr)
        auto;

    place-items: center;

    margin: 0;
}


.asset-lightbox__figure img {
    max-width: 100%;
    max-height:
        calc(100vh - 100px);

    object-fit: contain;
}


.asset-lightbox__figure figcaption {
    margin-top: 12px;

    color: #fff;

    font-size: 14px;
}


.asset-lightbox__close {
    position: absolute;

    top: 22px;
    right: 22px;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    color: #fff;

    background:
        rgba(255, 255, 255, .12);
}


.asset-lightbox__nav {
    width: 56px;
    height: 56px;

    justify-self: center;

    border-radius: 50%;

    color: #fff;

    background:
        rgba(255, 255, 255, .12);
}


.asset-lightbox-open {
    overflow: hidden;
}


.asset-page button:focus-visible,
.asset-page a:focus-visible {
    outline:
        3px solid rgba(1, 52, 255, .35);

    outline-offset: 3px;
}


/* =========================================================
   09. FAVORITES
========================================================= */
.favorites-lead-assets {
    display: flex;
    flex-direction: column;
    gap: 8px;

    padding: 14px 16px;

    border: 1px solid #e2e8f0;
    border-radius: 12px;

    background: #f8fafc;

    color: #334155;
    font-size: 14px;
    line-height: 1.45;
}

.favorites-lead-assets > div {
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.favorites-lead-assets > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.favorites-page {
    padding:
        42px 0 70px;
}


.favorites-page__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}


.favorites-page__eyebrow,
.favorites-summary__eyebrow {
    display: block;

    margin-bottom: 7px;

    color: var(--blue);

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

    letter-spacing: .12em;
}


.favorites-page__head h1 {
    margin: 0;

    color: #121827;

    font-size: 36px;
    line-height: 1.1;

    letter-spacing: -.03em;
}


.favorites-page__head p {
    max-width: 600px;

    margin:
        12px 0 0;

    color: #707887;

    font-size: 14px;
    line-height: 1.55;
}


.favorites-page__actions {
    display: flex;
    align-items: center;

    gap: 10px;
}


.favorites-select-all,
.favorites-clear {
    padding: 10px 13px;

    border:
        1px solid #e1e5ec;

    border-radius: 10px;

    color: #555e6d;
    background: #fff;

    font: inherit;
    font-size: 12px;
    font-weight: 600;
}


.favorites-clear {
    color: #8a5360;
}


.favorites-layout {
    display: grid;

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

    gap: 24px;

    align-items: start;
}


.favorites-items {
    display: flex;
    flex-direction: column;

    gap: 12px;
}


.favorite-card {
    position: relative;

    display: grid;

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

    align-items: center;

    gap: 18px;

    padding: 14px;

    border:
        1px solid #e4e8ef;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 10px 30px
        rgba(20, 34, 68, .035);
}


.favorite-card__check {
    display: grid;
    place-items: center;

    cursor: pointer;
}


.favorite-card__check input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.favorite-card__check span {
    width: 20px;
    height: 20px;

    display: block;

    border:
        1.5px solid #cfd5df;

    border-radius: 6px;

    background: #fff;
}


.favorite-card__check
input:checked + span {
    position: relative;

    border-color:
        var(--blue);

    background:
        var(--blue);
}


.favorite-card__check
input:checked + span::after {
    content: "";

    position: absolute;

    top: 3px;
    left: 6px;

    width: 5px;
    height: 9px;

    border: solid #fff;
    border-width:
        0 2px 2px 0;

    transform:
        rotate(45deg);
}


.favorite-card__image {
    height: 125px;

    overflow: hidden;

    border-radius: 13px;

    background: #f2f4f7;
}


.favorite-card__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.favorite-card__placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    color: #929aa8;

    font-size: 11px;
}


.favorite-card__content {
    min-width: 0;
}


.favorite-card__category {
    margin-bottom: 6px;

    color: var(--blue);

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

    text-transform: uppercase;

    letter-spacing: .05em;
}


.favorite-card__title {
    display: block;

    color: #171d28;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}


.favorite-card__meta {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 12px;
}


.favorite-card__meta span {
    padding: 6px 8px;

    border-radius: 7px;

    color: #69717f;
    background: #f5f6f8;

    font-size: 10px;
}


.favorite-card__offer {
    display: flex;
    flex-direction: column;

    align-items: flex-end;
}


.favorite-card__offer > strong {
    color: #151b27;

    font-size: 18px;
    line-height: 1.1;
}


.favorite-card__offer del {
    margin-top: 5px;

    color: #9299a5;

    font-size: 11px;
}


.favorite-card__offer > span {
    margin-top: 4px;

    color: #9299a5;

    font-size: 9px;
}


.favorite-card__remove {
    margin-top: 15px;

    padding: 0;

    border: 0;

    color: #8c5360;
    background: transparent;

    font: inherit;
    font-size: 11px;
    font-weight: 600;
}


/* SUMMARY */

.favorites-summary {
    position: sticky;

    top: 100px;

    padding: 22px;

    border:
        1px solid #e4e8ef;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #f7f9ff
        );

    box-shadow:
        0 14px 40px
        rgba(20, 34, 68, .05);
}


.favorites-summary h2 {
    margin:
        0 0 20px;

    font-size: 20px;
}


.favorites-summary__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;

    gap: 12px;

    padding: 11px 0;

    border-top:
        1px solid #e8ebf1;

    color: #7a8290;

    font-size: 12px;
}


.favorites-summary__row strong {
    color: #252c38;

    text-align: right;
}


.favorites-summary__submit {
    width: 100%;

    margin-top: 17px;

    padding: 13px 16px;

    border: 0;
    border-radius: 11px;

    color: #fff;
    background: var(--blue);

    font: inherit;
    font-size: 13px;
    font-weight: 700;
}


.favorites-summary__submit:disabled {
    cursor: default;

    opacity: .45;
}


.favorites-summary > p {
    margin:
        12px 0 0;

    color: #8a919e;

    font-size: 10px;
    line-height: 1.5;
}


/* VOLUME OFFER */

.favorites-volume-offer {
    display: grid;

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

    gap: 12px;

    margin: 16px 0;

    padding: 14px;

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

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #f9fbff 0%,
            #f2f6ff 100%
        );

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}


.favorites-volume-offer__icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: var(--blue);
    background: #fff;

    box-shadow:
        0 4px 14px
        rgba(1, 52, 255, .08);
}


.favorites-volume-offer__icon svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;

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


.favorites-volume-offer__content {
    min-width: 0;
}


.favorites-volume-offer__eyebrow {
    display: block;

    margin-bottom: 4px;

    color: var(--blue);

    font-size: 8px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: .09em;
}


.favorites-volume-offer strong {
    display: block;

    margin-bottom: 4px;

    color: #202735;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}


.favorites-volume-offer p {
    margin: 0;

    color: #767f8c;

    font-size: 10px;
    line-height: 1.5;
}


.favorites-volume-offer.is-active {
    border-color:
        rgba(1, 52, 255, .25);

    background:
        linear-gradient(
            135deg,
            #f6f9ff 0%,
            #eaf0ff 100%
        );

    box-shadow:
        0 8px 24px
        rgba(1, 52, 255, .07);
}


.favorites-volume-offer.is-active
.favorites-volume-offer__icon {
    color: #fff;

    background:
        linear-gradient(
            145deg,
            #194cff,
            var(--blue)
        );
}


/* EMPTY */

.favorites-loader,
.favorites-empty {
    padding:
        60px 25px;

    border:
        1px solid #e5e8ee;

    border-radius: 20px;

    background: #fff;

    text-align: center;
}


.favorites-loader {
    color: #828a98;
}


.favorites-empty__icon {
    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    margin:
        0 auto 18px;

    border-radius: 18px;

    color: var(--blue);
    background: #eef2ff;
}


.favorites-empty__icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.7;
}


.favorites-empty h2 {
    margin: 0;

    font-size: 21px;
}


.favorites-empty p {
    max-width: 430px;

    margin:
        10px auto 20px;

    color: #7a8290;

    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   10. YANDEX MAP — ASSET MARKER
========================================================= */

.asset-yandex-marker {
    position: relative;

    width: 46px;
    height: 56px;

    transform:
        translate(-50%, -100%);

    pointer-events: none;
}


.asset-yandex-marker__pulse {
    position: absolute;

    left: 50%;
    bottom: -3px;

    width: 28px;
    height: 10px;

    border-radius: 50%;

    background:
        rgba(1, 52, 255, .12);

    filter:
        blur(3px);

    transform:
        translateX(-50%);
}


.asset-yandex-marker__pin {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border:
        4px solid #fff;

    border-radius: 16px;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #194cff,
            var(--blue)
        );

    box-shadow:
        0 0 0 6px
        rgba(1, 52, 255, .10),

        0 10px 28px
        rgba(1, 52, 255, .24);
}


.asset-yandex-marker__pin svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: currentColor;

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


/* =========================================================
   YANDEX MAP — STOCK MARKERS
========================================================= */

.stock-yandex-marker {
    position: relative;

    width: 44px;
    height: 44px;

    transform:
        translate(-50%, -50%);
}


.stock-yandex-marker__button {
    position: relative;

    z-index: 2;

    min-width: 44px;
    height: 44px;

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

    padding: 0 9px;

    border:
        4px solid #fff;

    border-radius: 14px;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #194cff,
            var(--blue)
        );

    box-shadow:
        0 0 0 5px
        rgba(1, 52, 255, .10),

        0 8px 22px
        rgba(1, 52, 255, .22);

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


.stock-yandex-marker__button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 0 0 7px
        rgba(1, 52, 255, .11),

        0 12px 28px
        rgba(1, 52, 255, .28);
}


.stock-yandex-marker__count {
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}


.stock-yandex-popup {
    position: absolute;

    z-index: 30;

    left: 50%;
    bottom: calc(100% + 15px);

    width: 235px;

    padding: 17px;

    transform:
        translateX(-50%);

    border:
        1px solid #e1e6ee;

    border-radius: 16px;

    color: #161d29;

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

    box-shadow:
        0 18px 50px
        rgba(22, 35, 70, .16);

    backdrop-filter:
        blur(15px);
}


.stock-yandex-popup::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -6px;

    width: 12px;
    height: 12px;

    border-right:
        1px solid #e1e6ee;

    border-bottom:
        1px solid #e1e6ee;

    background: #fff;

    transform:
        translateX(-50%)
        rotate(45deg);
}


.stock-yandex-popup > strong {
    display: block;

    padding-right: 22px;

    color: #161d29;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}


.stock-yandex-popup > span {
    display: block;

    margin-top: 5px;

    color: #7a8290;

    font-size: 11px;
    line-height: 1.45;
}


.stock-yandex-popup__count {
    margin-top: 13px;

    padding-top: 11px;

    border-top:
        1px solid #e9ecf1;

    color: #636c7a;

    font-size: 11px;
}


.stock-yandex-popup > a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-top: 11px;

    color: var(--blue);

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


.stock-yandex-popup > a span {
    transition:
        transform .18s ease;
}


.stock-yandex-popup > a:hover span {
    transform:
        translateX(3px);
}


.stock-yandex-popup__close {
    position: absolute;

    top: 9px;
    right: 9px;

    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;
    border-radius: 7px;

    color: #8b93a0;
    background: transparent;

    font-size: 17px;
    line-height: 1;
}


.stock-yandex-popup__close:hover {
    color: #242b37;

    background: #f3f5f8;
}


/* =========================================================
   11. FOOTER
========================================================= */

.footer {
    padding: 44px 0;

    border-top:
        1px solid var(--line);

    background: #fff;
}


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

    gap: 30px;
}


.logo--footer {
    font-size: 22px;
}


.footer__brand p {
    margin:
        7px 0 0;

    color: var(--muted);

    font-size: 12px;
}


.footer__links {
    display: flex;

    gap: 20px;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   12. TABLET — GENERAL
========================================================= */

@media (max-width: 1180px) {

    .asset-page__header {
        display: block;
    }


    .asset-page__actions {
        justify-content:
            flex-start;

        margin-top: 18px;
    }


    .asset-hero {
        grid-template-columns:
            minmax(0, 1.45fr)
            minmax(280px, 1fr);
    }


    .asset-gallery {
        grid-row:
            1 / span 2;
    }


    .asset-summary {
        grid-column: 2;
        grid-row: 1;
    }


    .asset-commercial {
        grid-column: 2;
        grid-row: 2;

        margin-top: 0;
    }

}


@media (max-width: 1120px) {

    .assets,
    .advantages__grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .catalog-search {
        grid-template-columns:
            1fr
            220px
            110px;
    }


    .catalog-card {
        grid-template-columns:
            230px
            minmax(260px, 1fr)
            125px
            190px;
    }


    .catalog-card__info,
    .catalog-card__usage,
    .catalog-card__offer {
        padding: 16px;
    }


    .catalog-card__info {
        padding-right: 10px;
    }


    .catalog-card__usage {
        padding-left: 10px;
    }


    .catalog-card__prices strong {
        font-size: 25px;
    }

}


/* =========================================================
   13. TABLET — 960 / 900 / 860
========================================================= */

@media (max-width: 960px) {

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


    .favorites-summary {
        position: static;
    }


    .favorite-card {
        grid-template-columns:
            28px
            150px
            minmax(0, 1fr);
    }


    .favorite-card__offer {
        grid-column: 3;

        align-items: flex-start;
    }

}


@media (max-width: 900px) {

    .header__main {
        min-height: 68px;

        gap: 10px;
    }


    .header__logo {
        margin-right: auto;
    }


    .header__logo img {
        height: 29px;
    }


    .header-search-wrap {
        flex: 0 0 auto;

        min-width: 0;
    }


    .header-search-toggle {
        width: 44px;

        justify-content: center;

        padding: 0;
    }


    .header-search-toggle span {
        display: none;
    }


    .header-favorites__label {
        display: none;
    }


    .header-catalog {
        padding: 0 12px;
    }


    .home-intro {
        padding-top: 32px;
    }


    .home-intro__head {
        align-items: flex-start;
        flex-direction: column;

        gap: 20px;
    }


    .home-category-card {
        min-height: 285px;
    }


    .home-category-card h2 {
        font-size: 22px;
    }


    .home-about__grid {
        grid-template-columns: 1fr;

        gap: 34px;
    }


    .request__box {
        align-items: flex-start;
        flex-direction: column;

        gap: 30px;

        padding:
            40px 34px;
    }


    .request__actions {
        width: 100%;

        flex-basis: auto;
    }

}


@media (max-width: 860px) {

    .catalog-card {
        grid-template-columns:
            220px
            minmax(0, 1fr);

        grid-template-areas:
            "media info"
            "media usage"
            "media offer";
    }


    .catalog-card__media {
        grid-area: media;
    }


    .catalog-card__info {
        grid-area: info;

        padding-bottom: 12px;
    }


    .catalog-card__usage {
        grid-area: usage;

        flex-direction: row;

        padding-top: 0;
        padding-bottom: 12px;

        border-left: 0;
    }


    .catalog-card__offer {
        grid-area: offer;

        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;

        gap: 16px;

        padding-top: 0;

        text-align: left;
    }


    .catalog-card__prices {
        align-items: flex-start;
    }


    .catalog-card__media img,
    .catalog-card__placeholder {
        min-height: 100%;
    }


    .asset-page {
        padding-top: 22px;
    }


    .asset-hero,
    .asset-info-grid {
        grid-template-columns: 1fr;
    }


    .asset-summary,
    .asset-commercial {
        grid-column: auto;
        grid-row: auto;

        margin-top: 0;
    }


    .asset-page__actions {
        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        gap: 8px;
    }


    .asset-top-action {
        justify-content: center;
    }


    .asset-info-grid {
        grid-template-columns: 1fr;
    }


    .asset-lightbox {
        grid-template-columns:
            52px
            minmax(0, 1fr)
            52px;

        padding: 16px;
    }


    .asset-lightbox__nav {
        width: 44px;
        height: 44px;
    }

}


/* =========================================================
   14. MOBILE
========================================================= */

@media (max-width: 767px) {

    html,
    body {
        overflow-x: hidden;
    }


    .container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }


    /* HEADER */

    .header__service {
        display: none;
    }


    .header__main {
        position: relative;

        min-height: 66px;

        flex-wrap: nowrap;

        gap: 8px;
    }


    .header__logo {
        margin-right: auto;
    }


    .header__logo img {
        height: 27px;
    }


    .header-catalog {
        width: 44px;

        justify-content: center;

        padding: 0;
    }


    .header-catalog > span,
    .header-catalog__arrow {
        display: none;
    }


    .header-catalog-menu {
        position: fixed;

        top: 74px;
        right: 14px;
        left: 14px;

        width: auto;
    }


    /* MOBILE SEARCH */

    .header-search-wrap {
        position: static;

        flex: 0 0 auto;

        min-width: 0;
        max-width: none;
    }


    .header-search-toggle {
        width: 44px;
        height: 44px;

        justify-content: center;

        padding: 0;
    }


    .header-search-toggle span {
        display: none;
    }


    .header-search {
        position: absolute;

        z-index: 1000;

        top: calc(100% + 8px);
        right: 0;
        left: 0;

        width: 100%;
        height: 48px;

        padding:
            5px 6px 5px 14px;

        border-radius: 14px;

        background: #fff;

        box-shadow:
            0 14px 35px
            rgba(20, 35, 70, .16);
    }


    .header-search input {
        width: 100%;
        min-width: 0;
    }


    .header-search__submit,
    .header-search__close {
        flex: 0 0 36px;

        width: 36px;
        height: 36px;
    }


    .live-search {
        position: absolute;

        top: calc(100% + 62px);
        right: 0;
        left: 0;

        width: 100%;

        max-height: 60vh;

        overflow-y: auto;

        border-radius: 14px;
    }


    .live-search__item {
        grid-template-columns:
            58px
            minmax(0, 1fr);
    }


    .live-search__media {
        width: 58px;
        height: 44px;
    }


    .live-search__price {
        grid-column: 2;

        padding-left: 0;
    }


    /* FAVORITES ICON */

    .header__actions {
        flex: 0 0 auto;

        margin-left: 0;
    }


    .header-favorites {
        position: relative;

        width: 44px;
        height: 44px;

        min-height: 44px;

        flex: 0 0 44px;

        display: grid;
        place-items: center;

        padding: 0;

        border-radius: 12px;
    }


    .header-favorites__label {
        display: none;
    }


    .header-favorites svg {
        width: 20px;
        height: 20px;
    }


    .header-favorites__count {
        position: absolute;

        top: -4px;
        right: -4px;

        min-width: 18px;
        height: 18px;

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

        padding: 0 5px;

        border:
            2px solid #fff;

        border-radius: 999px;

        color: #fff;
        background: var(--blue);

        font-size: 9px;
        font-weight: 800;
        line-height: 1;

        pointer-events: none;
    }


    /* HOME */

    .home-intro {
        padding:
            26px 0 18px;
    }


    .home-intro h1 {
        font-size: 36px;
    }


    .home-intro__stock {
        width: 100%;
    }


    .home-categories {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}


.home-category-card {
    min-height: 190px;

    border-radius: 18px;
}


.home-category-card__content {
    width: 64%;

    padding: 16px;
}


.home-category-card__count {
    margin-bottom: 8px;

    font-size: 8px;
}


.home-category-card h2 {
    font-size: 17px;
    line-height: 1.12;
}


.home-category-card__action {
    gap: 5px;

    margin-top: 13px;

    font-size: 10px;
}


.home-category-card__image {
    right: -10%;
    bottom: -4%;

    width: 58%;
    height: 62%;
}


    .stock-map {
        padding:
            20px 14px;

        border-radius: 22px;
    }


    .stock-map__head {
        align-items: flex-start;
        flex-direction: column;

        gap: 8px;
    }


    .parking-map {
        height: 360px;
    }


    .stock-stats {
        flex-direction: column;

        margin-top: 10px;
    }


    .stock-stats > div {
        width: 100%;
    }


    .section-head,
    .catalog-page__head,
    .advantages__head {
        align-items: flex-start;
        flex-direction: column;
    }


    .latest,
    .catalog-page {
        padding:
            55px 0;
    }


    .assets,
    .advantages__grid {
        grid-template-columns: 1fr;
    }


    .request {
        padding-bottom: 60px;
    }


    .request__box {
        min-height: 0;

        padding:
            34px 25px;

        border-radius: 22px;
    }


    .request__button {
        width: 100%;
    }


    .home-about {
        padding: 54px 0;
    }


    .home-about__content h2,
    .home-faq__head h2 {
        font-size: 28px;
    }


    .home-about__facts {
        grid-template-columns: 1fr;
    }


    .home-about__fact {
        min-height: 0;
    }


    /* CATALOG */

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


    .catalog-search button {
        min-height: 48px;
    }


    /* DETAIL */

    .asset-page {
        padding-top: 20px;
    }


    .asset-page__header {
        display: block;
    }


  .asset-page__actions {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, 42px);

    justify-content: start;

    gap: 8px;

    overflow: visible;
}
.asset-top-action::before,
.asset-top-action::after {
    display: none;
}

    .asset-benefits {
        grid-template-columns: 1fr;

        gap: 8px;

        padding: 8px;
    }


    .asset-benefit {
        min-height: auto;

        padding: 20px;
    }


    .asset-benefit__icon {
        flex-basis: 52px;

        width: 52px;
        height: 52px;
    }


    .asset-benefit__icon svg {
        width: 24px;
        height: 24px;
    }


    .asset-characteristics,
    .asset-documents {
        grid-template-columns: 1fr;
    }


    .asset-similar-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* FAVORITES */

    .favorites-page {
        padding-top: 25px;
    }


    .favorites-page__head {
        align-items: flex-start;
        flex-direction: column;
    }


    .favorites-page__head h1 {
        font-size: 29px;
    }


    .favorites-page__actions {
        flex-wrap: wrap;
    }


    .favorite-card {
        grid-template-columns:
            26px
            105px
            minmax(0, 1fr);

        gap: 10px;
    }


    .favorite-card__image {
        height: 90px;
    }


    .favorite-card__title {
        font-size: 14px;
    }


    .favorite-card__offer {
        grid-column:
            2 / -1;

        align-items: flex-start;

        padding-top: 8px;
    }


    /* FOOTER */

    .footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }


    .footer__links {
        flex-direction: column;
    }
    /* CATALOG FILTERS — MOBILE FULLSCREEN */

.catalog-toolbar {
    min-height: 0;

    gap: 8px;

    padding: 8px;

    border-radius: 14px;
}


.catalog-toolbar__left {
    flex: 1 1 auto;

    gap: 7px;
}


.catalog-filter-trigger {
    min-height: 46px;

    flex: 1 1 auto;

    justify-content: center;

    padding: 0 12px;
}


.catalog-toolbar__result,
.catalog-toolbar__reset {
    display: none;
}


.catalog-sort {
    min-width: 0;

    flex: 0 0 150px;
}


.catalog-sort > span {
    display: none;
}


.catalog-sort select {
    height: 46px;

    padding:
        0 34px 0 11px;

    font-size: 11px;
}


/* FULLSCREEN */

.catalog-filter-panel {
    position: fixed;

    z-index: 4000;

    inset: 0;

    display: block;

    margin: 0;

    visibility: hidden;
    opacity: 0;

    pointer-events: none;

    transition:
        opacity .2s ease,
        visibility .2s ease;
}


.catalog-filter-panel.is-open {
    visibility: visible;
    opacity: 1;

    pointer-events: auto;
}


.catalog-filter-panel__backdrop {
    display: none;
}


.catalog-filter-panel__dialog {
    width: 100%;
    height: 100%;

    border: 0;
    border-radius: 0;

    background: #fff;

    box-shadow: none;

    transform:
        translateY(20px);

    transition:
        transform .22s ease;
}


.catalog-filter-panel.is-open
.catalog-filter-panel__dialog {
    transform:
        translateY(0);
}


.catalog-filter-form {
    height: 100%;

    display: grid;

    grid-template-rows:
        auto
        minmax(0, 1fr)
        auto;
}


.catalog-filter-panel__head {
    min-height: 72px;

    padding:
        14px 18px;

    background:
        rgba(255, 255, 255, .98);
}


.catalog-filter-panel__head h2 {
    font-size: 21px;
}


.catalog-filter-panel__body {
    overflow-y: auto;

    padding:
        20px 16px 30px;

    overscroll-behavior:
        contain;
}


.catalog-filter-group--price {
    max-width: none;

    padding-bottom: 20px;

    border-bottom:
        1px solid #edf0f4;
}


.catalog-filter-fields {
    grid-template-columns: 1fr;

    gap: 0;

    margin-top: 0;
}


.catalog-filter-fields
.catalog-filter-group {
    padding: 18px 0;

    border-bottom:
        1px solid #edf0f4;
}


.catalog-filter-group__head {
    margin-bottom: 10px;
}


.catalog-filter-group__head strong {
    font-size: 13px;
}


.catalog-filter-input {
    height: 48px;

    border-radius: 11px;

    font-size: 13px;
}


.catalog-filter-pills {
    gap: 7px;
}


.catalog-filter-pills label span {
    min-height: 38px;

    padding: 0 13px;

    font-size: 12px;
}


/* STICKY BOTTOM */

.catalog-filter-panel__footer {
    position: relative;

    z-index: 4;

    display: grid;

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

    gap: 8px;

    padding:
        10px 14px
        calc(
            10px
            + env(safe-area-inset-bottom)
        );

    border-top:
        1px solid #e4e8ef;

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

    box-shadow:
        0 -8px 28px
        rgba(20, 34, 68, .06);
}


.catalog-filter-clear,
.catalog-filter-submit {
    min-height: 50px;

    width: 100%;
}


.catalog-filter-submit {
    font-size: 13px;
}


body.catalog-filters-open {
    overflow: hidden;
}

}


/* =========================================================
   15. SMALL MOBILE
========================================================= */

@media (max-width: 620px) {

    .catalog-card {
        display: block;

        border-radius: 15px;
    }


    .catalog-card__media {
        height: auto;

        aspect-ratio:
            16 / 10;

        border-radius:
            14px 14px 0 0;
    }


    .catalog-card__media img,
    .catalog-card__placeholder {
        min-height: 0;
    }


    .catalog-card__info {
        padding:
            18px 18px 12px;
    }


    .catalog-card__spec {
        font-size: 15px;
    }


    .catalog-card__location {
        padding-top: 13px;
    }


    .catalog-card__usage {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;

        padding:
            5px 18px 14px;
    }


    .catalog-card__usage strong {
        font-size: 18px;
    }


    .catalog-card__offer {
        padding:
            14px 16px 16px;

        border-top:
            1px solid #edf0f4;
    }


    .catalog-card__prices strong {
        font-size: 25px;
    }


    .catalog-card__action {
        width: 40px;
        height: 40px;
    }

}


@media (max-width: 560px) {

    .asset-page__title {
        font-size: 30px;
    }


    .asset-gallery__main {
        aspect-ratio:
            4 / 3;

        border-radius: 12px;
    }


    .asset-gallery__nav {
        width: 40px;
        height: 40px;
    }


    .asset-gallery__nav--prev {
        left: 10px;
    }


    .asset-gallery__nav--next {
        right: 10px;
    }


    .asset-gallery__zoom {
        right: 10px;
        bottom: 10px;
    }


    .asset-gallery__thumbs-row {
        grid-template-columns:
            30px
            minmax(0, 1fr)
            30px;

        gap: 6px;
    }


    .asset-gallery__thumb-scroll {
        width: 30px;
        height: 30px;
    }


    .asset-gallery__thumb {
        flex-basis: 76px;

        height: 56px;
    }


    .asset-commercial {
        padding: 22px;
    }


    .asset-commercial__price-main strong,
    .asset-commercial__price > strong {
        font-size: 29px;
    }


    .asset-commercial__secondary {
        gap: 8px;
    }


    .asset-lightbox {
        grid-template-columns: 1fr;

        padding: 14px;
    }


    .asset-lightbox__nav {
        position: absolute;

        top: 50%;

        z-index: 2;
    }


    .asset-lightbox__nav--prev {
        left: 10px;
    }


    .asset-lightbox__nav--next {
        right: 10px;
    }

}


/* =========================================================
   16. PRINT
========================================================= */

@media print {

    .asset-page__actions,
    .asset-gallery__nav,
    .asset-gallery__zoom,
    .asset-gallery__thumbs-row,
    .asset-commercial__secondary,
    .asset-commercial__note,
    .asset-side-card,
    .header,
    .footer {
        display: none !important;
    }


    .asset-hero {
        grid-template-columns:
            1.5fr 1fr;

        gap: 24px;
    }


    .asset-commercial {
        grid-column:
            1 / -1;

        box-shadow: none;
    }


    .asset-page {
        padding: 0;
    }


    .asset-gallery__main {
        aspect-ratio:
            16 / 9;
    }

}
/* =========================================================
   HOME INTRO — ROTATING PHRASE
========================================================= */

.home-intro__rotator {
    position: relative;

    display: inline-block;

    height: .98em;

    overflow: hidden;

    vertical-align: baseline;

    color: var(--accent-green);
}


.home-intro__rotator-track {
    display: flex;
    flex-direction: column;

    animation:
        homeIntroRotate
        12s
        cubic-bezier(.76, 0, .24, 1)
        infinite;
}


.home-intro__rotator-track > span {
    height: .98em;

    display: block;

    flex: 0 0 .98em;

    line-height: .98;

    white-space: nowrap;
}

@keyframes homeIntroRotate {

    0%,
    20% {
        transform: translateY(0);
    }

    25%,
    45% {
        transform: translateY(-1.05em);
    }

    50%,
    70% {
        transform: translateY(-2.10em);
    }

    75%,
    95% {
        transform: translateY(-3.15em);
    }

    100% {
        transform: translateY(0);
    }

}
@media (max-width: 767px) {

    .home-intro__rotator-track > span {
        white-space: normal;
    }

}

@media (max-width: 980px) {
    .catalog-filters__grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }
}

@media (max-width: 640px) {
    .catalog-filters {
        padding: 18px;
    }

    .catalog-filters__head {
        align-items: flex-start;
    }

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

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

    .catalog-filters__actions button {
        width: 100%;
    }
}


.catalog-filters__primary {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(23, 38, 32, .12);
}
.catalog-filter__control:disabled {
    cursor: not-allowed;
    opacity: .55;
    background-color: rgba(23, 38, 32, .04);
}
@media (max-width: 720px) {
    .catalog-filters__primary { grid-template-columns: 1fr; }
}


/* =========================================================
   HEADER GAME LINK
========================================================= */

.header-game-link {
    position: relative;

    min-height: 42px;

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

    gap: 8px;

    padding:
        0 12px 0 10px;

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

    border-radius: 999px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #0134ff 0%,
            #315cff 100%
        );

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

    line-height: 1;

    text-decoration: none;

    box-shadow:
        0 7px 22px
        rgba(1, 52, 255, .18);

    overflow: hidden;

    isolation: isolate;

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


.header-game-link::before {
    content: '';

    position: absolute;

    inset: -1px;

    z-index: -1;

    border-radius: inherit;

    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(255,255,255,.23),
            transparent 38%
        );

    pointer-events: none;
}


.header-game-link::after {
    content: '';

    position: absolute;

    top: -70%;
    left: -45%;

    width: 35%;
    height: 240%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.30),
            transparent
        );

    transform:
        rotate(20deg);

    animation:
        header-game-shine
        4.6s ease-in-out infinite;

    pointer-events: none;
}


.header-game-link:hover {
    color: #fff;

    transform:
        translateY(-2px);

    border-color:
        rgba(255,255,255,.25);

    box-shadow:
        0 10px 30px
        rgba(1, 52, 255, .30);
}


.header-game-link__icon {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 50%;

    color: #0134ff;

    background: #fff;
}


.header-game-link__icon svg {
    width: 15px;
    height: 15px;

    stroke-width: 2.2;
}


.header-game-link__text {
    position: relative;

    z-index: 2;
}


.header-game-link__badge {
    position: relative;

    z-index: 2;

    min-height: 18px;

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

    padding: 0 6px;

    border-radius: 999px;

    color: #0134ff;

    background: #fff;

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

    letter-spacing: .08em;
}


/* Мягкий пульс вокруг кнопки */

.header-game-link {
    animation:
        header-game-pulse
        3.2s ease-in-out infinite;
}


@keyframes header-game-pulse {

    0%,
    100% {

        box-shadow:
            0 7px 22px
            rgba(1, 52, 255, .18);

    }

    50% {

        box-shadow:
            0 8px 28px
            rgba(1, 52, 255, .38);

    }

}


@keyframes header-game-shine {

    0%,
    68% {

        left: -45%;
    }

    82% {

        left: 115%;
    }

    100% {

        left: 115%;
    }

}


/* Не заставляем интерфейс анимироваться,
   если пользователь отключил motion */

@media (
    prefers-reduced-motion: reduce
) {

    .header-game-link,
    .header-game-link::after {
        animation: none;
    }

}
@media (max-width: 767px) {

    .header-game-link {
        display: none !important;
    }

}
//* =========================================================
   TRAFFIC GAME
========================================================= */
/* =========================================================
   TRAFFIC GAME
========================================================= */

.traffic-game-page {
    padding:
        36px 0 70px;
}


.traffic-game-page__head {
    max-width: 980px;

    margin:
        0 auto 24px;

    text-align: center;
}


.traffic-game-page__eyebrow {
    display: inline-block;

    margin-bottom: 8px;

    color: #0134ff;

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

    letter-spacing: .16em;
}


.traffic-game-page__head h1 {
    margin: 0;

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

    line-height: 1;

    letter-spacing: -.04em;
}


.traffic-game-page__head p {
    max-width: 620px;

    margin:
        14px auto 0;

    color: #667085;

    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   WRAPPER
========================================================= */

.traffic-game {
    width:
        min(
            100%,
            980px
        );

    margin:
        0 auto;
}


/* =========================================================
   TOPBAR
========================================================= */

.traffic-game__topbar {
    display: grid;

    grid-template-columns:
        repeat(
            5,
            minmax(0, 1fr)
        );

    gap: 8px;

    margin-bottom: 10px;
}


.traffic-game__stat {
    min-width: 0;

    padding:
        10px 8px;

    border:
        1px solid #e8ebf1;

    border-radius: 12px;

    background: #fff;

    text-align: center;
}


.traffic-game__stat span {
    display: block;

    overflow: hidden;

    color: #98a2b3;

    font-size: 8px;
    font-weight: 700;

    line-height: 1.2;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.traffic-game__stat strong {
    display: block;

    margin-top: 4px;

    color: #101828;

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

    font-variant-numeric:
        tabular-nums;
}


/* =========================================================
   STAGE
========================================================= */

.traffic-game__stage {
    position: relative;

    width: 100%;

    /*
     * Desktop JS:
     * 980 × 760
     */
    aspect-ratio:
        980 / 760;

    margin:
        0 auto;

    overflow: hidden;

    border-radius: 22px;

    background: #151922;

    box-shadow:
        0 20px 60px
        rgba(15, 23, 42, .14);
}


.traffic-game__canvas {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;
}


/*
 * НЕ ставить:
 *
 * width:100% !important;
 * height:100% !important;
 *
 * Phaser FIT сам сохраняет aspect ratio.
 */

.traffic-game__canvas canvas {
    display: block;

    margin:
        0 auto;

    max-width: 100%;
    max-height: 100%;
}


/* =========================================================
   BASIC OVERLAY
========================================================= */

.traffic-game-overlay {
    position: absolute;

    inset: 0;

    z-index: 50;

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

    padding: 24px;

    background:
        rgba(9, 13, 22, .82);

    backdrop-filter:
        blur(8px);
}


.traffic-game-overlay[hidden] {
    display: none !important;
}


.traffic-game-overlay__content {
    width:
        min(
            100%,
            470px
        );

    color: #fff;

    text-align: center;
}


.traffic-game-overlay__eyebrow {
    display: block;

    margin-bottom: 8px;

    color:
        rgba(255, 255, 255, .54);

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

    letter-spacing: .15em;
}


.traffic-game-overlay h2 {
    margin: 0;

    color: #fff;

    font-size:
        clamp(
            27px,
            5vw,
            42px
        );

    line-height: 1.05;

    letter-spacing: -.04em;
}


.traffic-game-overlay p {
    margin:
        15px auto 0;

    color:
        rgba(255, 255, 255, .64);

    font-size: 12px;
    line-height: 1.55;
}


/* =========================================================
   BUTTONS
========================================================= */

.traffic-game-button {
    min-height: 48px;

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

    gap: 8px;

    margin-top: 20px;

    padding:
        0 18px;

    border: 0;

    border-radius: 13px;

    color: #fff;

    background: #0134ff;

    font: inherit;

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

    cursor: pointer;

    box-shadow:
        0 10px 28px
        rgba(1, 52, 255, .28);

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


.traffic-game-button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 14px 34px
        rgba(1, 52, 255, .38);
}


.traffic-game-button svg {
    width: 16px;
    height: 16px;
}


.traffic-game-button--secondary {
    color: #fff;

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

    box-shadow: none;
}


/* =========================================================
   COMBO
========================================================= */

.traffic-game-combo {
    position: absolute;

    top: 20px;
    left: 50%;

    z-index: 20;

    min-width: 94px;

    padding:
        8px 13px;

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

    border-radius: 999px;

    color: #fff;

    background:
        rgba(1, 52, 255, .84);

    backdrop-filter:
        blur(8px);

    text-align: center;

    transform:
        translateX(-50%);

    pointer-events: none;
}


.traffic-game-combo[hidden] {
    display: none;
}


.traffic-game-combo span {
    font-size: 7px;
    font-weight: 800;

    letter-spacing: .13em;

    opacity: .68;
}


.traffic-game-combo strong {
    margin-left: 5px;

    font-size: 13px;
}


/* =========================================================
   GAME RESULT
========================================================= */

.traffic-game-result {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 7px;

    margin-top: 22px;
}


.traffic-game-result > div {
    padding:
        12px 7px;

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

    border-radius: 12px;

    background:
        rgba(255, 255, 255, .045);
}


.traffic-game-result span {
    display: block;

    color:
        rgba(255, 255, 255, .42);

    font-size: 8px;
}


.traffic-game-result strong {
    display: block;

    margin-top: 5px;

    color: #fff;

    font-size: 13px;

    font-variant-numeric:
        tabular-nums;
}


/* =========================================================
   FULL SCREEN GAME OVER
========================================================= */

.traffic-game-overlay--gameover {
    position: fixed;

    inset: 0;

    z-index: 9999;

    width: 100%;
    height: 100dvh;

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

    padding:
        36px 20px 60px;

    overflow-x: hidden;
    overflow-y: auto;

    overscroll-behavior: contain;

    background:
        rgba(7, 10, 17, .95);

    backdrop-filter:
        blur(15px);

    -webkit-overflow-scrolling:
        touch;
}


.traffic-game-overlay--gameover[hidden] {
    display: none !important;
}


.traffic-game-overlay--gameover
.traffic-game-overlay__content {
    position: relative;

    z-index: 3;

    width:
        min(
            100%,
            680px
        );

    max-width: 680px;

    margin: 0;

    padding:
        26px 24px 38px;

    flex:
        0 0 auto;
}


body.traffic-game-gameover-open {
    overflow: hidden;
}


/* =========================================================
   BACKGROUND PLAYER CAR
========================================================= */

.traffic-game-gameover-car {
    position: fixed;

    top: 50%;
    right: 4vw;

    z-index: 1;

    width:
        min(
            30vw,
            390px
        );

    opacity: .16;

    transform:
        translateY(-50%)
        rotate(9deg);

    pointer-events: none;
}


.traffic-game-gameover-car img {
    display: block;

    width: 100%;
    height: auto;
}


.traffic-game-overlay--gameover::before {
    content: '';

    position: fixed;

    top: 50%;
    right: 0;

    z-index: 0;

    width: 600px;
    height: 600px;

    background:
        radial-gradient(
            circle,
            rgba(1, 52, 255, .20),
            transparent 66%
        );

    transform:
        translateY(-50%);

    pointer-events: none;
}


.traffic-game-gameover-brand {
    margin-top: 9px;

    color:
        rgba(255, 255, 255, .84);

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

    letter-spacing: .14em;
}


.traffic-game-gameover-brand span {
    margin-left: 7px;

    color:
        rgba(255, 255, 255, .38);

    font-weight: 600;

    letter-spacing: .02em;
}


/* =========================================================
   COMMERCIAL CTA
========================================================= */

.traffic-game-catalog {
    position: relative;

    margin-top: 20px;

    padding: 20px;

    border:
        1px solid
        rgba(49, 92, 255, .34);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(1, 52, 255, .20),
            rgba(1, 52, 255, .06)
        );

    text-align: center;

    overflow: hidden;
}


.traffic-game-catalog__eyebrow {
    display: block;

    margin-bottom: 7px;

    color:
        rgba(255, 255, 255, .42);

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

    letter-spacing: .13em;
}


.traffic-game-catalog__title {
    display: block;

    color: #fff;

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

    line-height: 1.2;
}


.traffic-game-catalog__text {
    display: block;

    max-width: 500px;

    margin:
        8px auto 0;

    color:
        rgba(255, 255, 255, .62);

    font-size: 11px;
    line-height: 1.5;
}


.traffic-game-catalog__cta {
    position: relative;

    width:
        min(
            100%,
            380px
        );

    min-height: 54px;

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

    gap: 12px;

    margin-top: 16px;

    padding:
        6px 7px 6px 18px;

    border-radius: 15px;

    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #0134ff,
            #315cff
        );

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

    text-decoration: none !important;

    box-shadow:
        0 12px 32px
        rgba(1, 52, 255, .32);

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


.traffic-game-catalog__cta:hover {
    transform:
        translateY(-2px)
        scale(1.01);

    box-shadow:
        0 16px 40px
        rgba(1, 52, 255, .44);
}


.traffic-game-catalog__cta-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    margin-left: auto;

    border-radius: 11px;

    color: #0134ff;

    background: #fff;
}


.traffic-game-catalog__cta-icon svg {
    width: 18px;
    height: 18px;
}


/* =========================================================
   LEADERBOARD
========================================================= */

.traffic-game-leaderboard {
    margin-top: 18px;

    padding: 18px;

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

    border-radius: 18px;

    background:
        rgba(8, 12, 20, .76);

    text-align: left;
}


.traffic-game-leaderboard__head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin-bottom: 14px;
}


.traffic-game-leaderboard__head span {
    display: block;

    color:
        rgba(255, 255, 255, .42);

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

    letter-spacing: .14em;
}


.traffic-game-leaderboard__head h3 {
    margin:
        3px 0 0;

    color: #fff;

    font-size: 20px;
}


.traffic-game-leaderboard__head svg {
    width: 24px;
    height: 24px;

    color: #fff;
}


.traffic-game-leaderboard__loading,
.traffic-game-leaderboard__empty {
    padding: 15px 0;

    color:
        rgba(255, 255, 255, .48);

    font-size: 11px;

    text-align: center;
}


.traffic-game-leaderboard__list {
    display: grid;

    gap: 3px;
}


.traffic-game-leaderboard__row {
    min-height: 37px;

    display: grid;

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

    align-items: center;

    gap: 10px;

    padding:
        0 10px;

    border-radius: 10px;

    color:
        rgba(255, 255, 255, .70);

    font-size: 12px;
}


.traffic-game-leaderboard__row:nth-child(odd) {
    background:
        rgba(255, 255, 255, .025);
}


.traffic-game-leaderboard__row.is-me {
    color: #fff;

    background:
        rgba(1, 52, 255, .20);

    box-shadow:
        inset 0 0 0 1px
        rgba(49, 92, 255, .30);
}


.traffic-game-leaderboard__rank {
    color:
        rgba(255, 255, 255, .42);

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


.traffic-game-leaderboard__name {
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
}


.traffic-game-leaderboard__score {
    color: #fff;

    font-size: 12px;

    font-variant-numeric:
        tabular-nums;
}


.traffic-game-leaderboard__me {
    display: grid;

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

    gap: 8px 18px;

    margin-top: 14px;

    padding: 14px;

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

    border-radius: 13px;

    background:
        rgba(1, 52, 255, .13);
}


.traffic-game-leaderboard__me-position span,
.traffic-game-leaderboard__me-score span {
    display: block;

    color:
        rgba(255, 255, 255, .45);

    font-size: 9px;
}


.traffic-game-leaderboard__me-position strong,
.traffic-game-leaderboard__me-score strong {
    display: block;

    margin-top: 3px;

    color: #fff;

    font-size: 21px;
}


.traffic-game-leaderboard__me-score {
    text-align: right;
}


.traffic-game-leaderboard__target {
    grid-column:
        1 / -1;

    padding-top: 9px;

    border-top:
        1px solid
        rgba(255, 255, 255, .08);

    color:
        rgba(255, 255, 255, .72);

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

    text-align: center;
}


/* =========================================================
   NAME
========================================================= */

.traffic-game-name-form {
    margin-top: 14px;
}


.traffic-game-name-form label {
    display: block;

    margin-bottom: 7px;

    color:
        rgba(255, 255, 255, .58);

    font-size: 10px;
}


.traffic-game-name-form__row {
    display: grid;

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

    gap: 7px;
}


.traffic-game-name-form input {
    min-width: 0;

    height: 43px;

    padding:
        0 13px;

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

    border-radius: 11px;

    outline: none;

    color: #fff;

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

    font: inherit;

    font-size: 12px;
}


.traffic-game-name-form input::placeholder {
    color:
        rgba(255, 255, 255, .28);
}


.traffic-game-name-form input:focus {
    border-color:
        rgba(49, 92, 255, .75);

    box-shadow:
        0 0 0 3px
        rgba(1, 52, 255, .12);
}


.traffic-game-name-form button {
    min-height: 43px;

    padding:
        0 16px;

    border: 0;

    border-radius: 11px;

    color: #0134ff;

    background: #fff;

    font: inherit;

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

    cursor: pointer;
}


.traffic-game-name-form button:disabled {
    opacity: .5;

    cursor: wait;
}


.traffic-game-name-form__message {
    min-height: 15px;

    margin-top: 6px;

    color:
        rgba(255, 255, 255, .48);

    font-size: 9px;
}


/* =========================================================
   GAME OVER ACTIONS
========================================================= */

.traffic-game-overlay__actions {
    display: flex;
    justify-content: center;

    gap: 8px;

    margin-top: 18px;
}


.traffic-game-overlay__actions
.traffic-game-button {
    margin-top: 0;
}


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

.traffic-game__mobile-controls {
    display: none;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 7px;

    margin-top: 10px;
}


.traffic-game__mobile-controls button {
    min-width: 0;

    min-height: 54px;

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

    gap: 3px;

    border:
        1px solid #e5e9f0;

    border-radius: 13px;

    color: #344054;

    background: #fff;

    touch-action: none;

    user-select: none;
}


.traffic-game__mobile-controls svg {
    width: 20px;
    height: 20px;
}


.traffic-game__mobile-controls span {
    font-size: 8px;
    font-weight: 700;
}


.traffic-game__control-gas {
    color: #fff !important;

    border-color:
        #0134ff !important;

    background:
        #0134ff !important;
}


/* =========================================================
   HELP
========================================================= */

.traffic-game-page__help {
    max-width: 980px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 8px;

    margin:
        18px auto 0;
}


.traffic-game-page__help > div {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding:
        8px 11px;

    border:
        1px solid #e8ebf1;

    border-radius: 999px;

    color: #667085;

    background: #fff;

    font-size: 10px;
}


.traffic-game-page__help svg {
    width: 14px;
    height: 14px;

    color: #0134ff;
}


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

@media (max-width: 767px) {

    .traffic-game-page {
        padding:
            22px 0 50px;
    }


    .traffic-game {
        width: 100%;
    }


    .traffic-game-page__head {
        margin-bottom: 16px;
    }


    .traffic-game__topbar {
        grid-template-columns:
            repeat(
                5,
                minmax(0, 1fr)
            );

        gap: 4px;
    }


    .traffic-game__stat {
        padding:
            8px 2px;

        border-radius: 9px;
    }


    .traffic-game__stat span {
        font-size: 6px;
    }


    .traffic-game__stat strong {
        font-size: 9px;
    }


    /*
     * JS на мобильном создаёт
     * отдельный мир 700×760.
     *
     * Поэтому здесь тоже 700/760.
     */

    .traffic-game__stage {
        width: 100%;

        aspect-ratio:
            700 / 760;

        border-radius: 16px;
    }


    .traffic-game__mobile-controls {
        display: grid;
    }


    .traffic-game-overlay {
        padding: 18px;
    }


    .traffic-game-overlay--gameover {
        padding:
            16px 10px 40px;
    }


    .traffic-game-overlay--gameover
    .traffic-game-overlay__content {
        width: 100%;

        padding:
            14px 4px 26px;
    }


    .traffic-game-gameover-car {
        top: 31%;
        right: auto;
        left: 50%;

        width: 290px;

        opacity: .08;

        transform:
            translate(
                -50%,
                -50%
            )
            rotate(8deg);
    }


    .traffic-game-overlay--gameover::before {
        top: 30%;
        right: auto;
        left: 50%;

        width: 420px;
        height: 420px;

        transform:
            translate(
                -50%,
                -50%
            );
    }


    .traffic-game-result {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }


    .traffic-game-catalog {
        padding:
            17px 13px;
    }


    .traffic-game-leaderboard {
        padding: 13px;
    }


    .traffic-game-name-form__row {
        grid-template-columns:
            1fr;
    }


    .traffic-game-name-form button {
        width: 100%;
    }


    .traffic-game-overlay__actions {
        display: grid;

        grid-template-columns:
            1fr 1fr;
    }


    .traffic-game-overlay__actions
    .traffic-game-button {
        width: 100%;

        padding:
            0 10px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (
    prefers-reduced-motion: reduce
) {

    .traffic-game-button,
    .traffic-game-catalog__cta {
        transition: none;
    }

}

/* Asset important notice */
.asset-warning {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
    padding: 16px;
    border: 1px solid #f59e0b;
    border-left: 4px solid #dc2626;
    border-radius: 12px;
    background: #fff7ed;
    color: #7c2d12;
}

.asset-warning > svg {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    color: #dc2626;
}

.asset-warning__content {
    min-width: 0;
}

.asset-warning__content strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.asset-warning__content p {
    margin: 0;
    white-space: pre-line;
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 1.55;
}


/* Catalog pagination and page-size selector */
.catalog-per-page {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
    white-space: nowrap;
}

.catalog-per-page select {
    height: 48px;
    min-width: 72px;
    padding: 0 32px 0 12px;
    border: 1px solid #e0e5ec;
    border-radius: 12px;
    outline: none;
    color: #242b37;
    background: #fff;
    font: inherit;
    font-weight: 650;
    cursor: pointer;
}

.catalog-per-page select:focus {
    border-color: rgb(15, 255, 35);
    box-shadow: 0 0 0 3px rgba(15, 255, 35, .12);
}

.catalog-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.catalog-pagination__summary {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.catalog-pagination__nav,
.catalog-pagination__pages {
    display: flex;
    align-items: center;
    gap: 8px;
}

.catalog-pagination__button,
.catalog-pagination__page,
.catalog-pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0;
    border: 1px solid #e0e5ec;
    border-radius: 10px;
    color: #242b37;
    background: #fff;
    font-size: 14px;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
}

.catalog-pagination__button {
    min-width: auto;
    padding: 0 14px;
}

.catalog-pagination__button:hover,
.catalog-pagination__page:hover {
    border-color: #242b37;
}

.catalog-pagination__page.is-current {
    border-color: #242b37;
    color: #fff;
    background: #242b37;
}

.catalog-pagination__button.is-disabled {
    opacity: .4;
    pointer-events: none;
}

.catalog-pagination__ellipsis {
    min-width: 24px;
    border-color: transparent;
    background: transparent;
}

@media (max-width: 720px) {
    .catalog-toolbar {
        align-items: stretch;
        flex-wrap: wrap;
    }

    .catalog-per-page {
        margin-left: auto;
    }

    .catalog-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .catalog-pagination__summary {
        text-align: center;
    }

    .catalog-pagination__nav {
        justify-content: space-between;
        width: 100%;
    }

    .catalog-pagination__button {
        padding: 0 10px;
    }
}

/* Compact catalog controls and quick collections */
.catalog-presets{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:0 0 18px;max-width:720px}
.catalog-preset{display:flex;align-items:center;gap:12px;min-width:0;padding:12px 14px;background:#fff;border:1px solid #e2e6ed;border-radius:16px;color:#242b37;text-decoration:none;transition:border-color .15s,background .15s}
.catalog-preset:hover{border-color:#8b92a1;background:#fafbfc}
.catalog-preset.is-active{border-color:#242b37;background:#f2f5f3;box-shadow:inset 0 0 0 1px #242b37}
.catalog-preset__image{display:flex;align-items:center;justify-content:center;width:52px;height:52px;flex:0 0 52px;border-radius:12px;background:#efebff;color:#8470b7;overflow:hidden}
.catalog-preset--damaged .catalog-preset__image{background:#fff0e2;color:#b67b46}
.catalog-preset__image svg{width:24px;height:24px}
.catalog-preset__image img{width:100%;height:100%;object-fit:cover}
.catalog-preset__text{display:flex;flex-direction:column;gap:5px;min-width:0}
.catalog-preset__text strong{font-size:16px;line-height:1.2;font-weight:700}
.catalog-preset__text>span{font-size:12px;line-height:1.4;color:#858b96}
.catalog-preset__toggle{margin-left:auto;font-size:20px;color:#9299a3;font-weight:400}
.catalog-preset.is-active .catalog-preset__toggle{color:#242b37}
.catalog-preset:focus-visible,.catalog-pagination a:focus-visible{outline:2px solid #242b37;outline-offset:3px}
.catalog-condition-filter{display:flex;flex-direction:column;gap:12px}
.catalog-condition-filter strong{font-size:14px}
.catalog-condition-filter select{width:100%;height:44px;padding:0 12px;border:1px solid #e0e5ec;border-radius:10px;background:#fff;color:#242b37;font:inherit;font-size:14px}
.catalog-pagination{justify-content:flex-start;gap:12px;margin-top:24px;padding-top:16px;border-top:1px solid #e9ecf0}
.catalog-pagination__summary{order:1;font-size:12px}
.catalog-pagination .catalog-per-page{order:2;margin-left:auto;font-size:12px;gap:6px}
.catalog-pagination .catalog-per-page select{height:32px;min-width:58px;padding:0 20px 0 9px;border-radius:8px;font-size:12px}
.catalog-pagination__nav{order:3;gap:6px}
.catalog-pagination__pages{gap:4px}
.catalog-pagination__button,.catalog-pagination__page,.catalog-pagination__ellipsis{height:32px;min-width:32px;border-radius:8px;font-size:12px}
.catalog-pagination__button{min-width:auto;padding:0 10px}
.catalog-pagination__ellipsis{min-width:16px}
@media(max-width:720px){
 .catalog-pagination{flex-direction:row;align-items:center;gap:12px}
 .catalog-pagination__nav{width:auto;margin-left:auto;justify-content:center}
 .catalog-pagination__summary{text-align:left}
}
@media(max-width:540px){
 .catalog-presets{gap:8px}
 .catalog-preset{padding:10px;gap:8px;border-radius:12px;flex-wrap:wrap;position:relative}
 .catalog-preset__image{width:40px;height:40px;flex-basis:40px;border-radius:10px}
 .catalog-preset__text{flex:1 0 100%;gap:4px}
 .catalog-preset__text strong{font-size:15px}
 .catalog-preset__text>span{font-size:11px}
 .catalog-preset__toggle{position:absolute;right:12px;top:16px}
 .catalog-pagination__nav{width:100%;margin-left:0}
}
/* Unified spacing for main catalog filters */

.catalog-filter-panel__body > .catalog-filter-group {
    margin: 0;
}

.catalog-filter-panel__body > .catalog-filter-group + .catalog-filter-group {
    margin-top: 22px;
}

/* Condition uses the same heading rhythm as other groups */

.catalog-condition-filter {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.catalog-condition-filter > label {
    margin: 0;
    color: #343c49;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

/* Year / price two-column controls */

.catalog-price-range {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: end;
    gap: 10px;
}

.catalog-price-range label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.catalog-price-range label > span {
    color: #969eaa;
    font-size: 10px;
    font-weight: 500;
}

.catalog-price-range__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    color: #a0a7b2;
}

/*
 * Старое правило состояния больше не должно
 * переопределять общий catalog-filter-input.
 */
.catalog-condition-filter select.catalog-filter-input {
    height: 44px;
    padding: 0 12px;
    font-size: 12px;
}
/* =========================================================
   CATALOG INDEX
========================================================= */

.catalog-index {
    min-height: 700px;
    padding: 38px 0 80px;
    background: #f7f8fb;
}

.catalog-index__head {
    max-width: 760px;
    margin: 32px 0 38px;
}

.catalog-index__eyebrow {
    display: block;
    margin-bottom: 8px;

    color: #0134ff;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
}

.catalog-index__head h1 {
    margin: 0 0 12px;

    color: #111827;

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

    line-height: 1.05;
    letter-spacing: -.035em;
}

.catalog-index__head p {
    max-width: 650px;
    margin: 0;

    color: #667085;

    font-size: 17px;
    line-height: 1.6;
}


/* GRID */

.catalog-index__grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}


/* CARD */

.catalog-index-card {
    position: relative;
    overflow: hidden;

    min-width: 0;

    background: #fff;

    border: 1px solid #e8ebf0;
    border-radius: 24px;

    box-shadow:
        0 8px 30px
        rgba(15, 23, 42, .045);

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

.catalog-index-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(1, 52, 255, .18);

    box-shadow:
        0 20px 50px
        rgba(15, 23, 42, .09);
}


/* MAIN AREA */

.catalog-index-card__main {
    position: relative;
    display: block;

    min-height: 210px;

    padding: 26px 28px 30px;

    color: inherit;
    text-decoration: none;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(1, 52, 255, .10),
            transparent 42%
        );
}



.catalog-index-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin-bottom: 38px;
}

.catalog-index-card__number {
    color: #0134ff;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
}

.catalog-index-card__count {
    padding: 7px 10px;

    border-radius: 999px;

    background: #f1f4f9;

    color: #64748b;

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


.catalog-index-card h2 {
    position: relative;
    z-index: 1;

    max-width: 470px;

    margin: 0 0 24px;

    color: #111827;

    font-size: clamp(
        23px,
        3vw,
        31px
    );

    line-height: 1.12;
    letter-spacing: -.025em;
}


.catalog-index-card__go {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #0134ff;

    font-size: 14px;
    font-weight: 700;
}

.catalog-index-card__go > span {
    font-size: 19px;

    transition:
        transform .16s ease;
}

.catalog-index-card__main:hover
.catalog-index-card__go > span {
    transform: translateX(4px);
}


/* CHILD CATEGORIES */

.catalog-index-card__children {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 1px;

    padding: 1px;

    background: #edf0f4;

    border-top:
        1px solid #edf0f4;
}

.catalog-index-card__children a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    min-width: 0;

    padding: 13px 16px;

    background: #fff;

    color: #334155;

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

    text-decoration: none;

    transition:
        background .15s ease,
        color .15s ease;
}

.catalog-index-card__children a:hover {
    background: #f4f7ff;
    color: #0134ff;
}

.catalog-index-card__children a span {
    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.catalog-index-card__children small {
    flex: 0 0 auto;

    color: #94a3b8;

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


/* EMPTY CHILDREN */

.catalog-index-card__empty {
    padding: 16px 28px;

    border-top:
        1px solid #edf0f4;

    color: #94a3b8;

    font-size: 13px;
}


/* ACCENTS */

.catalog-index-card--cars-commercial
.catalog-index-card__main {
    background:
        radial-gradient(
            circle at 92% 0%,
            rgba(1, 52, 255, .12),
            transparent 44%
        );
}

.catalog-index-card--trucks
.catalog-index-card__main {
    background:
        radial-gradient(
            circle at 92% 0%,
            rgba(20, 86, 255, .09),
            transparent 44%
        );
}

.catalog-index-card--special-equipment
.catalog-index-card__main {
    background:
        radial-gradient(
            circle at 92% 0%,
            rgba(1, 52, 255, .08),
            transparent 44%
        );
}

.catalog-index-card--equipment
.catalog-index-card__main {
    background:
        radial-gradient(
            circle at 92% 0%,
            rgba(15, 23, 42, .065),
            transparent 44%
        );
}


/* MOBILE */

@media (max-width: 820px) {

    .catalog-index {
        padding-top: 24px;
    }

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

    .catalog-index-card__main {
        min-height: 180px;

        padding: 22px;
    }

    .catalog-index-card__top {
        margin-bottom: 28px;
    }

}


@media (max-width: 520px) {

    .catalog-index__head {
        margin:
            24px 0 26px;
    }

    .catalog-index__head p {
        font-size: 15px;
    }

    .catalog-index-card {
        border-radius: 18px;
    }

    .catalog-index-card__children {
        grid-template-columns: 1fr;
    }

    .catalog-index-card__main {
        padding: 20px;

        min-height: 165px;
    }

    .catalog-index-card__empty {
        padding:
            14px 20px;
    }

}
/* =========================================================
   CATALOG SUBCATEGORIES
========================================================= */

.catalog-subcategories {
    margin: 22px 0 18px;
}

.catalog-subcategories__head {
    margin-bottom: 10px;
}

.catalog-subcategories__head span {
    color: #64748b;

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

    letter-spacing: .06em;
    text-transform: uppercase;
}

.catalog-subcategories__list {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

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

    gap: 8px;

    min-height: 38px;

    padding: 8px 12px;

    border: 1px solid #e2e8f0;
    border-radius: 999px;

    background: #fff;

    color: #334155;

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

    text-decoration: none;

    transition:
        border-color .15s ease,
        background .15s ease,
        color .15s ease,
        transform .15s ease;
}

.catalog-subcategory:hover {
    border-color:
        rgba(1, 52, 255, .28);

    background: #f4f7ff;
    color: #0134ff;

    transform: translateY(-1px);
}

.catalog-subcategory__name {
    white-space: nowrap;
}

.catalog-subcategory__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 22px;
    height: 22px;

    padding: 0 6px;

    border-radius: 999px;

    background: #f1f5f9;

    color: #64748b;

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

.catalog-subcategory:hover
.catalog-subcategory__count {
    background:
        rgba(1, 52, 255, .08);

    color: #0134ff;
}

@media (max-width: 640px) {

    .catalog-subcategories {
        margin:
            18px 0 14px;
    }

    .catalog-subcategories__list {
        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 4px;

        scrollbar-width: none;
    }

    .catalog-subcategories__list::-webkit-scrollbar {
        display: none;
    }

    .catalog-subcategory {
        flex: 0 0 auto;
    }

}
.catalog-subcategory.is-active {
    border-color: #0134ff;
    background: #0134ff;
    color: #fff;
}

.catalog-subcategory.is-active
.catalog-subcategory__count {
    background:
        rgba(255, 255, 255, .18);

    color: #fff;
}
/* =========================================================
   FOOTER LEGAL
========================================================= */

.footer-legal {
/*    margin-top: 28px; */


    color: #94a3b8;
}

.footer-legal__copyright {
    margin-bottom: 10px;

    font-size: 12px;
    line-height: 1.5;

    color: #cbd5e1;
}

.footer-legal__disclaimer {
    max-width: 1180px;

    font-size: 10px;
    line-height: 1.55;

    color: #94a3b8;
}

.footer-legal__disclaimer a {
    color: inherit;
    text-decoration: underline;

    text-underline-offset: 2px;
}

.footer-legal__links {
    display: flex;
    flex-wrap: wrap;

    gap: 10px 18px;

    margin-top: 14px;
}

.footer-legal__link {
    padding: 0;

    border: 0;
    background: transparent;

    color: #cbd5e1;

    font: inherit;
    font-size: 11px;

    text-decoration: underline;
    text-underline-offset: 3px;

    cursor: pointer;
}

.footer-legal__link:hover {
    color: #94a3b8;
}


/* =========================================================
   LEGAL MODALS
========================================================= */

.legal-modal {
    position: fixed;
    inset: 0;

    z-index: 20000;

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

    padding: 24px;
}

.legal-modal.is-open {
    display: flex;
}

.legal-modal__backdrop {
    position: absolute;
    inset: 0;

    background: rgba(15, 23, 42, .68);

    backdrop-filter: blur(4px);
}

.legal-modal__dialog {
    position: relative;
    z-index: 1;

    width: min(100%, 760px);
    max-height: calc(100vh - 48px);

    overflow-y: auto;

    padding: 26px;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 30px 90px
        rgba(15, 23, 42, .28);
}

.legal-modal__close {
    position: absolute;

    top: 14px;
    right: 14px;

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

    width: 34px;
    height: 34px;

    border: 0;
    border-radius: 50%;

    background: #f1f5f9;

    color: #475569;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;
}

.legal-modal__head {
    padding-right: 42px;
    margin-bottom: 18px;
}

.legal-modal__head > span {
    display: block;

    margin-bottom: 5px;

    color: #0134ff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;
}

.legal-modal__head h2 {
    margin: 0;

    color: #0f172a;

    font-size: 22px;
    line-height: 1.2;
}

.legal-modal__content {
    color: #475569;

    font-size: 12px;
    line-height: 1.65;
}

.legal-modal__content p {
    margin:
        0 0 12px;
}

body.legal-modal-open {
    overflow: hidden;
}


@media (max-width: 640px) {

    .footer-legal__disclaimer {
        font-size: 9px;
    }

    .legal-modal {
        padding: 0;
        align-items: flex-end;
    }

    .legal-modal__dialog {
        width: 100%;
        max-height: 92vh;

        padding: 22px 18px;

        border-radius:
            20px 20px 0 0;
    }

}
.asset-lead-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    font-size: 12px;
    line-height: 1.45;
    color: #64748b;
}

.asset-lead-consent input[type="checkbox"] {
    flex: 0 0 auto;

    width: 16px;
    height: 16px;

    margin-top: 1px;

    accent-color: #0134ff;
}

.asset-lead-consent__link {
    display: inline;

    margin: 0;
    padding: 0;

    border: 0;
    background: transparent;

    color: #0134ff;

    font: inherit;
    font-weight: 500;

    text-decoration: underline;
    text-underline-offset: 2px;

    cursor: pointer;
}

.asset-lead-consent__link:hover {
    text-decoration: none;
}
.catalog-filter-fields--primary,
.catalog-system-filter-row {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 18px 22px;

    margin-bottom: 22px;
}

.catalog-filter-fields--primary
.catalog-filter-group,
.catalog-system-filter-row
.catalog-filter-group {
    min-width: 0;
    margin: 0;
}

.catalog-system-filter-row
.catalog-filter-pills {
    min-height: 54px;
}

@media (max-width: 1200px) {
    .catalog-filter-fields--primary,
    .catalog-system-filter-row {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .catalog-filter-fields--primary,
    .catalog-system-filter-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
.asset-created-date {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.4;
    color: #b0b5bd;

}