.npi-products-strip {
	position: relative;
	padding: 34px 0 38px;
	background: linear-gradient(180deg, #fafafa 0%, #f2f2f2 100%);
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.npi-products-strip-header {
	text-align: center;
	margin-bottom: 18px;
	padding: 0 20px;
}

.npi-products-strip-subtitle {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #b35a1f;
	font-weight: 700;
	margin-bottom: 6px;
}

.npi-products-strip-header h3 {
	margin: 0;
	font-size: 30px;
	line-height: 1.1;
	color: #1f2d3d;
	font-weight: 700;
	text-transform: uppercase;
}

.npi-banner-slider {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding: 8px 0;
}

.npi-banner-slider::before,
.npi-banner-slider::after {
	content: "";
	position: absolute;
	top: 0;
	width: 120px;
	height: 100%;
	z-index: 3;
	pointer-events: none;
}

.npi-banner-slider::before {
	left: 0;
	background: linear-gradient(to right, #f7f7f7 0%, rgba(247,247,247,0) 100%);
}

.npi-banner-slider::after {
	right: 0;
	background: linear-gradient(to left, #f2f2f2 0%, rgba(242,242,242,0) 100%);
}

.npi-banner-track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: npiBannerScroll 32s linear infinite;
}

.npi-banner-track a {
	display: block;
	flex-shrink: 0;
	text-decoration: none;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.npi-banner-track a:hover {
	transform: translateY(-4px);
}

.npi-banner-track img {
	display: block;
	width: 545px;
	height: auto;
	flex-shrink: 0;
	margin: 0 16px;
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.10));
}

.npi-banner-slider:hover .npi-banner-track {
	animation-play-state: paused;
}

@keyframes npiBannerScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 991px) {
	.npi-products-strip {
		padding: 28px 0 30px;
	}

	.npi-products-strip-header h3 {
		font-size: 24px;
	}

	.npi-banner-slider::before,
	.npi-banner-slider::after {
		width: 60px;
	}

	.npi-banner-track {
		animation-duration: 24s;
	}

	.npi-banner-track img {
		width: 380px;
		margin: 0 10px;
	}
}

@media (max-width: 767px) {
	.npi-products-strip-header h3 {
		font-size: 20px;
	}

	.npi-products-strip-subtitle {
		font-size: 11px;
		letter-spacing: 1.5px;
	}

	.npi-banner-track img {
		width: 280px;
	}
}