@import url('https://fonts.bunny.net/css?family=instrument-sans:400,500,600,700,800');
h1 {
  font-weight: 500;
}
.section-title{
    font-weight: 500;
}
:root {
    --bg: #f6f3f5;
    --surface: #ffffff;
    --surface-soft: #fcf8f9;
    --text: #1f1720;
    --muted: #786b75;
    --line: #e8dde3;
    --accent: #7c1029;
    --accent-strong: #5f0b1f;
    --accent-soft: #f6e7ec;
    --shadow: 0 18px 44px rgba(72, 20, 34, 0.08);
    --site-header-height: 56px;
    --site-header-gap: 16px;
    --site-header-offset: calc(var(--site-header-height) + var(--site-header-gap));
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.site-body {
    font-family: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
    background: #f5f5f5;
    color: var(--text);
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(1360px, calc(100% - 32px)); margin: 0 auto; }
.page-shell { padding: var(--site-header-offset) 0 56px; }
.bz-main-content { max-width: 100%; padding: 16px 20px 0; margin: 0 auto; }

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.header-row {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo-text {
    font-size: 26px;
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.header-actions-desktop {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}
.header-link:hover { color: var(--accent); }
.header-link i { font-size: 18px; }

.new-elan-btn {
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
}

.hamburger-menu {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--accent);
    border-radius: 8px;
}
.hamburger-menu:hover { background: #fdf2f5; }

.mobile-header, .side-menu { display: none; }
.header-icon-action {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), #971939);
    color: #fff;
}
.header-icon-action svg { width: 22px; height: 22px; }
.header-actions-mobile { display: flex; align-items: center; gap: 8px; }
.header-icon-btn{
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-size: 18px;
}

.filter-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
}

.filter-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}
.filter-head--compact {
    align-items: center;
    margin-bottom: 10px;
}
.filter-head-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.filter-kicker { margin: 0 0 6px; font-size: 12px; color: #6b7280; font-weight: 500; }
.filter-head h1 { margin: 0; font-size: 20px; line-height: 1.1; letter-spacing: -0.03em; font-weight: 500; }
.filter-head--compact .filter-kicker {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.filter-head--compact h1 {
    margin-top: 2px;
    font-size: 16px;
    letter-spacing: -0.01em;
}
.filter-reset { color: var(--muted); font-weight: 500; }
.mobile-filter-close {
    display: none;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: #f8fafc;
    color: #111827;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
}
.mobile-filter-backdrop {
    display: none;
}

.mobile-filter-backdrop[hidden] {
    display: none !important;
}

.car-filter-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.car-filter-grid--minimal {
    gap: 8px;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.filter-row-primary {
    grid-template-columns: 1.1fr 1.1fr .8fr .8fr 1fr 1fr 1fr 1.2fr;
}

.filter-row-core {
    grid-template-columns: 1.2fr 1.2fr .8fr .8fr 1fr 1fr;
}

.filter-row-minimal {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
}

.car-filter-grid input,
.car-filter-grid select,
.filter-chip-static {
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    padding: 0 14px;
    outline: none;
}

.chip-toggle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}
.chip-toggle label { position: relative; }
.chip-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.chip-toggle span {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-weight: 500;
    border-right: 1px solid var(--line);
    font-size: 14px;
}
.chip-toggle label:last-child span { border-right: 0; }
.chip-toggle input:checked + span { background: #c4172c; color: #fff; }
.chip-toggle-compact { min-width: 0; }

.switch-chip { position: relative; display: block; }
.switch-chip input { position: absolute; inset: 0; opacity: 0; }
.switch-chip span,
.filter-chip-static {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}
.switch-chip span {
    min-height: 48px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 14px;
    padding: 0 14px;
    font-size: 14px;
    cursor: pointer;
    transition: border-color .16s ease, background-color .16s ease, color .16s ease;
}
.switch-chip input:checked + span {
    background: linear-gradient(135deg, rgba(196, 23, 44, 0.14), rgba(124, 16, 41, 0.08));
    border-color: rgba(124, 16, 41, 0.38);
    color: var(--accent);
}

.equipment-block { grid-column: 1 / -1; padding-top: 4px; }
.equipment-title { font-size: 16px; font-weight: 500; margin-bottom: 10px; }
.equipment-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.equipment-chip { position: relative; display: inline-block; }
.equipment-chip input { position: absolute; opacity: 0; }
.equipment-chip span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: border-color .16s ease, background-color .16s ease, color .16s ease;
}
.equipment-chip input:checked + span {
    border-color: rgba(124, 16, 41, 0.4);
    background: linear-gradient(135deg, rgba(196, 23, 44, 0.14), rgba(124, 16, 41, 0.08));
    color: var(--accent);
}

.filter-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 4px;
}
.today-count { color: var(--muted); font-weight: 500; }
.today-count strong { color: var(--accent); font-weight: 500; }
.filter-actions-right{ display:flex; align-items:center; gap:10px; }
.advanced-filter-btn{
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid #ead9df;
    background: #fff;
    color: var(--accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.filter-submit {
    min-height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #971939);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.advanced-filter{ display:block; }
.advanced-filter[hidden]{ display:none !important; }

.home-sections {
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.home-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}
.section-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.section-subtitle {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}
.view-all {
    color: var(--accent);
    font-size: 15px;
    font-weight: 500;
}
.listing-meta { color: var(--muted); font-weight: 500; font-size: 18px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
}

.product-grid--showcase {
    /* display: flex; */
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 2px 10px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}

.product-grid--showcase::-webkit-scrollbar {
    height: 8px;
}

.product-grid--showcase::-webkit-scrollbar-thumb {
    background: #d5c9cf;
    border-radius: 999px;
}

.product-grid--showcase > .elan-card {
    flex: 0 0 min(280px, calc(100vw - 64px));
    scroll-snap-align: start;
}

.product-grid--showcase > .empty-state {
    min-width: 280px;
}
.elan-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: visible;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease;
}
.elan-card:hover {
    transform: translateY(-2px);
    z-index: 12;
}
.elan-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}
.elan-image-container {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f3f4f6;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}
.elan-top-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 6;
}
.elan-favorite-btn {
    width: 28px;
    height: 28px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #737373;
    padding: 0;
    cursor: pointer;
    transition: color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}
.elan-favorite-btn i {
    font-size: 24px;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.28);
}
.elan-favorite-btn:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}
.elan-favorite-btn.is-active {
    background: transparent;
    color: #ef4444;
}
.pagination-wrap {
    margin-top: 24px;
}

.site-pagination-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.site-pagination-nav__meta {
    color: var(--muted);
    font-size: 16px;
    font-weight: 500;
}

.site-pagination-nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-pagination-nav__link,
.site-pagination-nav__dots {
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.site-pagination-nav__link {
    background: #fff;
    border: 1px solid #dde2ea;
    color: #1f2430;
}

.site-pagination-nav__link:hover {
    border-color: #cfd6e2;
    background: #f9fafb;
}

.site-pagination-nav__link.is-active {
    background: linear-gradient(135deg, #d71027, #b50b20);
    border-color: transparent;
    color: #fff;
}

.site-pagination-nav__link.is-disabled {
    background: #f8fafc;
    border-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

.site-pagination-nav__dots {
    color: var(--muted);
}

.search-results-page .hero-filter-wrap {
    padding-top: 10px;
}

.home-sections--results {
    padding-top: 20px;
}

.home-section--results {
    gap: 18px;
}

.section-header--results {
    align-items: flex-start;
    padding: 4px 2px;
}

.search-results-page .home-page .filter-card--home,
.search-results-page .filter-card--home {
}
.favorites-page--empty {
    min-height: calc(100vh - 320px);
}
.favorites-section--empty {
    flex: 1;
}
.favorites-section--empty .product-grid {
    min-height: 100%;
    grid-template-columns: minmax(0, 1fr);
    place-items: center;
}
.favorites-empty-state {
    width: min(100%, 560px);
    min-height: 320px;
    margin: 24px auto 48px;
    padding: 36px 28px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    background:
        radial-gradient(circle at top, rgba(155, 28, 58, 0.08), transparent 48%),
        linear-gradient(180deg, #ffffff, #fbfbfc);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.favorites-empty-state__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(155, 28, 58, 0.1);
    color: var(--accent);
    font-size: 30px;
}
.favorites-empty-state h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #111827;
}
.favorites-empty-state p {
    max-width: 420px;
    margin: 0;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}
.favorites-empty-state__action {
    margin-top: 22px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #971939);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}
.favorites-empty-state__action:hover {
    color: #fff;
}
.elan-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.elan-flags {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 5;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.elan-flag {
    min-width: 26px;
    min-height: 26px;
    padding: 4px 6px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(6px);
}
.elan-flag-vip {
    width: 28px;
    color: #be123c;
}
.elan-flag-premium {
    width: 28px;
    color: #c2410c;
}
.elan-flag-urgent {
    width: 28px;
    background: linear-gradient(135deg, #ff7a18, #ff3d54);
}
.elan-flag-urgent i {
    color: #fff7ed;
    font-size: 16px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(124, 29, 24, 0.18));
}
.elan-flag svg {
    width: 18px;
    height: 18px;
    display: block;
}
.elan-store-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 5;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}
.elan-content {
    padding: 14px 14px 16px;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}
.elan-price-wrap { display: flex; flex-direction: column; gap: 6px; }
.elan-price-row-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.elan-price {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 500;
    color: #111827;
    letter-spacing: -0.03em;
}
.elan-service-badges {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}
.elan-icon-badge {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fdf2f5;
    color: var(--accent);
    border: 1px solid #ead9df;
    z-index: 1;
}

.elan-icon-badge--credit {
    background: linear-gradient(135deg, #ecfeff, #dcfce7);
    color: #0f766e;
    border-color: #a7f3d0;
}

.elan-icon-badge--barter {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    color: #c2410c;
    border-color: #fdba74;
}
.elan-icon-badge i {
    font-size: 14px;
    line-height: 1;
}
.elan-icon-badge::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%) translateY(4px);
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(17, 24, 39, 0.96);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease;
}
.elan-icon-badge:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.elan-icon-badge:hover {
    z-index: 8;
}
.elan-title {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #111827;
    line-height: 1.3;
}
.elan-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}
.elan-meta-line {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
}
.elan-equipment {
    margin-top: 10px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}
.elan-meta-bottom {
    margin-top: auto;
    padding: 0 12px 12px;
}
.elan-publisher {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.elan-publisher-avatar {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fdf2f5;
    flex: 0 0 auto;
}
.elan-publisher-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.elan-publisher-avatar__fallback {
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
}
.elan-publisher-text {
    min-width: 0;
    flex: 1;
}
.elan-publisher-name {
    font-size: 13px;
    font-weight: 500;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.elan-publisher-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 3px;
}
.elan-publisher-city,
.elan-date {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}
.elan-publisher:hover .elan-publisher-name {
    color: var(--accent);
}

.side-menu {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none;
}
.side-menu.active { display: block; }
.side-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.32);
}
.side-menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(86vw, 320px);
    background: #fff;
    padding: 18px;
}
.side-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.side-menu-title { font-size: 20px; font-weight: 500; }
.side-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
}
.side-menu-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.side-menu-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    color: #374151;
    font-weight: 500;
}

.load-more-state {
    min-height: 84px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 0 8px;
}
.load-more-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(124, 16, 41, 0.16);
    border-top-color: var(--accent);
    border-radius: 999px;
    animation: spin 0.8s linear infinite;
}
.load-more-text,
.load-more-end {
    color: var(--muted);
    font-weight: 500;
}

.av-footer{
    background:#1f2937;
    color:#e5e7eb;
    margin-top:60px;
}
.avf-wrap{
    margin:0 auto;
    padding:34px 18px 18px;
}
.avf-grid{
    display:grid;
    grid-template-columns:1fr 1.3fr 1.3fr 1fr;
    gap:26px;
    align-items:start;
}
.avf-logo{
    font-weight: 500;
    font-size:22px;
    color:#fff;
    letter-spacing:.2px;
    margin-top:2px;
}
.avf-title{
    font-weight: 500;
    font-size:20px;
    color:#ffffff;
    line-height:1.4;
    margin:6px 0 12px;
}
.avf-link{
    display:block;
    color:#9ca3af;
    font-weight: 500;
    font-size:16px;
    line-height:1.8;
}
.avf-link:hover{ color:#e5e7eb; }
.avf-contact{ margin-top:4px; }
.avf-contact-row{
    display:flex;
    align-items:center;
    gap:10px;
    color:#9ca3af;
    font-weight: 500;
    font-size:16px;
    line-height:1.9;
}
.avf-contact-row i{ font-size:18px; color:#9ca3af; }
.avf-socials{
    margin-top:14px;
    display:grid;
    grid-template-columns:repeat(3, 44px);
    gap:14px;
}
.avf-soc{
    width:44px;
    height:44px;
    border-radius:12px;
    background:#374151;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
}
.avf-soc:hover{ filter:brightness(1.06); }
.avf-lang .avf-title{ text-align:left; }
.avf-lang{ justify-self:start; }
.avf-lang-row{
    display:flex;
    align-items:center;
    gap:12px;
    color:#9ca3af;
    font-weight: 500;
    font-size:15px;
    line-height:1.9;
}
.avf-lang-row:hover{ color:#e5e7eb; }
.avf-flag{
    width:28px;
    height:19px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 28px;
    border-radius:4px;
    overflow:hidden;
    background:transparent;
}
.avf-flag svg{
    width:100%;
    height:100%;
    display:block;
}
.avf-note{
    margin-top:18px;
    color:#9ca3af;
    font-weight: 500;
    font-size:16px;
    line-height:1.6;
}
.avf-line{
    height:1px;
    background:#374151;
    margin:16px 0 14px;
}
.avf-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    flex-wrap:wrap;
}
.avf-copy{
    color:#9ca3af;
    font-weight: 500;
    font-size:16px;
}
.avf-payments{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}
.avf-payment-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:32px;
    padding:0 12px;
    border-radius:999px;
    background:#374151;
    color:#e5e7eb;
    font-size:12px;
    font-weight: 500;
    letter-spacing:.02em;
}

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

@media (max-width: 1100px) {
    .desktop-header { display: none; }
    .mobile-header { display: block; }
    :root {
        --site-header-height: 56px;
        --site-header-gap: 16px;
        --site-header-offset: calc(var(--site-header-height) + var(--site-header-gap));
    }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .filter-row,
    .filter-row-primary,
    .filter-row-core { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .filter-row-minimal { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .container { width: min(100% - 20px, 100%); }
    .bz-main-content { padding: 12px 0 0; }
    .hero-filter-wrap { padding-top: 0; }
    .mobile-filter-backdrop {
        position: fixed;
        inset: 0;
        z-index: 79;
        background: rgba(15, 23, 42, 0.38);
    }
    .filter-card {
        display: none;
        position: fixed;
        left: 10px;
        right: 10px;
        top: 70px;
        bottom: 12px;
        z-index: 80;
        overflow: auto;
        padding: 14px;
        border-radius: 16px;
    }
    .filter-card.is-mobile-open { display: block; }
    .filter-head, .filter-actions, .section-header { flex-direction: column; align-items: stretch; }
    .filter-head-actions { justify-content: space-between; }
    .filter-head h1, .section-title { font-size: 20px; }
    .filter-head--compact h1 { font-size: 15px; }
    .mobile-filter-close { display: inline-flex; }
    .filter-row,
    .filter-row-primary,
    .filter-row-core { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .logo-text { font-size: 24px; }
    .elan-price { font-size: 18px; }
    .elan-title { font-size: 15px; }
    .elan-content { padding: 10px 10px 12px; }
    .elan-favorite-btn {
        width: 30px;
        height: 30px;
    }
    .elan-store-badge {
        min-height: 24px;
        padding: 0 8px;
        font-size: 11px;
    }
    .elan-publisher-avatar { width: 30px; height: 30px; font-size: 12px; }
    .elan-publisher-name { font-size: 12px; }
    .elan-publisher-city,
    .elan-date,
    .elan-equipment,
    .elan-meta-line { font-size: 11px; }
    .elan-icon-badge {
        width: 28px;
        height: 28px;
    }
    .elan-icon-badge::after {
        display: none;
    }
    .filter-actions-right { flex-direction: column; align-items: stretch; }
    .advanced-filter-btn, .filter-submit { width: 100%; }
    .favorites-page--empty {
        min-height: calc(100vh - 260px);
    }
    .favorites-empty-state {
        min-height: 260px;
        margin: 12px auto 32px;
        padding: 28px 18px;
        border-radius: 20px;
    }
    .favorites-empty-state h2 {
        font-size: 22px;
    }
    .favorites-empty-state p {
        font-size: 14px;
    }
    .av-footer{ padding-bottom:100px; }
    .avf-grid{
        grid-template-columns:1fr 1fr;
        gap:22px;
    }
    .avf-brand{ grid-column:1 / -1; }
    .avf-logo{ font-size:26px; }
}

@media (max-width: 420px) {
    .avf-grid{ grid-template-columns:1fr; }
    .avf-socials{ grid-template-columns:repeat(3, 48px); }
    .avf-lang{
        width:100%;
        justify-self:start;
    }
    .avf-lang .avf-title{ text-align:left; }
    .avf-lang-row{ justify-content:flex-start; }
}

.static-page {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.static-page__hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #f7ecdf, #fff8ef);
    border: 1px solid #ead7c4;
    border-radius: 30px;
    padding: 32px 28px;
}

.static-page__hero::before,
.static-page__hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(160, 111, 54, 0.12);
    pointer-events: none;
}

.static-page__hero::before {
    width: 160px;
    height: 160px;
    top: -70px;
    right: -40px;
}

.static-page__hero::after {
    width: 120px;
    height: 120px;
    bottom: -60px;
    left: -30px;
}

.static-page__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    color: #9a5f28;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.static-page__hero h1 {
    margin: 18px 0 10px;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.03em;
}

.static-page__hero p {
    margin: 0;
    color: #7c5f43;
    font-size: 16px;
}
  .filter-submit--shared {
        display: none;
    }
.static-page__layout {
    display: grid;
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
    gap: 24px;
}

.static-page__nav,
.static-page__content {
    background: #fff;
    border: 1px solid #eadfce;
    border-radius: 30px;
    padding: 20px;
}

.static-page__nav h3 {
    margin: 0 0 14px;
    font-size: 22px;
    letter-spacing: -0.02em;
}

.static-page__nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.static-page__nav-item {
    min-height: 50px;
    padding: 0 14px;
    border-radius: 16px;
    background: #f8f5f0;
    color: #4a3622;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 500;
}

.static-page__nav-item.is-active {
    background: #b06f33;
    color: #fff;
}

.static-page__content {
    padding: 22px;
}

.static-page__content-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.static-page__content-head h2 {
    margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.static-page__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c27835;
    background: #f8ecdf;
    font-size: 24px;
}

.static-page__note {
    margin: 0 0 16px;
    color: #8a6540;
    border-bottom: 1px solid #f0e4d3;
    padding-bottom: 12px;
    font-size: 14px;
}

.static-page__html {
    color: #432f1e;
    font-size: 18px;
    line-height: 1.65;
}

.static-page__html h1,
.static-page__html h2,
.static-page__html h3,
.static-page__html h4 {
    margin: 0 0 12px;
    font-size: 1.1em;
}

.static-page__html p {
    margin: 0 0 12px;
}

@media (max-width: 991px) {
    .static-page__hero {
        border-radius: 24px;
        padding: 24px 18px;
    }

    .static-page__hero p {
        font-size: 16px;
    }

    .static-page__layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .static-page__nav,
    .static-page__content {
        border-radius: 20px;
    }

    .static-page__nav h3 {
        font-size: 24px;
    }

    .static-page__html {
        font-size: 18px;
    }
}

.faq-page {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.faq-hero {
    position: relative;
    overflow: hidden;
    padding: 42px 30px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, #f8f2ff 0%, #f7f6ff 48%, #eef1ff 100%);
    border: 1px solid #e8e1ff;
}

.faq-hero::before,
.faq-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(129, 106, 255, 0.12);
}

.faq-hero::before {
    width: 170px;
    height: 170px;
    left: -52px;
    top: -44px;
}

.faq-hero::after {
    width: 120px;
    height: 120px;
    right: 56px;
    top: 18px;
}

.faq-hero__badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #6f57da;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq-hero h1 {
    position: relative;
    z-index: 1;
    margin: 18px 0 10px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #211d59;
    text-align: center;
}

.faq-hero p {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: #6866a6;
    text-align: center;
}

.faq-search {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 780px;
    min-height: 58px;
    margin: 28px auto 0;
    padding: 0 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #dbd4ff;
}

.faq-search i {
    color: #7f65ee;
    font-size: 20px;
}

.faq-search input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    outline: none;
    color: #2b2667;
    font-size: 17px;
}

.faq-search input::placeholder {
    color: #9a98c4;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(270px, 320px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.faq-nav-card,
.faq-content-card {
    background: #fff;
    border: 1px solid #e9e5f7;
    border-radius: 30px;
}

.faq-nav-card {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-nav-item {
    width: 100%;
    padding: 14px;
    border: 0;
    border-radius: 18px;
    background: #f7f5ff;
    color: #342f74;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    text-align: left;
    cursor: pointer;
}

.faq-nav-item.is-active {
    background: linear-gradient(135deg, #6f57da, #8b70ff);
    color: #fff;
}

.faq-nav-item__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    color: #735ee1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.faq-nav-item.is-active .faq-nav-item__icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.faq-nav-item__copy strong,
.faq-nav-item__copy small {
    display: block;
}

.faq-nav-item__copy strong {
    font-size: 14px;
}

.faq-nav-item__copy small {
    margin-top: 4px;
    color: rgba(52, 47, 116, 0.68);
    font-size: 13px;
    line-height: 1.45;
}

.faq-nav-item.is-active .faq-nav-item__copy small {
    color: rgba(255, 255, 255, 0.82);
}

.faq-nav-item__count {
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(111, 87, 218, 0.12);
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
}

.faq-nav-item.is-active .faq-nav-item__count {
    background: rgba(255, 255, 255, 0.18);
}

.faq-content-card {
    padding: 18px;
}

.faq-section {
    display: none;
}

.faq-section.is-active {
    display: block;
}

.faq-section__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.faq-section__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #f3efff;
    color: #755de3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex: 0 0 46px;
}

.faq-section__head h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #231d61;
  font-weight: 500;
}

.faq-section__head p {
    margin: 8px 0 0;
    color: #6f6a9e;
    font-size: 15px;
    line-height: 1.55;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #dfd8ff;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}

.faq-item__toggle {
    width: 100%;
    min-height: 70px;
    padding: 0 18px;
    border: 0;
    background: transparent;
    color: #241f64;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.faq-item__toggle i {
    color: #7b67e8;
    font-size: 18px;
    transition: transform .18s ease;
}

.faq-item__body {
    display: none;
    padding: 0 18px 18px;
}

.faq-item.is-open .faq-item__body {
    display: block;
}

.faq-item.is-open .faq-item__toggle i {
    transform: rotate(180deg);
}

.faq-item__answer {
    color: #5c5887;
    font-size: 14px;
    line-height: 1.65;
}

.faq-extra-note {
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f8f6ff;
    color: #5c5887;
    font-size: 14px;
    line-height: 1.65;
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
}

.faq-contact-card {
    min-height: 148px;
    padding: 24px 18px;
    border-radius: 20px;
    border: 1px solid #ece6ff;
    background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease;
}

.faq-contact-card:hover {
    transform: translateY(-2px);
    border-color: #d8cdfd;
}

.faq-contact-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #f0eaff;
    color: #7867f5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.faq-contact-card strong {
    color: #1f2454;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
}

.faq-contact-card span {
    color: #7a7faa;
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .faq-hero {
        padding: 28px 18px 24px;
        border-radius: 24px;
    }

    .faq-hero h1,
    .faq-hero p {
        text-align: left;
    }

    .faq-search {
        min-height: 58px;
        margin-top: 20px;
        border-radius: 18px;
    }

    .faq-search input {
        font-size: 15px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-nav-card,
    .faq-content-card {
        border-radius: 22px;
    }

    .faq-item__toggle {
        min-height: 62px;
        padding: 0 16px;
        font-size: 14px;
    }

    .faq-item__body {
        padding: 0 16px 16px;
    }

    .faq-contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-contact-card {
        min-height: 152px;
        padding: 28px 18px;
        border-radius: 20px;
    }
}

.home-page .hero-filter-wrap {
    padding-top: 0;
}

.home-page .page-shell {
    padding-top: var(--site-header-offset);
}

.home-page .home-hero {
    position: relative;
    min-height: 280px;
    border-radius: 0 0 28px 28px;
    overflow: hidden;
    border: 1px solid #dddde1;
    background: #f6f7fa;
}

.home-page .home-hero__slides {
    position: relative;
    min-height: 280px;
}

.home-page .home-hero__slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.home-page .home-hero__slide.is-active,
.home-page .home-hero__slide.is-entering,
.home-page .home-hero__slide.is-leaving {
    visibility: visible;
}

.home-page .home-hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.home-page .home-hero__slide.is-entering {
    opacity: 1;
    z-index: 3;
}

.home-page .home-hero__slide.is-leaving {
    opacity: 1;
    z-index: 2;
}

.home-page .home-hero__copy,
.home-page .home-hero__visual {
    position: relative;
    min-width: 0;
}

.home-page .home-hero__copy {
    padding: clamp(28px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    background:
        radial-gradient(circle at 12% 18%, var(--hero-accent-soft), transparent 34%),
        linear-gradient(180deg, #fbfbfc 0%, #f4f5f8 100%);
}

.home-page .home-hero__title {
 margin: 0;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 500;
  color: #111827;
  max-width: 21ch;
}

.home-page .home-hero__subtitle {
    margin: 0;
    max-width: 30ch;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
    color: #344054;
}

.home-page .home-hero__visual {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 74% 18%, var(--hero-accent-soft), transparent 26%),
        linear-gradient(140deg, var(--hero-surface), var(--hero-surface-alt));
}

.home-page .home-hero__stage {
    position: absolute;
    inset: 12% 6% 10% 8%;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        linear-gradient(145deg, rgba(17, 24, 39, 0.12), rgba(15, 23, 42, 0.36));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .home-hero__grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
}

.home-page .home-hero__glow {
    position: absolute;
    width: min(38vw, 500px);
    height: min(24vw, 260px);
    right: 2%;
    bottom: 10%;
    border-radius: 220px;
    background: radial-gradient(circle at 50% 50%, var(--hero-accent-soft), transparent 72%);
    filter: blur(10px);
}

.home-page .hero-car {
    position: absolute;
    inset: 0 -4% -6% -6%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.home-page .hero-car__image {
    width: min(100%, 620px);
    max-height: 90%;
    object-fit: contain;
    object-position: center;
    transform: translate(2%, 6%) scale(1.02);
    filter:
        drop-shadow(0 34px 34px rgba(3, 7, 18, 0.34))
        drop-shadow(0 12px 60px rgba(0, 0, 0, 0.16));
}

.home-page .home-hero__controls {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 22px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-page .home-hero__dots {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
}

.home-page .home-hero__dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.72);
}

.home-page .home-hero__dot.is-active {
    width: 28px;
    background: #101828;
}

.home-page .home-hero__slide.is-entering .home-hero__copy {
    animation: heroCopyEnter 720ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

.home-page .home-hero__slide.is-entering .home-hero__visual {
    animation: heroVisualEnter 780ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

.home-page .home-hero__slide.is-leaving.is-next .home-hero__copy {
    animation: heroCopyLeaveNext 620ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.home-page .home-hero__slide.is-leaving.is-next .home-hero__visual {
    animation: heroVisualLeaveNext 620ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.home-page .home-hero__slide.is-leaving.is-prev .home-hero__copy {
    animation: heroCopyLeavePrev 620ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.home-page .home-hero__slide.is-leaving.is-prev .home-hero__visual {
    animation: heroVisualLeavePrev 620ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes heroCopyEnter {
    from {
        opacity: 0;
        transform: translateX(-38px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes heroVisualEnter {
    from {
        opacity: 0;
        transform: translateX(72px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes heroCopyLeaveNext {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(12%);
    }
}

@keyframes heroVisualLeaveNext {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(-18%) scale(0.95);
    }
}

@keyframes heroCopyLeavePrev {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-12%);
    }
}

@keyframes heroVisualLeavePrev {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(18%) scale(0.95);
    }
}

.home-page .filter-card--home {
    margin-top: 18px;
    border-radius: 26px;
    padding: 0;
    border: 1px solid #e3e6ee;
    background: linear-gradient(180deg, #f1f2f5 0%, #eceef2 100%);
    overflow: visible;
}

.home-page .filter-mobile-head {
    display: none;
}

.mobile-home-filter-trigger {
    display: none;
}

.home-page .car-filter-grid--home {
    gap: 0;
    overflow: visible;
}

.home-page .filter-status-tabs {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px 0;
}

.home-page .filter-status-tabs label {
    position: relative;
}

.home-page .filter-status-tabs input {
    position: absolute;
    opacity: 0;
}

.home-page .filter-status-tabs span {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 12px 12px 0 0;
    display: inline-flex;
    align-items: center;
    color: #5c6472;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: color 0.2s ease, background 0.2s ease;
}

.home-page .filter-status-tabs input:checked + span {
    border-bottom-color: #b80f25;
    color: #161721;
    background: rgba(255, 255, 255, 0.66);
}

.home-page .filter-strip {
    padding: 12px;
    background: rgba(255, 255, 255, 0.62);
    border-top: 1px solid #d8dce4;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.25fr 0.7fr 0.95fr auto auto;
    gap: 10px;
    align-items: stretch;
    overflow: visible;
}

.home-page .filter-strip__field,
.home-page .filter-strip__more {
    min-height: 56px;
    border: 1px solid #dde2ea;
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 0 0px;
    background: #fff;
}

.home-page .filter-strip__field select,
.home-page .filter-strip__field input {
    width: 100%;
    min-height: 40px;
    border: 0;
    border-radius: 0;
    padding: 0 6px;
    background: transparent;
    color: #1f2430;
    font-size: 14px;
    font-weight: 500;
}

.home-page .filter-strip__field .ts-wrapper,
.home-page .advanced-filter__field .ts-wrapper {
    position: relative;
    width: 100%;
}

.home-page .filter-strip__field .ts-wrapper.single,
.home-page .advanced-filter__field .ts-wrapper.single {
    display: block;
}

.home-page .filter-strip__field .ts-wrapper.multi,
.home-page .advanced-filter__field .ts-wrapper.multi {
    display: block;
}

.home-page .filter-strip__field .ts-control,
.home-page .advanced-filter__field .ts-control {
    display: flex;
    align-items: center;
    min-height: 40px;
    border: 0;
    border-radius: 0;
    padding: 0 34px 0 6px;
    background: transparent;
    color: #1f2430;
    font-size: 14px;
    font-weight: 500;
}

.home-page .filter-strip__field .ts-wrapper.multi .ts-control,
.home-page .advanced-filter__field .ts-wrapper.multi .ts-control {
    gap: 6px;
    flex-wrap: wrap;
    align-content: center;
    padding-top: 7px;
    padding-bottom: 7px;
}

.home-page .filter-strip__field .ts-wrapper.single .ts-control,
.home-page .advanced-filter__field .ts-wrapper.single .ts-control {
    cursor: pointer;
}

.home-page .advanced-filter__field .ts-control {
    min-height: 46px;
    padding: 0 34px 0 14px;
}

.home-page .filter-strip__field .ts-control .item,
.home-page .advanced-filter__field .ts-control .item {
    flex: 1 1 auto;
    max-width: 100%;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-page .filter-strip__field .ts-control .item,
.home-page .filter-strip__field .ts-control .placeholder,
.home-page .advanced-filter__field .ts-control .item,
.home-page .advanced-filter__field .ts-control .placeholder {
    color: #8d93ba;
}

.home-page .filter-strip__field .ts-control .item:not([data-value=""]),
.home-page .advanced-filter__field .ts-control .item:not([data-value=""]) {
    color: #1d2b4f;
}

.home-page .filter-strip__field .ts-wrapper.multi .ts-control .item,
.home-page .advanced-filter__field .ts-wrapper.multi .ts-control .item {
    flex: 0 0 auto;
    max-width: calc(100% - 8px);
    padding: 0 0 0 2px;
    border-radius: 0;
    background: transparent;
    color: #1d2b4f;
    font-size: 13px;
}

.home-page .filter-strip__field .ts-wrapper.multi .ts-control .item + .item::before,
.home-page .advanced-filter__field .ts-wrapper.multi .ts-control .item + .item::before {
    content: ", ";
    color: #1d2b4f;
}

.home-page .filter-strip__field .ts-wrapper.multi .ts-control .remove,
.home-page .advanced-filter__field .ts-wrapper.multi .ts-control .remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    color: #8d93ba;
    font-size: 11px;
    text-decoration: none;
    vertical-align: middle;
}

.home-page .filter-strip__field .ts-control > input,
.home-page .advanced-filter__field .ts-control > input {
    flex: 1 1 auto;
    min-width: 0;
    color: #1f2430;
    font-size: 14px;
    font-weight: 500;
}

.home-page .filter-strip__field .ts-control > input::placeholder,
.home-page .advanced-filter__field .ts-control > input::placeholder {
    color: #8d93ba;
}

.home-page .filter-strip__field .ts-wrapper.multi .ts-control > input,
.home-page .advanced-filter__field .ts-wrapper.multi .ts-control > input {
    min-width: 72px !important;
}

.home-page .filter-strip__field .ts-wrapper.single .ts-control:after,
.home-page .advanced-filter__field .ts-wrapper.single .ts-control:after {
    content: "";
    position: absolute;
    top: 50%;
    border-width: 0;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    right: 10px;
    opacity: 1;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
    background:
        linear-gradient(45deg, transparent 50%, #8d93ba 50%) left center / 7px 7px no-repeat,
        linear-gradient(135deg, #8d93ba 50%, transparent 50%) right center / 7px 7px no-repeat;
}

.home-page .filter-strip__field .ts-wrapper.plugin-dropdown_input.focus.dropdown-active .ts-control::before,
.home-page .filter-strip__field .ts-wrapper.single .ts-control::before,
.home-page .advanced-filter__field .ts-wrapper.plugin-dropdown_input.focus.dropdown-active .ts-control::before,
.home-page .advanced-filter__field .ts-wrapper.single .ts-control::before {
    display: none !important;
}

.home-page .advanced-filter__field .ts-wrapper.single .ts-control:after {
    right: 14px;
}

.home-page .filter-strip__field .ts-wrapper.single.dropdown-active .ts-control:after,
.home-page .advanced-filter__field .ts-wrapper.single.dropdown-active .ts-control:after {
    transform: rotate(180deg);
    opacity: 1;
}

.home-page .filter-strip__field .ts-wrapper.dropdown-active .ts-control,
.home-page .advanced-filter__field .ts-wrapper.dropdown-active .ts-control {
    background: transparent;
}

.home-page .filter-strip__field .ts-wrapper.multi.dropdown-active .ts-control,
.home-page .advanced-filter__field .ts-wrapper.multi.dropdown-active .ts-control {
    z-index: 2;
}

.home-page .filter-strip__field .ts-wrapper.dropdown-active,
.home-page .advanced-filter__field .ts-wrapper.dropdown-active {
    z-index: 120;
}

.home-page .filter-strip__field .ts-dropdown,
.home-page .advanced-filter__field .ts-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    min-width: 100%;
    margin-top: 0;
    border: 1px solid #d6dcef;
    border-radius: 10px;
    padding: 6px 0;
    background: #fff;
    overflow: hidden;
}

.home-page .filter-strip__field .ts-dropdown-content,
.home-page .advanced-filter__field .ts-dropdown-content {
    max-height: 240px;
    overflow-y: auto;
}

.home-page .filter-strip__field .ts-dropdown .option,
.home-page .advanced-filter__field .ts-dropdown .option {
    padding: 10px 14px;
    border-radius: 0;
    color: #1d2b4f;
    font-size: 14px;
    font-weight: 500;
}

.home-page .filter-strip__field .ts-dropdown .option.active,
.home-page .filter-strip__field .ts-dropdown .option:hover,
.home-page .advanced-filter__field .ts-dropdown .option.active,
.home-page .advanced-filter__field .ts-dropdown .option:hover {
    background: #f5f7ff;
    color: #1d2b4f;
}

.home-page .filter-strip__field .ts-dropdown .option.selected,
.home-page .advanced-filter__field .ts-dropdown .option.selected {
    color: #c1121f;
}

.home-page .filter-strip__field .ts-dropdown .create,
.home-page .filter-strip__field .ts-dropdown .no-results,
.home-page .advanced-filter__field .ts-dropdown .create,
.home-page .advanced-filter__field .ts-dropdown .no-results {
    padding: 10px 14px;
    color: #8d93ba;
    font-size: 13px;
}

.home-page .filter-strip__field .ts-dropdown [data-value=""],
.home-page .advanced-filter__field .ts-dropdown [data-value=""] {
    display: none;
}

.home-select-clear {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 0;
    border-bottom: 1px solid #eef2f7;
    background: #fff;
    color: #c1121f;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.home-select-brand-option {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-select-brand-option__media {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 28px;
    background: #fff;
}

.home-select-brand-option__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-select-brand-option__media--fallback {
    border: 1px solid #dbe3ee;
    color: #94a3b8;
    font-size: 12px;
}

.home-select-brand-option__label {
    min-width: 0;
    color: #1d2b4f;
}

.home-page .filter-strip__field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #4b5160 50%), linear-gradient(135deg, #4b5160 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 34px;
}

.home-page .filter-strip__field input::placeholder {
    color: #697282;
}

.home-page .filter-strip__field--range {
    gap: 8px;
}

.home-page .filter-strip__field--range span {
    color: #4b5160;
    font-size: 14px;
    font-weight: 500;
}

.home-page .filter-strip__more {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    justify-content: center;
    gap: 8px;
    color: #b80f25;
    font-size: 15px;
    font-weight: 500;
}

.home-page .filter-strip__more i {
    font-size: 14px;
    color: #3b4354;
}

.home-page .filter-strip__submit {
    min-height: 56px;
    border-radius: 16px;
    padding: 0 20px;
    border: 0;
    background: #81122c;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.home-page .filter-strip__submit i {
    font-size: 16px;
}

.home-page .filter-submit-mobile-wrap {
    display: flex;
    justify-content: flex-end;
    padding: 0 12px 12px;
}

.home-page .filter-submit--mobile {
    min-width: 180px;
}

.home-page .filter-strip__submit {
    display: inline-flex;
}

.home-page .advanced-filter {
    margin: 0 12px 12px;
    padding: 16px;
    border: 1px solid #dde3eb;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
}

.home-page .advanced-filter__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.home-page .advanced-filter__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.home-page .advanced-filter__field > span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #758195;
}

.home-page .advanced-filter__field select,
.home-page .advanced-filter__field input {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid #e4e8ef;
    border-radius: 14px;
    background: #fbfcfd;
    color: #101828;
    font-size: 14px;
    font-weight: 500;
}

.home-page .advanced-filter__field .ts-wrapper.single.input-active .ts-control,
.home-page .filter-strip__field .ts-wrapper.single.input-active .ts-control {
}

.home-page .advanced-filter__field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #5b6472 50%), linear-gradient(135deg, #5b6472 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 34px;
}

.home-page .advanced-filter__range {
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid #e4e8ef;
    border-radius: 14px;
    background: #fbfcfd;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
}

.home-page .advanced-filter__range input {
    min-height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
}

.home-page .advanced-filter__range span {
    color: #7c8595;
    font-weight: 500;
}

.home-page .advanced-filter__options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #eceff4;
}

.home-page .advanced-filter .equipment-grid {
    gap: 10px;
}

.home-page .advanced-filter .equipment-chip span {
    min-height: 44px;
    background: #fbfcfd;
    border-color: #e4e8ef;
}

.home-page .filter-actions {
    padding: 0 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1280px) {
    .home-page .filter-status-tabs span {
        font-size: 16px;
    }

    .home-page .filter-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-page .advanced-filter__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-page .filter-strip__field,
    .home-page .filter-strip__more,
    .home-page .filter-strip__submit {
        min-height: 54px;
    }

    .home-page .filter-strip__field select,
    .home-page .filter-strip__field input {
        font-size: 14px;
        font-weight: 500;
    }

    .home-page .filter-strip__more,
    .home-page .filter-strip__submit {
        font-size: 14px;
    }

    .home-page .filter-strip__submit i {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .home-page .home-hero {
        min-height: 340px;
        border-radius: 0 0 20px 20px;
    }

    .home-page .home-hero__slides,
    .home-page .home-hero__slide {
        min-height: 340px;
    }

    .home-page .home-hero__slide {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
    }

    .home-page .home-hero__copy {
        padding: 24px 18px;
    }

    .home-page .home-hero__title {
        font-size: 20px;
    }

    .home-page .home-hero__subtitle {
        font-size: 16px;
    }

    .home-page .home-hero__controls { bottom: 18px; }

    .home-page .advanced-filter__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .home-page .home-hero {
        min-height: 246px;
        margin-top: 6px;
        border-radius: 0;
        border: 0;
        background: #f3f4f7;
    }

    .home-page .home-hero__slides,
    .home-page .home-hero__slide {
        min-height: 246px;
    }

    .home-page .home-hero__slide {
        grid-template-columns: minmax(0, 1fr) minmax(172px, 0.92fr);
        background: #f3f4f7;
    }

    .home-page .home-hero__copy {
        padding: 24px 18px 34px;
        justify-content: center;
        gap: 8px;
    }

    .home-page .home-hero__title {
        max-width: none;
        font-size: 15px;
        color: #7c8595;
        letter-spacing: 0;
    }

    .home-page .home-hero__subtitle {
        max-width: 10ch;
        font-size: 24px;
        line-height: 1.18;
        color: #161721;
    }

    .site-pagination-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .site-pagination-nav__links {
        justify-content: center;
    }

    .home-page .home-hero__visual {
        min-height: 100%;
    }

    .home-page .home-hero__stage {
        inset: 12% 0 10% 16%;
        border-radius: 0;
        background: #ff4a37;
        box-shadow: none;
    }

    .home-page .hero-car {
        inset: 0 -20% -4% -22%;
        min-height: 100%;
    }

    .home-page .hero-car__image {
        width: min(144%, 380px);
        max-height: 94%;
        transform: translate(2%, 6%) scale(1);
    }

    .home-page .home-hero__controls {
        display: none;
    }

    .mobile-home-filter-trigger {
        width: 100%;
        margin: 12px 0 0;
        padding: 0 0 0 18px;
        min-height: 78px;
        border: 1px solid #e7eaf1;
        border-radius: 22px;
        background: #fff;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        gap: 14px;
        overflow: hidden;
    }

    .mobile-home-filter-trigger__copy {
        min-width: 0;
        display: inline-flex;
        align-items: center;
        gap: 14px;
    }

    .mobile-home-filter-trigger__icon {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #283548;
        font-size: 22px;
    }

    .mobile-home-filter-trigger__text {
        min-width: 0;
        color: #1f2937;
        font-size: 18px;
        font-weight: 500;
        text-align: left;
    }

    .mobile-home-filter-trigger__action {
        width: 86px;
        flex: 0 0 86px;
        border-left: 1px solid #d8dde7;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        color: #fff;
        position: relative;
    }

    .mobile-home-filter-trigger__action::before {
        content: "";
        width: 54px;
        height: 54px;
        border-radius: 999px;
        background: #c4141f;
        position: absolute;
    }

    .mobile-home-filter-trigger__action i {
        position: relative;
        z-index: 1;
        font-size: 22px;
    }

    .home-page .filter-card--home {
        display: none;
        position: fixed;
        left: 10px;
        right: 10px;
        top: 70px;
        bottom: 12px;
        z-index: 80;
        overflow: auto;
        border-radius: 16px;
        margin-top: 0;
    }

    .home-page .filter-card--home.is-mobile-open {
        display: block;
    }

    .home-page .filter-mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 12px 14px;
        border-bottom: 1px solid #d2d3da;
        background: #f5f5f6;
    }

    .home-page .filter-mobile-head strong {
        color: #151826;
        font-size: 16px;
        font-weight: 500;
    }

    .home-page .filter-mobile-head__actions {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .home-page .filter-status-tabs {
        padding: 8px 10px 0;
        overflow-x: auto;
        white-space: nowrap;
        display: none;
    }

    .home-page .filter-status-tabs span {
        min-height: 30px;
        padding: 0 12px;
        font-size: 14px;
    }

    .home-page .filter-strip {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-page .filter-strip__field,
    .home-page .filter-strip__more,
    .home-page .filter-strip__submit {
        min-height: 50px;
        border-right: 0;
    }

    .home-page .filter-strip__field {
        padding: 0 12px;
        border-radius: 16px;
    }

    .home-page .filter-strip__field select,
    .home-page .filter-strip__field input {
        font-size: 14px;
        min-height: 42px;
    }

    .home-page .filter-strip__more,
    .home-page .filter-strip__submit {
        font-size: 15px;
    }

    .home-page .filter-strip__submit {
        justify-content: center;
    }

    .home-page .advanced-filter {
        margin: 0;
        padding: 14px 12px 12px;
        border-radius: 0;
    }

    .home-page .advanced-filter__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-page .advanced-filter__field--range,
    .home-page .advanced-filter__grid--secondary .advanced-filter__field {
        grid-column: 1 / -1;
    }

    .home-page .advanced-filter__field > span {
        font-size: 11px;
        letter-spacing: 0.07em;
    }

    .home-page .advanced-filter__field select,
    .home-page .advanced-filter__field input {
        min-height: 44px;
        font-size: 13px;
        padding: 0 12px;
    }

    .home-page .advanced-filter__range {
        min-height: 44px;
        gap: 6px;
        padding: 0 10px;
    }

    .home-page .filter-submit-mobile-wrap {
        display: block;
        padding: 0 12px 12px;
        background: rgba(255, 255, 255, 0.92);
        position: sticky;
        bottom: 0;
        z-index: 2;
    }

    .home-page .filter-submit--mobile {
        width: 100%;
        min-height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
    }

    .home-page .filter-strip__submit {
        display: none;
    }

    .home-page .filter-actions {
        padding: 0 12px 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .home-page .filter-actions .filter-reset,
    .home-page .filter-actions .today-count {
        text-align: center;
    }
}

.catalog-page {
    padding-top: 66px;
    padding-bottom: 40px;
}

.catalog-shell {
    display: grid;
    gap: 26px;
}

.catalog-filter-card {
    padding: 18px 18px 16px;
    border: 1px solid #dfe6f0;
    border-radius: 24px;
    background: #fff;
}

.catalog-filter-card__head h1,
.catalog-results__head h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
    color: #1b2940;
}

.catalog-results__head p {
    margin: 6px 0 0;
    color: #72809a;
    font-size: 14px;
}

.catalog-filter-form {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.catalog-filter-card__head {
    display: block;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf1f6;
}

.catalog-category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-category-tile {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #dbe3ee;
    border-radius: 999px;
    background: #f8fafc;
    color: #506079;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease;
}

.catalog-category-tile i {
    font-size: 16px;
}

.catalog-category-tile.is-active {
    border-color: rgba(35, 49, 73, 0.18);
    background: #fff;
    color: #22324a;
}

.catalog-brand-cloud {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px 18px;
    padding-bottom: 6px;
}

.catalog-brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 40px;
    padding: 6px 8px 6px 0;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #22324a;
    text-align: left;
    cursor: pointer;
    transition: color 0.18s ease, transform 0.18s ease;
}

.catalog-brand-chip__media {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    color: #2f4262;
    font-size: 13px;
    font-weight: 500;
    background: #f8fafc;
}

.catalog-brand-chip__media img {
    width: 26px;
    max-width: 26px;
    max-height: 26px;
    object-fit: contain;
}

.catalog-brand-chip__label {
    font-size: 15px;
    line-height: 1.3;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.catalog-brand-chip:hover {
    transform: translateY(-1px);
    color: #0f172a;
}

.catalog-brand-chip.is-active .catalog-brand-chip__media {
    background: #eef2f8;
}

.catalog-brand-chip.is-active .catalog-brand-chip__label {
    color: #0f172a;
}

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

.catalog-filter-field {
    display: grid;
}

.catalog-filter-field span {
    display: none;
}

.catalog-filter-field select {
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #dbe3ee;
    border-radius: 12px;
    background: #fff;
    color: #22324a;
    font: inherit;
}

.catalog-filter-field .ts-wrapper {
    position: relative;
    width: 100%;
}

.catalog-filter-field .ts-wrapper.single {
    display: block;
}

.catalog-filter-field .ts-control {
    display: flex;
    align-items: center;
    min-height: 48px;
    border: 1px solid #dbe3ee;
    border-radius: 12px;
    padding: 0 34px 0 14px;
    background: #fff;
    color: #1f2430;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.catalog-filter-field .ts-control .item,
.catalog-filter-field .ts-control .placeholder {
    color: #8d93ba;
}

.catalog-filter-field .ts-control .item:not([data-value=""]) {
    color: #1d2b4f;
}

.catalog-filter-field .ts-control > input {
    flex: 1 1 auto;
    min-width: 0;
    color: #1f2430;
    font-size: 14px;
    font-weight: 500;
}

.catalog-filter-field .ts-control > input::placeholder {
    color: #8d93ba;
}

.catalog-filter-field .ts-wrapper.single .ts-control:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    right: 14px;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
    background:
        linear-gradient(45deg, transparent 50%, #8d93ba 50%) left center / 7px 7px no-repeat,
        linear-gradient(135deg, #8d93ba 50%, transparent 50%) right center / 7px 7px no-repeat;
}

.catalog-filter-field .ts-wrapper.plugin-dropdown_input.focus.dropdown-active .ts-control::before,
.catalog-filter-field .ts-wrapper.single .ts-control::before {
    display: none !important;
}

.catalog-filter-field .ts-wrapper.single.dropdown-active .ts-control:after {
    transform: rotate(180deg);
}

.catalog-filter-field .ts-wrapper.dropdown-active {
    z-index: 120;
}

.catalog-filter-field .ts-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    min-width: 100%;
    margin-top: 0;
    border: 1px solid #d6dcef;
    border-radius: 10px;
    padding: 6px 0;
    background: #fff;
    overflow: hidden;
}

.catalog-filter-field .ts-dropdown-content {
    max-height: 240px;
    overflow-y: auto;
}

.catalog-filter-field .ts-dropdown .option {
    padding: 10px 14px;
    color: #1d2b4f;
    font-size: 14px;
    font-weight: 500;
}

.catalog-filter-field .ts-dropdown .option.active,
.catalog-filter-field .ts-dropdown .option:hover {
    background: #f5f7ff;
    color: #1d2b4f;
}

.catalog-filter-field .ts-dropdown .create,
.catalog-filter-field .ts-dropdown .no-results {
    padding: 10px 14px;
    color: #8d93ba;
    font-size: 13px;
}

.catalog-filter-field .ts-dropdown [data-value=""] {
    display: none;
}

.catalog-filter-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    align-items: center;
    padding-top: 2px;
}

.catalog-reset-link {
    color: #8a98b2;
    text-decoration: none;
    font-weight: 500;
}

.catalog-submit-btn {
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 12px;
    background: #243246;
    color: #fff;
    font: inherit;
    font-weight: 500;
    cursor: pointer;
}

.catalog-results__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
}

.catalog-generation-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.catalog-generation-card {
    overflow: hidden;
    border-radius: 20px;
    background: #0f172a;
    border: 1px solid rgba(222, 230, 240, 0.9);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.catalog-generation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 46px rgba(15, 23, 42, 0.16);
    border-color: rgba(167, 180, 200, 0.75);
}

.catalog-generation-card__media {
    position: relative;
    aspect-ratio: 1 / 0.84;
    background: linear-gradient(180deg, #dbe5f1 0%, #c8d4e5 100%);
}

.catalog-generation-card__media img,
.catalog-generation-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-generation-card__placeholder {
    display: grid;
    place-items: center;
    color: #95a3bb;
    font-size: 28px;
}

.catalog-generation-card__link {
    color: inherit;
    text-decoration: none;
    display: block;
}

.catalog-generation-card__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 38px 14px 14px;
    display: grid;
    gap: 6px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.82) 65%, rgba(15, 23, 42, 0.95) 100%);
}

.catalog-generation-card__overlay strong {
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(15, 23, 42, 0.32);
}

.catalog-generation-card__overlay span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.45;
}

.catalog-detail-page {
    padding-top: 24px;
    padding-bottom: 40px;
}

.catalog-detail-page--full {
    display: grid;
    gap: 26px;
}

.catalog-detail-main-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) 340px; gap: 24px; align-items: start; }
.catalog-detail-main-layout { order: 2; }
.catalog-detail-main-column { display: grid; gap: 16px; }
.catalog-detail-sidebar { display: grid; align-self: start; }
.catalog-detail-stage,
.catalog-detail-sidebar__card,
.catalog-detail-section { background: #fff; border: 1px solid #e8eef6; border-radius: 22px; box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06); }
.catalog-detail-stage { padding: 18px; }
.catalog-detail-stage__hero {
    overflow: hidden;
    position: relative;
    border-radius: 18px;
    aspect-ratio: 13 / 10;
    max-height: 420px;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.9), rgba(231, 238, 248, 0.8) 38%, rgba(219, 228, 241, 0.98) 100%);
    display: grid;
    place-items: center;
}
.catalog-detail-stage__hero-button {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    display: grid;
    place-items: center;
    cursor: zoom-in;
}
.catalog-detail-stage__hero-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}
.catalog-detail-stage__placeholder { width: 100%; height: 100%; object-fit: contain; }
.catalog-detail-stage__placeholder { display: grid; place-items: center; color: #95a3bb; font-size: 24px; }
.catalog-detail-stage__hero::after {
    content: "Böyütmək üçün kliklə";
    position: absolute;
    right: 14px;
    bottom: 14px;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.64);
    color: #fff;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.01em;
    pointer-events: none;
}
.catalog-detail-stage__thumbs-wrap {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}
.catalog-detail-stage__thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(84px, 7vw, 96px);
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-top: 0;
    padding: 0 2px 2px;
}
.catalog-detail-stage__thumbs::-webkit-scrollbar { display: none; }
.catalog-detail-stage__thumb-nav {
    width: 38px;
    height: 38px;
    border: 1px solid #dde6f0;
    border-radius: 999px;
    background: #fff;
    color: #203049;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    transition: opacity .18s ease, transform .18s ease, box-shadow .18s ease;
}
.catalog-detail-stage__thumb-nav:disabled {
    opacity: 0.38;
    box-shadow: none;
    cursor: default;
}
.catalog-detail-stage__thumb {
    padding: 0;
    border: 0;
    background: transparent;
    width: 100%;
    border-radius: 14px;
    opacity: 0.72;
    scroll-snap-align: start;
    transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}
.catalog-detail-stage__thumb.is-active { opacity: 1; transform: translateY(-1px); }
.catalog-detail-stage__thumb img { width: 100%; aspect-ratio: 4 / 3; height: auto; border-radius: 12px; object-fit: cover; display: block; border: 1px solid #dde6f0; box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08); }
.catalog-detail-stage__thumb.is-active img { border-color: rgba(255, 59, 48, 0.34); box-shadow: 0 12px 22px rgba(255, 59, 48, 0.16); }
.catalog-lightbox[hidden] { display: none; }
.catalog-lightbox { position: fixed; inset: 0; z-index: 180; }
.catalog-lightbox__backdrop { position: absolute; inset: 0; border: 0; background: rgba(8, 15, 27, 0.72); }
.catalog-lightbox__dialog {
    position: absolute;
    inset: 20px;
    border-radius: 24px;
    background: rgba(10, 18, 31, 0.96);
    color: #fff;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 14px;
    padding: 16px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.42);
}
.catalog-lightbox__topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.catalog-lightbox__heading strong,
.catalog-lightbox__heading span { display: block; }
.catalog-lightbox__heading strong { font-size: 18px; font-weight: 500; }
.catalog-lightbox__heading span { margin-top: 4px; color: rgba(255,255,255,0.72); font-size: 13px; }
.catalog-lightbox__close {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.catalog-lightbox__stage { position: relative; min-height: 0; display: grid; place-items: center; border-radius: 20px; overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); }
.catalog-lightbox__image { width: 100%; height: 100%; max-width: 100%; max-height: calc(100vh - 210px); object-fit: contain; }
.catalog-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.catalog-lightbox__nav.prev { left: 6px; }
.catalog-lightbox__nav.next { right: 6px; }
.catalog-lightbox__counter {
    position: absolute;
    right: 12px;
    bottom: 12px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    font-size: 13px;
}
.catalog-lightbox__thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 2px; }
.catalog-lightbox__thumb { padding: 0; border: 0; background: transparent; flex: 0 0 auto; opacity: 0.68; transition: opacity .18s ease, transform .18s ease; }
.catalog-lightbox__thumb.is-active { opacity: 1; transform: translateY(-1px); }
.catalog-lightbox__thumb img { width: 76px; height: 56px; object-fit: cover; border-radius: 12px; border: 1px solid rgba(255,255,255,0.14); }
.catalog-lightbox-open { overflow: hidden; }
.catalog-detail-summary { display: grid; grid-template-columns: minmax(0, 1fr) 252px; gap: 18px; margin-top: 18px; }
.catalog-detail-summary__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.catalog-detail-summary__stat { padding: 16px; border-radius: 18px; background: #f7f9fc; border: 1px solid #edf2f7; }
.catalog-detail-summary__stat span { display: block; color: #7f8faa; font-size: 13px; line-height: 1.5; font-weight: 500; }
.catalog-detail-summary__stat strong { display: block; margin-top: 6px; color: #203049; font-size: 17px; font-weight: 500; }
.catalog-detail-summary__diagram { display: grid; place-items: center; gap: 12px; min-height: 126px; border-left: 1px solid #edf1f6; padding-left: 18px; }
.catalog-detail-summary__diagram img { max-width: 100%; max-height: 104px; object-fit: contain; }
.catalog-detail-summary__diagram-icon { font-size: 72px; color: #c6cfdb; }
.catalog-detail-summary__diagram-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; color: #7f8faa; font-size: 12px; }
.catalog-detail-sections { display: grid; gap: 12px; }
.catalog-detail-section { padding: 22px 24px; }
.catalog-detail-section h2 { margin: 0 0 18px; font-size: 18px; color: #203049; font-weight: 500; }
.catalog-detail-section__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 36px; }
.catalog-detail-section__column { display: grid; gap: 12px; }
.catalog-detail-section__row { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 14px; align-items: start; padding-top: 12px; border-top: 1px solid #f1f5f9; }
.catalog-detail-section__column .catalog-detail-section__row:first-child { padding-top: 0; border-top: 0; }
.catalog-detail-section__row span { color: #7f8faa; line-height: 1.6; font-size: 14px; font-weight: 500; }
.catalog-detail-section__row strong { color: #203049; font-weight: 500; line-height: 1.6; font-size: 15px; }
.catalog-detail-sidebar__card { padding: 24px; position: sticky; top: 108px; align-self: start; background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%); }
.catalog-detail-sidebar__card h1 { margin: 0; font-size: 34px; line-height: 1.08; font-weight: 500; letter-spacing: -0.02em; }
.catalog-detail-sidebar__card p { margin: 12px 0 6px; color: #203049; font-size: 17px; line-height: 1.3; font-weight: 500; }
.catalog-detail-sidebar__card small { color: #7f8faa; font-size: 14px; }
.catalog-detail-variant-picker {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}
.catalog-detail-variant-picker span {
    color: #7f8faa;
    font-size: 13px;
    font-weight: 500;
}
.catalog-detail-variant-picker select {
    min-height: 52px;
    width: 100%;
    border: 1px solid #dbe3ee;
    border-radius: 14px;
    background: #fff;
    padding: 0 14px;
    color: #203049;
    font-size: 15px;
    font-weight: 500;
}
.catalog-detail-variant-current {
    margin-top: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 59, 48, 0.72);
    border-radius: 14px;
    background: #fff8f7;
    color: #ff3b30;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
}

.catalog-breadcrumbs {
    order: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #7c8ba4;
    margin-bottom: 0;
    margin-top: 33px;
}

.catalog-breadcrumbs a {
    color: #334155;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .catalog-category-grid {
        gap: 8px;
    }

    .catalog-brand-cloud {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .catalog-detail-main-layout { grid-template-columns: 1fr; gap: 16px; }
    .catalog-detail-summary { grid-template-columns: 1fr; }
    .catalog-detail-summary__diagram { border-left: 0; border-top: 1px solid #edf1f6; padding-left: 0; padding-top: 12px; }
    .catalog-detail-stage__hero { max-height: 360px; }
}

@media (max-width: 760px) {
    .catalog-filter-card {
        padding: 16px;
        border-radius: 18px;
    }

    .catalog-filter-card__head h1,
    .catalog-results__head h2 {
        font-size: 20px;
    }

    .catalog-filter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-brand-cloud,
    .catalog-filter-grid,
    .catalog-spec-grid {
        grid-template-columns: 1fr;
    }
    .catalog-generation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

    .catalog-category-tile {
        min-height: 40px;
    }

    .catalog-brand-chip {
        padding-right: 0;
    }

    .catalog-submit-btn {
        width: 100%;
    }

    .catalog-detail-section__grid { grid-template-columns: 1fr; }
    .catalog-detail-section__row { grid-template-columns: 1fr; }
    .catalog-generation-card { border-radius: 16px; }
    .catalog-generation-card__media { aspect-ratio: 1 / 1.08; }
    .catalog-generation-card__overlay { padding: 28px 10px 10px; }
    .catalog-generation-card__overlay strong { font-size: 13px; }
    .catalog-generation-card__overlay span { font-size: 11px; }
    .catalog-detail-page--full { gap: 18px; }
    .catalog-breadcrumbs { gap: 6px; margin-bottom: 0; font-size: 11px; margin-top: 50px; }
    .catalog-detail-main-layout { gap: 12px; }
    .catalog-detail-main-column { gap: 12px; }
    .catalog-detail-stage { padding: 10px; border-radius: 18px; }
    .catalog-detail-stage__hero { aspect-ratio: 4 / 3.1;  border-radius: 14px; }
    .catalog-detail-stage__hero::after { right: 10px; bottom: 10px; min-height: 24px; padding: 0 8px; font-size: 10px; }
    .catalog-detail-stage__thumbs-wrap {
        grid-template-columns: 32px minmax(0, 1fr) 32px;
        gap: 4px;
        margin-top: 8px;
    }
    .catalog-detail-stage__thumbs {
        grid-auto-columns: calc((100% - 18px) / 4);
        gap: 6px;
        padding-inline: 0;
    }
    .catalog-detail-stage__thumb-nav {
        width: 32px;
        height: 32px;
    }
    .catalog-detail-stage__thumb img { border-radius: 10px; }
    .catalog-lightbox__dialog { inset: 0; border-radius: 0; padding: 12px; gap: 12px; }
    .catalog-lightbox__heading strong { font-size: 15px; }
    .catalog-lightbox__heading span { font-size: 12px; }
    .catalog-lightbox__close,
    .catalog-lightbox__nav { width: 38px; height: 38px; }
    .catalog-lightbox__image { max-height: calc(100vh - 180px); }
    .catalog-lightbox__thumb img { width: 60px; height: 44px; border-radius: 10px; }
    .catalog-detail-summary { gap: 10px; margin-top: 10px; }
    .catalog-detail-summary__stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
    .catalog-detail-summary__stat { padding: 10px; border-radius: 14px; }
    .catalog-detail-summary__stat span { font-size: 11px; }
    .catalog-detail-summary__stat strong { font-size: 14px; }
    .catalog-detail-section { padding: 14px; border-radius: 18px; }
    .catalog-detail-section h2 { margin-bottom: 10px; font-size: 15px; }
    .catalog-detail-section__column { gap: 6px; }
    .catalog-detail-section__row { gap: 6px; padding-top: 8px; }
    .catalog-detail-section__row span { font-size: 13px; }
    .catalog-detail-section__row strong { font-size: 14px; }
    .catalog-detail-sidebar__card { padding: 16px; border-radius: 18px; }
    .catalog-detail-sidebar__card { position: static; }
    .catalog-detail-sidebar__card h1 { font-size: 26px; }
    .catalog-detail-sidebar__card p { font-size: 14px; line-height: 1.35; }
    .catalog-detail-sidebar__card small { font-size: 13px; }
    .catalog-detail-variant-picker { margin-top: 14px; gap: 6px; }
    .catalog-detail-variant-picker span { font-size: 12px; }
    .catalog-detail-variant-picker select { min-height: 46px; padding: 0 12px; font-size: 14px; }
    .catalog-detail-variant-current { margin-top: 10px; padding: 12px; font-size: 14px; }
    .filter-submit .filter-submit--mobile .filter-submit--shared {
        display: block;
    }
}


.ts-wrapper:not(.form-control, .form-select).single .ts-control{
    background: none !important;
}
