.Common_Product_Card {
  display: flex;
  margin-bottom: 7px;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  padding: 5px;
  border-radius: 25px;
}

.Common_Product_Card .img_holder {
  cursor: pointer;
  width: 38px;
  height: 38px;
  background: #f0f0f0;
  border-radius: 50%;
  padding: 0px;
  aspect-ratio: 1/1;
}
.Common_Product_Card .img_holder .prod_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #fa7317;
}

.Common_Product_Card .text_holder {
  margin-left: 11px;
}

.Common_Product_Card .text_holder .title {
  color: #202020;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  cursor: pointer;
}

.Common_Product_Card .text_holder .title:hover {
  /* color: #f4a51c; */
}

.Common_Product_Card .text_holder .price {
  color: #fa7317;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 0px;
}
