.product-card .product-img {
  position: relative;
  width: 100%;
  height: 200px; /* Fixed height */
  overflow: hidden;
}

.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bottom shadow overlay */
.product-card .product-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px; /* Height of the shadow */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

a{
  text-decoration: none;
}
/* Page Hero Section */
.page-hero {
  background: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url('./products.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  margin-top: 70px;
  height: calc(100vh - 70px);

  display: flex;                
  justify-content: center;
  align-items: center;
  position: relative;
}

.page-hero .page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: white;
  z-index: 100;
 
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}
