.nav-other-li {
  position: relative;
}

.other-toggle {
  background: #000000;
  color: #ffffff;
  border: 2px solid #d4a017;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.other-toggle:hover {
  background: #1a1a1a;
  border-color: #f0c040;
}

.other-caret {
  font-size: 0.7rem;
  line-height: 1;
}

.other-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 220px;
  background: #000000;
  border: 2px solid #d4a017;
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  color: #ffffff;
  z-index: 60;
}
.other-menu[hidden] { display: none !important; }

.other-menu-section-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d4a017;
  font-weight: 800;
  padding: 6px 16px 4px;
}

.other-menu-item {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  text-align: left;
  padding: 8px 16px;
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}
.other-menu-item:hover {
  background: rgba(212, 160, 23, 0.18);
  color: #ffe07a;
}
.other-menu-item.selected {
  color: #ffd44a;
  font-weight: 700;
}
.other-menu-item.selected::after {
  content: ' ✓';
  color: #ffd44a;
}

.other-menu-divider {
  height: 1px;
  background: rgba(212, 160, 23, 0.35);
  margin: 6px 0;
}
