
/* ================= TRENDING PRODUCTS ================= */
.trending-products-section {
  padding: 60px 0;
  background: #f8f8f8;
  text-align: center;
}

.trending-section-title {
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 40px;
}

/* Marquee Wrapper */
.trending-marquee-wrapper {
  overflow: hidden;
  position: relative;
}

/* Marquee Scroll */
.trending-marquee {
  display: flex;
  gap: 25px;
  animation: trending-marquee 10s linear infinite;
}

.trending-marquee:hover {
  animation-play-state: paused;
}

/* Product Card */
.trending-product-card {
  flex: 0 0 auto;
  width: 250px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px #4f4f4f;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;

  /* Added padding to prevent content touching edges */
  padding: 15px;
}

.trending-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px #000000;
}

.trending-product-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;

  /* Gap between image and title */
  margin-bottom: 10px;
  border-radius: 12px 12px 0 0; /* Keep top corners rounded */
}

.trending-product-title {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 8px; /* Adjusted margin for proper spacing */
  color: #000000;
}

.trending-product-price {
  font-size: 20px;
  font-weight: 600;
  color: #b30000;
  margin-bottom: 15px;
}

/* Marquee Animation */
@keyframes trending-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .trending-product-card { width: 160px; }
  .trending-product-img { height: 200px; }
  .trending-product-title { font-size: 16px; }
  .trending-product-price { font-size: 18px; }
  .trending-marquee {
      animation-duration: 5s;
  }
}
