.scroll-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  will-change: transform; /* Optimize for animations */
}

.scroll-carousel .carousel-track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform; /* Optimize for animations */
  backface-visibility: hidden; /* Prevent flickering */
}

.scroll-carousel .carousel-item {
  min-width: 300px;
  height: 100%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  transform: translateZ(0); /* Force hardware acceleration */
}
