/* NAV DROPDOWN */

.nav-item--tours {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item--tours > a {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}

/* Невидимый мост — заполняет gap между кнопкой и дропдауном */
.nav-item--tours::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 28px;
}

/* Dropdown — скрыт по умолчанию */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease,
              transform 0.3s cubic-bezier(.25,0,.25,1);
  z-index: 200;
  min-width: 200px;
}

/* Показываем при hover */
.nav-item--tours:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Пункты дропдауна */
.nav-dropdown a {
  background: #ffffff;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 28px;
  border-radius: 100px;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  display: block;
}

.nav-dropdown a:hover {
  background: #4e75a6;
  color: #ffffff;
}