/**
 * Homepage featured brands – gentle infinite marquee (RTL-aware).
 *
 * @package PetiFood
 */

.petifood-featured-brands__viewport {
	mask-image: linear-gradient(
		to left,
		transparent,
		#000 8%,
		#000 92%,
		transparent
	);
	-webkit-mask-image: linear-gradient(
		to left,
		transparent,
		#000 8%,
		#000 92%,
		transparent
	);
}

.petifood-featured-brands__track {
	animation: petifood-brands-marquee var(--petifood-marquee-duration, 40s) linear infinite;
	will-change: transform;
	direction: ltr;
}

.petifood-featured-brands__viewport:hover .petifood-featured-brands__track {
	animation-play-state: paused;
}

@keyframes petifood-brands-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-50%, 0, 0);
	}
}

/* Popular brands – mobile: touch scroll instead of masked marquee (iOS/RTL safe). */
@media (max-width: 767px) {
	.petifood-popular-brands__viewport {
		mask-image: none;
		-webkit-mask-image: none;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		min-height: 7.5rem;
	}

	.petifood-popular-brands__viewport::-webkit-scrollbar {
		display: none;
	}

	.petifood-popular-brands__viewport .petifood-featured-brands__track {
		animation: none;
		transform: none;
		width: max-content;
	}

	.petifood-popular-brands__viewport .petifood-featured-brands__set[aria-hidden='true'] {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.petifood-featured-brands__track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		max-width: 100%;
		gap: 1.5rem;
	}

	.petifood-featured-brands__viewport {
		mask-image: none;
		-webkit-mask-image: none;
		overflow: visible;
	}

	.petifood-featured-brands__item[tabindex='-1'] {
		display: none;
	}
}
