/* RTC Travel hover-stable dropdown for "Курорты".
   Hover opens the menu. Invisible bridge prevents closing while cursor moves down. */

.nav-resorts {
  position: relative;
}

.nav-resorts .nav-resorts-btn {
  cursor: default;
  user-select: none;
}

.nav-resorts::after {
  content: "";
  position: absolute;
  left: -40px;
  right: -40px;
  top: 100%;
  height: 42px;
  display: none;
  z-index: 9998;
  background: transparent;
}

.nav-resorts:hover::after,
.nav-resorts.is-hover-open::after,
.nav-resorts:focus-within::after {
  display: block;
}

.nav-resorts:hover .nav-resorts-dropdown,
.nav-resorts.is-hover-open .nav-resorts-dropdown,
.nav-resorts:focus-within .nav-resorts-dropdown {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.nav-resorts .nav-resorts-dropdown {
  z-index: 9999;
}

.nav-resorts .nav-resorts-btn:focus-visible,
.nav-resorts .nav-resorts-dropdown a:focus-visible {
  outline: 1px solid rgba(214, 177, 98, .95);
  outline-offset: 4px;
  border-radius: 6px;
}
