.dcwb-cat-showcase {
	position: relative;
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	flex: 1 1 100% !important;
	margin: 0 0 40px;
}

.dcwb-cat-showcase__track {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 4px 2px;
}

.dcwb-cat-showcase__track::-webkit-scrollbar {
	display: none;
}

.dcwb-cat-showcase__card {
	flex: 0 0 auto;
	width: 82vw;
	max-width: 380px;
	scroll-snap-align: start;
	display: block;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dcwb-cat-showcase__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
}

.dcwb-cat-showcase__card img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.dcwb-cat-showcase__arrow {
	-webkit-appearance: none;
	appearance: none;
	position: absolute !important;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(15, 23, 42, 0.55);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.dcwb-cat-showcase__arrow:hover {
	background: rgba(15, 23, 42, 0.75);
}

.dcwb-cat-showcase__arrow--prev {
	left: 6px;
}

.dcwb-cat-showcase__arrow--next {
	right: 6px;
}

@media (max-width: 767px) {
	.dcwb-cat-showcase__arrow {
		display: none;
	}
}

@media (min-width: 768px) {
	.dcwb-cat-showcase__card {
		/* Exactly 3 full cards visible, no partial cut-off card — the
		   rest are reached via the prev/next arrows. */
		width: calc((100% - 2 * 14px) / 3);
		max-width: 360px;
	}
}

@media (min-width: 1400px) {
	.dcwb-cat-showcase__card {
		width: calc((100% - 3 * 14px) / 4);
	}
}
