/* Cuộn ngang: mượt (smooth), vuốt trên mobile, tránh kéo cả trang */
.top-categories-list.js-hscroll,
.top-models.js-hscroll {
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	touch-action: pan-x;
}

/* Pornstars: snap nhẹ từng ô khi vuốt */
.top-models.js-hscroll {
	scroll-snap-type: x proximity;
}

.top-models.js-hscroll .top-model {
	scroll-snap-align: start;
	flex-shrink: 0;
}

/* Keyword: snap nhẹ từng chip */
.top-categories-list.js-hscroll {
	scroll-snap-type: x proximity;
}

.top-categories-list.js-hscroll .cat-item {
	scroll-snap-align: start;
	flex-shrink: 0;
}
