.product-block-wrap {
    position: relative;
    overflow: hidden;
}

.product-block-wrap .top-image {
    transition: opacity 0.3s ease-in-out;
}

.product-block-wrap .hover-image {
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
	height: fit-content;
  width: 180px;
  text-align: center;
  display: block;
  margin: 0 auto;
}

.product-block-wrap:hover .top-image {
    opacity: 0;
}

.product-block-wrap:hover .hover-image {
    opacity: 1;
	height: fit-content;
  width: 180px;
  text-align: center;
  display: block;
  margin: 0 auto;
}
