.bestseller {
  background: #7C0C0C;
  border-radius: 40px;
  padding: 60px 0;
  margin: 40px 0;
  position: relative;
  /* overflow: hidden; */
}

.bestseller-about {
  background: #7C0C0C;
  border-radius: 40px;
  padding: 80px 0;
  margin: 0px 0;
  position: relative;
}

.bestseller-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.bestseller-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.bestseller .section-title {
  color: #F1DEC0;
  margin-bottom: 0;
}

.product-page-btn {
  background: #FF7A00;
  border-radius: 39px;
  padding: 13px 11px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 91px;
  color: #7C0C0C;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 330px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page-btn:hover {
  background: #FF7D12;
  transform: translateY(-2px);
}

.product-page-btn-1 {
  background: transparent;
  border-radius: 39px;
  padding: 13px 11px;
  border: 2px solid #FF7D12;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 90px;
  color: #FF7D12;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 320px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page-btn-1:hover {
  background: transparent;
  transform: translateY(-2px);
}

.product-page-btn-1-product {
  background: transparent;
  border-radius: 39px;
  padding: 13px 11px;
  border: 2px solid #7C0C0C;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 91px;
  color: #7C0C0C;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 325px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page-btn-1-product:hover {
  background: transparent;
  transform: translateY(-2px);
}

.products-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.products-slider-container-products {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
}

.products-slider {
  display: flex;
  gap: 43px;
  animation: slideProducts 30s linear infinite;
  width: max-content;
}

.product-card {
  background: #FF7D12;
  border-radius: 12px;
  width: 260px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 0 12px;
  flex-shrink: 0;
  position: relative;
}

.product-card-about {
  background: #FF7D12;
  border-radius: 12px;
  width: 355px;
  height: 256px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 0 12px;
  flex-shrink: 0;
  position: relative;
}

.product-card-about-1 {
  background: #FF7D12;
  border-radius: 12px;
  width: 355px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 0 12px;
  flex-shrink: 0;
  position: relative;
}

.product-card-about img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}


.product-card img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.product-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 7px;
  color: #7C0C0C;
  text-align: center;
  margin: 0;
}

.product-card.featured .star-rating {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 45px;
  height: 47px;
  background: transparent;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7C0C0C;
  font-size: 33px;
}

@keyframes slideProducts {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.products-slider:hover {
  animation-play-state: paused;
}

/* 
//new css
*/

.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.products-slider {
  display: flex;
  gap: 20px;
  animation: scroll-left 30s linear infinite;
}

.products-slider:hover {
  animation-play-state: paused;
  /* Pause on hover */
}



.product-card img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}



/* Responsive */
@media (max-width: 768px) {
  .bestseller {
    margin: 40px 20px;
    padding: 40px 20px;
  }

  .bestseller .section-title {
    font-size: 32px;
    line-height: 48px;
  }

  .product-page-btn {
    width: 275px;
    height: 60px;
    font-size: 35px;
    line-height: 36px;
  }

  .product-card {
    width: 100%;
    height: 300px;
    padding: 20px;
  }

  .product-card img {
    height: 100%;
  }

  .product-card h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .product-card.featured .star-rating {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 45px;
    height: 47px;
    background: transparent;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7C0C0C;
    font-size: 33px;
  }

  .products-slider-container-products {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: block;
    justify-content: center;
  }

}