/*
 * "Latest Collections" widget — a big rounded banner per slide, with up to
 * 3 small product thumbnails straddling its bottom edge, plus prev/next
 * arrows over the track (the track itself is also natively swipeable).
 */
.brado-collections-slider {
	padding: 4px 0;
}
.brado-collections-slider__heading {
	font-size: 22px;
	margin: 0 0 16px;
	text-align: center;
	color: var(--brado-ink, #1c1a17);
	font-family: var(--brado-font-heading, serif);
}

.brado-collections-slider__viewport {
	position: relative;
}

.brado-collections-slider__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 4px 4px 34px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.brado-collections-slider__track::-webkit-scrollbar { display: none; }

.brado-collections-slider__slide {
	position: relative;
	flex: 0 0 88%;
	max-width: 460px;
	scroll-snap-align: start;
}

.brado-collections-slider__banner {
	display: block;
	border-radius: 22px;
	overflow: hidden;
	background: var(--brado-bg, #f0ece5);
}
.brado-collections-slider__banner img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.brado-collections-slider__products {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: -28px;
	padding: 0 16px;
}
.brado-collections-slider__product {
	display: block;
	width: 64px;
	height: 64px;
	border-radius: 14px;
	background: var(--brado-surface, #fdfcfa);
	box-shadow: 0 6px 14px rgba(28, 26, 23, 0.14);
	overflow: hidden;
	flex-shrink: 0;
}
.brado-collections-slider__product img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.brado-collections-slider__arrow {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.85);
	color: var(--brado-ink, #1c1a17);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(28, 26, 23, 0.15);
}
.brado-collections-slider__arrow--prev { left: 2px; }
.brado-collections-slider__arrow--next { right: 2px; }
.brado-collections-slider__arrow:hover { background: #fff; }
