
/* ================= LATEST PRODUCTS ================= */
.latest-products-section {
  padding: 60px 0;
  background: #f8f8f8;
  text-align: center;
}

.latest-section-title {
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 40px;
}

/* Latest Product Card */
.latest-product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px #545454;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  
  /* Added padding so content doesn't touch edges */
  padding: 15px;
}

.latest-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px #000000;
}

.latest-product-img {
  width: 100%;
  height: 300px; /* Editable height */
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0; /* Keep top corners rounded */
  margin-bottom: 10px; /* Space between image and title */
}

.latest-product-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin: 10px 0 8px; /* Gap from image and price */
}

.latest-product-price {
  font-size: 20px;
  font-weight: 700;
  color: #b30000;
  margin-bottom: 10px;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
