* { box-sizing: border-box; }
:root {
  --bg: #f6f7fb;
  --text: #0f1b2d;
  --muted: #6b7586;
  --primary: #0b6a75;
  --primary-700: #0a5b64;
  --surface: #ffffff;
  --border: #e6e8ee;
}

html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.app { min-height: 100dvh; display: flex; flex-direction: column; }

.content { display: flex; flex-direction: column; }
.map-wrap { position: relative; height: 70vh; min-height: 360px; background: #dfe6ef; }
#map { position: absolute; inset: 0; }

.sheet {
  margin-top: -12px;
  background: var(--surface); border-top-left-radius: 24px; border-top-right-radius: 24px;
  box-shadow: 0 -10px 30px rgba(15,27,45,0.06);
  padding: 16px 16px 24px;
}
.sheet-handle { width: 44px; height: 5px; border-radius: 999px; background: #e1e5ec; margin: 0 auto 16px; }

.inputs-block { display: grid; gap: 10px; margin-bottom: 10px; }
.input-row { display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 12px; border: 1px solid var(--border); background: #fff; }
.input-row i { color: var(--primary); }
.input-row input { flex: 1; border: 0; outline: none; font-size: 15px; color: var(--text); background: transparent; }
.mini-btn { border: 0; background: #f3f6f9; color: var(--text); width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; }

.vehicle-strip { display: flex; gap: 10px; overflow-x: auto; padding: 6px 2px 2px; margin: 8px 0 10px; }
.vehicle-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  min-width: 88px;
  height: 90px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  text-align: center;
  white-space: nowrap;
}
.vehicle-chip i { color: var(--primary); font-size: 22px; }
.vehicle-chip span { font-size: 12px; }
.vehicle-chip.is-selected { background: var(--primary); color: #fff; border-color: var(--primary); }
.vehicle-chip.is-selected i { color: #fff; }

.cta { margin-top: 8px; width: 100%; height: 52px; border-radius: 14px; border: 0; background: var(--primary); color: #fff; font-weight: 700; font-size: 16px; }
.cta:active { background: var(--primary-700); }

@media (min-width: 560px) {
  .map-wrap { height: 74vh; }
  .sheet { max-width: 520px; margin: -20px auto 0; }
}
