.wchcs-showcase {
	box-sizing: border-box;
	clear: both;
	display: flow-root;
	isolation: isolate;
	margin: 0 auto 40px;
	max-width: 1200px;
	padding: 18px 16px 8px;
	position: relative;
	width: 100%;
	z-index: 0;
}

.wchcs-showcase *,
.wchcs-showcase *::before,
.wchcs-showcase *::after {
	box-sizing: border-box;
}

.wchcs-section-head {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin: 0 0 16px;
}

.wchcs-section-head h2 {
	font-size: clamp(22px, 2.2vw, 30px);
	line-height: 1.2;
	margin: 0;
}

.wchcs-categories,
.wchcs-products {
	margin-bottom: 34px;
}

.wchcs-categories {
	overflow: hidden;
	padding: 0 8px;
	position: relative;
}

.wchcs-slider-actions {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
	padding: 2px;
	pointer-events: none;
}

.wchcs-slider-btn {
	align-items: center;
	appearance: none;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	box-shadow: none;
	color: #111827;
	cursor: pointer;
	display: inline-flex;
	font-size: 0;
	height: 38px;
	justify-content: center;
	line-height: 1;
	pointer-events: auto;
	padding: 0;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
	width: 38px;
}

.wchcs-slider-btn:hover,
.wchcs-slider-btn:focus-visible {
	background: #111827;
	border-color: #111827;
	box-shadow: none;
	color: #fff;
	outline: none;
}

.wchcs-slider-btn span {
	border-color: currentColor;
	border-style: solid;
	border-width: 2px 2px 0 0;
	display: block;
	height: 10px;
	width: 10px;
}

.wchcs-slider-btn[data-wchcs-prev] {
	margin-left: 0;
}

.wchcs-slider-btn[data-wchcs-next] {
	margin-right: 0;
}

.wchcs-slider-btn[data-wchcs-prev] span {
	transform: rotate(-135deg) translate(-1px, -1px);
}

.wchcs-slider-btn[data-wchcs-next] span {
	transform: rotate(45deg) translate(-1px, 1px);
}

.wchcs-category-track {
	display: grid;
	gap: 14px;
	grid-auto-columns: minmax(145px, 180px);
	grid-auto-flow: column;
	overflow-x: auto;
	padding: 2px 2px 6px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.wchcs-category-track::-webkit-scrollbar {
	display: none;
}

.wchcs-category-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	color: #111827;
	display: block;
	min-height: 178px;
	overflow: hidden;
	scroll-snap-align: start;
	text-align: center;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.wchcs-category-card:hover,
.wchcs-category-card:focus-visible {
	border-color: #2563eb;
	box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
	outline: none;
	transform: translateY(-2px);
}

.wchcs-category-card img {
	aspect-ratio: 1 / 1;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.wchcs-category-card span {
	display: block;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	padding: 12px 10px 14px;
}

.wchcs-product-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wchcs-product-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
}

.wchcs-product-image {
	background: #f3f4f6;
	display: block;
}

.wchcs-product-image img {
	aspect-ratio: 1 / 1;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.wchcs-product-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 14px;
}

.wchcs-product-body h3 {
	font-size: 16px;
	line-height: 1.3;
	margin: 0 0 8px;
}

.wchcs-product-body h3 a {
	color: #111827;
	text-decoration: none;
}

.wchcs-product-body h3 a:hover,
.wchcs-product-body h3 a:focus-visible {
	color: #2563eb;
}

.wchcs-price {
	color: #374151;
	font-weight: 700;
	margin: 0 0 14px;
}

.wchcs-product-link {
	align-items: center;
	background: #111827;
	border-radius: 6px;
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	line-height: 1.2;
	margin-top: auto;
	min-height: 40px;
	padding: 10px 12px;
	text-decoration: none;
}

.wchcs-product-link:hover,
.wchcs-product-link:focus-visible {
	background: #2563eb;
	color: #fff;
	outline: none;
}

@media (max-width: 900px) {
	.wchcs-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.wchcs-section-head {
		align-items: center;
		gap: 10px;
	}

	.wchcs-categories {
		padding: 0;
	}

	.wchcs-category-track {
		padding-bottom: 2px;
	}
}

@media (max-width: 560px) {
	.wchcs-showcase {
		padding-left: 12px;
		padding-right: 12px;
	}

	.wchcs-slider-btn {
		height: 34px;
		width: 34px;
	}

	.wchcs-slider-btn[data-wchcs-prev],
	.wchcs-slider-btn[data-wchcs-next] {
		margin: 0;
	}

	.wchcs-category-track {
		grid-auto-columns: minmax(140px, 46vw);
	}

	.wchcs-product-grid {
		gap: 14px;
		grid-template-columns: 1fr;
	}
}

@media (max-width: 380px) {
	.wchcs-category-track {
		grid-auto-columns: minmax(132px, 62vw);
	}

	.wchcs-product-body {
		padding: 12px;
	}
}
