.ototuan-product-filter {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 4px 0 16px;
	margin: 0 0 12px;
	-webkit-overflow-scrolling: touch;
}

.ototuan-product-filter__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 8px 16px;
	border: 1px solid #d9dde4;
	border-radius: 999px;
	background: #fff;
	color: #23262b;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.ototuan-product-filter__item:hover,
.ototuan-product-filter__item:focus-visible,
.ototuan-product-filter__item.is-active {
	border-color: #d71920;
	background: #d71920;
	color: #fff;
}

.ototuan-product-filter.is-loading {
	opacity: .55;
	pointer-events: none;
}

@media (max-width: 549px) {
	.ototuan-product-filter {
		margin-right: -15px;
		padding-right: 15px;
	}

	.ototuan-product-filter__item {
		min-height: 38px;
		padding: 7px 14px;
	}
}

