.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  position: relative;
  z-index: 5;
}

.hero-slider-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid #b9c9d2;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  touch-action: manipulation;
  transition: color .2s, border-color .2s, background .2s;
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  outline: 0;
}

.hero-slider-dots {
  display: flex;
  gap: 9px;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hero-slider-dot[aria-current="true"] {
  background: var(--blue);
}

.style-city {
  background-image: url("/home-style-adventure.jpg?v=20260723u1");
}

.style-family {
  background-image: url("/home-style-family.jpg?v=20260723u1");
}

.hero-copy > :not(.hero-slider-controls),
.hero-visual .hero-image,
.floating-card,
.destination-tag {
  transition: opacity .32s ease, transform .32s ease;
}

.hero.is-changing .hero-copy > :not(.hero-slider-controls),
.hero.is-changing .hero-visual .hero-image,
.hero.is-changing .floating-card,
.hero.is-changing .destination-tag {
  opacity: .15;
  transform: translateY(8px);
}

.hero-visual .hero-image {
  background-position: center;
  background-size: cover;
}

@media (max-width: 900px) {
  .hero {
    touch-action: pan-y;
  }

  .hero .hero-grid {
    min-height: auto;
  }

  .hero .hero-visual {
    display: none;
  }

  .hero-grid > .hero-slider-controls {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-slider-arrow {
    width: 48px;
    height: 48px;
  }

  .hero-slider-dot {
    width: 12px;
    height: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy > :not(.hero-slider-controls),
  .hero-visual .hero-image,
  .floating-card,
  .destination-tag { transition: none; }
}

.deal-card-current .deal-photo {
  min-height: 260px;
  position: relative;
}

.deal-price-badge {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  background: var(--blue);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 21px;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(7, 42, 59, 0.22);
}

.deal-price-badge small {
  display: block;
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deal-inclusions {
  display: grid;
  gap: 7px;
  margin: 16px 0 22px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.deal-inclusions li {
  display: grid;
  grid-template-columns: 15px 1fr;
  gap: 5px;
}

.deal-inclusions li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 640px) {
  .deal-card-current .deal-photo {
    min-height: 230px;
  }
}
