.carousel-module {
  max-width: 430px;
  margin: 0 auto;
  background-color: #fff9f1;
  padding: 4px 0 4px;
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
  cursor: grab;
  transition: transform 0.35s ease;
  touch-action: pan-y;
  user-select: none;
}

.carousel-track.dragging {
  transition: none;
  cursor: grabbing;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
}

.carousel-slide img {
  width: 100%;
  display: block;
  pointer-events: none;
}

.carousel-dots {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0;
  z-index: 2;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background-color: #e8d6d2;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
  background-color: #a9822f;
  transform: scale(1.2);
}
