/* ── SEARCH ─────────────────────────────────────────────────── */
.search-wrap { position: relative; margin-bottom: 14px; }

.search-icon {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  opacity: .5;
  pointer-events: none;
  width: 16px; height: 16px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  padding: 10px 14px 10px 38px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .15s;
  appearance: none;
}

.search-input::placeholder { color: rgba(183,192,214,.35); }
.search-input:focus {
  outline: 2px solid rgba(125,211,252,.45);
  outline-offset: 0;
  border-color: rgba(125,211,252,.3);
}

/* ── FORM STRUCTURE ─────────────────────────────────────────── */
.form-group  { margin-bottom: 16px; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: .02em;
}

.form-hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
  opacity: .7;
}

/* ── INPUT ──────────────────────────────────────────────────── */
.form-input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color .15s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(183,192,214,.35); }
.form-input:focus {
  outline: 2px solid rgba(125,211,252,.45);
  outline-offset: 0;
  border-color: rgba(125,211,252,.3);
}

textarea.form-input { resize: vertical; min-height: 80px; }

/* ── VENUE SUGGESTIONS ──────────────────────────────────────── */
.venue-suggestions {
  background: rgba(18,22,33,.96);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-top: 4px;
  overflow: hidden;
}

.venue-suggestion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  transition: background .12s;
}
.venue-suggestion:last-child { border-bottom: none; }
.venue-suggestion:hover { background: rgba(255,255,255,.05); }
.venue-suggestion small { font-size: 11px; color: var(--muted); }

/* ── LIMIT TOGGLE ───────────────────────────────────────────── */
.limit-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.radio-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .12s, border-color .12s, color .12s;
}

.radio-btn.active {
  background: rgba(125,211,252,.10);
  border-color: rgba(125,211,252,.30);
  color: var(--accent);
}

.limit-number { width: 64px; padding: 7px 10px; text-align: center; font-size: 15px; }
