/* 大榮行 - 輪播樣式 */

.click-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

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

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

.click-carousel-prev,
.click-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--twh-purple);
  transition: background 0.2s, box-shadow 0.2s;
}

.click-carousel-prev:hover,
.click-carousel-next:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(36,16,63,0.16);
}

.click-carousel-prev { left: 12px; }
.click-carousel-next { right: 12px; }

.click-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.click-carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(36,16,63,0.2);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}

.click-carousel-dots span.active {
  background: var(--twh-gold);
  width: 24px;
  border-radius: 4px;
}
