.Best_seller .Common_heading {
  text-align: center;
}
.Best_seller .cards_holder .product_cards_holder {
  height: 100%;
}

.Best_seller .cards_holder .product_cards {
  background: #1e1f1f 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 8px;
  padding: 5%;
  height: 100%;
}

.Best_seller .cards_holder .product_cards .img_holder {
  aspect-ratio: 1/1;
  padding: 5%;
}

.Best_seller .cards_holder .product_cards .img_holder .product_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}

.Best_seller .cards_holder .product_cards:hover .img_holder .product_img {
  transition: all 0.3s ease-in-out;
  transform: scale(0.9);
}
.Best_seller .cards_holder .product_cards .hr_holder {
  border: 2px dashed #575353;
  margin: 5% 0px;
}

.Best_seller .cards_holder .product_cards .product_name_holder h3 {
  text-align: left;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0px;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 1;
   overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 1; /* number of lines to show */
           line-clamp: 1; 
   -webkit-box-orient: vertical;
}

.Best_seller .cards_holder .product_cards_holder .view_more_holder {
  transition: all 0.3s ease-in-out;
  width: fit-content;
  margin: 0px auto;
  cursor: pointer;
  opacity: 0;
  height: 20px;
  padding-top: 0px;
}

.Best_seller .cards_holder .product_cards_holder:hover .view_more_holder {
  padding-top: 10px;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

.Best_seller .cards_holder .product_cards_holder .view_more_holder p {
  text-align: left;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #0093cc;
  opacity: 1;
  margin-bottom: 0px;
}

@media (min-width: 0px) and (max-width: 485px) {
  .Best_seller .cards_holder .product_cards_holder .view_more_holder {
    opacity: 1;
  }

  .Best_seller .cards_holder .product_cards .product_name_holder h3 {
    font-size: 11px;
  }
}

@media (min-width: 486px) and (max-width: 575px) {
  .Best_seller .cards_holder .product_cards_holder .view_more_holder {
    opacity: 1;
  }

  .Best_seller .cards_holder .product_cards .product_name_holder h3 {
    font-size: 14px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .Best_seller .cards_holder .product_cards_holder .view_more_holder {
    opacity: 1;
  }
  .Best_seller .cards_holder .product_cards .product_name_holder h3 {
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .Best_seller .cards_holder .product_cards_holder .view_more_holder {
    opacity: 1;
  }
  .Best_seller .cards_holder .product_cards .product_name_holder h3 {
    font-size: 14px;
  }
}
