.product-card {
  background-color: #484848;
  padding: 0.75rem;
}
.product-card .content-wrapper {
  position: relative;
  z-index: 1;
}
.product-card .img-wrapper {
  position: relative;
  background-color: #6B6B6B;
}
.product-card .img-wrapper .stock {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 10px;
  background-color: #BB2124;
}
.product-card .info {
  font-size: 18px;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(72, 72, 72, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
}
.product-card .hover-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  z-index: 3;
}
.product-card:hover::before {
  opacity: 1;
}
.product-card:hover .hover-content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.product-page .product-img {
  margin: 0 auto 24px auto;
  display: block;
  width: 70%;
}
@media all and (min-width: 992px) {
  .product-page .product-img {
    width: 50%;
  }
}
@media all and (min-width: 1024px) {
  .product-page .product-img {
    width: 40%;
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
  }
}
.product-page .product-detail {
  clear: right;
}
.product-page .product-detail .dashed-border {
  opacity: 0.75;
}