.prod-card {
  border-radius: 25px;
  margin-bottom: 15px;
  border: 1px solid #f1f1f1;
}

.prod-card .img-box {
  border-radius: 25px 25px 0 0;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.prod-card .img-box::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.prod-card .img-box .prod-img {
  border-radius: 25px 25px 0 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.prod-card .img-box .main-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  width: 140px;
  height: 40px;
  line-height: 38px;
  z-index: 1;
}

.prod-card .card-body .categ-name {
  color: #ccc;
  font-weight: 500;
}

.prod-card .card-body .prod-name {
  color: #000;
  margin-top: .4rem;
  font-weight: 600;
}

.prod-card .card-body .price {
  margin-bottom: 0;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  font-weight: bold;
  color: #333;
}

.prod-card .card-body .qty {
  margin-bottom: 0;
}

.prod-card:hover {
  -webkit-box-shadow: 0 5px 25px 0 #ddd;
          box-shadow: 0 5px 25px 0 #ddd;
}

.prod-card:hover .main-btn {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.prod-card:hover .img-box::after {
  opacity: .5;
}

.prod-card:hover .prod-img {
  -webkit-transform: scale(1.2) rotate(5deg);
          transform: scale(1.2) rotate(5deg);
}

.prod-card:hover .price {
  color: #FD6769;
}
/*# sourceMappingURL=product-style.css.map */