/* Product Detail - Marquee styles */
.product-marquee-wrapper{overflow:hidden;position:relative}
.product-marquee{display:flex;gap:20px;animation:marquee 30s linear infinite}
.product-marquee:hover{animation-play-state:paused}
.marquee-product-card{flex:0 0 200px;background:#fff;border-radius:12px;overflow:hidden;border:1px solid #eef6f9;text-decoration:none;color:inherit;transition:transform 0.3s ease}
.marquee-product-card:hover{transform:translateY(-6px)}
.marquee-product-card img{width:100%;height:180px;object-fit:cover;display:block}
.marquee-product-card h4{padding:12px;margin:0;font-size:14px;text-align:center}
@keyframes marquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}
