.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}

.carousel-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.carousel-slide {
  flex: 0 0 calc(20% - 20px); /* Show 5 slides */
  border-radius: 24px;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  background: #f3f8ff;
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  font-size: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn { left: -25px; }
.next-btn { right: -25px; }

.prev-btn::before { content: "❮"; }
.next-btn::before { content: "❯"; }

/* Responsive */
@media (max-width: 1024px) {
  .carousel-slide { flex: 0 0 calc(25% - 15px); } /* 4 visible */
}

@media (max-width: 768px) {
  .carousel-slide { flex: 0 0 calc(33.33% - 10px); } /* 3 visible */
}

@media (max-width: 480px) {
  .carousel-slide { flex: 0 0 calc(80% - 8px); } /* 1 visible */
  .prev-btn, .next-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}
