/**
 * /prices/: якорные вкладки (навигация по секциям цен)
 */

.legstom-prices-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 28px;
	padding: 0;
}

.legstom-prices-tabs__item {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	border-radius: 8px;
	background: transparent;
	color: #0079ff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.1;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s, color 0.2s;
}

.legstom-prices-tabs__item:hover {
	background: rgba(0, 121, 255, 0.08);
}

.legstom-prices-tabs__item--active {
	background: #e8e8e8;
	color: #333;
}

.legstom-prices-section {
	margin: 0 0 48px;
}

@media (max-width: 768px) {
	.legstom-prices-tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.legstom-prices-tabs::-webkit-scrollbar {
		display: none;
	}
}

