.Product_Info_Card_Section {
  height: 100%;
}

.Product_Info_Card_Section .Product_Info_Card {
  width: 100%;
  height: 100%;
  position: relative;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.Product_Info_Card_Section .Product_Info_Card:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.Product_Info_Card_Section .upper_image_section {
  position: relative;
  width: 100%;
  background: #fff;
  border: none;
}

.Product_Info_Card_Section .card_img_holder {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Product_Info_Card_Section .card_img_holder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}

.Product_Info_Card_Section .Product_Info_Card:hover .card_img_holder img {
  transform: scale(1.05);
}

.Product_Info_Card_Section .text_div {
  position: absolute;
  top: 14px;
  left: 12px;
  right: 12px;
  height: auto;
  display: block;
  pointer-events: none;
}

.Product_Info_Card_Section .discont_div {
  width: auto;
  height: auto;
  display: inline-flex;
  background: transparent;
}

.Product_Info_Card_Section .discount_text {
  margin: 0;
  padding: 5px 11px;
  background: #ee5e56;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  font-family: "roboto";
  font-weight: 600;
  line-height: 1;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.Product_Info_Card_Section .company_div {
  display: none;
}

.Product_Info_Card_Section .lower_text_section {
  padding: 14px 16px 16px;
}

.Product_Info_Card_Section .product_name {
  color: #172033;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0px 5px 0;
  cursor: pointer;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  /* min-height: 44px; */
}

.Product_Info_Card_Section .rating_div {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}

.Product_Info_Card_Section .rating_sub_div {
  display: flex;
  align-items: center;
}

.Product_Info_Card_Section .pricing_div {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-family: "roboto";
}

.Product_Info_Card_Section .left_side {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
}

.Product_Info_Card_Section .selling_price {
  color: #172033;
  font-size: 21px;
  font-weight: 800;
  margin: 0;
}

.Product_Info_Card_Section .mrp {
  color: #8c929b;
  font-size: 14px;
  font-weight: 500;
  text-decoration: line-through;
  margin: 0;
}

.Product_Info_Card_Section .favourite_div {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 5;
}

.Product_Info_Card_Section .heart_icon {
  color: #718096;
  font-size: 21px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.Product_Info_Card_Section .heart_icon:hover {
  color: #ee5e56;
  transform: scale(1.08);
}

.Product_Info_Card_Section .heart_icon.active {
  color: #ee5e56 !important;
}

.Product_Info_Card_Section .btn_holder {
  width: 100%;
  margin: 0;
}

.Product_Info_Card_Section .btn_holder .basket_icon {
  color: #fff;
  font-size: 13px;
  padding-right: 6px;
}

.Product_Info_Card_Section .kilo_main_div {
  position: relative;
  cursor: pointer;
}

.Product_Info_Card_Section .unit_dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  z-index: 999;
  overflow: hidden;
}

.Product_Info_Card_Section .unit_item {
  padding: 8px 10px;
  font-size: 13px;
  color: #172033;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.Product_Info_Card_Section .unit_item:hover {
  background: #edf6f0;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .Product_Info_Card_Section .card_img_holder {
    height: 190px;
  }

  .Product_Info_Card_Section .lower_text_section {
    padding: 12px;
  }

  .Product_Info_Card_Section .product_name {
    font-size: 15px;
  }

  .Product_Info_Card_Section .selling_price {
    font-size: 19px;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .Product_Info_Card_Section .card_img_holder {
    height: 200px;
  }

  .Product_Info_Card_Section .lower_text_section {
    padding: 11px;
  }

  .Product_Info_Card_Section .product_name {
    font-size: 14px;
  }

  .Product_Info_Card_Section .selling_price {
    font-size: 18px;
  }

  .Product_Info_Card_Section .mrp {
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .Product_Info_Card_Section .Product_Info_Card {
    border-radius: 13px;
  }

  .Product_Info_Card_Section .card_img_holder {
    height: 140px;
  }

  .Product_Info_Card_Section .text_div {
    top: 3px;
    left: 6px;
    right: 9px;
  }

  .Product_Info_Card_Section .discount_text {
    font-size: 10px;
    padding: 5px 9px;
  }

  .Product_Info_Card_Section .lower_text_section {
    padding: 10px;
  }

  .Product_Info_Card_Section .product_name {
    font-size: 13px;
    line-height: 1.35;
    margin-right: 25px;
  }

  .Product_Info_Card_Section .rating_div {
    margin-bottom: 5px;
  }

  .Product_Info_Card_Section .star_icon {
    font-size: 11px;
  }

  .Product_Info_Card_Section .rating {
    font-size: 11px;
  }

  .Product_Info_Card_Section .selling_price {
    font-size: 17px;
  }

  .Product_Info_Card_Section .mrp {
    font-size: 11px;
  }

  .Product_Info_Card_Section .pricing_div {
    margin-bottom: 9px;
  }

  .Product_Info_Card_Section .btn_holder .Add_to_card_btn,
  .Product_Info_Card_Section .btn_holder button {
    min-height: 34px;
    font-size: 12px;
  }

  .Product_Info_Card_Section .heart_icon {
    font-size: 18px;
  }
}
