.Product_details_swiper .swiper_holder {
  margin-top: 5%;
  position: relative;
}

.Product_details_swiper .swiper_holder .custom_arrows {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 100%;
  transform: translate(0px, -50%);
}

.Product_details_swiper .swiper_holder .custom_arrows .arrow_btn {
  background-color: #A3C526;
}

.Product_details_swiper .swiper_holder .custom_arrows .arrow_btn .arrow_icon {
  color: #fff;
}

.Product_details_swiper .img_holder {
  aspect-ratio: 1/1;
  border-radius: 10px;
  border: 1px solid #E2E2E2;
  border-radius: 8px;
  background: #fff;
}

.Product_details_swiper .img_holder .Product_img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.Product_details_swiper .swiper_holder .Product_details_Swiper_holder .swiper-slide-active .img_holder {
  /* border: 1px solid #a30404; */
}

.Product_details_swiper .swiper_holder .Product_details_Swiper_holder .img_holder {
    aspect-ratio: 1/1;
    border-radius: 5px;
    cursor: pointer;
    background: #ebf8ff;
}


.Product_details_swiper .swiper_holder .Product_details_Swiper_holder .img_holder:hover .Product_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  opacity: 0.8;
}

.Product_details_swiper .main_img_holder {
  position: relative;
  border-radius: 10px;
  /* box-shadow: 0px 3px 6px #00000029; */
  background: #b22b151c;
  /* border: 1px solid #7c0000; */
}

.Product_details_swiper .main_img_holder .like_icon_holder {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #c5c5c5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Product_details_swiper .main_img_holder .like_icon_holder .like_icon {
  font-size: 18px;
  color: #7c0000;
}

.Product_details_swiper .main_img_holder .like_icon_holder .like_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.6);
    filter: drop-shadow(0 0 12px gold);
  }

  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px gold);
  }
}

.Product_details_swiper .swiper_holder .Product_details_Swiper_holder .swiper-button-next {
  background-image: url("/public/assets/images/home/testimonials/next_Arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50px;
}

.Product_details_swiper .swiper_holder .Product_details_Swiper_holder .swiper-button-prev {
  background-image: url("/public/assets/images/home/testimonials/prev_Arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50px;
}

.Product_details_swiper .swiper_holder .Product_details_Swiper_holder .swiper-button-next::after,
.Product_details_swiper .swiper_holder .Product_details_Swiper_holder .swiper-button-prev::after {
  content: "";
}





.Product_details_swiper .main_img_holder .wishlist_div {
  position: absolute;
  top: 20px;
  right: 20px;
}

.Product_details_swiper .main_img_holder .wishlist_div .Best_seller_heart .text_holder {
  display: none;
}

.Product_details_swiper .main_img_holder .wishlist_div .Best_seller_heart .like_btn_holder {
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #c5c5c5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Product_details_swiper .main_img_holder .wishlist_div .Best_seller_heart .like_btn_holder .heart_icon {
  font-size: 18px;
  color: #000;
}

@media (min-width: 0px) and (max-width: 991px) {


  .Product_details_swiper .main_img_holder .wishlist_div {
    top: 10px;
    right: 4px;
  }
}