/* Scout Price Picker mockups — shared chrome */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #101828;
  --muted: #667085;
  --muted2: #475467;
  --border: #D0D5DD;
  --border-light: #E4E7EC;
  --bg: #FFFFFF;
  --bg-subtle: #F9FAFB;
  --paper: #f5f2ec;
  --red: #C1121F;
  --gold: #C9A84C;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --gold-border: rgba(201, 168, 76, 0.4);
  --shadow-panel: 0 8px 24px rgba(16, 24, 40, 0.12);
  --shadow-pill: 0 1px 3px rgba(16, 24, 40, 0.08);
  --shadow-pill-active: 0 4px 14px rgba(16, 24, 40, 0.12), 0 0 0 2px rgba(193, 18, 31, 0.22);
  --radius: 10px;
  --font: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
}

.mock-banner {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  padding: 10px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.mock-banner strong { color: var(--gold); letter-spacing: 0.06em; }
.mock-banner a { color: #e8c97a; text-decoration: none; font-weight: 600; }
.mock-banner a:hover { text-decoration: underline; }

.concept-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.concept-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.concept-desc {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.55;
  max-width: 640px;
  margin-bottom: 20px;
}

/* Scout page shell */
.scout-shell {
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
  overflow: visible;
}

.scout-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-light);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
}
.logo-crown { font-size: 18px; }

.search-bar {
  flex: 1;
  max-width: 520px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 14px;
  font-size: 13px;
  color: var(--muted);
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  overflow: visible;
  flex-wrap: wrap;
}

.own-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.own-toggle button {
  height: 34px;
  padding: 0 14px;
  border: none;
  background: var(--bg);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  color: var(--ink);
}
.own-toggle button.on {
  background: var(--ink);
  color: #fff;
}

.pill {
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  color: var(--ink);
  box-shadow: var(--shadow-pill);
  white-space: nowrap;
  flex-shrink: 0;
}
.pill.active {
  border: 2px solid var(--red);
  font-weight: 700;
  box-shadow: var(--shadow-pill-active);
}

.pill-adv {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(193, 18, 31, 0.28);
}

.filter-wrap {
  position: relative;
  flex-shrink: 0;
}

/* Always-visible picker showcase (mockup review mode) */
.picker-showcase {
  padding: 14px 16px 20px;
  background: linear-gradient(180deg, #F2F4F7 0%, #fff 60%);
  border-bottom: 2px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  z-index: 50;
}

.picker-showcase-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  background: rgba(193, 18, 31, 0.08);
  border-radius: 100px;
  border: 1px solid rgba(193, 18, 31, 0.2);
}

.picker-showcase-label::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.picker-showcase-hint {
  font-size: 12px;
  color: var(--muted);
  margin: -4px 0 2px;
}

/* Price panel base */
.price-panel {
  position: relative;
  top: auto;
  left: auto;
  z-index: 100;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-panel), 0 0 0 2px rgba(193, 18, 31, 0.25);
  min-width: 340px;
  padding: 16px;
  display: block;
  visibility: visible;
  opacity: 1;
}

.panel-head {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}

.panel-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  margin-top: 14px;
}

.btn-reset {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted2);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.btn-reset:hover { color: var(--ink); }

.btn-done {
  height: 34px;
  padding: 0 16px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font);
  box-shadow: 0 4px 12px rgba(193, 18, 31, 0.28);
}
.btn-done:hover { filter: brightness(0.95); }

/* Min / Max inputs — shared */
.price-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.price-field {
  flex: 1;
  position: relative;
}
.price-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}
.price-field input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 12px 0 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--ink);
}
.price-field input:focus {
  outline: 2px solid rgba(193, 18, 31, 0.35);
  border-color: var(--red);
}
.price-field input::placeholder { color: #98A2B3; font-weight: 500; }
.price-field .prefix {
  position: absolute;
  left: 12px;
  bottom: 11px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  pointer-events: none;
}
.price-field.has-prefix input { padding-left: 24px; }

.price-dash {
  color: var(--muted);
  font-size: 18px;
  margin-top: 18px;
  flex-shrink: 0;
}

/* Chips */
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  color: var(--ink);
  transition: background 0.12s, border-color 0.12s;
}
.chip:hover { background: var(--bg-subtle); border-color: var(--border-strong, #98A2B3); }
.chip.on {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--ink);
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 12px 0 8px;
}

.range-hint {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
}
.range-hint.error { color: var(--red); }

/* Content below filter — dimmed context */
.page-body {
  display: flex;
  height: 280px;
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}
.list-col {
  width: 42%;
  border-right: 1px solid var(--border-light);
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: start;
}
.list-card {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
}
.list-card .photo {
  height: 90px;
  background: linear-gradient(135deg, #ddd, #bbb);
}
.list-card .info { padding: 8px; }
.list-card .price { color: var(--red); font-weight: 800; font-size: 16px; }
.list-card .addr { font-size: 11px; color: var(--muted); margin-top: 2px; }
.map-col {
  flex: 1;
  background: linear-gradient(180deg, #e8eef4 0%, #d4dce6 100%);
  position: relative;
}
.map-pin {
  position: absolute;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}

.live-summary {
  margin-top: 8px;
  padding: 8px 12px;
  background: var(--bg-subtle);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted2);
}
.live-summary strong { color: var(--ink); }
