.filterProduct {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(250, 250, 250, 0.7);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
}
.filterProduct h3 {
  color: rgb(172, 172, 172);
  font-size: 15px;
}
.filterProduct h5 {
  color: rgb(116, 116, 116);
  font-size: 15px;
}
.filterProduct del {
  color: red;
  font-size: 12px;
}
.product .filterProduct p a {
  border: 1px solid #0d1452;
  color: black;
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.4s ease;
}
.product .filterProduct p a:hover {
  background: black;
  color: white;
}

.item:hover .filterProduct {
  height: 100%;
  padding: 50px;
}
