.marquee-wrapper-f1b1041b {
	overflow: hidden;
	width: 100%;
	position: relative;
	display: flex;
}

.marquee-track-f1b1041b {
	display: flex;
	width: max-content;
	animation: scroll-marquee-f1b1041b 30s linear infinite;
	gap: 20px;
}

.pause-on-hover-f1b1041b:hover .marquee-track-f1b1041b {
	animation-play-state: paused;
}

@keyframes scroll-marquee-f1b1041b {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-50% - (var(--gap, 20px) / 2))); }
}

.marquee-item-f1b1041b {
	flex-shrink: 0;
	position: relative;
	width: 300px;
	overflow: hidden;
	border-radius: 8px;
}

.marquee-image-wrap-f1b1041b {
	position: relative;
	width: 100%;
	height: 100%;
}

.marquee-image-wrap-f1b1041b img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.marquee-badge-f1b1041b {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #e2401c;
	color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: bold;
	z-index: 2;
}

.marquee-overlay-f1b1041b {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	padding: 20px;
	z-index: 10;
}

.marquee-item-f1b1041b:hover .marquee-overlay-f1b1041b {
	opacity: 1;
}

.marquee-title-f1b1041b {
	color: #ffffff;
	margin: 0 0 10px;
	font-size: 18px;
}

.marquee-cat-f1b1041b,
.marquee-cat-f1b1041b a {
	color: #cccccc;
	font-size: 14px;
	margin-bottom: 5px;
	text-decoration: none;
}

.marquee-price-f1b1041b {
	color: #ffffff;
	font-weight: bold;
	margin-bottom: 15px;
}

.marquee-actions-f1b1041b {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.marquee-btn-f1b1041b, .marquee-actions-f1b1041b .button {
	display: inline-block;
	background: #ffffff;
	color: #000000;
	padding: 8px 15px;
	text-decoration: none;
	border-radius: 4px;
	font-size: 14px;
	transition: background 0.2s;
	margin: 0;
	border: none;
	cursor: pointer;
}

.marquee-btn-f1b1041b:hover, .marquee-actions-f1b1041b .button:hover {
	background: #dddddd;
}