
/* Products Section */
.products {
  padding: 50px 5%;
  text-align: center;
}
.products h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-8px);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-card h3 {
  margin: 15px 0 10px;
  color: #222;
}
.product-card p {
  font-size: 0.9em;
  padding: 0 15px 20px;
  color: #555;
}

