

/* Best seller products start */

#new-products {
  overflow: hidden;
  background: #f7f7f7;
  padding: 112px 0px 112px 0px;
}

#new-products .heading {
  margin-bottom: 64px;
}

/* Ensure all product cards have the same height */
#new-products .new-products-slider .product {
  background-color: white;
  margin: 0px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distributes content properly */
  align-items: stretch; /* Stretches items evenly */
  height: 100%; /* Makes sure all slides have equal height */
}

#new-products .new-products-slider .slick-track {
  display: flex !important; /* Ensures all slides behave as flex children */
}

#new-products .new-products-slider .slick-slide {
  display: flex !important;
  height: auto !important; /* Allows it to expand properly */
}

#new-products .new-products-slider .product-footer {
  margin-top: auto; 
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#new-products .new-products-slider .product a {
  text-decoration: none;
}

#new-products .new-products-slider .product h3 {
  color: var(--Juoda, #000);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-transform: none;
  text-align: left;
  margin: 0px;
  padding-left: 16px;
  padding-right: 16px;
}



#new-products .slick-prev,
#new-products .slick-next {
  color: #fff;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 48px; /* Set a fixed width */
  height: 48px; /* Set a fixed height */
  background-size: contain; /* Ensure the background image fits within the element */
  background-repeat: no-repeat; /* Prevent repeating the background image */
}
#new-products .slick-prev:before,
#new-products .slick-next:before {
  color: transparent;
}

#new-products .slick-prev.slick-disabled,
#new-products .slick-next.slick-disabled {
  display: none !important;
}


#new-products .slick-prev {
  left: -15px;
 
}

/* #new-products .slick-prev::before {
  content: "";
} */

#new-products .slick-next {
  right: -15px;
 
}

/* #new-products .slick-next::before {
  content: "";
} */

#new-products .new-products-slider .product {
  position: relative;
  text-align: center;
  min-height: 490px; 
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

#new-products .new-products-slider .product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

#new-products .new-products-slider .product .banner {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--Orange, #ff7a06);
  color: var(--Balta, #fff);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  font-size: 12px;
  z-index: 1;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 25px;
}

#new-products .new-products-slider .product .status {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--Juoda);
  margin-top: 24px;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 8px ;
}

#new-products .new-products-slider .product .status .circle {
  width: 9px;
  height: 9px;
  background-color: #06ff4c;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

#new-products .new-products-slider .product .product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding-left: 16px;
  padding-right: 16px;
  margin-top: auto;
  margin-bottom: 24px;
}

#new-products .new-products-slider .product .price {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

#new-products .new-products-slider .product .shopping-bag a{
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Yellow);
  transition: background-color 0.3s ease;
  border-radius: 50%;
}
#new-products .new-products-slider .product .shopping-bag:hover a{
  background: #ffe066;
}

#new-products .new-products-slider .product .shopping-bag img {
  aspect-ratio: unset;
  object-fit: unset;
  width: unset;
}



#new-products  .new-products-slider-scroll {
  position: relative;
  width: 100%;
  height: 5px;
  background-color: #e0e0e0;
  margin-top: 24px;
  border-radius: 5px;
  overflow: hidden;
  margin: 24px auto auto auto;
}

#new-products  .new-products-slider-scroll .scroll-thumb {
  position: absolute;
  height: 5px;
  width: 25%;
  background-color: #000;
  border-radius: 5px;
  transition: left 0.3s ease-out;
}



@media screen and (max-width:768px) {
  
  #new-products {
    background: #f7f7f7;
    padding: 96px 12px 96px 12px;
  }









  #new-products .new-products-slider-scroll{
  
    width: 94% !important;

  }
  



}











