/**
 * Featured Brands carousel — Flipkart-style promo cards.
 */
.nwui-featured-brands {
	--nwui-fb-gap: 14px;
	--nwui-fb-banner-h: 168px;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto 1.5rem;
	padding: 0 12px;
	box-sizing: border-box;
}

.nwui-fb-head {
	margin: 0 0 12px;
}

.nwui-fb-title {
	margin: 0;
	font-family: var(--nwui-font-heading, 'Poppins', sans-serif);
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.25;
	color: #111827;
}

.nwui-fb-slider {
	position: relative;
}

.nwui-fb-viewport {
	overflow: hidden;
	width: 100%;
	touch-action: pan-y;
	cursor: grab;
}

.nwui-fb-viewport.is-dragging {
	cursor: grabbing;
}

.nwui-fb-track {
	display: flex;
	gap: var(--nwui-fb-gap);
	will-change: transform;
	transition: transform 0.35s ease;
}

.nwui-fb-card {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	border-radius: var(--nwui-fb-radius, 14px);
	overflow: hidden;
	background: #1a1a1a;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nwui-fb-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
}

.nwui-fb-banner {
	position: relative;
	height: var(--nwui-fb-banner-h);
	background-size: cover;
	background-position: center;
	background-color: #111;
}

.nwui-fb-banner::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 70%, rgba(0, 0, 0, 0.55) 100%);
	pointer-events: none;
}

.nwui-fb-logo,
.nwui-fb-logo-text {
	position: absolute;
	top: 10px;
	left: 12px;
	z-index: 2;
	max-height: 28px;
	max-width: 42%;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.nwui-fb-logo-text {
	font-family: var(--nwui-font-heading, 'Poppins', sans-serif);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #fff;
	text-transform: uppercase;
}

.nwui-fb-ad {
	position: absolute;
	top: 8px;
	right: 10px;
	z-index: 2;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.75);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.nwui-fb-headline {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 2;
	margin: 0;
	font-family: var(--nwui-font-heading, 'Poppins', sans-serif);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.nwui-fb-offer {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 8px 12px;
	background: #6d28d9;
	text-align: center;
}

.nwui-fb-offer span {
	font-family: var(--nwui-font-heading, 'Poppins', sans-serif);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.nwui-fb-next {
	position: absolute;
	top: 50%;
	right: -6px;
	transform: translateY(-50%);
	z-index: 5;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: #fff;
	color: #374151;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nwui-fb-next:hover {
	transform: translateY(-50%) scale(1.05);
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.22);
}

.nwui-fb-next:focus-visible {
	outline: 2px solid #22c55e;
	outline-offset: 2px;
}

@media (max-width: 1023px) {
	.nwui-featured-brands {
		--nwui-fb-banner-h: 150px;
		padding: 0 10px;
	}

	.nwui-fb-title {
		font-size: 1.2rem;
	}

	.nwui-fb-headline {
		font-size: 0.95rem;
	}

	.nwui-fb-next {
		width: 36px;
		height: 36px;
		right: 2px;
	}
}

@media (max-width: 767px) {
	.nwui-featured-brands {
		--nwui-fb-gap: 10px;
		--nwui-fb-banner-h: 148px;
		margin-bottom: 1rem;
		padding: 0 8px;
	}

	.nwui-fb-title {
		font-size: 1.1rem;
	}

	.nwui-fb-headline {
		font-size: 0.88rem;
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	.nwui-fb-offer {
		min-height: 36px;
		padding: 7px 10px;
	}

	.nwui-fb-offer span {
		font-size: 0.84rem;
	}

	.nwui-fb-next {
		right: 4px;
	}
}

@media (max-width: 480px) {
	.nwui-featured-brands {
		--nwui-fb-banner-h: 136px;
	}

	.nwui-fb-logo,
	.nwui-fb-logo-text {
		max-height: 22px;
	}
}
