.carousel-item {
  flex: 0 0 100%;
  padding: 0 12px; 
  transform: scale(0.95);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.carousel-item.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

@media (min-width: 640px) {
  .carousel-item { flex: 0 0 50%; }
}
@media (min-width: 1024px) {
  .carousel-item { flex: 0 0 25%; }
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: #5c5c5c;
  cursor: pointer;
}

.carousel-dot.active {
  background: #be1e2d;
  transform: scale(1.3);
}
#carouselTrack {
  cursor: grab;
  user-select: none;
}

#carouselTrack.dragging {
  cursor: grabbing;
  transition: none !important;
}
.carousel-item {
  flex: 0 0 25%; /* 4 items desktop */
  padding: 0 12px;
  text-align: center;
}

@media (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 50%;
  }
}

@media (max-width: 640px) {
  .carousel-item {
    flex: 0 0 100%;
  }
}
