.mb-service-title__heading {
	margin: 0;
	color: #fff;
}

.mb-service-advantages {
	--mb-service-adv-border: rgba(255, 255, 255, 0.08);
}

.mb-service-advantages__grid {
	display: grid;
	grid-template-columns: repeat(var(--mb-adv-cols-xl, 6), minmax(0, 1fr));
	gap: 0;
	overflow: hidden;
	border-radius: 16px;
	border-top: 1px solid var(--mb-service-adv-border);
	border-left: 1px solid var(--mb-service-adv-border);
}

.mb-service-advantages__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 260px;
	padding: 34px 28px;
	text-align: center;
	border-right: 1px solid var(--mb-service-adv-border);
	border-bottom: 1px solid var(--mb-service-adv-border);
	background: #1a1a1a;
}

.mb-service-advantages__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.32);
}

.mb-service-advantages__icon-img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.52;
}

.mb-service-advantages__title {
	margin: 0 0 12px;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.35;
}

.mb-service-advantages__text {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 16px;
	line-height: 1.65;
}

.mb-service-advantages__text p:last-child {
	margin-bottom: 0;
}

.mb-service-desc__content {
	color: rgba(255, 255, 255, 0.82);
}

.mb-service-desc__content--clamp {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--mb-service-desc-lines, 5);
}

/* Архив кузов/марка: затухание текста к фону (по умолчанию чёрный). */
.mb-service-desc--fade-term.mb-service-desc--collapsible:not(.mb-service-desc--is-open) .mb-service-desc__content--clamp {
	position: relative;
}

.mb-service-desc--fade-term.mb-service-desc--collapsible:not(.mb-service-desc--is-open) .mb-service-desc__content--clamp::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4.25em;
	pointer-events: none;
	background: linear-gradient(to bottom, transparent, var(--mb-term-desc-fade, #000));
}

.mb-term-archive-desc.mb-service-desc--collapsible .mb-service-desc__toggle::after {
	content: "";
	display: block;
	width: 0.5em;
	height: 0.5em;
	margin-top: 0.08em;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.mb-term-archive-desc.mb-service-desc--collapsible.mb-service-desc--is-open .mb-service-desc__toggle::after {
	transform: rotate(-135deg);
	margin-top: 0.28em;
}

.mb-service-desc__toggle,
.mb-service-desc__sheet-close {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #d6b36a;
	font: inherit;
	line-height: 1.2;
	cursor: pointer;
}

.mb-service-desc__toggle:hover,
.mb-service-desc__sheet-close:hover {
	color: #f0d090;
}

.mb-service-desc--is-open .mb-service-desc__content {
	overflow: visible;
}

.mb-service-desc__sheet {
	position: fixed;
	inset: 0;
	z-index: 9999;
}

.mb-service-desc__sheet-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.58);
	backdrop-filter: blur(3px);
}

.mb-service-desc__sheet-dialog {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	max-height: 85vh;
	padding: 22px 18px 18px;
	overflow: hidden;
	border-top-left-radius: 22px;
	border-top-right-radius: 22px;
	background: #111;
	box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.45);
	animation: mbServiceSheetIn 0.22s ease-out;
}

.mb-service-desc__sheet-body {
	max-height: calc(85vh - 56px);
	overflow: auto;
	color: rgba(255, 255, 255, 0.86);
}

.mb-service-desc__sheet-body p:last-child {
	margin-bottom: 0;
}

body.mb-service-desc-sheet-open {
	overflow: hidden;
}

@keyframes mbServiceSheetIn {
	from {
		transform: translateY(24px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@media (max-width: 1199px) {
	.mb-service-advantages__grid {
		grid-template-columns: repeat(var(--mb-adv-cols-lg, 4), minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.mb-service-advantages__grid {
		grid-template-columns: repeat(var(--mb-adv-cols-md, 3), minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.mb-service-advantages__grid {
		grid-template-columns: repeat(var(--mb-adv-cols-sm, 2), minmax(0, 1fr));
	}

	.mb-service-advantages__item {
		min-height: 0;
		padding: 28px 20px;
	}
}

@media (max-width: 575px) {
	.mb-service-advantages__grid {
		grid-template-columns: repeat(var(--mb-adv-cols-xs, 1), minmax(0, 1fr));
	}
}

/* ——— Elementor: Преимущества (сетка), виджет mblack_advantages_flexible ——— */
.mb-el-advantages {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	--mb-el-adv-border: rgba(255, 255, 255, 0.08);
}

.mb-el-adv__intro-inner {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.mb-el-adv__intro-titles {
	flex: 1 1 45%;
	min-width: 0;
	max-width: 100%;
}

/* Метка: капсула + иконка как у Elementor Icon List (fa-circle) */
.mb-el-adv__eyebrow {
	display: inline-flex;
	align-items: center;
	box-sizing: border-box;
	margin: 0;
	width: max-content;
	max-width: 100%;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(255, 255, 255, 0.28);
	border-radius: 9999px;
	color: rgba(255, 255, 255, 0.92);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.mb-el-adv__eyebrow-text {
	font-size: 16px;
}

.mb-el-adv__eyebrow-icon {
	display: inline-flex;
	flex-shrink: 0;
	line-height: 0;
	color: inherit;
}

.mb-el-adv__eyebrow-icon svg {
	display: block;
	width: 12px;
	height: 12px;
}

.mb-el-adv__section-title {
	margin: 0;
}

.mb-el-adv__section-desc {
	--mb-el-desc-bar: rgba(255, 255, 255, 0.22);
	--mb-el-desc-bar-w: 1px;
	flex: 1 1 45%;
	min-width: 0;
	max-width: 100%;
	margin: 0;
	padding-top: 0;
	border-top: none;
	border-left-style: solid;
	border-left-width: var(--mb-el-desc-bar-w);
	border-left-color: var(--mb-el-desc-bar);
	padding-left: 20px;
	line-height: 1.55;
}

/* Планшет / мобильный: шапка колонкой, линия у описания сверху */
@media (max-width: 1024px) {
	.elementor-widget-mblack_advantages_flexible .mb-el-adv__intro-inner {
		flex-direction: column !important;
		flex-wrap: nowrap;
		align-items: stretch !important;
	}

	.elementor-widget-mblack_advantages_flexible .mb-el-adv__intro-titles {
		flex: 0 0 auto !important;
		width: 100%;
		max-width: 100%;
	}

	.elementor-widget-mblack_advantages_flexible .mb-el-adv__section-desc {
		flex: 0 0 auto !important;
		width: 100%;
		max-width: 100%;
		border-left: none !important;
		padding-left: 0 !important;
		border-top-style: solid;
		border-top-width: var(--mb-el-desc-bar-w, 1px);
		border-top-color: var(--mb-el-desc-bar, rgba(255, 255, 255, 0.22));
		padding-top: 1rem;
	}
}

.mb-el-adv__section-desc p:last-child {
	margin-bottom: 0;
}

.mb-el-adv__grid {
	display: grid;
	width: 100%;
	box-sizing: border-box;
}

.mb-el-adv__item {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	min-height: 0;
}

.mb-el-adv__media {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-shrink: 0;
	align-self: flex-start;
	box-sizing: border-box;
	min-width: 0;
}
.mb-el-adv__media img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}

.mb-el-adv__item-title {
	margin: 0;
}

.mb-el-adv__item-text {
	margin: 0;
}

.mb-el-adv__item-text p:last-child {
	margin-bottom: 0;
}

.mb-el-adv--bordered-yes .mb-el-adv__grid {
	border-top: 1px solid var(--mb-el-adv-border);
	border-left: 1px solid var(--mb-el-adv-border);
}

.mb-el-adv--bordered-yes .mb-el-adv__item {
	border-right: 1px solid var(--mb-el-adv-border);
	border-bottom: 1px solid var(--mb-el-adv-border);
}

.mb-el-adv--media-gray-yes .mb-el-adv__media img {
	filter: grayscale(1);
}

/* Утилита: фон как у блоков карточки авто (--mbcd-surface-2 на .mb-car-detail, иначе #222). */
.mblack-text-withbackground {
	background-color: var(--mbcd-surface-2, #222);
}

/* Категории */
.mb-cat-root {
	display: flow-root;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.mb-cat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	width: 100%;
	max-width: 100%;
	/*
	 * Вся «мякоть» карточки в absolute — вклад в высоту строки = 0.
	 * При align-items: stretch строка получает высоту 0, карточки растягиваются,
	 * aspect-ratio не спасает → секция схлопывается и следующий блок наезжает.
	 */
	align-items: start;
	justify-items: stretch;
	grid-auto-rows: max-content;
}

.mb-cat-card {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	min-width: 0;
	align-self: start;
	background: #1a1a1a;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
	text-decoration: none;
	color: inherit;
	box-shadow: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/*
 * Высота 4:3 только через padding-trick: в потоке всегда есть «распорка».
 * aspect-ratio на карточке в grid при абсолютных детях даёт 0 вклада в строку в части браузеров / Elementor flex.
 */
.mb-cat-card::before {
	content: "";
	display: block;
	width: 100%;
	padding-bottom: 75%;
}

.mb-cat-card__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.mb-cat-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.mb-cat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mb-cat-card:hover .mb-cat-card__media img {
	transform: scale(1.03);
}

.mb-cat-card__title {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px 16px 16px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4) 60%, transparent);
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.2;
}

.mb-cat-card__count {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 4px 8px;
	font-size: 0.75rem;
	line-height: 1;
	color: #fff;
	background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 1024px) {
	.mb-cat-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

/* Elementor flex-контейнер: у потомков часто min-height: 0 — блок с «нулевым» контентом в потоке схлопывается. */
.elementor-widget-mblack_car_categories {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	flex-shrink: 0;
}

.elementor-widget-mblack_car_categories.elementor-widget .elementor-widget-container {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	height: auto;
	max-height: none;
	overflow: visible;
	min-height: min-content;
}

/*
 * Галерея карточки / услуги в flex-контейнере Elementor (часто --container-widget-height + min-height:0 у потомков):
 * при Swiper/transform высота в потоке может стать ~0, а блок ниже визуально наезжает.
 * Та же разметка (.mb-car-detail__gallery) у mblack_car_gallery и mblack_service_gallery.
 */
.elementor-widget-mblack_car_gallery,
.elementor-widget-mblack_service_gallery {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	flex-shrink: 0;
}

.elementor-widget-mblack_car_gallery.elementor-widget .elementor-widget-container,
.elementor-widget-mblack_service_gallery.elementor-widget .elementor-widget-container {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	height: auto;
	max-height: none;
	overflow: visible;
	min-height: min-content;
}

.elementor-widget-mblack_car_gallery .mb-car-detail__gallery,
.elementor-widget-mblack_service_gallery .mb-car-detail__gallery {
	min-height: min-content;
}

.elementor-widget-mblack_car_gallery .mb-car-detail.mb-car-detail--atomic,
.elementor-widget-mblack_service_gallery .mb-car-detail.mb-car-detail--atomic {
	min-height: min-content;
	width: 100%;
	max-width: 100%;
}

/* Шапка карточки (атомарный виджет): компактнее типографика на узкой ширине, если в Elementor задан очень крупный H1 */
@media (max-width: 767px) {
	.elementor-widget-mblack_car_header .mb-car-detail__header .mb-car-detail__title {
		font-size: clamp(0.9375rem, 4.7vw, 1.25rem);
		line-height: 1.32;
	}
}

/* Секция слайдера авто */
.cars-section-block {
	padding: 48px 24px;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.cars-section-block {
		padding: 48px 0;
	}
}

/* Виджет «Услуга: авто» — без боковых полей у блока (слайдер и каталог с фильтрами). Отступы — в стилях виджета. */
.elementor-widget-mblack_service_car_slider .cars-section-block {
	padding-left: 0;
	padding-right: 0;
}

.cars-head,
.mb-car-section-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
	max-width: 100%;
}

.mb-car-section__titles {
	flex: 1;
	min-width: 0;
}

.mb-car-section__title {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0;
}

.mb-car-section__subtitle {
	margin: 0.4em 0 0;
	font-size: 0.95rem;
	line-height: 1.45;
	font-weight: 400;
	opacity: 0.82;
	max-width: 42rem;
}

.mb-car-section__titles > .mb-car-section__subtitle:first-child {
	margin-top: 0;
}

.mb-car-section__link {
	color: inherit;
	font-size: 0.95rem;
	text-decoration: none;
	opacity: 0.85;
	align-items: center;
}

.mb-car-section__link:hover {
	opacity: 1;
}

.mb-car-section__link-chevron {
	display: none;
	align-items: center;
	justify-content: center;
	line-height: 0;
	color: #fff;
}

.mb-car-section__link-chevron svg {
	display: block;
}

@media (max-width: 767px) {
	.mb-car-section__link {
		position: relative;
		display: inline-flex;
		flex-shrink: 0;
		justify-content: center;
		width: 30px;
		height: 30px;
		min-width: 30px;
		padding: 0;
		box-sizing: border-box;
		border: 1px solid #fff;
		border-radius: 9999px;
		color: #fff;
		opacity: 1;
		font-size: 0;
		line-height: 0;
	}

	.mb-car-section__link-chevron svg {
		width: 14px;
		height: 14px;
	}

	.mb-car-section__link:hover,
	.mb-car-section__link:focus-visible {
		opacity: 0.92;
	}

	.mb-car-section__link-text {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		clip-path: inset(50%);
		white-space: nowrap;
		border: 0;
	}

	.mb-car-section__link-chevron {
		display: inline-flex;
	}
}

@media (min-width: 768px) {
	.mb-car-section__link {
		display: inline;
	}

	.mb-car-section__link-text {
		font-size: 0.95rem;
	}
}

.cars-swiper-wrap {
	position: relative;
	padding: 0 0 48px;
	width: 100%;
	min-width: 0;
}

.cars-swiper-wrap .cars-swiper {
	width: 100%;
	overflow: hidden;
}

.cars-swiper-wrap .cars-swiper .swiper-slide {
	height: auto;
	flex-shrink: 0;
	box-sizing: border-box;
}

.cars-swiper-wrap .cars-swiper .swiper-slide .car-card {
	display: block;
}

.cars-swiper-nav {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 20px;
}

.cars-swiper-nav .swiper-btn,
.services-swiper-nav .swiper-btn {
	box-shadow: none !important;
	width: 48px;
	height: 48px;
	min-width: 48px;
	min-height: 48px;
	aspect-ratio: 1;
	border-radius: 50%;
	padding: 0 !important;
	margin: 0;
	box-sizing: border-box;
	background: rgba(12, 12, 14, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: #fff !important;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	flex-shrink: 0;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.cars-swiper-nav .swiper-btn:hover,
.services-swiper-nav .swiper-btn:hover {
	background: rgba(20, 20, 24, 0.9);
	border-color: rgba(255, 255, 255, 0.45);
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cars-swiper-nav .swiper-btn:focus-visible,
.services-swiper-nav .swiper-btn:focus-visible {
	outline: 2px solid rgba(201, 169, 98, 0.7);
	outline-offset: 2px;
}

.cars-swiper-nav .swiper-btn .mb-nav-chevron,
.services-swiper-nav .swiper-btn .mb-nav-chevron {
	display: block;
	margin: 0;
	pointer-events: none;
}

/* Карточка авто */
.car-card {
	position: relative;
	text-decoration: none;
	color: inherit;
	display: block;
	border-radius: 12px;
	overflow: hidden;
}

.car-card .car-card-img {
	position: relative;
	aspect-ratio: 14/10;
	min-height: 200px;
	overflow: hidden;
	display: block;
}

.car-card .car-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
	display: block;
}

.car-card .car-card-img--focal-center img {
	object-position: center center;
}

.car-card .car-card-img--focal-left img {
	object-position: left center;
}

.car-card .car-card-img--focal-right img {
	object-position: right center;
}

@media (min-width: 900px) {
	.car-card .car-card-img {
		min-height: 220px;
	}
}

.car-card .car-card-top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 12px 14px 56px;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.9) 0%,
		rgba(0, 0, 0, 0.72) 28%,
		rgba(0, 0, 0, 0.38) 58%,
		rgba(0, 0, 0, 0.12) 84%,
		transparent 100%
	);
}

.car-card .car-card-name-row {
	margin-bottom: 6px;
	padding-right: 52px;
}

.car-card .car-card-name {
	font-weight: 600;
	font-size: 1rem;
	color: #fff !important;
}

.car-card .car-card-badge {
	position: absolute;
	top: 12px;
	right: 14px;
	font-size: 0.7rem;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 4px;
}

.car-card .car-card-badge--new {
	background: #22c55e;
	color: #fff;
}

.car-card .car-card-badge--sale {
	background: #ef4444;
	color: #fff;
}

.car-card .car-card-price {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.95);
}

.car-card .car-card-price--with-sale .car-card-price__amount-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35em 0.5em;
}

.car-card .car-card-price__pill {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	max-width: 100%;
	padding: 4px 8px 5px;
	border-radius: 5px;
	background: transparent;
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
}

.car-card .car-card-price__label {
	font-size: 0.55rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	/* color: rgba(0, 0, 0, 0.55); */
	line-height: 1.15;
}

.car-card .car-card-price--tag .car-card-price__value {
	font-size: 0.78rem;
	font-weight: 700;
	/* color: #111; */
	line-height: 1.2;
	letter-spacing: 0.01em;
}

.car-card .car-card-price__old {
	text-decoration: line-through;
	opacity: 0.72;
	font-size: 0.92em;
}

.car-card .car-card-price__sale {
	font-weight: 700;
	color: #fbbf24;
	letter-spacing: 0.01em;
}

.car-card .car-card-price--tag .car-card-price__old {
	color: rgba(0, 0, 0, 0.42);
	opacity: 1;
}

.car-card .car-card-price--tag .car-card-price__sale {
	color: #111;
}

.car-card .car-card-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 64px 14px 14px;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.97) 0%,
		rgba(0, 0, 0, 0.88) 28%,
		rgba(0, 0, 0, 0.55) 55%,
		rgba(0, 0, 0, 0.18) 82%,
		transparent 100%
	);
}

.car-card .car-card-specs {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 10px;
	letter-spacing: 0.02em;
	opacity: 0;
	transition: opacity 0.2s;
}

.car-card:hover .car-card-specs {
	opacity: 1;
}

.car-card .car-card-btn {
	display: block;
	width: 100%;
	padding: 12px 20px;
	background: transparent !important;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
}

/* Услуги — карусель */
.services-swiper-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding: 0 0 8px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.services-swiper-wrap .services-swiper {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	min-height: 0;
	overflow: hidden;
	padding: 0 0 4px;
	box-sizing: border-box;
}

.services-swiper-wrap .services-swiper .swiper-wrapper {
	box-sizing: border-box;
	min-height: 0;
}

.services-swiper-nav {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	gap: 16px;
	margin: 20px 0 0;
	padding: 0;
	z-index: 1;
	box-sizing: border-box;
}

.services-swiper-nav .swiper-btn {
	flex-shrink: 0;
}

.services-swiper .swiper-slide .service-item-card {
	height: auto;
	min-height: 0;
	display: block;
	position: relative;
}

.service-item-card {
	display: block;
	position: relative;
	background: transparent;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.service-item-card:hover {
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
	border-color: rgba(255, 255, 255, 0.35);
	transform: translateY(-2px);
}

.service-item-card img {
	width: 100%;
	height: auto;
	aspect-ratio: 3/4;
	object-fit: cover;
	object-position: center;
	display: block;
}

@media (min-width: 900px) {
	.services-swiper .service-item-card img {
		min-height: min(520px, 72vh);
		aspect-ratio: 3/4;
	}
}

.service-item-card .service-item-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.2) 65%, transparent 100%);
}

.services-swiper .service-item-card .service-item-body {
	padding: 12px 14px 14px;
	background: linear-gradient(
		to top,
		rgba(10, 10, 12, 0.96) 0%,
		rgba(10, 10, 12, 0.9) 28%,
		rgba(10, 10, 12, 0.55) 58%,
		rgba(10, 10, 12, 0.18) 82%,
		rgba(10, 10, 12, 0) 100%
	);
	border-radius: 0 0 12px 12px;
	box-sizing: border-box;
}

.services-swiper .service-item-card h5 {
	margin: 0 0 6px;
	font-size: clamp(1.05rem, 1.5vw, 1.3rem);
	font-weight: 600;
	line-height: 1.25;
	color: #fff;
}

.services-swiper .service-item-card p {
	margin: 0 0 10px;
	font-size: clamp(0.88rem, 1.15vw, 0.98rem);
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.45;
}

.services-swiper .service-item-card .car-card-btn {
	padding: 12px 18px !important;
	font-size: 0.9rem !important;
	margin-top: 0 !important;
}

/* Колонки и gap задаются виджетом Elementor (Услуги сетка); здесь только fallback. */
.services-grid__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.services-grid__cell .service-item-card {
	height: 100%;
}

.services-grid__cell .service-item-card img {
	min-height: 340px;
}

.services-grid__cell .service-item-card .service-item-body {
	padding: 12px 14px 14px;
	background: linear-gradient(
		to top,
		rgba(10, 10, 12, 0.96) 0%,
		rgba(10, 10, 12, 0.9) 28%,
		rgba(10, 10, 12, 0.55) 58%,
		rgba(10, 10, 12, 0.18) 82%,
		rgba(10, 10, 12, 0) 100%
	);
}

.services-grid__cell .service-item-card h5 {
	margin: 0 0 6px;
	font-size: clamp(1.05rem, 1.3vw, 1.3rem);
	font-weight: 600;
	line-height: 1.25;
	color: #fff;
}

.services-grid__cell .service-item-card p {
	margin: 0 0 10px;
	font-size: clamp(0.88rem, 1vw, 0.98rem);
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.45;
}

.services-grid__cell .service-item-card .car-card-btn {
	padding: 12px 18px !important;
	font-size: 0.9rem !important;
}

.services-grid__mobile-slider {
	display: none;
}

.service-item-card .car-card-btn {
	display: block !important;
	width: 100% !important;
	margin-top: auto;
	padding: 12px 20px !important;
	box-sizing: border-box;
	background: transparent !important;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.88) !important;
	border-radius: 6px !important;
	font-size: 0.9rem !important;
	font-weight: 500 !important;
	text-align: center !important;
}

.service-item-card:hover .car-card-btn {
	border-color: #fff !important;
	background: rgba(255, 255, 255, 0.06) !important;
}

@media (hover: hover) and (pointer: fine) {
	.services-swiper .service-item-card .car-card-btn {
		max-height: 0;
		opacity: 0;
		padding: 0 !important;
		border-width: 0 !important;
		margin-top: 0 !important;
		overflow: hidden;
		pointer-events: none;
		transition: max-height 0.2s ease, opacity 0.2s ease, padding 0.2s ease, border-width 0.2s ease, margin-top 0.2s ease;
	}

	.services-swiper .service-item-card:hover .car-card-btn {
		max-height: 80px;
		opacity: 1;
		padding: 12px 18px !important;
		border-width: 1px !important;
		margin-top: auto !important;
		pointer-events: auto;
	}
}

/* Марки авто — карусель */
.mb-brands-carousel {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	padding: 0 0 8px;
	box-sizing: border-box;
}

.mb-brands-carousel.mb-brands-carousel--no-nav {
	padding-bottom: 0;
}

.mb-brands-carousel .mb-brands-carousel__swiper {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	min-height: 0;
	overflow: hidden;
	padding: 15px 0 4px;
	box-sizing: border-box;
}

.mb-brands-carousel .mb-brands-carousel__swiper .swiper-wrapper {
	box-sizing: border-box;
	min-height: 0;
}

.mb-brands-carousel__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	padding: 14px 10px 12px;
	min-height: 100%;
	box-sizing: border-box;
	text-decoration: none;
	color: inherit;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.mb-brands-carousel__item:hover {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-2px);
}

.mb-brands-carousel__media {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
}

.mb-brands-carousel__media img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	max-height: 52px;
	object-fit: contain;
	object-position: center;
	filter: grayscale(1);
	opacity: 0.92;
	transition: filter 0.2s ease, opacity 0.2s ease;
}

.mb-brands-carousel__item:hover .mb-brands-carousel__media img {
	filter: grayscale(0);
	opacity: 1;
}

.mb-brands-carousel__placeholder {
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
}

.mb-brands-carousel__name {
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
	color: rgba(255, 255, 255, 0.88);
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mb-brands-carousel__nav.services-swiper-nav {
	margin-top: 16px;
}

/* Fallback, если в посте ещё не пересохранили виджет (ниже специфичности, чем CSS Elementor). */
@media (max-width: 1024px) {
	.elementor-widget-mblack_services_grid .services-grid__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.elementor-widget-mblack_services_grid .services-grid__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.services-grid--mobile-slider .services-grid__inner {
		display: none;
	}

	.services-grid--mobile-slider .services-grid__mobile-slider {
		display: flex;
	}
}

/* CTA Premium */
@keyframes crownFadeUp {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mb-cta-service-date {
	margin: clamp(28px, 4vw, 56px) 0;
}

.mb-cta-service-date__shell {
	position: relative;
	overflow: hidden;
	border-radius: clamp(10px, 1.5vw, 14px);
	padding: clamp(26px, 4.6vw, 44px);
	background: #0b0d11;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
	animation: crownFadeUp 0.9s ease both;
}

.mb-cta-service-date__shell::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, 0.08), transparent 45%),
		radial-gradient(120% 120% at 100% 100%, rgba(255, 255, 255, 0.05), transparent 55%);
	opacity: 0.6;
	pointer-events: none;
}

.mb-cta-service-date__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(20px, 4vw, 48px);
	align-items: start;
	position: relative;
	z-index: 1;
}

@media (max-width: 900px) {
	.mb-cta-service-date__grid {
		grid-template-columns: 1fr;
	}
}

.mb-cta-service-date__content {
	display: flex;
	flex-direction: column;
	gap: clamp(12px, 2.6vw, 22px);
}

.mb-cta-service-date__chip {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.06);
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(250, 250, 250, 0.82);
}

.mb-cta-service-date__title {
	margin: 0;
	font-size: clamp(1.9rem, 3.6vw, 2.75rem);
	line-height: 1.12;
	color: #f7f7f7;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.mb-cta-service-date__subtitle {
	margin: 0;
	color: rgba(210, 213, 217, 0.9);
	font-size: 1.03rem;
	line-height: 1.65;
	max-width: 42rem;
}

.mb-cta-service-date__benefits {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mb-cta-service-date__benefits li {
	position: relative;
	padding-left: 1.1rem;
	margin-bottom: 0.65rem;
	color: rgba(210, 213, 217, 0.92);
	font-size: 0.95rem;
	line-height: 1.5;
}

.mb-cta-service-date__benefits li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
}

.mb-cta-service-date__aside {
	position: relative;
	border-radius: clamp(10px, 1.5vw, 14px);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(10, 12, 16, 0.95);
	padding: clamp(16px, 2.2vw, 22px);
}

.mb-cta-service-date__form-wrap {
	border: 0;
	border-radius: 0;
	padding: 0;
	background: transparent;
}

.mb-cta-service-date__native-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mb-cta-service-date__form-row--split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 10px 12px;
	width: 100%;
}

.mb-cta-service-date__field-group {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	min-width: 0;
}

.mb-cta-service-date__field-group--full {
	width: 100%;
}

@media (max-width: 520px) {
	.mb-cta-service-date__form-row--split {
		grid-template-columns: 1fr;
	}
}

.mb-cta-service-date__field-label {
	margin: 0 0 5px;
	font-size: 0.8125rem;
	font-weight: 400;
	letter-spacing: 0.01em;
	text-transform: none;
	color: rgba(250, 250, 250, 0.7);
}

.mb-cta-service-date__field {
	width: 100%;
	min-height: 44px;
	height: 44px;
	padding: 10px 12px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 4px;
	background: rgba(19, 22, 28, 0.96);
	color: #fafafa;
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.3;
	outline: none;
	box-sizing: border-box;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mb-cta-service-date__field:focus {
	border-color: rgba(250, 250, 250, 0.34);
	background: rgba(22, 25, 32, 0.98);
	box-shadow: 0 0 0 1px rgba(250, 250, 250, 0.08);
}
.mb-cta-service-date input[type="button"] {
    background: #fff !important;
}
.mb-cta-service-date__submit,
.mb-cta-service-date .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 46px;
	height: auto;
	padding: 11px 16px;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 4px;
	background: linear-gradient(180deg, #f7f8fa 0%, #dfe4ea 100%);
	color: #0f1218 !important;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	cursor: pointer;
	margin-top: 4px;
	box-sizing: border-box;
	transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
	vertical-align: middle;
	text-align: center;
	-webkit-appearance: none;
	appearance: none;
}

.mb-cta-service-date__submit:hover,
.mb-cta-service-date .wpcf7-submit:hover,
.mb-cta-service-date__submit:focus,
.mb-cta-service-date .wpcf7-submit:focus,
.mb-cta-service-date__submit:active,
.mb-cta-service-date .wpcf7-submit:active {
	opacity: 1;
	color: #0f1218 !important;
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.94);
	box-shadow: 0 14px 32px rgba(255, 255, 255, 0.12);
}

.mb-cta-service-date .wpcf7 form.mb-cta-cf7,
.mb-cta-service-date .wpcf7 form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: stretch;
}

.mb-cta-service-date .wpcf7 form > p {
	margin: 0;
}

.mb-cta-service-date .wpcf7 .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.mb-cta-service-date .mb-cta-cf7__row--split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 10px 12px;
	width: 100%;
	align-items: start;
}

.mb-cta-service-date .mb-cta-cf7__row--split > label {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 5px;
	margin: 0;
	min-width: 0;
	font-size: 0.8125rem;
	font-weight: 400;
	letter-spacing: 0.01em;
	text-transform: none;
	color: rgba(250, 250, 250, 0.7);
}

@media (max-width: 520px) {
	.mb-cta-service-date .mb-cta-cf7__row--split {
		grid-template-columns: 1fr;
	}
}

.mb-cta-service-date .wpcf7 label {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 400;
	letter-spacing: 0.01em;
	text-transform: none;
	color: rgba(250, 250, 250, 0.7);
}

.mb-cta-service-date .wpcf7 input:not([type="submit"]):not([type="datetime-local"]),
.mb-cta-service-date .wpcf7 select,
.mb-cta-service-date .wpcf7 textarea {
	width: 100%;
	min-height: 44px;
	height: auto;
	padding: 10px 12px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 4px;
	background: rgba(19, 22, 28, 0.96);
	color: #fafafa;
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.3;
	outline: none;
	box-sizing: border-box;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mb-cta-service-date .wpcf7 select {
	height: 44px;
}

.mb-cta-service-date .wpcf7 input:not([type="submit"]):not([type="datetime-local"]):focus,
.mb-cta-service-date .wpcf7 select:focus,
.mb-cta-service-date .wpcf7 textarea:focus {
	border-color: rgba(250, 250, 250, 0.34);
	background: rgba(22, 25, 32, 0.98);
	box-shadow: 0 0 0 1px rgba(250, 250, 250, 0.08);
}

.mb-cta-service-date .wpcf7 input[type="datetime-local"]:focus {
	border-color: rgba(250, 250, 250, 0.34);
	background: rgba(22, 25, 32, 0.98);
	box-shadow: 0 0 0 1px rgba(250, 250, 250, 0.08);
}

/* CF7 (MBlack): подсказки под полями, полоса ответа и спиннер скрыты — статус в тосте и на кнопке */
.mb-cta-service-date .wpcf7 .wpcf7-spinner,
.wpcf7.mb-wpcf7-quiet .wpcf7-spinner,
.wpcf7.mb-car-booking-cf7 .wpcf7-spinner,
.mb-car-detail__cta-form .wpcf7 .wpcf7-spinner {
	display: none !important;
	visibility: hidden !important;
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.mb-cta-service-date .wpcf7 .wpcf7-response-output,
.wpcf7.mb-wpcf7-quiet .wpcf7-response-output,
.wpcf7.mb-car-booking-cf7 .wpcf7-response-output,
.mb-car-detail__cta-form .wpcf7 .wpcf7-response-output {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0);
	position: absolute;
	width: 1px;
}

.mb-cta-service-date .wpcf7 .wpcf7-not-valid-tip,
.wpcf7.mb-wpcf7-quiet .wpcf7-not-valid-tip,
.wpcf7.mb-car-booking-cf7 .wpcf7-not-valid-tip,
.mb-car-detail__cta-form .wpcf7 .wpcf7-not-valid-tip {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0);
	position: absolute;
	width: 1px;
}

.mb-cta-service-date .flatpickr-calendar {
	z-index: 100000;
}

.mb-cta-service-date .flatpickr-months,
.mb-cta-service-date .flatpickr-months .flatpickr-month {
	background: #222;
}

.mb-cta-service-date__or {
	margin: 16px 0 10px;
	text-align: center;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: lowercase;
	color: rgba(255, 255, 255, 0.42);
}

.mb-cta-service-date__socials {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.mb-cta-service-date__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(36, 38, 42, 0.95);
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
	box-sizing: border-box;
}

.mb-cta-service-date__social:hover {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(48, 50, 56, 0.98);
	transform: translateY(-1px);
}

.mb-cta-service-date__social svg {
	display: block;
	flex-shrink: 0;
}

.mb-cta-service-date__social--text {
	width: auto;
	min-width: auto;
	height: auto;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 0.78rem;
	color: rgba(245, 248, 252, 0.92);
}

/* Виджет «Каналы связи» (глобальные настройки, outline как у CTA) */
.mb-fleet-soc-widget {
	box-sizing: border-box;
}

.mb-fleet-soc-widget__title {
	margin: 0 0 12px;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.3;
}

.mb-fleet-soc-widget--align-left .mb-fleet-soc-widget__title {
	text-align: left;
}

.mb-fleet-soc-widget--align-center .mb-fleet-soc-widget__title {
	text-align: center;
}

.mb-fleet-soc-widget--align-right .mb-fleet-soc-widget__title {
	text-align: right;
}

.mb-fleet-soc-widget--align-left .mb-cta-service-date__or {
	text-align: left;
}

.mb-fleet-soc-widget--align-center .mb-cta-service-date__or {
	text-align: center;
}

.mb-fleet-soc-widget--align-right .mb-cta-service-date__or {
	text-align: right;
}

.mb-fleet-soc-widget--align-left .mb-fleet-soc-widget__socials {
	justify-content: flex-start;
}

.mb-fleet-soc-widget--align-center .mb-fleet-soc-widget__socials {
	justify-content: center;
}

.mb-fleet-soc-widget--align-right .mb-fleet-soc-widget__socials {
	justify-content: flex-end;
}

/* SVG внутри круга — доля от ширины кнопки (размер кнопки задаётся в виджете «Каналы связи»). */
.mb-fleet-soc-widget .mb-cta-service-date__social:not(.mb-cta-service-date__social--text) svg {
	width: 47%;
	height: auto;
	max-height: 62%;
	flex-shrink: 0;
}

/* «Каналы связи»: белый outline на тёмном фоне */
.mb-fleet-soc-widget--skin-light-outline .mb-cta-service-date__or {
	color: rgba(255, 255, 255, 0.72);
}

.mb-fleet-soc-widget--skin-light-outline .mb-cta-service-date__social:not(.mb-cta-service-date__social--text) {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.9);
	box-shadow: none;
}

.mb-fleet-soc-widget--skin-light-outline .mb-cta-service-date__social:not(.mb-cta-service-date__social--text):hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #ffffff;
}

.mb-fleet-soc-widget--skin-light-outline .mb-cta-service-date__social--text {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.9);
	color: #ffffff;
}

.mb-fleet-soc-widget--skin-light-outline .mb-cta-service-date__social--text:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #ffffff;
	color: #ffffff;
}

.mb-fleet-soc-widget--skin-light-outline .mb-cta-service-date__social svg path {
	fill: #ffffff !important;
}

.mb-fleet-soc-widget--skin-light-outline .mb-cta-service-date__social svg stop {
	stop-color: #ffffff !important;
}

/* Глобальные тосты CF7 (только скрипт из mblack-fleet добавляет в этот контейнер) */
#mb-wpcf7-toast-stack {
	position: fixed;
	top: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999999;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	max-width: min(90vw, 400px);
	width: 100%;
	pointer-events: none;
	box-sizing: border-box;
}

.mb-wpcf7-toast-item {
	font-size: 15px;
	line-height: 1.3;
	color: #ffffff;
	background: #272727;
	padding: 14px 20px;
	border-radius: 3px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
	text-align: center;
	opacity: 0;
	transform: translateY(-12px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	max-width: 100%;
	word-wrap: break-word;
	box-sizing: border-box;
}

.mb-wpcf7-toast-item.mb-wpcf7-toast-item--visible {
	opacity: 1;
	transform: translateY(0);
}

/* CTA «дата + пожелания» — фон/рамка как у .mb-cta-service-date__shell и карточка как .mb-cta-service-date__aside */
.mb-cta-date-wishes {
	position: relative;
	overflow: hidden;
	padding: clamp(26px, 4.6vw, 44px) clamp(18px, 3.5vw, 32px);
	border-radius: clamp(10px, 1.5vw, 14px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	background-color: #0b0d11;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
	box-sizing: border-box;
	animation: crownFadeUp 0.9s ease both;
}

.mb-cta-date-wishes::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, 0.08), transparent 45%),
		radial-gradient(120% 120% at 100% 100%, rgba(255, 255, 255, 0.05), transparent 55%);
	opacity: 0.6;
	pointer-events: none;
}

.mb-cta-date-wishes__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(18px, 3vw, 36px);
	align-items: start;
	margin: 0 auto;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

.mb-cta-date-wishes__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: clamp(14px, 2.6vw, 22px);
	min-width: 0;
}

.mb-cta-date-wishes__chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: clamp(7px, 1.2vw, 10px) clamp(14px, 2.2vw, 18px);
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
	font-size: clamp(0.78rem, 1.05vw, 0.875rem);
	font-weight: 500;
	letter-spacing: 0.02em;
	color: rgba(250, 250, 250, 0.94);
	box-sizing: border-box;
}

.mb-cta-date-wishes__chip-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(250, 250, 250, 0.55);
	flex-shrink: 0;
}

.mb-cta-date-wishes__title {
	margin: 0;
	max-width: 100%;
	font-size: clamp(1.75rem, 3.2vw, 2.5rem);
	font-weight: 700;
	color: #fafafa;
	line-height: 1.12;
}

.mb-cta-date-wishes__text {
	width: 100%;
}

.mb-cta-date-wishes__text p {
	margin: 0;
	color: #94979c;
	font-size: 1rem;
	line-height: 1.65;
	max-width: 34rem;
}

.mb-cta-date-wishes__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mb-cta-date-wishes__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
	color: #94979c;
	font-size: 0.9375rem;
	line-height: 1.45;
}

.mb-cta-date-wishes__list li:last-child {
	margin-bottom: 0;
}

.mb-cta-date-wishes__list-dot {
	width: 6px;
	height: 6px;
	margin-top: 0.45em;
	border-radius: 1px;
	background: rgba(250, 250, 250, 0.35);
	flex-shrink: 0;
}

.mb-cta-date-wishes__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: stretch;
	justify-content: flex-start;
	align-self: stretch;
	min-width: 0;
	width: 100%;
	max-width: none;
	padding: clamp(16px, 2.2vw, 22px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(10, 12, 16, 0.95);
	box-sizing: border-box;
	border-radius: clamp(10px, 1.5vw, 14px);
	overflow: hidden;
}

.mb-cta-date-wishes__actions .mb-cta-service-date__or {
	margin-top: 0;
	text-align: center;
}

.mb-cta-date-wishes__actions .mb-cta-service-date__socials {
	justify-content: center;
}

/* Префикс .mb-cta-date-wishes: иначе car-detail.css (позже в каскаде) перебивает .mb-car-detail__cta-form. */
.mb-cta-date-wishes .mb-cta-date-wishes__form {
	width: 100%;
}

.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent-section {
	margin-top: 0;
}

.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent .form-line__inner {
	display: block;
}

.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent .form-line__form.mb-form-rent__row--stacked {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 10px 12px;
	align-items: start;
	width: 100%;
	max-width: none;
}

.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent .form-line__form.mb-form-rent__row--stacked .mb-form-rent__field--message,
.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent .form-line__form.mb-form-rent__row--stacked .mb-form-rent__actions {
	grid-column: 1 / -1;
}

.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent .form-line__form.mb-form-rent__row--stacked .mb-form-rent__field--datetime,
.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent .form-line__form.mb-form-rent__row--stacked .mb-form-rent__field--phone {
	min-width: 0;
}

.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent__field {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	min-width: 0;
}

/* Подписи как у .mb-cta-service-date__field-label / .mb-cta-service-date .wpcf7 label */
.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent__field .ui-input__label {
	position: static !important;
	left: auto;
	top: auto;
	inset: auto;
	transform: none !important;
	display: block !important;
	margin: 0 0 5px !important;
	padding: 0 !important;
	background: none !important;
	pointer-events: auto;
	text-align: left;
	z-index: auto;
	color: rgba(250, 250, 250, 0.7);
	font-size: 0.8125rem;
	font-weight: 400;
	letter-spacing: 0.01em;
	text-transform: none;
}

.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent__field input.wpcf7-form-control:not([type='datetime-local']),
.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent__field textarea.wpcf7-form-control {
	width: 100%;
	box-sizing: border-box;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 6px;
	background: rgba(24, 28, 36, 0.98);
	color: #fafafa;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.3;
	text-align: left;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

/* CF7 задаёт textarea большой rows — фиксируем компактную высоту (~2 строки), resize остаётся */
.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent__field.mb-form-rent__field--message textarea.wpcf7-form-control {
	height: calc(2 * 1.25em + 20px);
	min-height: calc(2 * 1.25em + 20px);
	max-height: none;
	resize: vertical;
	overflow-y: auto;
	line-height: 1.25;
}

.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent__field input.wpcf7-form-control:not([type='datetime-local'])::placeholder,
.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent__field textarea.wpcf7-form-control::placeholder {
	color: rgba(250, 250, 250, 0.36);
}

.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent__field input.wpcf7-form-control:not([type='datetime-local']):focus,
.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent__field textarea.wpcf7-form-control:focus {
	outline: none;
	border-color: rgba(250, 250, 250, 0.4);
	background: rgba(28, 32, 42, 0.99);
	box-shadow: 0 0 0 1px rgba(250, 250, 250, 0.1);
}

.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	width: 100%;
}

.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent__actions .wpcf7-submit,
.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent__actions input[type="submit"] {
	width: 100%;
	min-height: 46px;
	padding: 11px 16px;
	border: 1px solid rgba(255, 255, 255, 0.88);
	background: linear-gradient(180deg, #ffffff 0%, #eef1f5 100%);
	color: #0f1218 !important;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent__actions .wpcf7-submit:hover,
.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent__actions input[type="submit"]:hover {
	transform: translateY(-1px);
	border-color: #ffffff;
	box-shadow: 0 14px 32px rgba(255, 255, 255, 0.14);
}

.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent-section--date-wishes .mb-form-rent__consent {
	margin-top: 10px;
	margin-bottom: 0;
	padding-top: 0;
	font-size: 0.75rem;
	line-height: 1.5;
	text-align: center;
	color: rgba(250, 250, 250, 0.48);
}

@media (max-width: 768px) {
	.mb-cta-date-wishes__inner {
		grid-template-columns: 1fr;
		align-items: stretch;
	}

	.mb-cta-date-wishes__actions {
		max-width: 100%;
		min-width: 0;
		padding: 16px 14px;
	}

	.mb-cta-date-wishes .mb-cta-date-wishes__form .mb-form-rent .form-line__form.mb-form-rent__row--stacked {
		grid-template-columns: 1fr;
	}
}

/* Страница 404 */
.mb-page-404 {
	padding: clamp(48px, 8vw, 96px) clamp(24px, 4vw, 40px);
	border-radius: 0;
	border: 1px solid rgba(250, 250, 250, 0.1);
	border-left: none;
	border-right: none;
	border-bottom: none;
	background-color: transparent;
	box-sizing: border-box;
}

.mb-page-404__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: clamp(28px, 5vw, 64px);
	align-items: stretch;
	max-width: 1100px;
	margin: 0 auto;
	box-sizing: border-box;
}

.mb-page-404__visual {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	align-self: stretch;
	width: 100%;
}

.mb-page-404__code {
	margin: auto !important;
	width: 100%;
	font-size: clamp(4.5rem, 14vw, 11rem);
	font-weight: 800;
	line-height: 0.88;
	letter-spacing: -0.045em;
	text-align: center;
	background: linear-gradient(165deg, rgba(250, 250, 250, 0.95) 0%, rgba(250, 250, 250, 0.12) 42%, rgba(250, 250, 250, 0.04) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 0 80px rgba(255, 255, 255, 0.06);
}

.mb-page-404__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: clamp(14px, 2.2vw, 22px);
	min-width: 0;
}

.mb-page-404__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: clamp(7px, 1.2vw, 10px) clamp(14px, 2.2vw, 18px);
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
	font-size: clamp(0.78rem, 1.05vw, 0.875rem);
	font-weight: 500;
	letter-spacing: 0.02em;
	color: rgba(250, 250, 250, 0.94);
	box-sizing: border-box;
}

.mb-page-404__title {
	margin: 0;
	max-width: 100%;
	font-size: clamp(1.65rem, 3vw, 2.35rem);
	font-weight: 700;
	color: #fafafa;
	line-height: 1.15;
}

.mb-page-404__text {
	margin: 0;
	color: #94979c;
	font-size: 1rem;
	line-height: 1.65;
	max-width: 36rem;
}

.mb-page-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 14px;
	margin-top: 6px;
}

.mb-page-404__action {
	display: inline-flex;
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	box-sizing: border-box;
}

.mb-page-404__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 24px;
	border-radius: 6px;
	font-size: 0.9375rem;
	font-weight: 600;
	font-family: inherit;
	line-height: inherit;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	margin: 0;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.mb-page-404__btn--primary {
	background: #0a0a0a;
	color: #fafafa;
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow:
		0 0 0 1px rgba(0, 0, 0, 0.4),
		0 12px 32px rgba(0, 0, 0, 0.55);
}

.mb-page-404__btn--primary:hover {
	background: #0a0a0a;
	color: #fafafa;
	border-color: rgba(255, 255, 255, 0.38);
	box-shadow:
		0 0 0 1px rgba(0, 0, 0, 0.5),
		0 14px 36px rgba(0, 0, 0, 0.6);
	transform: translateY(-1px);
}

.mb-page-404__btn--ghost {
	background: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.92);
	box-shadow: none;
}

.mb-page-404__btn--ghost:hover {
	background: transparent;
	border-color: #ffffff;
	color: #ffffff;
}

.elementor-widget-mblack_page_404 {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.elementor-widget-mblack_page_404 .elementor-widget-container {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

@media (max-width: 1024px) {
	.mb-page-404 {
		padding: clamp(40px, 5.5vw, 72px) clamp(22px, 3.2vw, 32px);
	}

	.mb-page-404__inner {
		gap: clamp(24px, 4vw, 48px);
	}

	.mb-page-404__content {
		gap: clamp(12px, 2vw, 20px);
	}
}

@media (max-width: 768px) {
	.mb-page-404 {
		padding: clamp(32px, 8vw, 52px) clamp(18px, 5.5vw, 26px);
	}

	.mb-page-404__inner {
		grid-template-columns: 1fr;
		gap: clamp(20px, 5vw, 36px);
		text-align: center;
	}

	.mb-page-404__content {
		align-items: center;
		text-align: center;
		gap: clamp(12px, 3.5vw, 18px);
	}

	.mb-page-404__text {
		max-width: 100%;
	}

	.mb-page-404__actions {
		justify-content: center;
		gap: 10px 12px;
	}
}

/* ---------------------------------------------------------------------------
 * Elementor Nested Tabs: одинаковые внешние отступы у активной и неактивной
 * вкладки (у Elementor часто разный margin у [aria-selected="true"]).
 * Расстояние между вкладками — через gap у .e-n-tabs-heading.
 * --------------------------------------------------------------------------- */
.elementor-widget-n-tabs .e-n-tabs-heading {
	gap: var(--n-tabs-title-gap, var(--n-tabs-heading-gap, 12px));
	box-shadow: none !important;
}

.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title,
.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title:hover,
.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title:focus,
.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title:focus-visible,
.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected='true'],
.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected='false'] {
	margin: 0 !important;
	margin-block: 0 !important;
	margin-inline: 0 !important;
	box-shadow: none !important;
}

/* ---------------------------------------------------------------------------
 * Elementor Nested Tabs (n-tabs): на планшетах и мобильных — заголовки в один
 * ряд над контентом и горизонтальный скролл для выбора вкладки.
 * --------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.elementor-widget-n-tabs .e-n-tabs {
		flex-direction: column !important;
		align-items: stretch !important;
	}

	.elementor-widget-n-tabs .e-n-tabs-heading {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		align-items: stretch !important;
		justify-content: flex-start !important;
		align-content: flex-start !important;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-x: contain;
		scroll-snap-type: x proximity;
		scrollbar-width: thin;
		box-sizing: border-box;
	}

	.elementor-widget-n-tabs .e-n-tabs-heading::-webkit-scrollbar {
		height: 5px;
	}

	.elementor-widget-n-tabs .e-n-tabs-heading::-webkit-scrollbar-thumb {
		background: rgba(255, 255, 255, 0.22);
		border-radius: 5px;
	}

	.elementor-widget-n-tabs .e-n-tab-title {
		flex: 0 0 auto !important;
		flex-shrink: 0 !important;
		width: auto !important;
		min-width: 0;
		max-width: none !important;
		white-space: nowrap;
		scroll-snap-align: start;
	}

	.elementor-widget-n-tabs .e-n-tab-title .e-n-tab-title-text {
		white-space: nowrap;
	}

	.elementor-widget-n-tabs .e-n-tabs-content {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}
}

/* Подборки по тегам (архив и произвольный виджет) */
.mb-tag-collections {
	margin: 0;
}

.mb-tag-collections__title {
	margin: 0 0 0.5em;
	font-size: 1.15rem;
	font-weight: 600;
}

.mb-tag-collections__subtitle {
	margin: 0 0 1em;
	opacity: 0.85;
}

.mb-tag-collections__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mb-tag-collections__item {
	margin: 0;
	padding: 0;
}

.mb-tag-collections__link {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.mb-tag-collections__link:hover,
.mb-tag-collections__link:focus {
	border-color: rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.06);
}

.mb-tag-collections-widget .mb-tag-collections {
	margin-top: 0.5em;
}

.mb-tag-collections-root {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.mb-tag-collections__panel--scroll {
	display: none;
}

.mb-tag-collections__scroll-track {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	box-sizing: border-box;
	scrollbar-width: none; /* Firefox: прокрутка без видимой полосы */
	-ms-overflow-style: none; /* старый Edge / IE */
}

.mb-tag-collections__scroll-track::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.mb-tag-collections__list--scroll {
	flex-wrap: nowrap;
	width: max-content;
	max-width: none;
	margin: 0;
	padding: 0 0 6px;
	box-sizing: border-box;
}

.mb-tag-collections__link--scroll {
	white-space: nowrap;
}

.mb-tag-collections-root--align-left .mb-tag-collections__list,
.mb-tag-collections-root--align-left .mb-tag-collections__list--scroll {
	justify-content: flex-start;
}

.mb-tag-collections-root--align-center .mb-tag-collections__list,
.mb-tag-collections-root--align-center .mb-tag-collections__list--scroll {
	justify-content: center;
}

.mb-tag-collections-root--align-right .mb-tag-collections__list,
.mb-tag-collections-root--align-right .mb-tag-collections__list--scroll {
	justify-content: flex-end;
}

.mb-tag-collections-root--align-stretch .mb-tag-collections__list {
	justify-content: space-between;
}

.mb-tag-collections-root--align-stretch .mb-tag-collections__item {
	flex: 1 1 0;
	min-width: 0;
}

.mb-tag-collections-root--align-stretch .mb-tag-collections__link {
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.mb-tag-collections-root--align-stretch .mb-tag-collections__list--scroll {
	justify-content: flex-start;
}

.mb-tag-collections__toggle {
	display: none;
	margin-top: 12px;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.06);
	color: inherit;
	font: inherit;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.mb-tag-collections__toggle:hover,
.mb-tag-collections__toggle:focus-visible {
	border-color: rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
	.mb-tag-collections-root--mobile-scroll .mb-tag-collections__panel--list {
		display: none !important;
	}

	.mb-tag-collections-root--mobile-scroll .mb-tag-collections__panel--scroll {
		display: block;
	}

	.mb-tag-collections-root--mobile-collapse:not(.is-expanded) .mb-tag-collections__item--collapse-extra {
		display: none !important;
	}

	.mb-tag-collections-root--mobile-collapse .mb-tag-collections__toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
}

@media (min-width: 768px) {
	.mb-tag-collections-root--mobile-collapse .mb-tag-collections__item--collapse-extra {
		display: block !important;
	}

	.mb-tag-collections-root--mobile-collapse .mb-tag-collections__toggle {
		display: none !important;
	}
}
