/* ── M2 Buyers Site — Editorial wholesale inventory ──────────────── */
:root {
  /* Brand */
  --navy: #0B2A52;
  --navy-dark: #061B38;
  --navy-deep: #030F22;
  --ink: #0E1B2D;
  --ink-soft: #2A3A52;
  --gold: #D4A843;
  --gold-light: #E8C26A;
  --gold-dark: #A87E22;
  --cream: #F6F2EA;
  --cream-soft: #FBF8F2;
  --paper: #FFFFFF;
  --line: #E5DFD2;
  --line-soft: #EFEAE0;
  --muted: #6B7280;
  --muted-soft: #9AA0A6;
  --green: #2E8B57;
  --red: #C0392B;

  --shadow-xs: 0 1px 2px rgba(6, 27, 56, 0.05);
  --shadow-sm: 0 2px 6px rgba(6, 27, 56, 0.06), 0 1px 2px rgba(6, 27, 56, 0.08);
  --shadow-md: 0 10px 30px rgba(6, 27, 56, 0.10), 0 2px 6px rgba(6, 27, 56, 0.06);
  --shadow-lg: 0 28px 64px rgba(6, 27, 56, 0.18), 0 10px 24px rgba(6, 27, 56, 0.10);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1240px;
  --header-h: 72px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset & base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--navy); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--gold-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--gold); color: var(--navy-deep); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Utilities ────────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -40px; left: 12px;
  background: var(--navy); color: #fff;
  padding: 10px 14px; border-radius: 6px;
  font-size: .9rem; font-weight: 600;
  z-index: 1000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .06s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .22s; }
.reveal[data-delay="4"] { transition-delay: .30s; }

.section-eyebrow {
  display: inline-block;
  font-size: .7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -.02em;
  line-height: 1.15;
}

/* ── Header ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(229, 223, 210, 0);
  transition: background .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(6, 27, 56, .04), var(--shadow-sm);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
}
.brand-logo { height: 52px; width: auto; border-radius: 8px; }
.brand-logo-footer { height: 64px; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink);
  font-size: .92rem; font-weight: 500;
  position: relative;
  padding: 6px 2px;
}
.nav-link::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }
.nav-icon { width: 16px; height: 16px; }
.nav-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--gold); color: var(--navy-deep);
  border-radius: 100px;
  font-size: .68rem; font-weight: 700;
  margin-left: 2px;
}
.nav-cta { padding: 10px 18px; }

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--navy-deep);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: .92rem;
  letter-spacing: .005em;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(212,168,67,.28), inset 0 1px 0 rgba(255,255,255,.4);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-primary::after { content: "→"; transition: transform .22s var(--ease); }
.btn-primary:hover {
  color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(212,168,67,.4);
}
.btn-primary:hover::after { transform: translateX(3px); }
.btn-primary[disabled],
.btn-primary[aria-disabled="true"] {
  opacity: .55; cursor: not-allowed; transform: none;
}

.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-sm);
  font-weight: 500; font-size: .92rem;
  backdrop-filter: blur(10px);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.4); color: #fff; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9rem;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 65% 80% at 0% 0%, rgba(212,168,67,.18), transparent 55%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(212,168,67,.10), transparent 55%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-dark) 100%);
  color: #fff;
  padding: 84px 0 96px;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 440px);
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 22px;
  padding: 7px 14px;
  border: 1px solid rgba(212,168,67,.32);
  border-radius: 100px;
  background: rgba(212,168,67,.08);
}
.hero-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,168,67,.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,67,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(212,168,67,0); }
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}
.hero-h1 .accent { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-lede {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 26px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 12px 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta strong { color: var(--gold); font-weight: 600; font-family: var(--font-display); font-size: 1rem; }

/* ── Featured deal card (hero right) ──────────────────────────────── */
.hero-featured { width: 100%; }
.featured-deal {
  display: block;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212,168,67,.25);
  box-shadow:
    0 30px 80px rgba(3,15,34,.55),
    0 0 0 1px rgba(212,168,67,.12);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.featured-deal:hover {
  transform: translateY(-4px);
  color: var(--ink);
  box-shadow:
    0 40px 96px rgba(3,15,34,.65),
    0 0 0 1px rgba(212,168,67,.3);
}
.featured-flag {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deep);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 9px 18px;
}
.featured-flag::before {
  content: ""; width: 6px; height: 6px;
  background: var(--navy-deep);
  border-radius: 50%;
}
.featured-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #ECE6D8, #D8D2C4);
  position: relative;
}
.featured-photo img { width: 100%; height: 100%; object-fit: cover; }
.featured-body { padding: 20px 22px 22px; }
.featured-addr {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 500;
  line-height: 1.2;
  color: var(--navy-deep);
}
.featured-loc { font-size: .88rem; color: var(--muted); margin-top: 2px; }
.featured-math {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-variant-numeric: tabular-nums;
}
.featured-math > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.featured-math .ml {
  font-size: .64rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.featured-math .mv {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  color: var(--ink);
}
.featured-spread {
  grid-column: span 2;
  padding: 10px 12px;
  background: rgba(212,168,67,.12);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}
.featured-spread .mv {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-dark);
}
.featured-spread .mv em {
  font-style: normal; font-weight: 700;
  color: var(--navy-deep);
  padding: 2px 9px;
  background: var(--gold);
  border-radius: 100px;
  font-size: .8rem;
  font-family: var(--font-body);
}
.featured-meta {
  margin-top: 14px;
  display: flex; flex-wrap: wrap; gap: 4px 12px;
  font-size: .82rem; color: var(--muted);
}
.featured-meta span { white-space: nowrap; }
.featured-cta {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .9rem;
  color: var(--navy);
}
.featured-cta::after { content: "→"; transition: transform .22s var(--ease); }
.featured-deal:hover .featured-cta::after { transform: translateX(3px); }

.featured-empty {
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: rgba(255,255,255,.85);
}
.featured-empty h3 {
  font-family: var(--font-display);
  font-weight: 500; font-size: 1.4rem;
  color: #fff; margin-bottom: 6px;
}
.featured-empty p { font-size: .95rem; color: rgba(255,255,255,.7); }

/* ── Trust strip ──────────────────────────────────────────────────── */
.trust-strip {
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 22px 0;
}
.trust-list {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-list li {
  display: flex; flex-direction: column; gap: 2px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
  min-width: 0;
}
.trust-list strong {
  font-family: var(--font-display);
  font-size: .98rem; font-weight: 600;
  color: var(--navy-deep);
}
.trust-list span { font-size: .8rem; color: var(--muted); }

/* ── Filters ──────────────────────────────────────────────────────── */
.filters {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  background: var(--cream);
  padding: 20px 0 14px;
}
.filters-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.filter-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.filter-row-sliders { gap: 18px; }

.chip-group { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; min-width: 0; }
.chip-label {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  padding: 6px 12px;
  font-size: .82rem; font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .15s var(--ease), background .15s var(--ease), color .15s var(--ease);
}
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
}
.field label .slider-val {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: .92rem; font-weight: 600;
  letter-spacing: 0; text-transform: none;
}
.field-spread label .slider-val { color: var(--gold-dark); }
.field-select { min-width: 110px; }
.field-select select {
  height: 40px; padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream-soft);
  color: var(--ink);
  font-weight: 500; font-size: .9rem;
  transition: border-color .15s var(--ease), background .15s var(--ease);
}
.field-select select:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(11,42,82,.12);
}
.field-slider { flex: 1; min-width: 200px; }

input[type="range"] {
  width: 100%; height: 6px;
  -webkit-appearance: none; appearance: none;
  background: var(--line);
  border-radius: 100px;
  cursor: pointer;
  margin: 12px 0 6px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
}
.field-spread input[type="range"]::-webkit-slider-thumb { background: var(--gold-dark); }
.field-spread input[type="range"]::-moz-range-thumb { background: var(--gold-dark); }

.btn-clear {
  height: 40px; padding: 0 16px;
  font-size: .82rem; font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color .15s var(--ease), border-color .15s var(--ease);
}
.btn-clear:hover { color: var(--navy); border-color: var(--navy); }

.filter-summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  padding-top: 4px;
  border-top: 1px solid var(--line-soft);
  margin-top: 2px;
}
.result-count {
  color: var(--muted); font-size: .88rem;
  padding: 6px 14px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 100px;
}
.result-count strong { color: var(--ink); font-weight: 700; }
.view-toggle {
  display: inline-flex;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 3px;
  gap: 0;
}
.view-btn {
  padding: 6px 16px;
  font-size: .82rem; font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.view-btn.is-active { background: var(--navy); color: #fff; }

/* ── Section + grid ───────────────────────────────────────────────── */
.section { padding: 36px 0 64px; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ── Card ─────────────────────────────────────────────────────────── */
.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.card:hover, .card:focus-visible {
  border-color: rgba(212,168,67,.45);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  outline: none;
}
.card.is-inactive { opacity: .76; }
.card.is-inactive .spread-bar { filter: grayscale(.6) opacity(.85); }

.card-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #ECE6D8, #D8D2C4);
  overflow: hidden;
}
.card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease);
}
.card:hover .card-photo img { transform: scale(1.04); }
.photo-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: .82rem; font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
}
.card-photo-top {
  position: absolute;
  top: 12px; left: 12px; right: 56px;
  display: flex; gap: 8px; flex-wrap: wrap;
  z-index: 2;
  pointer-events: none;
}
.card-photo-top .badge,
.card-photo-top .badge-type { pointer-events: auto; }

/* Save star (also used in detail header) */
.save-star {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(11,42,82,.08);
  box-shadow: var(--shadow-xs);
  z-index: 4;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.save-star svg {
  width: 18px; height: 18px;
  fill: none; stroke: var(--ink);
  stroke-width: 1.6; stroke-linejoin: round;
}
.save-star:hover { transform: scale(1.06); }
.save-star.is-saved {
  background: var(--gold);
  border-color: var(--gold-dark);
}
.save-star.is-saved svg {
  fill: var(--navy-deep); stroke: var(--navy-deep);
}

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  font-size: .66rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 100px;
  color: #fff; background: var(--green);
  white-space: nowrap;
}
.badge::before {
  content: ""; width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255,255,255,.3);
}
.badge.fresh { background: var(--gold); color: var(--navy-deep); }
.badge.fresh::before { background: var(--navy-deep); box-shadow: 0 0 0 2px rgba(11,27,56,.18); }
.badge.coming { background: var(--ink-soft); }
.badge.pending { background: var(--navy); }
.badge.sold { background: var(--muted); }
.badge.avail { background: var(--green); }
.badge-type {
  display: inline-flex; align-items: center;
  padding: 5px 10px;
  font-size: .64rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 100px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}

/* Card body */
.card-body {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column;
  gap: 10px;
  flex: 1;
}
.card-title-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px;
}
.card-title { min-width: 0; flex: 1; }
.card-address {
  font-family: var(--font-display);
  font-size: 1.06rem; font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.card-city {
  font-size: .82rem; color: var(--muted);
  margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.card-price {
  font-family: var(--font-display);
  font-size: 1.18rem; font-weight: 600;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Spread bar */
.spread-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 11px;
  background: rgba(212,168,67,.10);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  font-size: .82rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  flex-wrap: wrap;
}
.spread-bar em {
  font-style: normal; font-weight: 600;
  color: var(--muted);
  margin-right: 5px;
  font-size: .64rem;
  letter-spacing: .08em; text-transform: uppercase;
}
.spread-bar .sb-divider { color: var(--muted-soft); }
.spread-bar .sb-pct {
  margin-left: auto;
  padding: 3px 9px;
  font-weight: 700;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 100px;
  font-size: .76rem;
}
.spread-bar.tier-mid .sb-pct { background: var(--gold-light); }
.spread-bar.tier-low {
  background: rgba(11,42,82,.04);
  border-left-color: var(--muted);
}
.spread-bar.tier-low .sb-pct { background: var(--ink-soft); color: #fff; }
.spread-bar.tier-neg {
  background: rgba(192,57,43,.08);
  border-left-color: var(--red);
}
.spread-bar.tier-neg .sb-pct { background: var(--red); color: #fff; }
.spread-bar.muted {
  background: var(--cream-soft);
  border-left-color: var(--line);
  color: var(--muted);
  justify-content: center;
  font-style: italic;
}

/* Card meta */
.card-meta {
  display: flex; flex-wrap: wrap;
  gap: 6px 12px;
  font-size: .8rem;
  color: var(--muted);
}
.card-meta span { white-space: nowrap; }
.card-meta span + span::before {
  content: "·";
  margin-right: 10px;
  color: var(--muted-soft);
}

/* ── Empty state ──────────────────────────────────────────────────── */
.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 20px;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  color: var(--muted);
}
.empty h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.empty p { margin-bottom: 18px; max-width: 460px; margin-inline: auto; }

/* ── Map view ─────────────────────────────────────────────────────── */
.map-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}
.map {
  height: 560px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--cream-soft);
}
.map-aside { display: flex; flex-direction: column; gap: 14px; }
.map-aside-head {
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted);
  padding: 12px 14px;
  background: var(--cream-soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
}
.map-aside .card { box-shadow: none; }
.leaflet-popup-content a { color: var(--navy); font-weight: 500; }

/* ── CTA band + join form ─────────────────────────────────────────── */
.cta-band {
  margin: 64px 0 88px;
  padding: 0 28px;
}
.cta-band-inner {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(212,168,67,.18), transparent 55%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-band-inner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: linear-gradient(to right, transparent 0%, #000 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 50%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
.cta-band-copy .section-eyebrow { color: var(--gold); margin-bottom: 12px; }
.cta-band-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 10px;
}
.cta-band-inner h2 .accent { color: var(--gold); font-style: italic; font-weight: 400; }
.cta-band-inner p {
  color: rgba(255,255,255,.74);
  max-width: 480px;
  font-size: .98rem;
}
.join-form {
  display: flex; gap: 8px;
  position: relative;
  flex-wrap: wrap;
}
.join-form input[type="email"] {
  flex: 1; min-width: 200px;
  height: 52px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: .98rem;
  transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.join-form input[type="email"]::placeholder { color: rgba(255,255,255,.55); }
.join-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 3px rgba(212,168,67,.18);
}
.join-form .btn-primary { height: 52px; padding: 0 24px; }
.join-status {
  flex-basis: 100%;
  margin-top: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.78);
}
.join-status.ok { color: var(--gold-light); }
.join-status.err { color: #FFB3A8; }

/* ── Detail page ──────────────────────────────────────────────────── */
.detail-top {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 0 4px;
  flex-wrap: wrap;
}
.detail-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted);
  font-size: .9rem; font-weight: 500;
  padding: 6px 0;
  margin-right: auto;
}
.detail-back:hover { color: var(--navy); }
.detail-action {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  font-size: .82rem; font-weight: 600;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .18s var(--ease), color .18s var(--ease);
  cursor: pointer;
}
.detail-action:hover { border-color: var(--navy); color: var(--navy); }
.detail-action svg { width: 16px; height: 16px; }
.detail-save { position: static; width: auto; height: auto; padding: 8px 14px; border-radius: var(--radius-sm); }
.detail-save.is-saved { background: var(--gold); border-color: var(--gold-dark); color: var(--navy-deep); }
.detail-save.is-saved svg { fill: var(--navy-deep); stroke: var(--navy-deep); }

.detail-hero { padding: 18px 0 36px; }
.detail-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.detail-meta .badge { position: static; }
.detail-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -.022em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.detail-loc {
  font-size: 1rem; color: var(--muted);
  margin-bottom: 26px;
}

/* DEAL MATH STRIP — the decisive section */
.deal-math {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.dm-cell {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 20px;
  background: var(--paper);
}
.dm-label {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.dm-value {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.dm-spread {
  background: rgba(212,168,67,.12);
  border-left: 3px solid var(--gold);
}
.dm-spread .dm-value { color: var(--gold-dark); display: inline-flex; align-items: baseline; gap: 8px; }
.dm-spread .dm-value em {
  font-style: normal; font-weight: 700;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--navy-deep);
  background: var(--gold);
  padding: 2px 9px;
  border-radius: 100px;
}
.dm-spread.tier-mid .dm-value em { background: var(--gold-light); }
.dm-spread.tier-low { background: rgba(11,42,82,.04); border-left-color: var(--muted); }
.dm-spread.tier-low .dm-value { color: var(--ink-soft); }
.dm-spread.tier-low .dm-value em { background: var(--ink-soft); color: #fff; }
.dm-spread.tier-neg { background: rgba(192,57,43,.08); border-left-color: var(--red); }
.dm-spread.tier-neg .dm-value { color: var(--red); }
.dm-spread.tier-neg .dm-value em { background: var(--red); color: #fff; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery-item {
  cursor: pointer;
  background: linear-gradient(135deg, #ECE6D8, #D8D2C4);
  overflow: hidden;
  position: relative;
  border: none;
  padding: 0;
  display: block;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.is-hero { grid-row: span 2; }
.gallery-more {
  position: absolute; inset: 0;
  background: rgba(6,27,56,.65);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  pointer-events: none;
  backdrop-filter: blur(2px);
}

/* Detail body grid */
.detail-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  padding: 44px 0 96px;
}
.detail-block { margin-bottom: 36px; }
.detail-block:last-child { margin-bottom: 0; }
.detail-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 16px;
}
.detail-block p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  white-space: pre-line;
}

/* Specs grid */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.spec {
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.spec:hover { border-color: var(--gold); transform: translateY(-2px); }
.spec-label {
  font-size: .66rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.spec-value {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 500;
  color: var(--ink);
}
.spec-value-sm { font-size: .96rem; font-family: var(--font-body); font-weight: 500; }

/* Highlights */
.highlights {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.highlights li {
  padding: 12px 14px 12px 40px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: .92rem;
  color: var(--ink);
  position: relative;
}
.highlights li::before {
  content: "✓";
  position: absolute;
  left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--gold-dark);
  font-weight: 700;
}

/* Inquire card (sidebar) */
.inquire-card {
  background: linear-gradient(180deg, var(--paper), var(--cream-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  box-shadow: var(--shadow-sm);
}
.inquire-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.inquire-card > p {
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.form-field { margin-bottom: 12px; }
.form-field label {
  display: block;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-field label .opt { color: var(--muted-soft); font-weight: 500; text-transform: none; letter-spacing: 0; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  font-size: .95rem;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,42,82,.1);
}
.form-field textarea { min-height: 84px; resize: vertical; }
.inquire-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.inquire-status {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: .86rem;
}
.inquire-status.ok {
  background: rgba(46,139,87,.1);
  color: var(--green);
  border: 1px solid rgba(46,139,87,.3);
}
.inquire-status.err {
  background: rgba(192,57,43,.08);
  color: var(--red);
  border: 1px solid rgba(192,57,43,.25);
}

/* Mobile sticky inquire CTA */
.sticky-cta {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 40;
  display: none;
  justify-content: center; align-items: center;
  height: 52px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--navy-deep);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: .98rem;
  box-shadow: 0 12px 32px rgba(3,15,34,.28), 0 4px 12px rgba(212,168,67,.4);
  cursor: pointer;
}

/* Saved view */
.saved-wrap, .saved-empty { padding: 36px 0 72px; }
.saved-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
}

/* Detail not found / generic empty within views */
#view-detail .empty,
#view-saved .empty { margin-top: 24px; }

/* ── Lightbox ─────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(3,15,34,.96);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox.is-open { display: flex; animation: fadeIn .25s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 100%; max-height: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  font-size: 1.4rem;
  backdrop-filter: blur(10px);
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover {
  background: rgba(255,255,255,.18);
  transform: scale(1.05);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-nav.next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-counter {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.75);
  font-size: .84rem;
  padding: 7px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px;
}

/* ── Footer ───────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.65);
  padding: 56px 0 32px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer-brand .brand { color: #fff; }
.footer-brand p {
  margin-top: 16px;
  font-size: .92rem;
  max-width: 380px;
  line-height: 1.6;
}
.footer-col h4 {
  color: #fff;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  padding: 4px 0;
  transition: color .15s var(--ease), padding-left .2s var(--ease);
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Print sheet (?print=1) ───────────────────────────────────────── */
body.is-print {
  background: #fff;
}
body.is-print .site-header,
body.is-print .site-footer,
body.is-print .detail-top,
body.is-print .sticky-cta,
body.is-print .inquire-card,
body.is-print .gallery .gallery-item:not(.is-hero) {
  display: none !important;
}
body.is-print .detail-body { grid-template-columns: 1fr; gap: 24px; padding: 16px 0 24px; }
body.is-print .gallery {
  grid-template-columns: 1fr;
  grid-template-rows: 360px;
}
body.is-print .gallery-item.is-hero { grid-row: 1; }
body.is-print .deal-math { box-shadow: none; }
body.is-print .detail-hero { padding: 0 0 18px; }
body.is-print .detail-h1 { font-size: 1.8rem; }

@media print {
  .site-header, .site-footer, .detail-top, .sticky-cta, .inquire-card,
  .lightbox, .filters, .cta-band, .trust-strip { display: none !important; }
  body { background: #fff; color: #000; }
  .detail-body { grid-template-columns: 1fr; gap: 16px; padding: 0; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 300px; }
  .gallery-item:nth-child(n+3) { display: none; }
  .deal-math { box-shadow: none; page-break-inside: avoid; }
  .detail-block { page-break-inside: avoid; }
  a { color: #000; text-decoration: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-featured { max-width: 480px; }
  .detail-body { grid-template-columns: 1fr; gap: 32px; }
  .inquire-card { position: static; }
  .map-wrap { grid-template-columns: 1fr; }
  .map { height: 460px; }
}
@media (max-width: 960px) {
  .trust-list { grid-template-columns: repeat(2, 1fr); gap: 18px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-band-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 32px;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 160px;
  }
  .gallery-item.is-hero { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 720px) {
  .container { padding: 0 18px; }
  :root { --header-h: 64px; }
  .brand-logo { height: 44px; }
  .nav { gap: 14px; }
  .nav-link span:not(.nav-badge) { display: none; }
  .nav-cta { padding: 9px 14px; font-size: .86rem; }
  .nav-cta::after { display: none; }

  .hero { padding: 56px 0 72px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost-light { flex: 1; justify-content: center; }

  .filters { padding: 14px 0 8px; }
  .filters-card { padding: 14px; gap: 12px; }
  .filter-row-chips .chip-group { width: 100%; }
  .filter-row-sliders { flex-direction: column; align-items: stretch; gap: 14px; }
  .filter-row-sliders .field { width: 100%; }
  .filter-row-sliders .btn-clear { width: 100%; }

  .grid { grid-template-columns: 1fr; gap: 16px; }
  .card-photo { aspect-ratio: 16 / 9; }
  .card-body { padding: 14px 16px 16px; gap: 8px; }
  .card-address { font-size: 1rem; }
  .card-price { font-size: 1.05rem; }
  .spread-bar { font-size: .78rem; padding: 7px 9px; }
  .card-meta { font-size: .76rem; }

  .deal-math { grid-template-columns: 1fr 1fr; }
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 160px;
  }
  .gallery-item.is-hero { grid-row: 1; grid-column: 1; }
  .gallery-item:nth-child(n+4) { display: none; }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) { grid-column: 1; }

  .trust-list { grid-template-columns: 1fr 1fr; gap: 14px; }
  .trust-list strong { font-size: .9rem; }
  .trust-list span { font-size: .74rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }

  .cta-band { margin: 48px 0 64px; padding: 0 18px; }
  .cta-band-inner { padding: 32px 24px; }

  .lightbox { padding: 12px; }
  .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }

  body.is-detail .sticky-cta { display: flex; }
  body.is-detail #current-inventory ~ .cta-band { display: none; }
  body.is-detail .detail-body { padding-bottom: 96px; }
}
