.pg-shop-products-main-container {
  padding: 60px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}
.pg-shop-product-container {
  width: 23%;
  background-color: #fff;
  box-shadow: 0px 0px 20px 2px #f0f0f0;
  border-radius: 10px;
  position: relative;
  text-decoration: none;
}
.pg-shop-product-imagediv {
  position: relative;
  width: 100%;
  height: 250px;
}
.pg-shop-product-imagediv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.pg-shop-product-discount {
  position: absolute;
  top: 5%;
  left: 3%;
  padding: 5px 15px;
  border-radius: 5px;
  color: #fff;
  background-color: #ff324d;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg-shop-product-textdiv {
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.pg-shop-product-textdiv h2 {
  font-size: 15px;
  color: #233d63;
  cursor: pointer;
}
.pg-shop-product-textdiv h2:hover {
  color: #17c6bc;
}
.pg-shop-product-textdiv p:nth-child(2) {
  margin-top: 10px;
  color: gray;
  text-decoration: line-through;
  font-size: 13px;
}
.pg-shop-product-textdiv p:nth-child(3) {
  color: #ff324d;
  font-size: 16px;
  padding-bottom: 20px;
  font-weight: 500;
}
.pg-shop-product-icondiv {
  position: absolute;
  bottom: 15px;
  right: 20px;
  background-color: #f1f3f5;
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.pg-shop-product-icondiv i {
  font-size: 16px;
  color: #464545;
}
.pg-shop-product-icondiv:hover {
  background-color: #17c6bc;
}
.pg-shop-product-icondiv:hover > i {
  color: #fff;
}
@media (max-width: 767px) {
  .pg-shop-products-main-container {
    padding: 50px 20px;
  }
  .pg-shop-product-container {
    width: 100%;
  }
  .pg-shop-product-imagediv {
    height: 300px;
  }
}
