/* ==== Carousel Modern Sliding for Products ==== */
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 230px;
  border-radius: 16px;
  z-index: 5;
  backface-visibility: hidden;
}
.product-image {
  position: relative;
  z-index: 100;
}
.carousel-track {
  display: flex !important;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}
.carousel-img {
  min-width: 100% !important;
  height: 230px;
  object-fit: cover;
  will-change: transform;
}
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffffee;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 20px;
  cursor: pointer;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.carousel-prev:hover,
.carousel-next:hover {
  transform: translateY(-50%) scale(1.1);
  background: #f4b41a;
  color: #000;
}
.carousel-prev {
  left: 10px;
}
.carousel-next {
  right: 10px;
}
