.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 520px;
  background: #f5efe8;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
  color: var(--color-brand-dark);
  font-size: 18px;
}
.hero-arrow:hover { background: var(--color-white); box-shadow: 0 4px 18px rgba(0,0,0,0.2); }
.hero-arrow-prev { left: var(--space-4); }
.hero-arrow-next { right: var(--space-4); }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 1.5px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}
.hero-dot.active { background: var(--color-white); width: 24px; border-radius: 4px; }
