/* ── Step 5 outfit scroll ── */
.step5-outfit-scroll::-webkit-scrollbar { display: none; }

/* ── HERO CAROUSEL ── */
.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 580px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,23,20,0.18), 0 4px 16px rgba(26,23,20,0.08);
}
.hero-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-carousel-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Gradient overlay at bottom for label legibility */
.hero-carousel-slide::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(26,23,20,0.55) 0%, transparent 100%);
  pointer-events: none;
}
.hero-carousel-slide-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(26,23,20,0.65);
  backdrop-filter: blur(12px);
  color: rgba(250,248,244,0.92);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
}
/* Thumbnail strip at bottom */
.hero-carousel-thumbs {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  gap: 5px;
  align-items: center;
}
.hero-carousel-thumb {
  width: 28px; height: 28px;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  opacity: 0.55;
  flex-shrink: 0;
}
.hero-carousel-thumb img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
}
.hero-carousel-thumb.active {
  border-color: var(--accent);
  opacity: 1;
  transform: scale(1.1);
}
.hero-carousel-prev,
.hero-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(26,23,20,0.5);
  backdrop-filter: blur(10px);
  color: rgba(250,248,244,0.9);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-carousel-prev { left: 12px; }
.hero-carousel-next { right: 12px; }
.hero-carousel-prev:hover,
.hero-carousel-next:hover {
  background: rgba(201,169,110,0.8);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}
.hero-carousel-dots { display: none; }
.hero-carousel-dot { display: none; }
