/* Only Vans — bright "daylight dealership" theme.
   Sky-blue + white, electric-blue accents, monospace technical text, green prices,
   gold premium accents. Cheerful and wholesome to match the bright-sky hero banner. */

:root {
  --bg: #eef5ff;
  --bg-2: #ffffff;
  --panel: #ffffff;
  --panel-2: #f4f8fe;
  --border: #d5e3f5;
  --blue: #1e90ff;
  --blue-bright: #0b6fd6;
  --blue-glow: rgba(30, 144, 255, 0.30);
  --green: #12a150;
  --amber: #c9860b;
  --red: #ef4444;
  --text: #0d2440;
  --muted: #5a6b86;
  --mono: "SFMono-Regular", "Consolas", "Courier New", monospace;
  --sans: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(1200px 520px at 50% -10%, #d3ebff 0%, rgba(211, 235, 255, 0) 62%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--blue-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* Inline icon — sizes to the surrounding font, inherits its color */
.i { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; }

/* ---------- Secure connection bar ---------- */
.secure-bar {
  background: var(--panel-2);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.secure-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
}
.secure-bar .sep { color: var(--blue); }
.secure-bar .hl { color: var(--blue-bright); font-weight: 700; }
@keyframes blink { 50% { opacity: 0.35; } }

/* ---------- Header / nav ---------- */
.site-header {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.72));
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(6px);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; filter: drop-shadow(0 0 8px var(--blue-glow)); }
.brand .wordmark { font-size: 26px; line-height: 1; display: inline-flex; align-items: baseline; }
.brand .wordmark .only { font-family: "Pacifico", cursive; color: var(--blue); font-size: 0.86em; margin-right: 3px; }
.brand .wordmark .vans { font-family: "Anton", sans-serif; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; }
.nav { margin-left: auto; display: flex; gap: 6px; }
.nav a {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}
.nav a:hover { background: rgba(30, 144, 255, 0.10); text-decoration: none; }
.nav a.active { background: var(--blue); color: #04101f; }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #04101f;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.4), 0 8px 24px -8px var(--blue-glow);
  transition: transform 0.08s ease, box-shadow 0.15s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px var(--blue-bright), 0 10px 28px -6px var(--blue-glow); text-decoration: none; }
.btn.ghost { background: transparent; color: var(--blue-bright); box-shadow: inset 0 0 0 1px var(--border); }
.btn.ghost:hover { box-shadow: inset 0 0 0 1px var(--blue-bright); }
.btn-sm { padding: 8px 15px; font-size: 13px; border-radius: 8px; }

/* ---------- Hero (home) ---------- */
.hero { padding: 44px 0 24px; }
.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
.eyebrow .sep { color: var(--blue); margin: 0 8px; }
.hero-figure {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border), 0 24px 60px -34px rgba(30, 144, 255, 0.45);
  background: #ffffff;
}
.hero-figure img { width: 100%; display: block; }
.tagline {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin: 26px auto 6px;
  max-width: 760px;
}
.tagline .accent { color: var(--blue-bright); }
.subtagline { text-align: center; color: var(--muted); margin-bottom: 22px; }
.hero-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Hero search */
.search {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 640px;
  margin: 0 auto 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 14px 34px -22px var(--blue-glow);
}
.search-icon { width: 20px; height: 20px; color: var(--muted); flex: none; }
.search-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  padding: 9px 4px;
}
.search-input::placeholder { color: var(--muted); }
.search-btn { flex: none; white-space: nowrap; }

.hero-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 6px; }

/* ---------- Trust badges ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0 10px;
}
.trust .badge {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  background: var(--panel-2);
  text-align: center;
}
.trust .badge .ico { color: var(--blue-bright); margin-bottom: 6px; }
.trust .badge .ico svg { width: 30px; height: 30px; filter: drop-shadow(0 0 8px var(--blue-glow)); }
.trust .badge .t1 { font-weight: 800; letter-spacing: 0.04em; }
.trust .badge .t2 { color: var(--muted); font-size: 14px; }

/* ---------- Privacy banner ---------- */
.privacy-banner {
  border: 1px solid #f0dcae;
  border-left: 4px solid var(--amber);
  background: #fff8ec;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 28px 0;
}
.privacy-banner h3 {
  margin: 0 0 6px;
  color: var(--amber);
  font-size: 15px;
  letter-spacing: 0.04em;
}
.privacy-banner p { margin: 0; color: #6b5a34; font-size: 14px; }
.privacy-banner strong { color: var(--text); }

/* ---------- Financing billboard ---------- */
.finance-banner { margin: 34px 0; text-align: center; }
.finance-card {
  max-width: 840px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: radial-gradient(130% 160% at 50% 0%, #0e1a36 0%, #060a14 78%);
  padding: 34px 28px;
  box-shadow: 0 22px 55px -34px rgba(30, 144, 255, 0.5);
  color: #fff;
}
.finance-card .fb-kicker {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 700;
  color: #9fb4d8;
  margin: 0 0 12px;
}
.finance-card .fb-title {
  font-family: var(--sans);
  font-weight: 900;
  font-style: italic;
  font-size: 46px;
  line-height: 1.06;
  margin: 0 0 14px;
}
.finance-card .fb-title .hl {
  font-family: "Pacifico", cursive;
  font-style: normal;
  font-weight: 400;
  color: #38bdf8;
  font-size: 1.15em;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.65);
}
.finance-card .fb-sub { margin: 0; font-size: 16px; color: #c7d3e8; }
.finance-banner .btn { margin-top: 18px; }
@media (max-width: 640px) { .finance-card .fb-title { font-size: 32px; } }

/* ---------- Section titles ---------- */
.section-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 34px 0 4px;
}
.section-sub { color: var(--muted); margin: 0 0 20px; font-family: var(--mono); font-size: 13px; }
.section-title .live-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 10px;
  box-shadow: 0 0 10px var(--red);
  animation: blink 1.4s steps(1) infinite;
}

/* ---------- Category chips (decorative filter pills) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.chip {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.chip:hover { border-color: var(--blue); color: var(--blue-bright); text-decoration: none; }
.chip.active { background: var(--blue); color: #04101f; border-color: var(--blue); }

/* ---------- Filters ---------- */
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
}
.filters label { font-size: 13px; color: var(--muted); font-family: var(--mono); }
.filters select {
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
}
.filters .count { margin-left: auto; color: var(--muted); font-family: var(--mono); font-size: 13px; }

/* ---------- Browse layout (sidebar + results) ---------- */
.browse { padding-top: 24px; }
.browse-layout { display: grid; grid-template-columns: 264px 1fr; gap: 26px; align-items: start; }

.filters-panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  padding: 18px 18px 8px;
  position: sticky;
  top: 88px;
}
.filters-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.filters-head h2 { font-size: 18px; margin: 0; }
.filters-reset {
  background: none; border: none; cursor: pointer;
  color: var(--blue-bright); font-family: var(--sans); font-size: 13px; font-weight: 600;
}
.filters-reset:hover { text-decoration: underline; }
.filter-group { padding: 14px 0; border-top: 1px solid var(--border); }
.filter-group:first-of-type { border-top: none; }
.filter-group h3 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--muted); margin: 0 0 10px;
}
.check { display: flex; align-items: center; gap: 9px; font-size: 14px; padding: 4px 0; cursor: pointer; }
.check input { accent-color: var(--blue); width: 16px; height: 16px; }
.filter-group input[type="range"] { width: 100%; accent-color: var(--blue); cursor: pointer; }
.range-val { font-size: 13px; color: var(--muted); margin-top: 6px; }
.select {
  width: 100%;
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: var(--sans);
  font-size: 14px;
}

.results { min-width: 0; }
.results-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 18px; flex-wrap: wrap;
}
.results-count { margin: 0; font-weight: 600; }
.results-count #count { color: var(--blue-bright); }
.sort { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.select-sm { width: auto; padding: 6px 8px; font-size: 13px; }
.empty-sub { color: var(--muted); font-size: 14px; }
.empty p { margin: 4px 0; }
.premium-section { margin-top: 44px; }

/* ---------- Van cards / grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.1s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 20px 50px -30px var(--blue-glow);
}
.thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.thumb img { width: 100%; height: 100%; object-fit: contain; }
/* CSS placeholder shown when a real photo is missing */
.thumb .placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}
.thumb .placeholder .emoji { filter: drop-shadow(0 0 16px var(--blue-glow)); }
.thumb .placeholder .emoji svg { width: 68px; height: 46px; }
.thumb .placeholder .ph-name { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; }
.thumb .class-tag {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  padding: 5px 9px;
  border-radius: 6px;
}
.thumb .decal {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  text-align: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--amber);
  border: 1px dashed var(--amber);
  background: rgba(6, 10, 20, 0.7);
  padding: 6px;
  border-radius: 6px;
}
.card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { margin: 0; font-size: 18px; line-height: 1.3; }
.card-body h3 a { color: var(--text); }
.card-body h3 a:hover { color: var(--blue-bright); text-decoration: none; }
.vin {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--blue-bright);
  word-break: break-all;
}
.card-blurb { color: var(--muted); font-size: 14px; margin: 2px 0; }
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}
.price { font-size: 24px; font-weight: 900; color: var(--green); }
.price .note { font-size: 12px; color: var(--muted); font-weight: 600; margin-left: 4px; }

/* ---------- Van detail page ---------- */
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 28px 0 10px; align-items: start; }
.detail .media {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  background: #ffffff;
}
.detail .media img { width: 100%; height: 100%; object-fit: contain; }
.detail .media .placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: var(--muted);
}
.detail .media .placeholder .emoji { filter: drop-shadow(0 0 24px var(--blue-glow)); }
.detail .media .placeholder .emoji svg { width: 120px; height: 80px; }
.detail .media .decal {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  text-align: center; font-family: var(--mono); font-weight: 700; letter-spacing: 0.14em;
  color: var(--amber); border: 1px dashed var(--amber);
  background: rgba(6, 10, 20, 0.7); padding: 8px; border-radius: 8px;
}
.detail h1 { font-size: 30px; margin: 0 0 4px; line-height: 1.2; }
.detail .class-line {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-bright); margin-bottom: 12px;
}
.detail .vin-line { font-family: var(--mono); font-size: 13px; color: var(--blue-bright); margin-bottom: 16px; word-break: break-all; }
.van-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 4px 0 18px; }
.van-stats .stat {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel-2);
  padding: 10px 12px;
}
.van-stats .stat-val { display: block; font-size: 18px; font-weight: 800; color: var(--blue-bright); }
.van-stats .stat-label { display: block; font-size: 12px; color: var(--muted); letter-spacing: 0.02em; }
.detail .blurb { color: var(--text); margin-bottom: 18px; }
.feature-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 12px; }
.feature-list li {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--panel-2);
}
.feature-list .fl-label { font-weight: 800; color: var(--blue-bright); }
.detail .buy-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.detail .buy-row .price { font-size: 34px; }
.back-link { display: inline-block; margin: 24px 0 0; font-family: var(--mono); font-size: 13px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 28px 0 40px;
  background: var(--panel-2);
  text-align: center;
}
.site-footer p { color: var(--muted); font-size: 12.5px; margin: 0 0 10px; }
.site-footer .agreement strong { color: var(--text); }
.site-footer .copyright { font-family: var(--mono); color: var(--muted); }

/* ---------- Premium vault: locked listings ---------- */
.premium-title { display: flex; align-items: center; gap: 12px; }
.premium-title .members-only {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--amber);
  border: 1px solid var(--amber);
  border-radius: 999px;
  padding: 3px 12px;
  font-family: var(--mono);
}

.card.locked { position: relative; overflow: hidden; }
.card.locked .blurred-text {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
  transition: filter 0.4s ease;
}

/* Konami unlock: reveal the vault text + drop the overlay for a few seconds */
#premium-grid.unlocked .lock-overlay { opacity: 0; pointer-events: none; }
#premium-grid.unlocked .blurred-text { filter: none; }
#premium-grid.unlocked .unlock-btn { display: none; }
.premium-ribbon {
  position: absolute;
  top: 14px; right: -34px;
  transform: rotate(45deg);
  background: linear-gradient(90deg, var(--amber), #f59e0b);
  color: #1a1204;
  font-family: var(--mono);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 40px;
  z-index: 6;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.6);
}
.lock-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 62%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.80), rgba(255, 255, 255, 0.93));
  transition: opacity 0.4s ease;
}
.lock-overlay .lock-icon { font-size: 40px; color: var(--amber); filter: drop-shadow(0 0 14px var(--amber)); }
.lock-overlay .lock-title { font-weight: 900; font-size: 17px; letter-spacing: 0.02em; }
.lock-overlay .lock-sub { color: var(--muted); font-size: 13px; max-width: 240px; }

/* Unlock button sits centered over the blurred text area (below the image) */
.card.locked .locked-body { position: relative; }
.card.locked .unlock-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  background: var(--amber);
  color: #1a1204;
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.5), 0 8px 24px -8px rgba(251, 191, 36, 0.5);
}
.card.locked .unlock-btn:hover {
  transform: translate(-50%, -50%) translateY(-1px);
  box-shadow: 0 0 0 1px #fff2c2, 0 10px 28px -6px rgba(251, 191, 36, 0.6);
}

/* ---------- Paywall (locked detail page) ---------- */
.detail.paywall-mode { display: block; }
.paywall { text-align: center; padding: 20px 0 10px; }
.paywall .paywall-lock { font-size: 56px; color: var(--amber); filter: drop-shadow(0 0 20px var(--amber)); }
.paywall h1 { font-size: 30px; margin: 10px 0 6px; }
.paywall .paywall-sub { color: var(--muted); max-width: 640px; margin: 0 auto 28px; }
.paywall .paywall-sub strong { color: var(--blue-bright); }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 900px; margin: 0 auto 24px; }
.tier {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  padding: 22px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier.featured { border-color: var(--amber); box-shadow: 0 20px 50px -30px rgba(251, 191, 36, 0.5); }
.tier .tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: #1a1204; font-family: var(--mono); font-size: 11px;
  font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
}
.tier .tier-name { font-weight: 800; font-size: 16px; letter-spacing: 0.04em; }
.tier .tier-price { font-size: 30px; font-weight: 900; color: var(--green); }
.tier .tier-price span { font-size: 14px; color: var(--muted); font-weight: 600; }
.tier ul { list-style: none; padding: 0; margin: 4px 0 14px; text-align: left; display: grid; gap: 8px; }
.tier ul li { color: var(--muted); font-size: 14px; padding-left: 22px; position: relative; }
.tier ul li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.tier .btn { margin-top: auto; justify-content: center; }

@media (max-width: 820px) {
  .tiers { grid-template-columns: 1fr; }
}

/* ---------- Empty state ---------- */
.empty {
  border: 1px dashed var(--border);
  border-radius: 14px;
  padding: 40px;
  text-align: center;
  color: var(--muted);
  grid-column: 1 / -1;
}

/* ---------- Easter-egg toast ---------- */
.ov-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  background: #0d1730;
  color: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 22px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.55);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}
.ov-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.ov-toast strong { color: var(--blue-bright); }

@keyframes ov-honk {
  0%, 100% { transform: rotate(0) scale(1); }
  20% { transform: rotate(-9deg) scale(1.08); }
  40% { transform: rotate(7deg) scale(1.05); }
  60% { transform: rotate(-5deg) scale(1.03); }
  80% { transform: rotate(3deg) scale(1.01); }
}
.brand img.honk { animation: ov-honk 0.5s ease; }

.ov-confetti {
  position: fixed;
  font-size: 22px;
  pointer-events: none;
  z-index: 9998;
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.3, 1), opacity 1s ease;
  will-change: transform, opacity;
}
.buy-row .price { cursor: pointer; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .browse-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; }
}
@media (max-width: 820px) {
  .trust { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .detail { grid-template-columns: 1fr; }
  .nav { display: none; }
}
@media (max-width: 540px) {
  .nav-actions .ghost { display: none; }
  .search { flex-wrap: wrap; border-radius: 16px; }
  .search-btn { width: 100%; justify-content: center; }
}