.hero-carousel {
  padding: 2rem 5vw 1rem;
}

.carousel {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 1.5rem 2rem;
  box-sizing: border-box;
}

.carousel-slide h3 {
  margin-top: 0;
}

.carousel-slide img {
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.carousel-img-cover {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
}

.carousel-img-contain {
  width: 100%;
  height: 480px;
  object-fit: contain;
  background: #1a1a1a;
  padding: 10px;
  border-radius: 8px;
}


/* Controls */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(43, 11, 74, 0.8);
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.carousel-control.prev {
  left: 0.8rem;
}

.carousel-control.next {
  right: 0.8rem;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.dot-active {
  background: #2b0b4a;
}