/* فیلتر دسته قطعات در صفحه برند - کاروسل */
.wcbpf-part-carousel-wrapper {
	position: relative;
	width: 100%;
	margin-bottom: 1.5rem;
	padding: 0 1rem;
	box-sizing: border-box;
}

.wcbpf-part-carousel-label {
	font-weight: 600;
	margin-bottom: 0.6rem;
	font-size: 0.95rem;
	color: #333;
}

.wcbpf-part-carousel-scroll {
	display: flex;
	gap: 0.75rem;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scrollbar-width: thin;
	padding: 0.25rem 0;
	-webkit-overflow-scrolling: touch;
}

.wcbpf-part-carousel-scroll::-webkit-scrollbar {
	height: 6px;
}

.wcbpf-part-carousel-scroll::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 3px;
}

.wcbpf-part-carousel-scroll::-webkit-scrollbar-thumb {
	background: #c1c1c1;
	border-radius: 3px;
}

.wcbpf-part-item {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	white-space: nowrap;
	padding: 0.5rem;
	border-radius: 8px;
	background: #f5f5f5;
	color: #444;
	text-decoration: none;
	font-size: 0.85rem;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	flex-shrink: 0;
	border: 1px solid #e0e0e0;
	min-width: 80px;
}

.wcbpf-part-item:hover {
	background: #eee;
	color: #000;
}

.wcbpf-part-item.active {
	background: #2c3e50;
	color: #fff;
	border-color: #2c3e50;
}

.wcbpf-part-item-img {
	display: block;
	width: 64px;
	height: 64px;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 0.4rem;
	background: #e8e8e8;
}

.wcbpf-part-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wcbpf-part-item-img-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: #ddd;
}

.wcbpf-part-item-text {
	display: block;
	line-height: 1.3;
}

.wcbpf-part-item .wcbpf-count {
	opacity: 0.85;
	font-size: 0.8em;
	margin-right: 0.2rem;
}

.wcbpf-part-item.active .wcbpf-count {
	opacity: 0.9;
}

/* موبایل: تمام عرض، بدون پدینگ اضافه، بدون دکمه اسلایدر */
@media (max-width: 768px) {
	.wcbpf-part-carousel-wrapper {
		padding-left: 0;
		padding-right: 0;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
		max-width: 100%;
	}

	.wcbpf-part-carousel-scroll {
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}

	.wcbpf-part-item {
		min-width: 72px;
		padding: 0.4rem;
	}

	.wcbpf-part-item-img {
		width: 56px;
		height: 56px;
	}
}
