/* ── AD SLOT CONTENT — injected into #ad-hero (the .hero-ad-wrap box) by ads.js ──
   The box itself (.hero-ad-wrap: shape/background/shadow) lives in shop.html since
   it's page section-flow; this file styles what ads.js renders inside it. */
.hero-ad-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-ad-empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .02em;
}

.hero-ad-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.hero-ad-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all .3s;
}

.hero-ad-dot.active {
  background: #fff;
  width: 20px;
  border-radius: 3px;
}

.hero-ad-mute {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: .8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
}

.hero-ad-mute:hover {
  background: rgba(0, 0, 0, .65);
}

.hero-ad-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  font-size: .82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.hero-ad-arrow:hover {
  background: rgba(255, 255, 255, .25);
}

.hero-ad-arrow.prev {
  left: 9px;
}

.hero-ad-arrow.next {
  right: 9px;
}
