.smc-subcat-slider {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 6px 4px 16px 4px;
	margin: 4px 0 22px 0;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.smc-subcat-slider::-webkit-scrollbar {
	height: 6px;
}
.smc-subcat-slider::-webkit-scrollbar-thumb {
	background: #ddd;
	border-radius: 10px;
}

.smc-subcat-item {
	flex: 0 0 auto;
	width: 68px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: #333;
	scroll-snap-align: start;
}

.smc-subcat-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	border: 2px solid transparent;
	margin-bottom: 6px;
	transition: border-color .15s ease, transform .15s ease;
}
.smc-subcat-icon svg,
.smc-subcat-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.smc-subcat-item:hover .smc-subcat-icon {
	transform: translateY(-2px);
}

.smc-subcat-item.is-active .smc-subcat-icon {
	border-color: #222;
}

.smc-subcat-label {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
}

.smc-subcat-item.is-active .smc-subcat-label {
	color: #000;
}
