
/* Section Title */
.top-selling-section {
  padding: 60px 0;
  background: #f8f8f8;
  text-align: center;
}

.top-selling-section .section-title {
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 40px;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px #474747;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;

  /* Added padding to prevent content touching edges */
  padding: 15px;
}

.product-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;

  /* Space between image and title */
  margin-bottom: 10px;
  border-radius: 12px 12px 0 0; /* Keep top corners rounded */
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px #000000;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 8px; /* Adjusted margin for proper spacing */
  color: #000000;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: #8f0000;
  margin-bottom: 15px; /* Adjusted for better spacing */
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
