.carousel-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  flex: 1;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .carousel-slide { flex: 0 0 calc(100% - 32px); }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .carousel-slide { flex: 0 0 calc((100% - 16px) / 2); }
}

.carousel-btn {
  background: var(--surface, #f6f7f9);
  border: 1px solid #d1d5db;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.carousel-btn:hover { background: #e2e8f0; }

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

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.carousel-dot.active { background: #1e3a8a; }
