.city-input-wrap {
  position: relative;
  flex: 1;
}

.city-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: white;
  border: 1.5px solid var(--primary, #4f46e5);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  z-index: 999;
  overflow: hidden;
  max-height: 280px;
  overflow-y: auto;
}

.city-item {
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.12s;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border-bottom: 1px solid #f3f4f6;
}

.city-item:last-child { border-bottom: none; }
.city-item:hover, .city-item.active { background: #eef2ff; color: #4f46e5; font-weight: 600; }
