/* VENTRA Marketplace — Dark Luxury · TAVUS INC · Январь 2025 */
:root {
  --bg: #060606;
  --bg-elevated: #0e0e0e;
  --card: #141414;
  --card-hover: #1a1a1a;
  --line: rgba(255, 255, 255, 0.08);
  --text: #ece8e0;
  --muted: #8a8680;
  --gold: #e8c547;
  --gold-dark: #c9a020;
  --gold-glow: rgba(232, 197, 71, 0.18);
  --header-bg: rgba(6, 6, 6, 0.92);
  --chrome-bg: rgba(14, 14, 14, 0.9);
  --chrome-border: rgba(255, 255, 255, 0.12);
  --hero-lead: rgba(236, 232, 224, 0.78);
  --hero-overlay: linear-gradient(180deg, rgba(6,6,6,0.45), rgba(6,6,6,0.9));
  --pill-bg: rgba(20, 20, 20, 0.85);
  --radius: 14px;
  --radius-lg: 20px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", "Inter", system-ui, sans-serif;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

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

/* ── Announce ── */
.nv-announce {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 8px 16px;
}

/* ── Header ── */
.nv-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}
html[data-nova-theme="dark"] .nv-header {
  backdrop-filter: blur(12px);
}
.nv-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.nv-logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.nv-search {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 8px 6px 16px;
}
.nv-search input {
  flex: 1;
  background: none;
  border: none;
  color: var(--text);
  outline: none;
  font-size: 0.88rem;
}
.nv-search input::placeholder { color: var(--muted); }
.nv-search select {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  padding: 6px 10px;
  font-size: 0.8rem;
}
.nv-search__btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--card-hover);
  color: var(--text);
  cursor: pointer;
}
.nv-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.nv-nav__link {
  font-size: 0.84rem;
  color: var(--muted);
  transition: color 0.2s;
}
.nv-nav__link:hover { color: var(--text); }
.nv-lang { display: flex; gap: 4px; }
.nv-lang button {
  background: none;
  border: 1px solid transparent;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
}
.nv-lang button.is-active {
  background: var(--card);
  border-color: var(--line);
  color: var(--text);
}

/* Buttons — gold ONLY for Post Ad */
.nv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.15s, border-color 0.2s, background 0.2s;
}
.nv-btn:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-1px); }
.nv-btn--outline { background: transparent; }
.nv-btn--lg { padding: 13px 26px; font-size: 0.92rem; }
.nv-btn--post:hover { box-shadow: 0 6px 28px var(--glow); border-color: transparent; }

/* ── Category nav ── */
.nv-catnav {
  border-bottom: 1px solid var(--line);
  background: var(--bg-elevated);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.nv-catnav__inner {
  display: flex;
  gap: 4px;
  padding: 10px 0;
}
.nv-catnav a {
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
}
.nv-catnav a:hover, .nv-catnav a.is-active {
  background: var(--card);
  color: var(--text);
}

/* ── Hero ── */
.nv-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  margin: 24px 0;
  display: flex;
  align-items: center;
}
.nv-hero__photo, .nv-hero__bg {
  position: absolute;
  inset: 0;
}
.nv-hero__photo img, .nv-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: none;
  filter: none;
}
.nv-hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  pointer-events: none;
}
.nv-hero:hover .nv-hero__photo img { transform: none; }
.nv-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay, linear-gradient(135deg, rgba(6,6,6,0.82), rgba(6,6,6,0.75)));
}
.nv-hero__glow {
  position: absolute;
  width: 50%;
  height: 80%;
  right: -10%;
  top: 10%;
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}
.nv-hero__content {
  position: relative;
  z-index: 2;
  padding: 48px 40px;
  max-width: 620px;
}
.nv-hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.nv-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 14px;
}
.nv-hero h1 em { font-style: italic; color: var(--gold); }
.nv-hero p { color: rgba(236,232,224,0.82); margin: 0 0 24px; max-width: 480px; }
.nv-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.nv-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--muted);
}
.nv-trust span { color: var(--gold); margin-right: 4px; }

/* ── Stats ── */
.nv-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 32px;
}
.nv-stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.nv-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
}
.nv-stat span { color: var(--muted); font-size: 0.75rem; display: block; margin-top: 4px; }

/* ── Page layout aliases ── */
.nv-page__grid, .nv-page-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}
.nv-side, .nv-sidebar { display: flex; flex-direction: column; gap: 16px; }
.nv-cards, .nv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.nv-section__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.nv-link-arrow { font-size: 0.84rem; color: var(--muted); }
.nv-link-arrow:hover { color: var(--gold); }
.nv-how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0;
}
.nv-how__step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  color: inherit;
}
.nv-how__step:hover { border-color: rgba(255,255,255,0.14); }
.nv-how__icon { font-size: 1.3rem; margin-bottom: 10px; }
.nv-how__step strong { display: block; margin-bottom: 6px; }
.nv-how__step p { margin: 0; font-size: 0.82rem; color: var(--muted); }
.nv-promo-strip {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin: 24px 0;
}
.nv-promo-strip h3 { font-family: var(--font-display); margin: 0 0 8px; }
.nv-promo-strip p { color: var(--muted); margin: 0 0 18px; }
.nv-review { display: flex; gap: 12px; margin-bottom: 16px; }
.nv-review__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; flex-shrink: 0;
}
.nv-stars { color: var(--gold); margin: 0 0 6px; font-size: 0.8rem; }
.nv-review__name { font-size: 0.75rem; color: var(--muted); }
.nv-widget__crown { font-size: 1.4rem; margin-bottom: 8px; }
.nv-btn--block { width: 100%; }
.nv-btn--shine { position: relative; overflow: hidden; }
.nv-cart-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.84rem; color: var(--muted); position: relative;
}
.nv-cart-badge {
  position: absolute; top: -6px; right: -8px;
  background: var(--gold); color: #1a1200;
  font-size: 0.62rem; font-weight: 700;
  min-width: 16px; height: 16px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}
.nv-cart-badge[hidden] {
  display: none !important;
}
.nv-nav__btn { background: none; border: none; cursor: pointer; font: inherit; }
.nv-footer__grid a { display: block; margin-bottom: 8px; font-size: 0.84rem; color: var(--muted); }
.nv-footer__grid a:hover { color: var(--text); }
.nv-footer__bottom { text-align: center; font-size: 0.72rem; color: var(--muted); padding-top: 20px; border-top: 1px solid var(--line); }
.nv-empty { color: var(--muted); padding: 24px 0; }
.nv-cart-row {
  display: flex; gap: 16px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.nv-cart-row img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; }
.nv-detail__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.nv-type-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0; }
.nv-type-tabs a {
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--line); font-size: 0.82rem; color: var(--muted);
}
.nv-type-tabs a.is-active { background: rgba(232,197,71,0.12); border-color: rgba(232,197,71,0.35); color: var(--gold); }
.nv-page-banner { padding: 28px 0 8px; }
.nv-page-banner h1 { font-family: var(--font-display); margin: 0 0 8px; }
.nv-page-banner p { color: var(--muted); margin: 0; }
[data-reveal] { opacity: 1; transform: none; }

/* ── Section ── */
.nv-section { margin-bottom: 40px; }
.nv-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}
.nv-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
}
.nv-section__link { font-size: 0.84rem; color: var(--muted); }
.nv-section__link:hover { color: var(--gold); }

/* ── Grid layout ── */
.nv-page-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}
.nv-sidebar { display: flex; flex-direction: column; gap: 16px; }

/* ── Cards ── */
.nv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.nv-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.nv-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
}
.nv-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
}
.nv-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: translateZ(0);
}
.nv-card__badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  color: #fff;
}
.nv-card__badge--featured { border: 1px solid var(--gold); color: var(--gold); }
.nv-card__body { padding: 14px 16px 16px; }
.nv-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.nv-card__title {
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.35;
}
.nv-card__meta { font-size: 0.78rem; color: var(--muted); }

/* ── Four Lanes (NOVA ≠ classifieds grid) ── */
.nv-lanes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 900px) {
  .nv-lanes { grid-template-columns: repeat(4, 1fr); }
}
.nv-lane {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px 22px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.nv-lane::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lane-accent, var(--gold));
  opacity: 0.9;
}
.nv-lane::after {
  content: "";
  position: absolute;
  width: 140px; height: 140px;
  top: -50px; right: -40px;
  background: radial-gradient(circle, var(--lane-glow, var(--gold-glow)) 0%, transparent 70%);
  pointer-events: none;
}
.nv-lane:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
}
.nv-lane__icon {
  font-size: 1.5rem;
  color: var(--lane-accent, var(--gold));
  margin-bottom: 14px;
  display: block;
}
.nv-lane__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 8px;
  line-height: 1.15;
}
.nv-lane__desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.45;
  min-height: 2.9em;
}
.nv-lane__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--muted);
}
.nv-lane__meta strong { color: var(--text); font-size: 0.82rem; }
.nv-lanes-intro {
  color: var(--muted);
  font-size: 0.9rem;
  margin: -8px 0 18px;
  max-width: 52ch;
}

/* Legacy small tiles (browse fallback) */
.nv-cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}
.nv-cat-tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  transition: border-color 0.2s, transform 0.15s;
}
.nv-cat-tile:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }
.nv-cat-tile__icon { font-size: 1.6rem; margin-bottom: 8px; }
.nv-cat-tile strong { display: block; font-size: 0.84rem; margin-bottom: 4px; }
.nv-cat-tile small { color: var(--muted); font-size: 0.72rem; }

/* ── Sidebar widgets ── */
.nv-widget {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.nv-widget h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 14px;
}
.nv-widget--premium {
  background: linear-gradient(145deg, rgba(80,60,120,0.35), var(--card));
  border-color: rgba(140,100,200,0.25);
}
.nv-recent { display: flex; flex-direction: column; gap: 12px; }
.nv-recent a {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nv-recent img {
  width: 52px; height: 52px;
  border-radius: 8px;
  object-fit: cover;
}
.nv-recent strong { display: block; font-size: 0.82rem; }
.nv-recent small { color: var(--muted); font-size: 0.72rem; }

/* ── Features row ── */
.nv-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.nv-feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.nv-feature::before {
  content: "";
  position: absolute;
  width: 120px; height: 120px;
  top: -40px; right: -40px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  pointer-events: none;
}
.nv-feature__icon { font-size: 1.4rem; margin-bottom: 10px; }
.nv-feature h3 { font-size: 0.95rem; margin: 0 0 8px; }
.nv-feature p { margin: 0; font-size: 0.82rem; color: var(--muted); }

/* ── Testimonials ── */
.nv-testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nv-quote {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
}
.nv-quote::before {
  content: "";
  position: absolute;
  bottom: -20px; left: 24px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  pointer-events: none;
}
.nv-quote__stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 8px; }
.nv-quote p { font-size: 0.88rem; margin: 0 0 12px; font-style: italic; }
.nv-quote cite { font-size: 0.78rem; color: var(--muted); font-style: normal; }

/* ── Footer ── */
.nv-footer {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding: 40px 0 24px;
  background: var(--bg-elevated);
}
.nv-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.nv-footer__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.nv-footer p { color: var(--muted); font-size: 0.84rem; margin: 0; }
.nv-footer h4 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.nv-footer ul { list-style: none; padding: 0; margin: 0; }
.nv-footer li { margin-bottom: 8px; }
.nv-footer a { font-size: 0.84rem; color: var(--muted); }
.nv-footer a:hover { color: var(--text); }
.nv-footer__copy {
  text-align: center;
  font-size: 0.72rem;
  color: #555;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* ── Forms ── */
.nv-form { display: flex; flex-direction: column; gap: 16px; max-width: 480px; }
.nv-field label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.nv-field input, .nv-field select, .nv-field textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  padding: 12px 14px;
  outline: none;
}
.nv-field input:focus, .nv-field textarea:focus {
  border-color: rgba(255,255,255,0.2);
}
.nv-page-title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 28px 0 8px;
}
.nv-page-lead { color: var(--muted); margin: 0 0 24px; }

/* ── Auth / account pages ── */
.nv-auth-box {
  max-width: 400px;
  margin: 40px auto 56px;
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.nv-auth-box h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 8px;
}
.nv-auth-box > p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 22px;
  line-height: 1.5;
}
.nv-auth-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nv-page-head {
  padding: 28px 0 8px;
}
.nv-page-head h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 8px;
}
.nv-page-head p {
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.5;
}

/* ── Messages ── */
.nv-messages-empty {
  text-align: center;
  padding: 48px 24px;
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  max-width: 480px;
  margin: 0 auto 40px;
}
.nv-messages-empty__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  opacity: 0.85;
}
.nv-messages-empty h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 8px;
}
.nv-messages-empty p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 20px;
  line-height: 1.5;
}
.nv-messages-chat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 40px;
}
.nv-messages-chat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.nv-messages-chat__head strong { font-size: 0.95rem; }
.nv-messages-chat__list {
  min-height: 120px;
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.nv-msg-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.45;
  background: var(--bg-elevated);
}
.nv-msg-bubble--mine {
  align-self: flex-end;
  background: var(--btn-post-bg);
  color: var(--btn-post-text);
}
.nv-messages-compose {
  display: flex;
  gap: 10px;
}
.nv-messages-compose input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text);
}
.nv-page-banner__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ── Listing detail ── */
.nv-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  margin: 24px 0;
}
.nv-detail__gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
}
.nv-detail__gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.nv-detail__price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin: 0 0 8px;
}
.nv-detail__panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.nv-detail__meta { color: var(--muted); font-size: 0.88rem; margin-bottom: 20px; }
.nv-detail__desc { font-size: 0.92rem; line-height: 1.65; color: rgba(236,232,224,0.88); }

/* ── Filters ── */
.nv-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  align-items: center;
}
.nv-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  font-size: 0.82rem;
  cursor: pointer;
}
.nv-pill.is-active {
  background: rgba(232,197,71,0.12);
  border-color: rgba(232,197,71,0.35);
  color: var(--gold);
}
