/*
 * "Bulk Deal (Category Wise)" widget — a swipeable carousel of tall banner
 * cards, one per active category-scoped Bulk Deal, each with a dark bottom
 * gradient over the deal's own Featured Image so the category name and
 * "Buy N items..." line stay readable regardless of the photo underneath.
 */
.brado-bulk-deal-category-slider {
	padding: 4px 0;
}
.brado-bulk-deal-category-slider__heading {
	font-size: 20px;
	margin: 0 0 14px;
	text-align: center;
	color: var(--brado-ink, #1c1a17);
	font-family: var(--brado-font-heading, serif);
}

.brado-bulk-deal-category-slider__list {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 4px 4px 10px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.brado-bulk-deal-category-slider__list::-webkit-scrollbar { display: none; }

.brado-bulk-deal-category-slider__card {
	position: relative;
	flex: 0 0 44%;
	aspect-ratio: 3 / 4;
	border-radius: 14px;
	overflow: hidden;
	background: #14171f center/cover no-repeat;
	display: block;
	text-decoration: none;
	scroll-snap-align: start;
}

.brado-bulk-deal-category-slider__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 12, 20, 0) 45%, rgba(8, 10, 18, 0.55) 75%, rgba(6, 8, 16, 0.8) 100%);
}

.brado-bulk-deal-category-slider__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 14px 10px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4px;
}

.brado-bulk-deal-category-slider__label {
	font-family: var(--brado-font-heading, serif);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
}

.brado-bulk-deal-category-slider__subtext {
	font-size: 9.5px;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.4;
}
