/* Carousel wrapper */
.eco-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.eco-track {
  display: flex;
  transition: transform 0.4s ease;
}

.eco-card {
  min-width: 100%;
  padding: 32px;
  background: #2D1B2D;
  border-radius: 16px;
  box-sizing: border-box;
}

/* Dots */
.eco-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.eco-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5C3D7A;
  cursor: pointer;
  transition: background 0.2s;
}

.eco-dot.active {
  background: #9932CC;
}