.quote {
    font-style: italic;
  }
  
  .homePageProduct {
    width: 100%;
  }

  .body {
    max-width: 750px;

  }


.category-options {
  text-align: center;
  margin-bottom: 20px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  display: inline-block;
  margin-right: 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 20px;
}

.product {
  text-align: center;
  position: relative;
}

.product img {
  max-width: 350px; /* Locks image size */
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.product:hover img {
  transform: scale(1.05); /* Adds highlight effect on hover */
}

.product strong {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.product span {
  display: block;
}

.product button {
  margin-top: 10px;
  display: inline-block;
  vertical-align: middle;
}
