/* ─── Product Cards Widget ───────────────────────────────────────────────── */

.hbc-pc-wrap {
	position: relative;
}

.hbc-pc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.hbc-pc-heading {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	color: #111111;
	line-height: 1.2;
}

/* ── Arrows ── */

.hbc-pc-arrows {
	display: flex;
	gap: 8px;
}

.hbc-pc-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #333333;
	color: #333333;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
	user-select: none;
}

.hbc-pc-arrow:hover {
	opacity: 0.6;
}

/* ── Slider ── */

.hbc-pc-slider {
	overflow: hidden;
}

.hbc-pc-track {
	display: flex;
	gap: 16px;
	transition: transform 0.4s ease;
}

/* ── Card item ── */

.hbc-pc-item {
	position: relative;
	display: block;
	width: 180px;
	min-width: 180px;
	border-radius: 12px;
	overflow: hidden;
	flex-shrink: 0;
	text-decoration: none;
}

.hbc-pc-img {
	display: block;
	width: 100%;
	height: 260px;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.3s ease;
}

.hbc-pc-item:hover .hbc-pc-img {
	transform: scale(1.05);
}

/* ── Label at bottom ── */

.hbc-pc-label {
	position: absolute;
	bottom: 12px;
	left: 12px;
	padding: 6px 14px;
	background-color: #ffffff;
	color: #111111;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	border-radius: 20px;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ── Responsive ── */

@media (max-width: 767px) {
	.hbc-pc-heading {
		font-size: 22px;
	}

	.hbc-pc-arrow {
		width: 32px;
		height: 32px;
	}
}
