.Best_seller .Common_heading {
  text-align: center;
}

.Best_seller {
  /* background: linear-gradient(180deg, #f8fff9, #ffffff); */
  padding: 80px 0;
  position: relative;
}

.Best_seller .Common_heading {
  text-align: center;
  margin-bottom: 60px;
}

.Best_seller .cards_holder .product_cards_holder {
  height: 100%;
}

.Best_seller .cards_holder .product_cards {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 350px;
  padding: 28px;
  z-index: 5;
}

.Best_seller .cards_holder .product_cards::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ff8a1e, #46a7e0, #1b7e05);
}

.Best_seller .cards_holder .product_cards:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 40px rgba(27, 126, 5, 0.18);
}

.Best_seller .img_holder {
  width: 180px;
  height: 180px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(145deg, #f7fff8, #eef8ff);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}

.Best_seller .product_cards:hover .img_holder {
  transform: rotate(-4deg);
}

.Best_seller .product_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.4s;
}

.Best_seller .product_cards:hover .product_img {
  transform: scale(1.08);
}

.Best_seller .hr_holder {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, #1b7e05, #46a7e0, #ff8a1e);
  margin: 25px 0;
  opacity: 0.25;
}

.Best_seller .product_name_holder {
  text-align: center;
}

.Best_seller .product_name_holder h3 {
  color: #202020;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.Best_seller .view_more_holder {
  opacity: 1;
  /* margin-top: 20px; */
  text-align: center;
  cursor: pointer;
  transform: translateY(-40px);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.Best_seller .product_cards_holder:hover .view_more_holder {
  transform: translateY(10px);
}

.Best_seller .view_more_holder p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1b7e05;
  color: #fff;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.35s;
}

.Best_seller .view_more_holder p::after {
  content: "→";
  transition: 0.35s;
}

.Best_seller .view_more_holder p:hover {
  background: #ff8a1e;
}

.Best_seller .view_more_holder p:hover::after {
  transform: translateX(6px);
}

/* .product_cards::after {
    content: "Premium";
    position: absolute;
    right: 18px;
    top: 18px;
    background: #ff8a1e;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;

  } */

/* ====================================
  MEDIA QUERIES 
  ======================================*/

@media (min-width: 0px) and (max-width: 991px) {
  .Best_seller {
    padding: 25px 0;
  }

  .Best_seller .product_name_holder h3 {
    font-size: 18px;
  }

  .Best_seller .view_more_holder,
  .Best_seller .product_cards_holder:hover .view_more_holder {
    transform: translateY(10px);
  }

  .Best_seller .cards_holder .product_cards:hover {
    transform: unset;
  }
}

/* ================================= 
NEW CSS 
=================================== */

.brand_audits {
  padding: 70px 0;
  background: #fff;
}

.brand_title {
  margin-bottom: 35px;
}

.brand_title span {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  position: relative;
  display: inline-block;
}

.brand_title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 5px;
  background: #2d63ff;
}

.audit_card {
  background: #fff;
}

.audit_image {
  position: relative;
  overflow: hidden;
  height: 380px;
}

.audit_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.audit_card:hover .audit_image img {
  transform: scale(1.05);
}

.audit_content {
  padding-top: 16px;
}

.audit_content h3 {
  font-size: 25px;
  font-weight: 500;
  color: #3a3a3a;
  margin-bottom: 16px;
}

.audit_author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.audit_author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.audit_author h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.audit_author span {
  color: #666;
  font-size: 15px;
}

/* Swiper */

.brand_audits .swiper {
  padding-bottom: 10px;
}

.brand_audits .swiper-button-next,
.brand_audits .swiper-button-prev {
  color: #fff;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  transition: 0.3s;
  padding: 10px;
  aspect-ratio: 1/1;
}

.brand_audits .swiper-button-next:hover,
.brand_audits .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.8);
}

.brand_audits .swiper-button-next::after,
.brand_audits .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

/* Mobile */

@media (max-width: 991px) {
  .audit_image img {
    /* height: 350px; */
  }

  .audit_content h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .brand_audits {
    padding: 50px 0;
  }

  .brand_title span {
    font-size: 32px;
  }

  .audit_image {
    height: 330px;
  }

  .audit_image img {
    /* height: 280px; */
  }

  .audit_content h3 {
    font-size: 24px;
  }

  .audit_author h5 {
    font-size: 16px;
  }

  .audit_author span {
    font-size: 14px;
  }

  /* .brand_audits .swiper-button-next,
  .brand_audits .swiper-button-prev {
    width: 40px;
    height: 40px;
  } */
}