/**
 * Каталог авто: фильтры, префикс .mb-fleet-catalog (без «золотых» акцентов).
 */

/*
 * Блокировка скролла фона при открытых листах фильтров.
 * Дополнение к JS: position:fixed + top на body (см. mbFleetCatalogSyncGlobalSheetLock).
 */
html.mb-fleet-catalog--sheet-lock {
	overflow: hidden !important;
	overscroll-behavior: none;
}

body.mb-fleet-catalog--sheet-lock {
	overflow: hidden !important;
	overscroll-behavior: none;
}

.mb-fleet-catalog {
	--mb-filter-bg: #232323;
	--mb-filter-panel: #1f1f1f;
	--mb-filter-border: #5a5a5a;
	--mb-filter-border-active: #fff;
	--mb-filter-muted: #b0b0b0;
	--mb-filter-text: #fff;
	/* «Марка»: 2 → 3 (планшет) → 4 (≥1920). «Класс» на десктопе — всегда 2 колонки (см. медиазапрос ниже). */
	--mb-filter-tile-cols: 2;
	position: relative;
	z-index: 2;
	font-weight: 300;
}

@media (min-width: 768px) {
	.mb-fleet-catalog {
		--mb-filter-tile-cols: 3;
	}
}

@media (min-width: 1920px) {
	.mb-fleet-catalog {
		--mb-filter-tile-cols: 4;
	}
}

.mb-fleet-catalog__sheet-backdrop {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.28s ease, visibility 0.28s;
	pointer-events: none;
}

.mb-fleet-catalog--all-sheet-open .mb-fleet-catalog__sheet-backdrop {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

@media (max-width: 1023px) {
	.mb-fleet-catalog--pick-sheet-open .mb-fleet-catalog__sheet-backdrop {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}

/* Строка фильтров и bottom sheet — над backdrop (иначе затемнение перекрывает триггер «Все фильтры») */
.mb-fleet-catalog.mb-fleet-catalog--all-sheet-open > .filter-wrapper {
	position: relative;
	z-index: 100001;
}

@media (max-width: 1023px) {
	.mb-fleet-catalog.mb-fleet-catalog--pick-sheet-open > .filter-wrapper {
		position: relative;
		z-index: 100001;
	}
}

.mb-fleet-catalog .filter-wrapper {
	margin: 24px 0 20px;
}

.mb-fleet-catalog ._new-filter .filter__list {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	gap: 12px;
}

.mb-fleet-catalog ._new-filter .filter__list-mobile {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 12px;
	flex: 1 1 auto;
	min-width: 0;
}

.mb-fleet-catalog ._new-filter .select {
	position: relative;
	display: block;
	z-index: 1;
	border: none;
	color: var(--mb-filter-text);
	min-width: max-content;
	margin: 0;
	padding: 0;
}

.mb-fleet-catalog ._new-filter .filter__list .select.select--sort {
	order: 99;
	margin-left: auto;
}

.mb-fleet-catalog ._new-filter .select.select--sort .mb-fleet-catalog__sort-label {
	border-bottom: 1px dashed rgba(255, 255, 255, 0.55);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sort-icon {
	display: none;
	align-items: center;
	justify-content: center;
	line-height: 0;
	color: var(--mb-filter-text);
	flex-shrink: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sort-icon img {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.mb-fleet-catalog ._new-filter .select.select--sort .select__main {
	background: transparent;
	border: none;
	padding: 6px 4px;
}

.mb-fleet-catalog ._new-filter .select.select--sort .select__options {
	left: auto;
	right: 0;
	min-width: 220px;
	padding: 16px 20px;
}

.mb-fleet-catalog ._new-filter .select.select--sort .checkbox-list {
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.mb-fleet-catalog ._new-filter .select:not(.select--selected) .select__close,
.mb-fleet-catalog ._new-filter .select:not(.select--selected) .select__status {
	display: none !important;
}

.mb-fleet-catalog ._new-filter .select._active {
	z-index: 4;
}

.mb-fleet-catalog ._new-filter .select__main {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 16;
	overflow: hidden;
	border: 1px solid transparent;
	background: var(--mb-filter-bg);
	cursor: pointer;
	transition: border-color 0.25s, color 0.25s;
	padding: 6px 16px;
	min-height: 38px;
	border-radius: 5px;
	min-width: max-content;
	flex-grow: 0;
	white-space: nowrap;
}

.mb-fleet-catalog ._new-filter .select._active .select__main,
.mb-fleet-catalog ._new-filter .select.select--selected .select__main {
	border-color: var(--mb-filter-border-active);
}

.mb-fleet-catalog ._new-filter .select__input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.mb-fleet-catalog ._new-filter .select__value {
	display: flex;
	gap: 10px;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	font-size: 17px;
	line-height: 1.25;
	flex-grow: 1;
}

.mb-fleet-catalog ._new-filter .select__value::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	margin-left: 6px;
	border-right: 2px solid var(--mb-filter-muted);
	border-bottom: 2px solid var(--mb-filter-muted);
	transform: rotate(45deg);
	transition: transform 0.2s;
	flex-shrink: 0;
}

.mb-fleet-catalog ._new-filter .select._active .select__value::after {
	transform: rotate(-135deg);
	margin-top: 4px;
}

.mb-fleet-catalog ._new-filter .select.select--sort .select__value::after {
	margin-left: 8px;
}

.mb-fleet-catalog ._new-filter .select__close {
	display: block;
	width: 14px;
	min-width: 14px;
	height: 14px;
	margin-left: 8px;
	background: linear-gradient(45deg, transparent 45%, var(--mb-filter-muted) 45%, var(--mb-filter-muted) 55%, transparent 55%),
		linear-gradient(-45deg, transparent 45%, var(--mb-filter-muted) 45%, var(--mb-filter-muted) 55%, transparent 55%);
	cursor: pointer;
	text-decoration: none;
	border: none;
}

.mb-fleet-catalog ._new-filter .select__status {
	width: 20px;
	min-width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #666;
	font-size: 12px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	line-height: 1;
	margin-left: 6px;
}

.mb-fleet-catalog ._new-filter .select__status:empty {
	display: none !important;
}

.mb-fleet-catalog ._new-filter .select__options {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 100%;
	flex-direction: column;
	background: var(--mb-filter-panel);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
	transition: opacity 0.2s;
	border-radius: 5px;
	padding: 18px 20px;
	display: none;
	z-index: 25;
	width: max-content;
	max-width: min(100vw - 32px, 420px);
}

.mb-fleet-catalog ._new-filter .select._active .select__options {
	display: flex;
}

.mb-fleet-catalog ._new-filter .checkbox._iconed {
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	width: max-content;
	max-width: 100%;
}

.mb-fleet-catalog ._new-filter .checkbox._iconed > img {
	flex: 0 0 40px;
	width: 40px;
	min-width: 40px;
	display: block;
}

.mb-fleet-catalog ._new-filter .checkbox._iconed > .mb-fleet-catalog__class-icon-placeholder {
	flex: 0 0 40px;
	width: 40px;
	min-width: 40px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.mb-fleet-catalog ._new-filter .checkbox._mini {
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.mb-fleet-catalog ._new-filter .checkbox._iconed img.graystyle {
	max-width: 36px;
	max-height: 36px;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: left center;
	display: block;
	margin: 0;
	flex-shrink: 0;
	filter: grayscale(100%);
	opacity: 0.9;
}

.mb-fleet-catalog ._new-filter .checkbox._iconed .checkbox__input:checked ~ img.graystyle {
	filter: none;
	opacity: 1;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__class-icon-placeholder {
	display: block;
	width: 36px;
	height: 36px;
	border-radius: 4px;
	background: #2e2e2e;
	border: 1px dashed var(--mb-filter-border);
	margin: 0;
	flex-shrink: 0;
}

.mb-fleet-catalog ._new-filter .checkbox {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	margin: 0;
	cursor: pointer;
}

.mb-fleet-catalog ._new-filter .checkbox__input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.mb-fleet-catalog ._new-filter .checkbox__label {
	flex: 0 1 auto;
	min-width: 0;
	font-size: 16px;
	line-height: 1.3;
	color: var(--mb-filter-muted);
	transition: color 0.2s;
	text-align: left;
}

.mb-fleet-catalog ._new-filter .checkbox__mask._radio {
	flex-shrink: 0;
}

.mb-fleet-catalog ._new-filter .checkbox__input:checked ~ .checkbox__label {
	color: var(--mb-filter-text);
}

.mb-fleet-catalog ._new-filter .checkbox-list {
	display: grid;
	gap: 14px;
	max-height: 360px;
	overflow-y: auto;
	padding-right: 6px;
	margin: 0;
}

.mb-fleet-catalog ._new-filter .checkbox-list._grid {
	grid-template-columns: repeat(var(--grid-size, 3), minmax(0, 1fr));
	gap: 12px 20px;
}

/* Класс: панель не уже триггера — min(100%,max-content) давало ширину селекта */
.mb-fleet-catalog ._new-filter [data-dropdown="types"] .select__options {
	max-width: min(calc(100vw - 24px), 960px);
	width: max-content;
	min-width: max(100%, max-content);
	align-items: flex-start;
}

.mb-fleet-catalog ._new-filter [data-dropdown="types"] .checkbox-list {
	max-height: none;
	overflow: visible;
	padding-right: 0;
	display: grid;
	grid-template-columns: repeat(var(--mb-filter-tile-cols), minmax(0, 1fr));
	justify-content: stretch;
	justify-items: stretch;
	align-items: stretch;
	column-gap: 14px;
	row-gap: 12px;
}

.mb-fleet-catalog ._new-filter [data-dropdown="types"] .checkbox._iconed {
	align-items: center;
}

.mb-fleet-catalog ._new-filter [data-dropdown="types"] .checkbox__label {
	white-space: nowrap;
}

/* Марка: панель шире селекта, 6 колонок (резина) */
.mb-fleet-catalog ._new-filter [data-dropdown="brands"] .select__options {
	max-width: min(calc(100vw - 24px), 1100px);
	width: max-content;
	min-width: max(100%, max-content);
	align-items: flex-start;
}

.mb-fleet-catalog ._new-filter .checkbox-list.mb-fleet-catalog__brand-checkboxes._grid {
	display: grid;
	grid-template-columns: repeat(var(--mb-filter-tile-cols), minmax(0, 1fr));
	align-items: stretch;
	justify-items: stretch;
	column-gap: 14px;
	row-gap: 12px;
	max-height: none;
	overflow: visible;
	padding-right: 0;
	width: 100%;
	min-width: 0;
}

.mb-fleet-catalog ._new-filter [data-dropdown="brands"] .checkbox._iconed {
	align-items: center;
}

.mb-fleet-catalog ._new-filter [data-dropdown="brands"] .checkbox__label {
	white-space: nowrap;
}

.mb-fleet-catalog ._new-filter .select__btns {
	display: flex;
	gap: 10px;
	margin-top: 18px;
	flex-wrap: wrap;
}

.mb-fleet-catalog ._new-filter .button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-weight: 400;
	color: var(--mb-filter-text);
	font-size: 15px;
	text-align: center;
	min-height: 40px;
	padding: 8px 20px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: transparent;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.mb-fleet-catalog ._new-filter .button._alt {
	background: #fff;
	color: #141414;
	border-color: #fff;
}

.mb-fleet-catalog ._new-filter .cars-count-filters::before {
	content: "(";
}

.mb-fleet-catalog ._new-filter .cars-count-filters::after {
	content: ")";
}

/*
 * «Все фильтры»: высокий z-index только пока открыт лист.
 * Иначе кнопка (обёртка) с z-index: 100003 перекрывала открытые панели
 * «Класс»/«Марка» (≤1023px: у них обёртка и .select__options — 100002).
 */
.mb-fleet-catalog ._new-filter [data-dropdown="all"] {
	z-index: 1;
}

.mb-fleet-catalog ._new-filter [data-dropdown="all"]._active {
	z-index: 100003;
}

.mb-fleet-catalog ._new-filter [data-dropdown="all"] .select__options.mb-fleet-catalog__panel-all-filters {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: auto;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin: 0;
	border-radius: 16px 16px 0 0;
	padding: 10px 20px 0;
	padding-bottom: 0;
	box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.55);
	z-index: 100003;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	max-height: min(92vh, calc(100dvh - 40px));
	overflow: hidden;
	display: flex !important;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transform: translate3d(0, 100%, 0);
	transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.22s ease, visibility 0.34s;
}

.mb-fleet-catalog ._new-filter [data-dropdown="all"]._active .select__options.mb-fleet-catalog__panel-all-filters {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translate3d(0, 0, 0);
}

.mb-fleet-catalog ._new-filter [data-dropdown="all"] .mb-fleet-catalog__sheet-handle,
.mb-fleet-catalog ._new-filter [data-dropdown="all"] .mb-fleet-catalog__sheet-head {
	flex-shrink: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sheet-handle {
	width: 36px;
	height: 4px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.22);
	margin: 0 auto 12px;
	flex-shrink: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sheet-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	gap: 12px;
	flex-shrink: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sheet-title {
	font-size: 17px;
	font-weight: 600;
	color: var(--mb-filter-text);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sheet-close {
	appearance: none;
	border: none;
	background: transparent;
	color: var(--mb-filter-muted);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	padding: 4px 10px;
	margin: -4px -10px -4px 0;
	border-radius: 4px;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sheet-close:hover,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sheet-close:focus-visible {
	color: var(--mb-filter-text);
	outline: none;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__panel-all-filters .checkbox-list {
	max-height: none;
	overflow: visible;
	padding-right: 0;
}

/* Прокручиваемая область панели «Все фильтры»; кнопки снаружи — всегда у нижнего края */
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sheet-body {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	padding-bottom: 8px;
}

/* Строка кнопок внутри sheet-body: на десктопе — обычный низ блока; <1024 — липкая полоса на всю ширину панели */
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-actions {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	width: 100%;
	min-width: 0;
	margin-top: 4px;
	padding: 14px 0 18px;
	box-sizing: border-box;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-actions .mb-fleet-catalog__filter-section--actions {
	flex: 1 1 100%;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin-bottom: 0;
	padding: 0;
	border: none;
	background: transparent;
	box-shadow: none;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-actions .mb-fleet-catalog__sheet-actions {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 10px;
	margin-top: 0;
	width: 100%;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-actions .mb-fleet-catalog__sheet-actions .button {
	flex: 1 1 50%;
	min-width: 0;
	width: auto;
	justify-content: center;
}

@media (min-width: 1024px) {
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-actions {
		position: static;
		margin-top: 8px;
		padding: 12px 0 6px;
		border-top: none;
		box-shadow: none;
		background: transparent;
	}
}

@media (max-width: 1023px) {
	.mb-fleet-catalog ._new-filter [data-dropdown="all"] .select__options.mb-fleet-catalog__panel-all-filters {
		padding-left: 0;
		padding-right: 0;
	}

	.mb-fleet-catalog ._new-filter [data-dropdown="all"] .mb-fleet-catalog__sheet-handle,
	.mb-fleet-catalog ._new-filter [data-dropdown="all"] .mb-fleet-catalog__sheet-head {
		padding-left: 20px;
		padding-right: 20px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sheet-body {
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 4px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-actions {
		position: sticky;
		bottom: 0;
		z-index: 4;
		/* Вылезаем за padding sheet-body — полоса на всю ширину панели (как у нижнего края экрана) */
		width: calc(100% + 40px);
		max-width: none;
		align-self: stretch;
		margin: 12px -20px 0;
		padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		background: #141416;
		box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.45);
		box-sizing: border-box;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-legend {
		display: none;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__seats-range {
		padding-top: 10px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-track {
		height: 28px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-min,
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-max {
		height: 28px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-min::-webkit-slider-thumb,
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-max::-webkit-slider-thumb {
		width: 18px;
		height: 18px;
		border-width: 2px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-min::-moz-range-thumb,
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-max::-moz-range-thumb {
		width: 18px;
		height: 18px;
		border-width: 2px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section-head--seats {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		gap: 8px;
		margin-bottom: 6px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section-head--seats .mb-fleet-catalog__filter-section-title {
		flex: 0 0 auto;
		margin-bottom: 0;
		font-size: 11px;
		letter-spacing: 0.12em;
		white-space: nowrap;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__seat-presets {
		flex-wrap: nowrap;
		gap: 6px;
		flex: 1 1 auto;
		min-width: 0;
		justify-content: flex-end;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__seat-presets::-webkit-scrollbar {
		display: none;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__seat-preset {
		min-height: 28px;
		padding: 0 10px;
		font-size: 12px;
		flex-shrink: 0;
	}
}

/* «Все фильтры»: 1/3 класс + 2/3 марка; второй ряд — три колонки (места, цвет, особенности); кнопки — отдельная строка */
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-grid {
	display: flex;
	flex-direction: column;
	gap: 22px;
	width: 100%;
	align-items: stretch;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-primary {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
	align-items: stretch;
	gap: 18px;
	width: 100%;
	min-width: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section--class {
	min-width: 0;
	max-width: 100%;
	overflow: visible;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section--brand {
	min-width: 0;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: visible;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__panel-all-filters .mb-fleet-catalog__filter-section--class .checkbox-list {
	display: grid;
	grid-template-columns: repeat(var(--mb-filter-tile-cols), minmax(0, 1fr));
	justify-content: stretch;
	justify-items: stretch;
	align-content: start;
	align-items: stretch;
	column-gap: 14px;
	row-gap: 10px;
	width: 100%;
	max-width: 100%;
	flex: 1 1 auto;
	min-height: 0;
	min-width: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__panel-all-filters .mb-fleet-catalog__filter-section--class .checkbox._iconed {
	align-items: center;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__panel-all-filters .mb-fleet-catalog__filter-section--class .checkbox__label {
	white-space: normal;
	word-break: normal;
	overflow-wrap: break-word;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__panel-all-filters .mb-fleet-catalog__filter-section--brand .checkbox-list.mb-fleet-catalog__brand-checkboxes._grid {
	display: grid;
	grid-template-columns: repeat(var(--mb-filter-tile-cols), minmax(0, 1fr));
	align-items: stretch;
	justify-items: stretch;
	column-gap: 14px;
	row-gap: 12px;
	width: 100%;
	min-width: min(100%, 240px);
	flex: 1 1 auto;
	min-height: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__panel-all-filters .mb-fleet-catalog__filter-section--brand .checkbox._iconed {
	align-items: center;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__panel-all-filters .mb-fleet-catalog__filter-section--brand .checkbox__label {
	white-space: normal;
	word-break: normal;
	overflow-wrap: break-word;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-secondary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 18px;
	width: 100%;
	min-width: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-secondary .mb-fleet-catalog__filter-section--seats,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-secondary .mb-fleet-catalog__filter-section--color,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-secondary .mb-fleet-catalog__filter-section--body-color,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-secondary .mb-fleet-catalog__filter-section--flags {
	min-width: 0;
	max-width: 100%;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section {
	margin-bottom: 20px;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-grid .mb-fleet-catalog__filter-section {
	margin-bottom: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section:last-of-type {
	margin-bottom: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section-title {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--mb-filter-muted);
	margin: 0 0 12px;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__seats-range-row {
	margin-bottom: 14px;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: var(--mb-filter-text);
	margin-bottom: 6px;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-min,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-max {
	width: 100%;
	height: 6px;
	border-radius: 3px;
	accent-color: #fff;
	cursor: pointer;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__select--all-filters .mb-fleet-catalog__all-filters-icon {
	display: none;
	align-items: center;
	justify-content: center;
	line-height: 0;
	color: var(--mb-filter-text);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__select--all-filters .mb-fleet-catalog__all-filters-icon svg {
	display: block;
}

@media (min-width: 1024px) {
	.mb-fleet-catalog ._new-filter .select .select__btns.pc-hide {
		display: none !important;
	}
}

@media (max-width: 768px) {
	/* Одна строка: класс и марка слева, сортировка — иконка справа */
	.mb-fleet-catalog ._new-filter .filter__list {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: stretch;
	}

	.mb-fleet-catalog ._new-filter .filter__list-mobile {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 8px;
		flex: 1 1 auto;
		min-width: 0;
		width: 100%;
	}

	.mb-fleet-catalog ._new-filter .filter__list-mobile > .select:not(.select--sort) {
		flex: 1 1 0;
		min-width: 0;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-primary {
		grid-template-columns: minmax(0, 1fr);
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section--class,
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section--brand {
		width: 100%;
		max-width: 100%;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-secondary {
		grid-template-columns: minmax(0, 1fr);
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__panel-all-filters .mb-fleet-catalog__filter-section--brand .checkbox-list.mb-fleet-catalog__brand-checkboxes._grid {
		grid-template-columns: repeat(var(--mb-filter-tile-cols), minmax(0, 1fr));
		justify-items: stretch;
		align-items: stretch;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-actions .mb-fleet-catalog__filter-section--actions {
		flex: 1 1 100%;
		width: 100%;
		max-width: 100%;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-actions .mb-fleet-catalog__sheet-actions {
		flex-wrap: nowrap;
		gap: 8px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-actions .mb-fleet-catalog__sheet-actions .button {
		flex: 1 1 50%;
		min-width: 0;
	}

	.mb-fleet-catalog ._new-filter .filter__list-mobile > .select.mb-fleet-catalog__select--all-filters {
		flex: 0 0 auto;
		min-width: 44px;
		width: auto;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__select--all-filters .select__main {
		background: var(--mb-filter-bg);
		border: 1px solid transparent;
		padding: 6px 12px;
		min-width: 44px;
		justify-content: center;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__select--all-filters._active .select__main,
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__select--all-filters.select--selected .select__main {
		border-color: var(--mb-filter-border-active);
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__select--all-filters .select__value {
		position: relative;
		justify-content: center;
		gap: 0;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__select--all-filters .select__value::after {
		display: none;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__select--all-filters .mb-fleet-catalog__all-filters-label {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__select--all-filters .mb-fleet-catalog__all-filters-icon {
		display: flex;
	}

	.mb-fleet-catalog ._new-filter .filter__list-mobile > .select.select--sort {
		flex: 0 0 auto;
		margin-left: auto;
		order: 0;
		width: auto;
		min-width: 0;
	}

	.mb-fleet-catalog ._new-filter .select.select--sort .select__main {
		background: var(--mb-filter-bg);
		border: 1px solid transparent;
		padding: 6px 12px;
		min-width: 44px;
		justify-content: center;
		align-items: center;
	}

	.mb-fleet-catalog ._new-filter .select__status {
		display: none !important;
	}

	.mb-fleet-catalog ._new-filter .select.select--sort._active .select__main,
	.mb-fleet-catalog ._new-filter .select.select--sort.select--selected .select__main {
		border-color: var(--mb-filter-border-active);
	}

	.mb-fleet-catalog ._new-filter .select.select--sort .select__value {
		position: relative;
		justify-content: center;
		gap: 0;
	}

	.mb-fleet-catalog ._new-filter .select.select--sort .select__value::after {
		display: none;
	}

	.mb-fleet-catalog ._new-filter .select.select--sort .mb-fleet-catalog__sort-label {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
		border-bottom: none;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sort-icon {
		display: flex;
	}

	.mb-fleet-catalog ._new-filter .select__options {
		left: 0;
		right: 0;
		width: 100%;
		max-width: none;
	}

	.mb-fleet-catalog ._new-filter [data-dropdown="types"] .select__options {
		width: max-content;
		max-width: min(calc(100vw - 24px), 960px);
		right: auto;
		left: 0;
		align-items: flex-start;
	}

	.mb-fleet-catalog ._new-filter [data-dropdown="types"] .checkbox-list {
		grid-template-columns: repeat(var(--mb-filter-tile-cols), minmax(0, 1fr));
		justify-items: stretch;
		align-items: stretch;
	}

	.mb-fleet-catalog ._new-filter [data-dropdown="brands"] .select__options {
		width: max-content;
		max-width: min(calc(100vw - 24px), 1100px);
		right: auto;
		align-items: flex-start;
	}

	.mb-fleet-catalog ._new-filter [data-dropdown="brands"] .checkbox-list.mb-fleet-catalog__brand-checkboxes._grid {
		grid-template-columns: repeat(var(--mb-filter-tile-cols), minmax(0, 1fr));
		justify-items: stretch;
		align-items: stretch;
	}

	.mb-fleet-catalog ._new-filter .select.select--sort .select__options {
		left: auto;
		right: 0;
		width: max-content;
		min-width: min(100vw - 32px, 280px);
	}

	.mb-fleet-catalog ._new-filter .checkbox-list._grid {
		--grid-size: 2;
	}
}

/* Чипы */
.mb-fleet-catalog .mb-fleet-catalog__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
	min-height: 0;
	align-items: center;
}

.mb-fleet-catalog .mb-fleet-catalog__chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 6px 5px 12px;
	min-height: 0;
	background: rgba(35, 35, 35, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	color: var(--mb-filter-text);
	font-size: 13px;
	line-height: 1.25;
}

.mb-fleet-catalog .mb-fleet-catalog__chip-text {
	max-width: 240px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Контекст архива (тег): чип без снятия */
.mb-fleet-catalog .mb-fleet-catalog__chip.mb-fleet-catalog__chip--locked {
	padding: 5px 12px;
	border-style: dashed;
	border-color: rgba(255, 255, 255, 0.28);
}

/* Кнопка «×»: сброс стилей темы (часто огромный min-height у button) */
.mb-fleet-catalog .mb-fleet-catalog__chip-remove {
	appearance: none;
	-webkit-appearance: none;
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	min-width: 20px;
	min-height: 20px;
	max-width: 20px;
	max-height: 20px;
	padding: 0;
	margin: 0 0 0 2px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.88);
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	vertical-align: middle;
}

.mb-fleet-catalog .mb-fleet-catalog__chip-remove:hover,
.mb-fleet-catalog .mb-fleet-catalog__chip-remove:focus-visible {
	color: #fff;
	background: rgba(255, 255, 255, 0.22);
	outline: none;
}

.mb-fleet-catalog__grid-wrap.loading {
	opacity: 0.55;
	pointer-events: none;
	transition: opacity 0.2s;
}

.mb-fleet-catalog__grid {
	display: grid;
	grid-template-columns: repeat(var(--mb-catalog-cols, 3), minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}

.mb-fleet-catalog__cell {
	min-width: 0;
}

.mb-fleet-catalog__cell .car-card {
	height: 100%;
}

/* Кнопки в каталоге: в ряд 50/50 */
.mb-fleet-catalog__cell .car-card-actions--split {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 8px;
	width: 100%;
	align-items: stretch;
}

.mb-fleet-catalog__cell .car-card-actions--split .car-card-btn {
	flex: 1 1 50%;
	min-width: 0;
	width: auto;
}

.mb-fleet-catalog__cell .car-card .car-card-btn {
	display: block;
	width: 100%;
	padding: 9px 10px;
	background: #0a0a0a !important;
	color: #fff !important;
	border: none !important;
	border-radius: 6px;
	font-size: 0.82rem;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
	transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}

.mb-fleet-catalog__cell .car-card .car-card-btn--booking {
	background: rgba(255, 255, 255, 0.88) !important;
	color: #0a0a0a !important;
}

.mb-fleet-catalog__cell .car-card .car-card-btn--details {
	background: transparent !important;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.55) !important;
}

.mb-fleet-catalog__cell .car-card-btn__details-icon {
	display: none;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.mb-fleet-catalog__cell .car-card-btn__details-icon svg {
	display: block;
}

.mb-fleet-catalog__cell .car-card:hover .car-card-btn--booking {
	background: rgba(255, 255, 255, 0.96) !important;
	color: #000 !important;
	border: none !important;
}

.mb-fleet-catalog__cell .car-card:hover .car-card-btn--details {
	border-color: rgba(255, 255, 255, 0.85) !important;
}

.mb-fleet-catalog__empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 40px 16px;
	color: var(--mb-filter-muted);
	margin: 0;
}

@media (max-width: 991px) {
	.mb-fleet-catalog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.mb-fleet-catalog__grid {
		grid-template-columns: 1fr;
	}
}

/* «Подробнее»: на мобильных — только иконка (как отдельная кнопка), текст скрыт визуально */
@media (max-width: 768px) {
	.mb-fleet-catalog__cell .car-card-actions--split .car-card-btn--booking {
		flex: 1 1 auto;
		min-width: 0;
	}

	.mb-fleet-catalog__cell .car-card-actions--split .car-card-btn--details {
		flex: 0 0 48px;
		min-width: 48px;
		width: 48px;
		padding: 0 !important;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		position: relative;
	}

	.mb-fleet-catalog__cell .car-card-btn__details-label {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.mb-fleet-catalog__cell .car-card-btn__details-icon {
		display: flex;
	}
}

/* Premium filter redesign */
.mb-fleet-catalog {
	--mb-filter-bg: #1c1c1e;
	--mb-filter-panel: #171719;
	--mb-filter-surface: rgba(255, 255, 255, 0.035);
	--mb-filter-surface-hover: rgba(255, 255, 255, 0.06);
	--mb-filter-surface-active: rgba(255, 255, 255, 0.1);
	--mb-filter-border: rgba(255, 255, 255, 0.14);
	--mb-filter-border-strong: rgba(255, 255, 255, 0.22);
	--mb-filter-border-active: rgba(255, 255, 255, 0.88);
	--mb-filter-muted: rgba(255, 255, 255, 0.64);
	--mb-filter-text: #f6f3ee;
	--mb-filter-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
	--mb-filter-radius: 18px;
	--mb-filter-radius-sm: 14px;
}

.mb-fleet-catalog .filter-wrapper {
	margin: 28px 0 22px;
}

.mb-fleet-catalog ._new-filter .filter__list,
.mb-fleet-catalog ._new-filter .filter__list-mobile {
	gap: 14px;
}

.mb-fleet-catalog ._new-filter .select__main {
	min-height: 52px;
	padding: 10px 18px;
	border-radius: 14px;
	border-color: rgba(255, 255, 255, 0.08);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
		var(--mb-filter-bg);
}

.mb-fleet-catalog ._new-filter .select__main:hover {
	border-color: rgba(255, 255, 255, 0.18);
}

.mb-fleet-catalog ._new-filter .select__value {
	font-size: 15px;
	font-weight: 400;
	gap: 12px;
}

.mb-fleet-catalog ._new-filter .select__options {
	top: calc(100% + 12px);
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	box-sizing: border-box;
	background:
		radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 42%),
		var(--mb-filter-panel);
	box-shadow: var(--mb-filter-shadow);
}

.mb-fleet-catalog ._new-filter .checkbox-list {
	gap: 14px;
}

.mb-fleet-catalog ._new-filter [data-dropdown="types"] .select__options {
    width: min-content;
    max-width: min(calc(100vw - 32px), 640px);
    min-width: max-content;
}

.mb-fleet-catalog ._new-filter [data-dropdown="types"] .checkbox-list,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section--class .checkbox-list {
	grid-template-columns: repeat(var(--mb-filter-tile-cols), minmax(0, 1fr));
	column-gap: 14px;
	row-gap: 14px;
}

@media (min-width: 992px) {
	.mb-fleet-catalog ._new-filter [data-dropdown="types"] .checkbox-list,
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section--class .checkbox-list,
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__panel-all-filters .mb-fleet-catalog__filter-section--class .checkbox-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.mb-fleet-catalog ._new-filter [data-dropdown="brands"] .select__options {
	width: min(calc(100vw - 32px), 920px);
	max-width: min(calc(100vw - 32px), 920px);
	min-width: max(100%, 720px);
}

.mb-fleet-catalog ._new-filter .checkbox-list.mb-fleet-catalog__brand-checkboxes._grid,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section--brand .checkbox-list.mb-fleet-catalog__brand-checkboxes._grid {
	display: grid;
	grid-template-columns: repeat(var(--mb-filter-tile-cols), minmax(0, 1fr));
	align-items: stretch;
	justify-items: stretch;
	column-gap: 14px;
	row-gap: 12px;
	width: 100%;
	min-width: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile-wrap {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

.mb-fleet-catalog ._new-filter .checkbox-list.mb-fleet-catalog__brand-checkboxes._grid > .mb-fleet-catalog__tile-wrap,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section--brand .checkbox-list.mb-fleet-catalog__brand-checkboxes._grid > .mb-fleet-catalog__tile-wrap {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

/* Плитка на всю ячейку сетки и одинаковая высота строк */
.mb-fleet-catalog ._new-filter label.checkbox.mb-fleet-catalog__tile-wrap {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	min-height: 78px;
	height: 100%;
	padding: 15px 16px;
	border-radius: 16px;
	border: 1px solid var(--mb-filter-border);
	box-sizing: border-box;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
		var(--mb-filter-surface);
	color: var(--mb-filter-text);
	transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile-wrap:hover .mb-fleet-catalog__tile {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.24);
	background: var(--mb-filter-surface-hover);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile-media {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	overflow: hidden;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile-media img.graystyle {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	opacity: 0.78;
	filter: grayscale(100%);
	transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile--brand .mb-fleet-catalog__tile-media img.graystyle {
	filter: none;
	opacity: 0.96;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile.mb-fleet-catalog__tile--brand {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile-copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 4px;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile--brand .mb-fleet-catalog__tile-copy {
	flex: 1 1 auto;
	min-width: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile-title {
	display: block;
	font-size: 15px;
	line-height: 1.35;
	color: var(--mb-filter-text);
	min-width: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile--brand .mb-fleet-catalog__tile-title {
	white-space: normal;
	word-break: normal;
	overflow-wrap: break-word;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile-wrap .checkbox__input:focus-visible + .mb-fleet-catalog__tile {
	outline: 2px solid rgba(255, 255, 255, 0.52);
	outline-offset: 2px;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile-wrap .checkbox__input:checked + .mb-fleet-catalog__tile {
	border-color: var(--mb-filter-border-active);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
		var(--mb-filter-surface-active);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.22) inset,
		0 14px 28px rgba(0, 0, 0, 0.24);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile-wrap .checkbox__input:checked + .mb-fleet-catalog__tile img.graystyle {
	filter: none;
	opacity: 1;
	transform: scale(1.04);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile-wrap.is-hidden {
	display: none;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__class-icon-placeholder {
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px dashed rgba(255, 255, 255, 0.18);
}

.mb-fleet-catalog ._new-filter [data-dropdown="all"] .select__options.mb-fleet-catalog__panel-all-filters {
	padding: 14px 0 0;
	border-radius: 24px 24px 0 0;
	box-sizing: border-box;
	overflow: hidden;
	min-height: 0;
	background:
		radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 38%),
		#141416;
}

@media (min-width: 1024px) {
	.mb-fleet-catalog ._new-filter [data-dropdown="all"] .select__options.mb-fleet-catalog__panel-all-filters {
		padding-left: 24px;
		padding-right: 24px;
	}

	.mb-fleet-catalog ._new-filter [data-dropdown="all"] .mb-fleet-catalog__sheet-handle,
	.mb-fleet-catalog ._new-filter [data-dropdown="all"] .mb-fleet-catalog__sheet-head,
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sheet-body {
		padding-left: 0;
		padding-right: 0;
	}
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sheet-head {
	margin-bottom: 18px;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sheet-head-copy {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sheet-title {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sheet-note {
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.54);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-grid {
	gap: 18px;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-primary {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
	align-items: stretch;
	gap: 18px;
	min-width: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-secondary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 18px;
	min-width: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 22px;
	border-radius: var(--mb-filter-radius);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-sizing: border-box;
	min-width: 0;
	overflow: hidden;
	height: 100%;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
		rgba(255, 255, 255, 0.018);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section--class,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section--brand {
	overflow: visible;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__panel-all-filters .mb-fleet-catalog__filter-section--class > .checkbox-list,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__panel-all-filters .mb-fleet-catalog__filter-section--brand > .checkbox-list.mb-fleet-catalog__brand-checkboxes._grid {
	flex: 1 1 auto;
	min-height: 0;
	align-self: stretch;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section-title {
	margin-bottom: 14px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.56);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section-head .mb-fleet-catalog__filter-section-title {
	margin-bottom: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section--class {
	min-width: 0;
	max-width: 100%;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section--brand {
	min-width: 0;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: visible;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-secondary .mb-fleet-catalog__filter-section--seats,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-secondary .mb-fleet-catalog__filter-section--color,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-secondary .mb-fleet-catalog__filter-section--body-color,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-secondary .mb-fleet-catalog__filter-section--flags {
	min-width: 0;
	max-width: 100%;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__seats-range {
	position: relative;
	padding-top: 46px;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-values {
	position: absolute;
	inset: 0 0 auto;
	height: 38px;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-value {
	position: absolute;
	top: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--mb-filter-text);
	font-size: 13px;
	white-space: nowrap;
	transform: translateX(-50%);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-value--min {
	left: var(--mb-seats-min-badge-left, 0%);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-value--max {
	left: var(--mb-seats-max-badge-left, 100%);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-value-label,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-legend {
	color: rgba(255, 255, 255, 0.56);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-track {
	position: relative;
	height: 36px;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-track::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 10px;
	border-radius: 999px;
	transform: translateY(-50%);
	background:
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.14) 0,
			rgba(255, 255, 255, 0.14) var(--mb-seats-min-pct, 0%),
			rgba(255, 255, 255, 0.9) var(--mb-seats-min-pct, 0%),
			rgba(255, 255, 255, 0.9) var(--mb-seats-max-pct, 100%),
			rgba(255, 255, 255, 0.14) var(--mb-seats-max-pct, 100%),
			rgba(255, 255, 255, 0.14) 100%
		);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-min,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-max {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 36px;
	margin: 0;
	background: transparent;
	appearance: none;
	-webkit-appearance: none;
	pointer-events: none;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-min::-webkit-slider-thumb,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-max::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 3px solid #0f0f11;
	background: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
	pointer-events: auto;
	cursor: pointer;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-min::-moz-range-thumb,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-max::-moz-range-thumb {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 3px solid #0f0f11;
	background: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
	pointer-events: auto;
	cursor: pointer;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-min::-webkit-slider-runnable-track,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-max::-webkit-slider-runnable-track,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-min::-moz-range-track,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-seats-max::-moz-range-track {
	background: transparent;
	border: none;
	height: 10px;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-legend {
	display: flex;
	justify-content: space-between;
	margin-top: 14px;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__seat-presets {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 0;
	justify-content: flex-end;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__seat-preset {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.03);
	color: var(--mb-filter-muted);
	font: inherit;
	font-size: 13px;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__seat-preset:hover,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__seat-preset:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.06);
	color: var(--mb-filter-text);
	outline: none;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__seat-preset.is-active {
	border-color: var(--mb-filter-border-active);
	background: rgba(255, 255, 255, 0.1);
	color: var(--mb-filter-text);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

/* Плитки и пресеты мест: компактнее между 1024px и 1299px */
@media (min-width: 1024px) and (max-width: 1299px) {
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile {
		display: flex;
		align-items: center;
		gap: 14px;
		flex: 1 1 auto;
		width: 100%;
		min-width: 0;
		min-height: 78px;
		height: 100%;
		padding: 8px 8px;
		border-radius: 16px;
		border: 1px solid var(--mb-filter-border);
		box-sizing: border-box;
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
			var(--mb-filter-surface);
		color: var(--mb-filter-text);
		transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__seat-presets {
		gap: 6px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__seat-preset {
		min-height: 28px;
		padding: 0 10px;
		font-size: 11px;
	}
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__chip-options {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	min-width: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__choice-chip {
	display: block;
	margin: 0;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__choice-chip-ui {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 18px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.03);
	color: var(--mb-filter-muted);
	font-size: 15px;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__choice-chip:hover .mb-fleet-catalog__choice-chip-ui {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.06);
	color: var(--mb-filter-text);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__choice-chip .checkbox__input:checked + .mb-fleet-catalog__choice-chip-ui {
	border-color: var(--mb-filter-border-active);
	background: rgba(255, 255, 255, 0.1);
	color: var(--mb-filter-text);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__chip-options--color,
.mb-fleet-catalog ._new-filter .mb-fleet-catalog__chip-options--body-color {
	flex-wrap: wrap;
}

@media (max-width: 1023px) {
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__chip-options--color,
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__chip-options--body-color {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px 12px;
		align-items: start;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__chip-options--color > .mb-fleet-catalog__choice-chip--color,
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__chip-options--body-color > .mb-fleet-catalog__choice-chip--color {
		min-width: 0;
	}
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__choice-chip--color {
	cursor: pointer;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__choice-chip-ui--color {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	min-height: 0;
	min-width: 0;
	padding: 6px 12px 6px 6px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__choice-chip-ui--color .mb-fleet-catalog__color-swatch {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 10px;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__color-chip-label {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 13px;
	line-height: 1.35;
	font-weight: 500;
	color: var(--mb-filter-text);
	text-align: left;
	word-break: normal;
	overflow-wrap: break-word;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__choice-chip--color:hover .mb-fleet-catalog__choice-chip-ui--color {
	background: rgba(255, 255, 255, 0.08);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__choice-chip--color .checkbox__input:checked + .mb-fleet-catalog__choice-chip-ui--color {
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

/* Широкий десктоп: только образец; подпись — в title при наведении (планшетам — текст справа) */
@media (min-width: 1200px) {
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__color-chip-label {
		display: none;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__choice-chip-ui--color {
		padding: 4px;
		justify-content: center;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__choice-chip-ui--color .mb-fleet-catalog__color-swatch {
		width: 44px;
		height: 44px;
		border-radius: 12px;
	}
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__color-swatch {
	display: block;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
	box-sizing: border-box;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__color-swatch--solid {
	background-color: var(--mb-swatch-a, #6b6b70);
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__color-swatch--split {
	background: linear-gradient(
		135deg,
		var(--mb-swatch-a, #ebe6dc) 0%,
		var(--mb-swatch-a, #ebe6dc) 49.5%,
		var(--mb-swatch-b, #141416) 49.5%,
		var(--mb-swatch-b, #141416) 100%
	);
}

.mb-fleet-catalog .mb-fleet-catalog__chip.mb-fleet-catalog__chip--color-swatch {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 8px 5px 6px;
	min-height: 32px;
	max-width: 100%;
}

.mb-fleet-catalog .mb-fleet-catalog__chip.mb-fleet-catalog__chip--color-swatch .mb-fleet-catalog__color-swatch {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 10px;
}

.mb-fleet-catalog .mb-fleet-catalog__chip.mb-fleet-catalog__chip--color-swatch .mb-fleet-catalog__chip-text {
	position: static;
	width: auto;
	height: auto;
	max-width: 160px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	clip: auto;
	border: 0;
	color: inherit;
}

.mb-fleet-catalog ._new-filter .button {
	min-height: 50px;
	padding: 10px 22px;
	border-radius: 14px;
	border-color: rgba(255, 255, 255, 0.18);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.01em;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.mb-fleet-catalog ._new-filter .button:hover {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.3);
}

.mb-fleet-catalog ._new-filter .button._alt {
	background: #f4f0ea;
	color: #101010;
	border-color: #f4f0ea;
}

.mb-fleet-catalog ._new-filter .button._alt:hover {
	background: #fff;
	border-color: #fff;
}

.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-actions .mb-fleet-catalog__filter-section--actions {
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
}

.mb-fleet-catalog .mb-fleet-catalog__chips {
	gap: 10px;
	margin-bottom: 18px;
}

.mb-fleet-catalog .mb-fleet-catalog__chip {
	padding: 7px 8px 7px 14px;
	border-radius: 999px;
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(22, 22, 24, 0.94);
}

@media (max-width: 1023px) {
	.mb-fleet-catalog .mb-fleet-catalog__chips {
		gap: 6px;
		margin-bottom: 12px;
	}

	.mb-fleet-catalog .mb-fleet-catalog__chip {
		padding: 4px 5px 4px 9px;
		font-size: 11px;
		gap: 4px;
	}

	.mb-fleet-catalog .mb-fleet-catalog__chip-text {
		max-width: 140px;
	}

	.mb-fleet-catalog .mb-fleet-catalog__chip-remove {
		width: 18px;
		height: 18px;
		min-width: 18px;
		min-height: 18px;
		max-width: 18px;
		max-height: 18px;
		font-size: 12px;
	}

	.mb-fleet-catalog .mb-fleet-catalog__chip.mb-fleet-catalog__chip--color-swatch {
		padding: 4px 6px 4px 4px;
		gap: 5px;
		min-height: 28px;
	}

	.mb-fleet-catalog .mb-fleet-catalog__chip.mb-fleet-catalog__chip--color-swatch .mb-fleet-catalog__color-swatch {
		width: 22px;
		height: 22px;
	}

	.mb-fleet-catalog .mb-fleet-catalog__chip.mb-fleet-catalog__chip--color-swatch .mb-fleet-catalog__chip-text {
		max-width: 100px;
	}
}

@media (max-width: 991px) {
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-primary {
		grid-template-columns: minmax(0, 1fr);
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-secondary {
		grid-template-columns: minmax(0, 1fr);
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-actions .mb-fleet-catalog__filter-section--actions {
		flex: 1 1 100%;
		width: 100%;
		max-width: 100%;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__chip-options {
		flex-wrap: wrap;
	}
}

@media (max-width: 768px) {
	.mb-fleet-catalog ._new-filter .filter__list,
	.mb-fleet-catalog ._new-filter .filter__list-mobile {
		gap: 10px;
	}

	.mb-fleet-catalog ._new-filter .select__main {
		min-height: 48px;
		padding: 8px 14px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__filter-section {
		padding: 10px;
		border-radius: 16px;
	}

	.mb-fleet-catalog ._new-filter [data-dropdown="all"] .mb-fleet-catalog__sheet-handle,
	.mb-fleet-catalog ._new-filter [data-dropdown="all"] .mb-fleet-catalog__sheet-head,
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__sheet-body {
		padding-left: 16px;
		padding-right: 16px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__all-filters-row-actions {
		padding-left: 16px;
		padding-right: 16px;
		width: calc(100% + 32px);
		margin-left: -16px;
		margin-right: -16px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile {
		min-height: 72px;
		padding: 14px;
		gap: 8px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile-media {
		flex-basis: 42px;
		width: 42px;
		height: 42px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile-title {
		font-size: 14px;
	}

	.mb-fleet-catalog ._new-filter [data-dropdown="all"] .select__options.mb-fleet-catalog__panel-all-filters {
		padding: 12px 0 0;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-values {
		position: static;
		display: flex;
		justify-content: space-between;
		height: auto;
		margin-bottom: 6px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__range-value {
		position: static;
		transform: none;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__seat-presets {
		gap: 5px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__seat-preset {
		min-height: 26px;
		padding: 0 8px;
		font-size: 11px;
		box-shadow: none;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__seat-preset.is-active {
		box-shadow: none;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-select__close {
		display: none !important;
	}
}

@media (max-width: 560px) {
	.mb-fleet-catalog .mb-fleet-catalog__chip {
		padding: 3px 4px 3px 7px;
		font-size: 10px;
		gap: 3px;
	}

	.mb-fleet-catalog .mb-fleet-catalog__chip-text {
		max-width: 110px;
	}

	.mb-fleet-catalog .mb-fleet-catalog__chip.mb-fleet-catalog__chip--color-swatch .mb-fleet-catalog__chip-text {
		max-width: 72px;
	}

	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile {
		min-height: 68px;
		padding: 12px 13px;
	}
}

@media (max-width: 375px) {
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__tile-title {
		font-size: clamp(10px, 2.933vw, 11px);
		line-height: 1.28;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}
}

/*
 * Класс / Марка / Сортировка (filter__list-mobile): ≤1023 — нижняя панель как у остальных select__options.
 * Блок в конце файла, чтобы перекрыть «premium»-правила ширины .select__options.
 */
@media (max-width: 1023px) {
	.mb-fleet-catalog ._new-filter [data-dropdown="types"]._active,
	.mb-fleet-catalog ._new-filter [data-dropdown="brands"]._active,
	.mb-fleet-catalog ._new-filter [data-dropdown="sort"]._active {
		z-index: 100002;
	}

	.mb-fleet-catalog ._new-filter [data-dropdown="types"] .select__options,
	.mb-fleet-catalog ._new-filter [data-dropdown="brands"] .select__options,
	.mb-fleet-catalog ._new-filter [data-dropdown="sort"] .select__options {
		position: fixed;
		inset: auto 0 0 0;
		top: auto;
		width: 100% !important;
		max-width: none !important;
		min-width: 0 !important;
		left: 0 !important;
		right: 0 !important;
		margin: 0;
		padding: 0;
		border-radius: 22px 22px 0 0;
		max-height: min(88vh, calc(100dvh - 12px));
		z-index: 100002;
		display: none;
		flex-direction: column;
		align-items: stretch;
		align-self: stretch;
		box-sizing: border-box;
		box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
		overflow: hidden;
		border: 1px solid rgba(255, 255, 255, 0.1);
		background:
			radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 42%),
			var(--mb-filter-panel);
	}

	.mb-fleet-catalog ._new-filter [data-dropdown="types"]._active .select__options,
	.mb-fleet-catalog ._new-filter [data-dropdown="brands"]._active .select__options,
	.mb-fleet-catalog ._new-filter [data-dropdown="sort"]._active .select__options {
		display: flex;
	}

	.mb-fleet-catalog ._new-filter [data-dropdown="types"] .select__options .checkbox-list,
	.mb-fleet-catalog ._new-filter [data-dropdown="brands"] .select__options .checkbox-list,
	.mb-fleet-catalog ._new-filter [data-dropdown="sort"] .select__options .checkbox-list {
		flex: 1 1 auto;
		min-height: 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		padding: 14px 18px 10px;
		margin: 0;
		max-height: none;
	}

	.mb-fleet-catalog ._new-filter [data-dropdown="sort"] .select__options .checkbox-list {
		padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
	}

	.mb-fleet-catalog ._new-filter [data-dropdown="types"] .select__options .select__btns,
	.mb-fleet-catalog ._new-filter [data-dropdown="brands"] .select__options .select__btns {
		display: flex !important;
		flex: 0 0 auto;
		margin: 0;
		margin-top: auto;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		padding: 12px 16px calc(14px + env(safe-area-inset-bottom, 0px));
		gap: 10px;
		flex-wrap: nowrap;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		background: #141416;
		box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.45);
	}

	.mb-fleet-catalog ._new-filter [data-dropdown="types"] .select__options .select__btns > .button,
	.mb-fleet-catalog ._new-filter [data-dropdown="types"] .select__options .select__btns > a.button,
	.mb-fleet-catalog ._new-filter [data-dropdown="brands"] .select__options .select__btns > .button,
	.mb-fleet-catalog ._new-filter [data-dropdown="brands"] .select__options .select__btns > a.button {
		flex: 1 1 0;
		min-width: 0;
		width: auto;
		max-width: none;
		justify-content: center;
	}

	.mb-fleet-catalog ._new-filter [data-dropdown="types"] .checkbox-list,
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__panel-all-filters .mb-fleet-catalog__filter-section--class .checkbox-list {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.mb-fleet-catalog ._new-filter [data-dropdown="brands"] .checkbox-list.mb-fleet-catalog__brand-checkboxes._grid,
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__panel-all-filters .mb-fleet-catalog__filter-section--brand .checkbox-list.mb-fleet-catalog__brand-checkboxes._grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 767px) {
	.mb-fleet-catalog ._new-filter [data-dropdown="brands"] .checkbox-list.mb-fleet-catalog__brand-checkboxes._grid,
	.mb-fleet-catalog ._new-filter .mb-fleet-catalog__panel-all-filters .mb-fleet-catalog__filter-section--brand .checkbox-list.mb-fleet-catalog__brand-checkboxes._grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}
