/* ── Discover Showcase — horizontal scrollable card row ───────── */

.ps-discover-showcase {
	--ps-blue: var(--ps-blue, #223D90);
	margin: 40px 0;
	box-sizing: border-box;
}

.ps-discover-showcase__title {
	margin: 0 0 18px;
	color: var(--ps-blue);
	font-family: "Alternate Gothic Extra Cond ATF", "Arial Narrow", "Inter", sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: .03em;
	text-transform: uppercase;
}

/* ── Scrollable track ─────────────────────────────────────────── */

.ps-discover-showcase__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.ps-discover-showcase__track::-webkit-scrollbar {
	display: none;
}

/* ── Cards ────────────────────────────────────────────────────── */

.ps-discover-card {
	flex: 0 0 220px;
	scroll-snap-align: start;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	border-radius: 6px;
	overflow: hidden;
	box-sizing: border-box;
	transition: transform .18s ease, box-shadow .18s ease;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
}

@media (hover: hover) {
	.ps-discover-card:hover {
		transform: translateY(-2px);
		box-shadow: 0 4px 14px rgba(0, 0, 0, .13);
	}
}

/* Image */
.ps-discover-card__image {
	position: relative;
	width: 100%;
	background: #f4f5f8;
	overflow: hidden;
}

.ps-discover-card__image::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.ps-discover-card__image img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
}

/* Empty state */
.ps-discover-card__image--empty::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #e8eaf2 25%, #d0d4e8 100%);
}

/* Text */
.ps-discover-card__label {
	padding: 10px 12px 4px;
	font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
	font-size: .92rem;
	font-weight: 700;
	color: var(--ps-blue);
	line-height: 1.3;
}

.ps-discover-card__count {
	padding: 0 12px 12px;
	font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
	font-size: .8rem;
	color: var(--ps-blue);
	opacity: .65;
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 600px) {
	.ps-discover-card {
		flex: 0 0 170px;
	}

	.ps-discover-card__label {
		font-size: .85rem;
	}
}
