.Popular_Product {
  background-color: #f3f3f3;
  border-radius: 5px;
}

.Popular_Product .heading_div {
  background-color: #e7e9ff;
  padding: 10px;
  border-radius: 5px 5px 0px 0px;
}

.Popular_Product .heading_div .card_title {
  color: #000;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0px;
}

.Product_Card {
  padding: 10px 3px;
  max-height: 700px;
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}

.Product_Card .wrapper {
  position: relative;
  margin-bottom: 15px;
}

.Product_Card .wrapper::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -5px;
  width: 12%;
  height: 112%;
  background: #c290db;
  border-radius: 6px;
  z-index: 0;
}

.Product_Card .prod_descn {
  display: flex;
  background: #fff;
  padding: 5px;
  box-shadow: 0px 0px 3px #0000006b;
  border-radius: 8px;
  position: relative;
  margin-left: 3px;
  z-index: 1;
}
.Product_Card .prod_descn .img_holder {
  cursor: pointer;
  width: 38px;
  height: 38px;
  background: #ffe8e7;
  border-radius: 3px;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.Product_Card .prod_descn .img_holder .prod_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.Product_Card .prod_descn .text_holder {
  margin-left: 11px;
}

.Product_Card .prod_descn .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;
  word-break: break-all;
}

.Product_Card .prod_descn .text_holder .title:hover {
  /* color: #f4a51c; */
}
.Product_Card .prod_descn .text_holder .price {
  color: #75438e;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 0px;
}
