* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #111827;
  background: #f9fafb;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}
.wrap { width: 100%; max-width: 720px; text-align: center; }
.logo { align-items: center; gap: 12px; margin-bottom: 8px; }
.logo img { width: 220px; border-radius: 10px; }
h1 { margin: 0; font-size: 36px; letter-spacing: -0.5px; }
.sub { color: #6b7280; margin-bottom: 24px; }
.search {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 12px 8px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px 6px;
  background: transparent;
}
.search button {
  border: none;
  background: #2563eb;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}
.search .clear {
  border: none;
  background: transparent;
  color: #6b7280;
  padding: 6px 8px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
}
.search .clear.hidden { display: none; }
.example { color: #6b7280; font-size: 13px; margin-top: 8px; }
.near {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}
.near[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.locate {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}
.chips { margin: 16px 0 12px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.chip {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
}
.hints { color: #6b7280; font-size: 13px; }
.list {
  text-align: left;
  margin: 12px auto 0;
  max-width: 640px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  display: none;
}
.item { padding: 10px 12px; border-bottom: 1px solid #f3f4f6; cursor: pointer; }
.item:last-child { border-bottom: none; }
.item:hover { background: #f9fafb; }
.item-title { font-weight: 600; }
.item-sub { color: #6b7280; font-size: 12px; margin-top: 2px; }
footer { margin-top: 24px; font-size: 12px; color: #9ca3af; }
footer a { color: #6b7280; text-decoration: none; }
footer a:hover { text-decoration: underline; }
