/* ============================================================
   HERO DOTS — NUCLEAR FIX (paste at very bottom of style.css)
   ============================================================ */

/* Reset ALL dot styles completely */
.hero-dots,
.hero-dots button,
.hero-dots button.active,
.hero-dots button::before,
.hero-dots button::after {
  all: unset !important;
}

/* Re-apply only what we need */
.hero-dots {
  position: absolute !important;
  left: 50% !important;
  bottom: 20px !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 8px !important;
  z-index: 4 !important;
  align-items: center !important;
}

.hero-dots button {
  display: block !important;
  width: 10px !important;
  height: 10px !important;
  min-width: 10px !important;
  max-width: 10px !important;
  min-height: 10px !important;
  max-height: 10px !important;
  border-radius: 50% !important;
  border: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer !important;
  background: rgba(255,255,255,.30) !important;
  transition: background 0.3s ease, width 0.3s ease !important;
  flex-shrink: 0 !important;
  box-sizing: content-box !important;
  line-height: 1 !important;
  font-size: 0 !important;
}

.hero-dots button.active {
  width: 26px !important;
  max-width: 26px !important;
  height: 10px !important;
  max-height: 10px !important;
  border-radius: 5px !important;
  background: #d4a843 !important;
  box-shadow: 0 0 10px rgba(212,168,67,.5) !important;
}

/* Invisible large tap area — doesn't affect visual size */
.hero-dots button::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 36px !important;
  height: 36px !important;
  background: transparent !important;
  border-radius: 0 !important;
  display: block !important;
}

/* Each button needs relative positioning for ::before to work */
.hero-dots button {
  position: relative !important;
}
