.Best_seller_heart {
  display: flex;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 6px;
  right: 6px;
}

.Best_seller_heart .text_holder p {
  margin-bottom: 0px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.Best_seller_heart .text_holder {
  background: #159507;
  padding: 5px 10px;
}
.Best_seller_heart .like_btn_holder {
  /* width: 45px;
  height: 45px; */
  display: flex;
  align-items: center;
  justify-content: center;

  /* background: #b75e1c; */
}
.Best_seller_heart .like_btn_holder .heart_icon {
    display: flex;
    align-items: center;
    font-size: 25px;
    color: #852438;
}
.best_seller_heart_holder .like_btn_holder {
  display: flex;
}

.Best_seller_heart .like_btn_holder .heart_icon.sparkle {
  animation: sparkle-pop 0.8s ease forwards;
}

@keyframes sparkle-pop {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px gold);
  }
  40% {
    transform: scale(1.5);
    filter: drop-shadow(0 0 8px gold);
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px gold);
  }
}

@media (min-width: 0px) and (max-width: 485px) {
  .Best_seller_heart .text_holder {
    padding: 3px 5px;
  }
  .Best_seller_heart {
    top: 5px;
    right: 0px;
  }

  .Best_seller_heart .text_holder p {
    font-size: 8px;
  }

  .Best_seller_heart .like_btn_holder .heart_icon {
    padding: 5px 5px;
    font-size: 17px;
  }
}
