/**
 * Блок reb/prices-filter (блок 02 страницы «Цены»).
 * Крошки, H1, лид, кнопка расчета и чипсы-фильтры направлений.
 */

.reb-prices-filter {
	background: #fff;
}

.reb-prices-filter__inner {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding-top: 40px;
	padding-bottom: 8px;
}

/* Крошки. */
.reb-prices-filter__crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 8px;
	font-size: 13px;
	color: var(--reb-text-faint);
}

.reb-prices-filter__crumb {
	color: var(--reb-text-muted);
}

.reb-prices-filter__crumb:hover {
	color: var(--reb-accent);
}

.reb-prices-filter__crumb + .reb-prices-filter__crumb::before {
	content: '/';
	margin-right: 8px;
	color: var(--reb-text-faint);
}

.reb-prices-filter__crumb--current {
	color: var(--reb-text-faint);
}

.reb-prices-filter__title {
	margin: 0;
	font-size: 42px;
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.1;
}

.reb-prices-filter__lead {
	margin: 0;
	max-width: 640px;
	font-size: 16px;
	line-height: 1.55;
	color: var(--reb-text-muted);
}

.reb-prices-filter__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 18px;
}

.reb-prices-filter__cta-note {
	font-size: 13px;
	color: var(--reb-text-faint);
}

/* Чипсы-фильтры. */
.reb-prices-filter__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 6px;
}

.reb-prices-filter__chip {
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 700;
	color: var(--reb-text);
	background: var(--reb-bg);
	border: 1px solid var(--reb-border);
	border-radius: 0;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.reb-prices-filter__chip:hover {
	border-color: var(--reb-accent);
	color: var(--reb-accent);
}

.reb-prices-filter__chip--active,
.reb-prices-filter__chip--active:hover {
	background: var(--reb-accent);
	border-color: var(--reb-accent);
	color: #fff;
}

/* Адаптив. */
@media (max-width: 768px) {
	.reb-prices-filter__inner {
		padding-top: 28px;
		gap: 14px;
	}

	.reb-prices-filter__title {
		font-size: 27px;
		line-height: 1.15;
	}

	/* Чипсы скроллятся горизонтально. */
	.reb-prices-filter__chips {
		flex-wrap: nowrap;
		overflow-x: auto;
		margin: 0 -20px;
		padding: 6px 20px 10px;
		scrollbar-width: none;
	}

	.reb-prices-filter__chips::-webkit-scrollbar {
		display: none;
	}

	.reb-prices-filter__chip {
		flex: 0 0 auto;
		white-space: nowrap;
	}
}
