
:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --surface-strong: #e2e8f0;
  --text: #111827;
  --muted: #475569;
  --line: #e5e7eb;
  --line-strong: #cbd5e1;
  --primary: #c2410c;
  --primary-dark: #9a3412;
  --trust-blue: #2563eb;
  --success: #15803d;
  --success-dark: #166534;
  --favorite: #e11d48;
  --danger: #dc2626;
  --dark: #0f172a;
  --success-bg: #dcfce7;
  --success-text: #166534;
  --warning-bg: #fef3c7;
  --warning-text: #92400e;
  --danger-bg: #fee2e2;
  --danger-text: #991b1b;
  --info-bg: #dbeafe;
  --info-text: #1e40af;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
  --shadow-hover: 0 18px 42px rgba(15, 23, 42, 0.12);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}
* { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea {
  font: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.82rem 0.95rem;
  background: #fff;
  color: var(--text);
}
input, select, textarea { width: 100%; min-height: 48px; }
button { cursor: pointer; }
textarea { resize: vertical; min-height: 120px; }
input[type="radio"], input[type="checkbox"] { width: 18px; min-height: 18px; height: 18px; padding: 0; accent-color: var(--primary); }
small { color: var(--muted); }
:focus-visible { outline: 3px solid rgba(37, 99, 235, 0.65); outline-offset: 3px; }
.container { width: min(1200px, calc(100% - 2rem)); margin: 0 auto; }
.section-space { padding: 1rem 0 2.25rem; }
.narrow { width: min(700px, calc(100% - 2rem)); }
.full-width { width: 100%; }
.form-grid .full-width { grid-column: 1 / -1; }
.muted { color: var(--muted); }
.text-link { color: var(--trust-blue); font-weight: 700; }

.header-ribbon { background: var(--dark); color: #e2e8f0; font-size: 0.9rem; }
.ribbon-inner { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; }
.site-header { background: rgba(255,255,255,0.96); border-bottom: 1px solid var(--line); z-index: 30; backdrop-filter: blur(12px); }
.nav-shell { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.8rem; }
.brand-mark { width: 44px; height: 44px; border-radius: 12px; background: var(--dark); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; }
.brand-text strong { display: block; font-size: 1.16rem; line-height: 1.1; }
.brand-text small { color: var(--muted); }
.nav-links, .card-actions, .section-head, .ribbon-inner, .hero-actions { display: flex; align-items: center; gap: 1rem; }
.nav-links { flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { font-weight: 700; color: var(--text); }
.nav-btn { width: auto; }
.language-switcher { display: inline-flex; align-items: center; gap: .2rem; padding: .2rem; border: 1px solid var(--line); border-radius: 10px; background: #f7f9fa; }
.language-switcher a { min-width: 34px; padding: .35rem .45rem; border-radius: 7px; color: var(--muted); font-size: .75rem; font-weight: 800; line-height: 1; text-align: center; }
.language-switcher a:hover, .language-switcher a.active { color: #fff; background: var(--primary); }
.mobile-language-switcher { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 750;
  font-size: 1rem;
  padding: 0.86rem 1rem;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { min-height: 52px; background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--line-strong); }
.btn-secondary:hover { background: var(--surface-soft); }
.btn-ghost { background: #fff1f2; color: var(--favorite); border-color: #fecdd3; }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn-icon-only { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--radius-lg); cursor: pointer; transition: all 0.18s ease; }
.btn-icon-only .btn-icon { width: 20px; height: 20px; }
.btn-reject { border: 1px solid #fecaca; background: #fef2f2; color: #991b1b; cursor: pointer; }
.btn-reject:hover { background: #fecaca; color: #7f1d1d; }
.btn-archive { border: 1px solid var(--line-strong); background: #fff; color: var(--text); }
.btn-archive:hover { background: var(--surface-soft); }
.btn-glass { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--radius-lg); cursor: pointer; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid; transition: all 0.18s ease; }
.btn-glass .btn-icon { width: 20px; height: 20px; }
.btn-glass-accept { background: rgba(220, 252, 231, 0.7); border-color: rgba(134, 239, 172, 0.6); color: #166534; box-shadow: 0 2px 12px rgba(34, 197, 94, 0.12); }
.btn-glass-accept:hover { background: rgba(187, 247, 208, 0.85); border-color: rgba(74, 222, 128, 0.7); color: #14532d; box-shadow: 0 4px 18px rgba(34, 197, 94, 0.2); }
.btn-glass-reject { background: rgba(254, 242, 242, 0.7); border-color: rgba(252, 165, 165, 0.6); color: #991b1b; box-shadow: 0 2px 12px rgba(239, 68, 68, 0.1); }
.btn-glass-reject:hover { background: rgba(254, 202, 202, 0.85); border-color: rgba(248, 113, 113, 0.7); color: #7f1d1d; box-shadow: 0 4px 18px rgba(239, 68, 68, 0.18); }
.btn-glass-archive { background: rgba(248, 250, 252, 0.7); border-color: rgba(203, 213, 225, 0.6); color: #334155; box-shadow: 0 2px 12px rgba(148, 163, 184, 0.1); }
.btn-glass-archive:hover { background: rgba(226, 232, 240, 0.85); border-color: rgba(148, 163, 184, 0.7); color: #0f172a; box-shadow: 0 4px 18px rgba(148, 163, 184, 0.16); }
.icon-action-group { display: inline-flex; gap: 0.5rem; }
.btn-whatsapp { min-height: 52px; background: var(--success); color: #fff; }
.btn-whatsapp:hover { background: var(--success-dark); }
.small-btn { min-height: 44px; padding: 0.65rem 0.85rem; font-size: 0.9375rem; }
.is-loading { opacity: 0.65; pointer-events: none; }

.search-panel, .panel, .listing-card, .empty-state, .table-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.search-panel, .panel, .table-panel { padding: 1.15rem; }
.panel + .panel { margin-top: 1rem; }
.select-all-check { display: inline-flex; align-items: center; cursor: pointer; padding: 0.25rem; border-radius: 8px; transition: background 0.15s; }
.select-all-check:hover { background: var(--surface-soft); }
.select-all-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check-vis { width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--line-strong); display: inline-flex; align-items: center; justify-content: center; transition: all 0.15s; flex-shrink: 0; background: #fff; }
.check-vis::after { content: ''; width: 10px; height: 10px; border-radius: 3px; opacity: 0; transform: scale(0.6); transition: all 0.15s; background: var(--trust-blue); }
.select-all-check input:checked + .check-vis { border-color: var(--trust-blue); background: #eff6ff; }
.select-all-check input:checked + .check-vis::after { opacity: 1; transform: scale(1); }
.row-check-wrap { display: inline-flex; align-items: center; cursor: pointer; padding: 0.25rem; border-radius: 8px; transition: background 0.15s; flex-shrink: 0; align-self: start; margin-top: 0.15rem; }
.row-check-wrap:hover { background: var(--surface-soft); }
.row-check-wrap.is-off { opacity: 0.35; cursor: not-allowed; }
.row-check-wrap.is-off:hover { background: transparent; }
.row-check-wrap input { position: absolute; opacity: 0; width: 0; height: 0; }
.row-check-wrap input:checked + .check-vis { border-color: var(--trust-blue); background: #eff6ff; }
.row-check-wrap input:checked + .check-vis::after { opacity: 1; transform: scale(1); }
.row-check-wrap input:disabled { pointer-events: none; }
.mini-row .row-body { flex: 1; display: flex; justify-content: space-between; align-items: start; gap: 1rem; min-width: 0; }
.batch-bar { display: none; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: 1rem; padding: 0.65rem 0.85rem; background: rgba(255,255,255,0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(203,213,225,0.5); border-radius: var(--radius-md); box-shadow: 0 4px 20px rgba(15,23,42,0.06); }
.batch-label { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.card-body { padding: 1rem; }
.top-search-section { padding-top: 1rem; }
.v2-search-panel { border-color: #fed7aa; background: linear-gradient(180deg, #ffffff 0%, #fff7ed 180%); }
.search-heading { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 1rem; }
.search-heading h1, .section-head h1, .section-head h2 { margin: 0.2rem 0 0; }
.search-heading p { margin: 0.35rem 0 0; }
.search-actions { flex-wrap: wrap; justify-content: flex-end; }
.search-grid, .listing-grid, .spec-grid, .form-grid, .stats-strip, .mini-list, .dashboard-list, .admin-list, .gallery { display: grid; gap: 1rem; }
.search-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: end; }
.search-grid label, .form-grid label, .admin-filter-bar label { display: grid; gap: 0.4rem; color: var(--muted); font-size: 0.95rem; font-weight: 650; }
.search-submit { width: 100%; }
.advanced-search { margin-top: 1rem; border-top: 1px solid var(--line); padding-top: 0.9rem; overflow-anchor: none; }
.advanced-search summary { cursor: pointer; font-weight: 800; color: var(--text); margin-bottom: 0; padding: 0.5rem 0; }
.advanced-search summary::marker { color: var(--primary); }
.advanced-search-collapse {
  height: 0;
  overflow: hidden;
  overflow-anchor: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: height 0.34s cubic-bezier(.2,.75,.22,1), opacity 0.24s ease, transform 0.34s cubic-bezier(.2,.75,.22,1);
  will-change: height, opacity, transform;
}
.advanced-search.is-open .advanced-search-collapse {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .advanced-search-collapse,
  .filter-sheet.is-open,
  .filter-sheet.is-opening,
  .filter-sheet.is-closing,
  body.filter-sheet-open::before,
  body.filter-sheet-closing::before {
    transition-duration: 0.01ms;
  }
}
.advanced-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.af-group-full {
  grid-column: 1 / -1;
}
.af-group {
  display: grid;
  gap: 0.35rem;
}
.af-group-label {
  font-size: 0.82rem;
  font-weight: 720;
  color: var(--muted);
}
.v2-search-panel .af-group-label {
  color: #cbd5e1;
}
.af-inline {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.af-inline input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 0.55rem 0.7rem;
  text-align: center;
}
.af-sep {
  flex-shrink: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}
.v2-search-panel .af-sep {
  color: #94a3b8;
}
.af-group select {
  min-height: 44px;
  padding: 0.55rem 2.2rem 0.55rem 0.7rem;
  font-size: 0.9rem;
}
.af-group input[type="text"],
.af-group input[type="number"] {
  min-height: 44px;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
}
.af-group input::placeholder {
  color: #94a3b8;
}

.active-filter-row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 0.9rem; }
.filter-chip { display: inline-flex; align-items: center; gap: 0.35rem; min-height: 36px; padding: 0.42rem 0.7rem; border-radius: 999px; background: #fff7ed; color: var(--primary-dark); border: 1px solid #fdba74; font-size: 0.9rem; font-weight: 650; }
.filter-sheet-head, .filter-sheet-actions { display: none; }
.mobile-results-toolbar { display: none; }

.section-head { justify-content: space-between; flex-wrap: wrap; margin-bottom: 1rem; }
.eyebrow { font-size: 0.78rem; text-transform: none; letter-spacing: 0; color: var(--muted); font-weight: 850; }
.listing-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 1rem; }
@media (min-width: 760px) { .listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .listing-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.v2-card { overflow: hidden; display: flex; flex-direction: column; min-height: 100%; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.v2-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: #fdba74; }
.card-media-wrap { position: relative; }
.card-image-link { position: relative; display: block; overflow: hidden; background: var(--surface-soft); }
.card-image-link img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--surface-soft); transition: transform 0.22s ease; }
.v2-card:hover .card-image-link img { transform: scale(1.025); }
.photo-count-badge, .gallery-count { position: absolute; left: 0.75rem; bottom: 0.75rem; background: rgba(15, 23, 42, 0.82); color: #fff; border-radius: 999px; padding: 0.35rem 0.62rem; font-size: 0.78rem; font-weight: 800; }
.card-favorite-form { position: absolute; top: 0.7rem; right: 0.7rem; z-index: 3; }
.favorite-btn { width: 48px; height: 48px; min-width: 48px; border: 1px solid #fecdd3; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.96); color: var(--favorite); padding: 0; box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12); }
.favorite-btn.is-active { background: #fff1f2; border-color: #fda4af; }
.heart-icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.heart-icon.filled { fill: currentColor; stroke: currentColor; }
.big-favorite { width: 52px; height: 52px; min-width: 52px; }
.v2-card-body { display: grid; gap: 0.65rem; flex: 1; }
.price, .price-box, .stat-box strong, .detail-specs span { font-variant-numeric: tabular-nums; }
.price { font-weight: 800; color: var(--text); font-size: 1.25rem; line-height: 1.15; }
.price small { font-size: 0.86rem; font-weight: 700; }
.card-title { margin: 0; font-size: 1.0625rem; line-height: 1.3; font-weight: 750; }
.card-specs, .dashboard-meta { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.card-specs span, .dashboard-meta span { background: var(--surface-soft); border: 1px solid var(--line); border-radius: 999px; padding: 0.32rem 0.6rem; font-size: 0.875rem; color: var(--muted); font-weight: 650; }
.v2-card-meta { display: flex; justify-content: space-between; gap: 0.75rem; align-items: center; margin: 0; }
.card-city, .card-time { margin: 0; color: var(--muted); font-size: 0.875rem; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.trust-badge, .status-pill { display: inline-flex; align-items: center; justify-content: center; min-height: 28px; padding: 0.34rem 0.64rem; border-radius: 999px; font-size: 0.8125rem; font-weight: 800; }
.trust-success, .status-approved, .status-published { background: var(--success-bg); color: var(--success-text); }
.trust-source, .status-pending_review { background: var(--info-bg); color: var(--info-text); }
.trust-info { background: #f1f5f9; color: var(--muted); }
.status-rejected { background: var(--danger-bg); color: var(--danger-text); }
.status-archived, .status-draft, .status-unavailable, .status-customer { background: var(--surface-soft); color: var(--muted); }
.status-company_owner { background: var(--success-bg); color: var(--success-text); }
.status-fleet_manager { background: #eef2ff; color: #4338ca; }
.status-listing_assistant { background: #fffbeb; color: #b45309; }
.empty-state { padding: 2rem; text-align: center; background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }
.empty-actions { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }

.detail-layout { display: grid; gap: 1.1rem; grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.78fr); align-items: start; }
.detail-main-column, .detail-info-grid { display: grid; gap: 1rem; }
.detail-sidebar { align-self: stretch; }
.gallery-panel { padding: 1rem; }
.detail-gallery { display: grid; gap: 0.8rem; }
.gallery-stage { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--surface-soft); touch-action: pan-y; }
.main-image-button { display: block; width: 100%; background: transparent; border: 0; padding: 0; }
.main-gallery-image { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--surface-soft); }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 999px; border: 0; background: rgba(255,255,255,0.94); box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14); display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; z-index: 2; }
.gallery-nav.prev { left: 0.85rem; }
.gallery-nav.next { right: 0.85rem; }
.gallery-count { left: auto; right: 0.8rem; bottom: 0.8rem; }
.thumb-strip-wrap { overflow-x: auto; overflow-y: hidden; padding-bottom: 0.2rem; }
.thumb-strip { display: flex; flex-wrap: nowrap; gap: 0.55rem; width: max-content; }
.thumb-btn { flex: 0 0 88px; width: 88px; padding: 0; border: 2px solid transparent; background: transparent; border-radius: 12px; overflow: hidden; min-height: 58px; }
.thumb-btn.active { border-color: var(--primary); }
.thumb-btn img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.detail-main, .contact-box, .report-box { padding: 1.2rem; }
.v2-detail-main { display: grid; gap: 1rem; }
.detail-header { display: flex; justify-content: space-between; gap: 1rem; align-items: start; }
.detail-header h1 { margin: 0.35rem 0; font-size: clamp(1.6rem, 3vw, 2.45rem); line-height: 1.12; }
.detail-header-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.detail-submeta { margin: 0; }
.detail-price-fav { display: grid; justify-items: end; gap: 0.75rem; }
.price-box { min-width: 168px; text-align: center; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1rem; }
.price-box strong { display: block; font-size: 2.25rem; color: var(--text); font-weight: 900; line-height: 1.05; }
.premium-price-box { background: #fff7ed; border-color: #fdba74; }
.premium-price-box strong span { font-size: 1.45rem; }
.detail-primary-contact { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem; border: 1px solid #bbf7d0; background: #f0fdf4; border-radius: var(--radius-lg); }
.detail-primary-contact div:first-child { display: grid; gap: 0.15rem; }
.detail-contact-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.detail-section-box { background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1rem; }
.detail-section-head { margin-bottom: 0.8rem; }
.detail-section-head h2 { margin: 0; font-size: 1.05rem; }
.detail-specs { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.8rem; }
.detail-specs-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-specs div, .contact-meta-list div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 0.9rem; display: grid; gap: 0.25rem; }
.detail-description { margin: 0; line-height: 1.65; }
.trust-grid { display: flex; gap: 0.55rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.contact-meta-list { display: grid; gap: 0.75rem; margin-bottom: 1rem; }
.contact-box .btn + .btn, .contact-box form { margin-top: 0.7rem; }
.sticky { position: sticky; top: 100px; }
.v2-report-box summary { cursor: pointer; font-weight: 800; }
.v2-report-box form { margin-top: 1rem; }
.sidebar-actions { display: flex; gap: 0.35rem; padding: 0 0 0.65rem; }
.sidebar-actions form { flex: 1; display: flex; min-width: 0; }
.sidebar-actions .btn-sidebar-action { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.3rem; min-height: 40px; padding: 0.35rem 0.4rem; border: 0; border-radius: var(--radius-sm); background: transparent; color: var(--muted); font-size: 0.78rem; font-weight: 650; cursor: pointer; transition: color 0.15s ease; white-space: nowrap; }
.sidebar-actions .btn-sidebar-action:hover { color: var(--favorite); }
.sidebar-actions .btn-sidebar-action.is-active { color: var(--favorite); }
.sidebar-actions .btn-sidebar-action svg { width: 18px; height: 18px; flex-shrink: 0; }
.sidebar-actions .btn-sidebar-action:hover svg.heart-icon { fill: var(--favorite); stroke: var(--favorite); }
.sidebar-actions .btn-sidebar-action:hover svg:not(.heart-icon) { color: var(--favorite); }

.detail-sticky-bar { position: sticky; top: 0; z-index: 25; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); padding: 0.7rem 0; }
.sticky-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding-right: 1rem; }
.sticky-bar-info { min-width: 0; }
.sticky-bar-info h1 { margin: 0; font-size: clamp(1.15rem, 2.2vw, 1.45rem); line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-bar-actions { padding: 0; display: flex; gap: 0.5rem; flex-shrink: 0; }
.sticky-bar-actions form { flex: 0 0 auto; display: flex; }
.sticky-bar-actions .btn-sidebar-action { flex: 0 0 auto; min-height: 44px; padding: 0.35rem 0.85rem; font-size: 0.82rem; white-space: nowrap; gap: 0.4rem; }
.sticky-bar-actions .btn-sidebar-action svg { width: 20px; height: 20px; }

.report-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.report-overlay.is-open {
  opacity: 1; pointer-events: auto;
}
.report-modal {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(203,213,225,0.3);
  padding: 1.5rem;
  width: min(100%, 440px);
  box-shadow: 0 24px 60px rgba(15,23,42,0.12);
  display: grid; gap: 1rem;
  position: relative;
  max-height: 90vh; overflow-y: auto;
}
.report-modal h3 { margin: 0; font-size: 1.15rem; letter-spacing: -0.02em; }
.report-modal-close {
  position: absolute; top: 0.65rem; right: 0.65rem;
  width: 44px; height: 44px;
  border-radius: 999px; border: 0;
  background: rgba(241,245,249,0.7);
  backdrop-filter: blur(4px);
  font-size: 1.3rem;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s ease;
}
.report-modal-close:hover { background: rgba(226,232,240,0.85); }
.report-modal form { display: grid; gap: 0.85rem; }
body.report-modal-open { overflow: hidden; }

.mobile-contact-bar { display: none; }

.form-stack { display: grid; gap: 1rem; }
.form-block h2 { margin: 0 0 0.9rem; }
.wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.image-upload-head { display: grid; gap: 0.6rem; margin-bottom: 1rem; }
.upload-trigger { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: fit-content; background: #fff; border: 1px solid var(--line-strong); padding: 0.8rem 1rem; border-radius: var(--radius-sm); font-weight: 800; cursor: pointer; }
.upload-trigger input { display: none; }
.image-carousel-shell { display: grid; gap: 0.7rem; border: 1px solid var(--line); background: var(--surface-soft); border-radius: var(--radius-lg); padding: 0.85rem; }
.image-carousel-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.carousel-controls { display: inline-flex; gap: 0.55rem; }
.carousel-arrow, .trash-btn { width: 44px; height: 44px; min-height: 44px; border-radius: 999px; background: #fff; padding: 0; display: inline-flex; align-items: center; justify-content: center; }
.image-carousel-track { display: flex; gap: 0.85rem; overflow-x: auto; padding-bottom: 0.3rem; scroll-snap-type: x proximity; }
.image-remove { display: grid; gap: 0.65rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 0.7rem; position: relative; min-width: 220px; max-width: 220px; scroll-snap-align: start; }
.preview-media-wrap { position: relative; }
.image-remove img { width: 100%; border-radius: var(--radius-sm); aspect-ratio: 4 / 3; object-fit: cover; background: var(--surface-soft); }
.image-card-controls { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: space-between; align-items: center; }
.main-chip, .main-toggle { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--info-bg); color: var(--info-text); border-radius: 999px; padding: 0.42rem 0.72rem; font-size: 0.82rem; font-weight: 800; border: 0; width: auto; }
.main-toggle input { width: auto; margin: 0; }
.trash-btn { background: var(--danger-bg); color: var(--danger-text); border: 0; }

.remove-preview, .delete-chip { position: absolute; top: 0.65rem; right: 0.65rem; }
.delete-chip input { position: absolute; opacity: 0; pointer-events: none; }
.is-main { border-color: #93c5fd; box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.12); }
.main-badge { position: absolute; left: 0.75rem; top: 0.75rem; background: rgba(15, 23, 42, 0.86); color: white; padding: 0.35rem 0.6rem; border-radius: 999px; font-size: 0.76rem; font-weight: 800; }

.stats-strip { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.admin-stats { margin-bottom: 1.5rem; }
.stat-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1rem; display: grid; gap: 0.35rem; }
.stat-box strong { font-size: 1.6rem; }
.dashboard-row, .moderation-row { display: grid; grid-template-columns: 220px 1fr; gap: 1rem; }
.dashboard-row img, .moderation-row img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); aspect-ratio: 4 / 3; }
.dashboard-row-body, .moderation-body { display: grid; gap: 0.75rem; }
.admin-layout { display: grid; gap: 1rem; grid-template-columns: 1.35fr 0.75fr; }
.moderation-actions, .reject-inline, .inline-form { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.reject-inline input { min-width: 220px; }
.moderation-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.7rem; }
.moderation-thumb { position: relative; }
.moderation-gallery img { border-radius: var(--radius-sm); aspect-ratio: 4 / 3; object-fit: cover; }
.moderation-thumb.is-main::after { content: 'Əsas'; position: absolute; left: 0.45rem; bottom: 0.45rem; background: rgba(15, 23, 42, 0.82); color: white; border-radius: 999px; padding: 0.22rem 0.45rem; font-size: 0.72rem; }
.admin-filter-bar { display: flex; gap: 1rem; align-items: end; margin-bottom: 1rem; }
.admin-filter-bar label { min-width: 220px; }
.card-topline { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.card-topline h3 { margin: 0; }
.card-actions, .slim-actions { flex-wrap: wrap; }
.inline-form .btn, .card-actions .btn { width: auto; }
.mini-row { display: flex; justify-content: space-between; align-items: start; gap: 1rem; padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
.mini-row:last-child { border-bottom: 0; }
.mini-row p { margin: 0.25rem 0 0; color: var(--muted); }
.lightbox { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.82); display: none; align-items: center; justify-content: center; z-index: 80; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(90vw, 1100px); max-height: 80vh; border-radius: var(--radius-md); }
.lightbox-close, .lightbox-nav { position: absolute; background: rgba(255,255,255,0.94); border: 0; width: 48px; height: 48px; border-radius: 999px; font-size: 1.4rem; display: inline-flex; align-items: center; justify-content: center; }
.lightbox-close { top: 18px; right: 18px; }
.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }
.flash-stack { padding-top: 1rem; }
.flash { padding: 0.9rem 1rem; border-radius: var(--radius-md); margin-bottom: 0.75rem; border: 1px solid transparent; }
.flash-success { background: var(--success-bg); color: var(--success-text); border-color: #bbf7d0; }
.flash-warning { background: var(--warning-bg); color: var(--warning-text); border-color: #fde68a; }
.flash-error { background: var(--danger-bg); color: var(--danger-text); border-color: #fecaca; }
.admin-search-form { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.7fr) minmax(160px, 0.7fr) auto; gap: 0.85rem; align-items: end; }
.admin-search-actions { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.admin-toast-stack { position: fixed; right: 1rem; bottom: 1rem; z-index: 90; display: grid; gap: 0.6rem; pointer-events: none; }

.modal-overlay { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(15, 23, 42, 0.55); backdrop-filter: blur(4px); padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal-dialog { width: 100%; max-width: 480px; background: #fff; border-radius: 20px; box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25); padding: 1.5rem; display: grid; gap: 1rem; }
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-right: 0.25rem; }
.modal-head h3 { margin: 0; font-size: 1.1rem; }
.modal-close { width: 44px; height: 44px; border: 0; background: var(--surface-soft); border-radius: 999px; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--muted); flex-shrink: 0; }
.modal-close:hover { background: #e2e8f0; color: var(--text); }
.modal-dialog label { display: grid; gap: 0.4rem; }
.modal-dialog label span { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.modal-dialog textarea { width: 100%; padding: 0.75rem; border: 1px solid var(--line-strong); border-radius: var(--radius-md); font: inherit; font-size: 0.9375rem; resize: vertical; min-height: 80px; }
.modal-dialog textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12); }
#reject-form { display: grid; gap: 1rem; }
.modal-actions { display: flex; gap: 0.75rem; justify-content: end; padding-top: 0.25rem; }
.admin-toast { min-width: min(340px, calc(100vw - 2rem)); padding: 0.85rem 1rem; border-radius: var(--radius-md); border: 1px solid transparent; box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16); background: #ecfdf5; color: #166534; border-color: #bbf7d0; }
.admin-toast-error { background: #fef2f2; color: #991b1b; border-color: #fecaca; }
.admin-toast.is-leaving { opacity: 0; transform: translateY(6px); transition: opacity 0.22s ease, transform 0.22s ease; }
.mobile-bottom-nav { display: none; }

.site-footer { margin-top: 3rem; background: var(--dark); color: #e5e7eb; padding: 2.6rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr)); gap: 1.25rem; align-items: start; }
.footer-col { display: grid; gap: 0.75rem; }
.footer-col h2 { margin: 0; font-size: 1rem; color: #fff; }
.footer-grid p, .footer-grid small { margin: 0; color: #cbd5e1; }
.footer-grid a { color: #e5e7eb; font-weight: 700; }
.footer-grid a:hover { color: #fff7ed; }
.footer-brand { margin-bottom: 0.35rem; }
.footer-brand .brand-mark { background: #fff7ed; color: var(--primary); }
.footer-brand strong { color: #fff; }
.footer-brand .brand-text small { color: #cbd5e1; }
.footer-social, .footer-list, .footer-contact-list { display: grid; gap: 0.55rem; }
.footer-social { grid-template-columns: repeat(3, minmax(0, max-content)); gap: 0.65rem; }
.footer-social a, .footer-list a, .footer-contact-list a { min-height: 44px; display: inline-flex; align-items: center; }

.static-page-shell { display: grid; gap: 1rem; }
.static-page-hero { background: linear-gradient(180deg, #ffffff 0%, #fff7ed 180%); border-color: #fed7aa; }
.static-page-hero h1 { margin: 0.25rem 0 0.55rem; font-size: clamp(1.8rem, 4vw, 2.5rem); }
.static-page-layout { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.static-page-section h2 { margin: 0 0 0.75rem; font-size: 1.08rem; }
.static-page-section p { margin: 0 0 0.75rem; }
.content-list { margin: 0; padding-left: 1.2rem; display: grid; gap: 0.55rem; }


@media (max-width: 980px) {
  .detail-layout, .admin-layout, .dashboard-row, .moderation-row, .footer-grid, .static-page-layout { grid-template-columns: 1fr; }
  .search-grid, .advanced-grid, .detail-specs, .stats-strip, .wide, .moderation-gallery { grid-template-columns: 1fr 1fr; }
  .sticky { position: static; }
  .detail-sidebar { order: 2; }
}
@media (max-width: 720px) {
  body { padding-bottom: 74px; }
  .container { width: min(100% - 1rem, 100%); }
  .ribbon-inner { display: none; }
  .nav-shell, .nav-links, .section-head, .search-heading, .detail-header, .detail-primary-contact, .admin-filter-bar, .inline-form, .image-carousel-head, .admin-search-actions { flex-direction: column; align-items: stretch; }
  .nav-links { display: none; }
  .nav-shell .mobile-language-switcher { display: inline-flex; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); }
  .search-grid, .advanced-grid, .detail-specs, .stats-strip, .wide, .moderation-gallery, .admin-search-form { grid-template-columns: 1fr; }
  .detail-price-fav { justify-items: stretch; }
  .price-box { width: 100%; }
  .detail-contact-actions, .search-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid { gap: 1rem; }
  .footer-social { grid-template-columns: 1fr; }
  .mobile-results-toolbar { position: sticky; top: 0; z-index: 24; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 0.5rem; padding: 0.55rem; background: rgba(248,250,252,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
  .mobile-results-toolbar .btn { min-height: 44px; padding: 0.55rem 0.75rem; }
  .mobile-sort-select { min-height: 44px; padding: .55rem 2rem .55rem .7rem; border-color: var(--line-strong); font-size: .875rem; font-weight: 760; }
  .mobile-results-toolbar span { color: var(--muted); font-size: 0.875rem; font-weight: 800; white-space: nowrap; }
  .filter-sheet-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
  .filter-sheet-close { width: 44px; height: 44px; border-radius: 999px; padding: 0; }
  .filter-sheet-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; position: sticky; bottom: 0; background: #fff; padding-top: 0.8rem; margin-top: 1rem; border-top: 1px solid var(--line); }
  .filter-sheet.is-open, .filter-sheet.is-opening, .filter-sheet.is-closing { position: fixed; left: 0.5rem; right: 0.5rem; bottom: 0.5rem; max-height: min(82vh, 720px); overflow: auto; z-index: 70; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 24px 80px rgba(15,23,42,0.28); padding: 1rem; opacity: 1; transform: translateY(0); transition: transform 0.34s cubic-bezier(.2,.75,.22,1), opacity 0.24s ease; }
  .filter-sheet.is-opening,
  .filter-sheet.is-closing { opacity: 0; pointer-events: none; transform: translateY(calc(100% + 1rem)); }
  .filter-sheet.is-open summary, .filter-sheet.is-opening summary, .filter-sheet.is-closing summary { display: none; }
  .filter-sheet.is-open .advanced-search-collapse, .filter-sheet.is-opening .advanced-search-collapse, .filter-sheet.is-closing .advanced-search-collapse { height: auto !important; opacity: 1; transform: none; transition: none; }
  body.filter-sheet-open::before, body.filter-sheet-closing::before { content: ''; position: fixed; inset: 0; z-index: 60; background: rgba(15, 23, 42, 0.45); opacity: 1; transition: opacity 0.24s ease; }
  body.filter-sheet-closing::before { opacity: 0; }
  .mobile-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 0.35rem max(0.5rem, env(safe-area-inset-left)) calc(0.35rem + env(safe-area-inset-bottom)) max(0.5rem, env(safe-area-inset-right)); background: rgba(255,255,255,0.98); border-top: 1px solid var(--line); box-shadow: 0 -10px 28px rgba(15,23,42,0.08); }
  .mobile-bottom-nav a { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); color: var(--muted); font-size: 0.875rem; font-weight: 850; }
  .mobile-bottom-nav a.active { color: var(--primary); background: #fff7ed; }
  .page-listing-detail .mobile-bottom-nav { display: none; }

  .page-listing-detail { padding-bottom: 86px; }
  .mobile-contact-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; padding: 0.65rem max(0.75rem, env(safe-area-inset-left)) calc(0.65rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-right)); background: rgba(255,255,255,0.98); border-top: 1px solid var(--line); box-shadow: 0 -12px 32px rgba(15,23,42,0.12); }
  .thumb-btn { flex-basis: 76px; width: 76px; }
  .image-remove { min-width: 180px; max-width: 180px; }
  .lightbox { padding: 1rem; }
}
@media (max-width: 460px) {
  .detail-contact-actions, .search-actions, .filter-sheet-actions { grid-template-columns: 1fr; }
  .thumb-btn { flex-basis: 72px; width: 72px; }
}

/* Premium marketplace refinement */
:root {
  --bg: #f4f6f8;
  --surface-soft: #f6f7f9;
  --line: #e3e7ec;
  --line-strong: #cbd2da;
  --primary: #d45116;
  --primary-dark: #a83b0c;
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 8px 26px rgba(15, 23, 42, 0.07);
  --shadow-hover: 0 20px 48px rgba(15, 23, 42, 0.14);
  --radius-xl: 22px;
}

html { background: var(--dark); }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
main { min-height: 62vh; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { color: var(--dark); letter-spacing: -0.025em; }
h1 { font-size: clamp(1.75rem, 3.5vw, 2.65rem); line-height: 1.08; }
h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); line-height: 1.16; }
h3 { line-height: 1.25; }
.skip-link { position: fixed; left: 1rem; top: 1rem; z-index: 200; transform: translateY(-180%); background: #fff; color: var(--dark); padding: .75rem 1rem; border-radius: 10px; box-shadow: var(--shadow-hover); font-weight: 800; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(1240px, calc(100% - 3rem)); }
.section-space { padding: 1.4rem 0 2.8rem; }

.header-ribbon { background: #09111f; font-size: .8125rem; }
.ribbon-inner { min-height: 34px; align-items: center; padding: .35rem 0; }
.site-header { border-bottom-color: rgba(203, 210, 218, .85); box-shadow: 0 1px 0 rgba(15,23,42,.03); }
.nav-shell { min-height: 68px; }
.brand { gap: .65rem; }
.brand-mark { width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(145deg, #172033, #070d18); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 7px 20px rgba(15,23,42,.18); }
.brand-mark svg { width: 23px; height: 23px; }
.brand-text strong { letter-spacing: -.035em; }
.nav-links { gap: .35rem; }
.nav-links > a:not(.btn) { min-height: 42px; display: inline-flex; align-items: center; padding: 0 .8rem; border-radius: 10px; color: #344154; font-size: .9375rem; }
.nav-links > a:not(.btn):hover { background: #f1f4f7; color: var(--dark); }
.nav-links form { margin: 0; }

.btn { border-radius: 10px; font-weight: 760; box-shadow: var(--shadow-xs); }
.btn-primary { background: linear-gradient(180deg, #df5a1d, var(--primary)); border-color: #b9410f; box-shadow: 0 7px 16px rgba(194, 65, 12, .2); }
.btn-primary:hover { background: linear-gradient(180deg, #c94a11, var(--primary-dark)); box-shadow: 0 9px 22px rgba(154, 52, 18, .24); }
.btn-secondary { border-color: var(--line-strong); }
.btn-whatsapp { background: #12833b; border-color: #0f7134; box-shadow: 0 7px 16px rgba(21,128,61,.16); }
button:disabled, .btn:disabled { cursor: not-allowed; opacity: .55; }

input, select, textarea { border-color: var(--line-strong); box-shadow: inset 0 1px 2px rgba(15,23,42,.025); transition: border-color .16s ease, box-shadow .16s ease, background .16s ease; }
input:hover, select:hover, textarea:hover { border-color: #9aa5b1; }
input:focus, select:focus, textarea:focus { border-color: var(--trust-blue); box-shadow: 0 0 0 4px rgba(37,99,235,.11); outline: 0; }
label > span:first-child, .form-grid label, .admin-filter-bar label { color: #334155; font-weight: 720; }

.search-panel, .panel, .listing-card, .empty-state, .table-panel { border-color: var(--line); box-shadow: var(--shadow-xs); }
.panel, .table-panel { border-radius: 18px; }
.top-search-section { padding-top: 1.25rem; padding-bottom: .65rem; }
.v2-search-panel { position: relative; overflow: hidden; padding: clamp(1.25rem, 3vw, 2rem); border: 0; border-radius: var(--radius-xl); background: linear-gradient(125deg, #111b2e 0%, #0f172a 57%, #202b3e 100%); box-shadow: 0 24px 60px rgba(15,23,42,.2); }
.v2-search-panel::after { content: ''; position: absolute; width: 320px; height: 320px; right: -130px; top: -170px; border-radius: 50%; background: radial-gradient(circle, rgba(234,88,12,.28), transparent 68%); pointer-events: none; }
.v2-search-panel .search-heading, .v2-search-panel .search-grid, .v2-search-panel .advanced-search, .v2-search-panel .active-filter-row { position: relative; z-index: 1; }
.v2-search-panel h1, .v2-search-panel .eyebrow { color: #fff; }
.v2-search-panel .search-heading p { color: #cbd5e1; max-width: 690px; }
.v2-search-panel label > span { color: #e2e8f0; }
.v2-search-panel .advanced-search { border-top-color: rgba(255,255,255,.14); }
.v2-search-panel .advanced-search summary { color: #fff; width: fit-content; padding: .4rem 0; }
.v2-search-panel .advanced-search summary::marker { color: #fb923c; }
.v2-search-panel input, .v2-search-panel select { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: #fff; }
.v2-search-panel input::placeholder { color: #94a3b8; }
.v2-search-panel select option { color: #111827; background: #fff; }
.search-heading { align-items: center; }
.search-heading h1 { margin-top: .35rem; }
.search-grid { gap: .75rem; }
.search-grid-main { grid-template-columns: 1fr 1.2fr 1fr auto; }
.search-submit { min-width: 128px; }
.filter-chip { background: rgba(255,255,255,.11); color: #fff; border-color: rgba(255,255,255,.2); backdrop-filter: blur(8px); }
.filter-chip:hover { background: rgba(255,255,255,.18); }
.mobile-results-toolbar { display: flex; justify-content: flex-end; align-items: center; gap: .7rem; padding-top: .75rem; padding-bottom: .15rem; }
.mobile-results-toolbar [data-filter-open] { display: none; }
.mobile-results-toolbar .mobile-sort-select { width: auto; min-width: 150px; min-height: 44px; padding-block: .55rem; font-size: .875rem; font-weight: 720; }
.mobile-results-toolbar > span { order: -1; margin-right: auto; color: var(--muted); font-size: .875rem; font-weight: 720; }

.trust-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; margin-top: .9rem; background: var(--line); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-xs); }
.trust-rail-item { display: flex; align-items: center; gap: .8rem; padding: .9rem 1rem; background: #fff; }
.trust-rail-icon { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; border-radius: 10px; background: #fff7ed; color: var(--primary); }
.trust-rail-icon svg { width: 19px; height: 19px; }
.trust-rail-item strong { display: block; font-size: .9rem; }
.trust-rail-item span:last-child { display: block; color: var(--muted); font-size: .8rem; }

.section-head { align-items: end; gap: 1.5rem; }
.section-head h1, .section-head h2 { margin-top: .25rem; }
.eyebrow { color: #9a3412; letter-spacing: .055em; text-transform: uppercase; font-size: .72rem; }
.listings-section { padding-top: 1.6rem; }
.listings-headline { padding-bottom: .25rem; border-bottom: 1px solid var(--line); }
.listing-grid { gap: 1.15rem; }
.listing-card { border-radius: 17px; }
.v2-card { background: #fff; }
.v2-card:hover { transform: translateY(-4px); border-color: #c9d0d9; }
.v2-card:focus-within { box-shadow: 0 0 0 3px rgba(37,99,235,.15), var(--shadow-hover); }
.card-image-link img { aspect-ratio: 16 / 10.5; }
.photo-count-badge { left: .65rem; bottom: .65rem; background: rgba(8,15,28,.82); backdrop-filter: blur(6px); }
.favorite-btn { width: 44px; height: 44px; min-width: 44px; box-shadow: 0 7px 20px rgba(15,23,42,.16); }
.v2-card-body { gap: .58rem; padding: .9rem 1rem 1rem; }
.price { font-size: 1.3rem; letter-spacing: -.025em; }
.card-title { min-height: 2.55em; }
.card-title a::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.v2-card { position: relative; }
.card-favorite-form { z-index: 3; }
.card-specs span { padding: .27rem .5rem; background: #f7f8fa; font-size: .8125rem; }
.card-city::before { content: '•'; margin-right: .35rem; color: var(--primary); }
.card-trust-badges { margin-top: .1rem; padding-top: .65rem; border-top: 1px solid #edf0f3; }
.trust-badge { min-height: 26px; padding: .28rem .55rem; font-size: .75rem; }

.detail-layout { gap: 1.35rem; grid-template-columns: minmax(0, 1.55fr) minmax(290px, .65fr); }
.gallery-panel { padding: .65rem; border-radius: 20px; overflow: hidden; }
.gallery-stage { border-radius: 15px; }
.main-gallery-image { aspect-ratio: 16 / 9.6; }
.gallery-nav { opacity: .88; transition: opacity .16s ease, transform .16s ease; }
.gallery-stage:hover .gallery-nav { opacity: 1; }
.detail-main { padding: clamp(1.1rem, 2.5vw, 1.55rem); }
.detail-header { padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.detail-price-box { min-width: 154px; }
.premium-price-box { background: #fff7ed; border-color: #fed7aa; }
.detail-primary-contact { background: linear-gradient(135deg, #f0fdf4, #f8fffb); }
.detail-section-box { border-color: #e6eaef; }
.detail-specs div { min-height: 78px; }
.detail-specs strong { color: var(--muted); font-size: .8rem; font-weight: 680; }
.detail-specs span { color: var(--dark); font-weight: 760; }
.contact-box { border-top: 4px solid var(--primary); box-shadow: var(--shadow); }
.contact-box h3 { margin-bottom: .35rem; }
.contact-meta-list div { padding: .75rem; }

.stats-strip { gap: .75rem; }
.stat-box { position: relative; overflow: hidden; border-radius: 14px; }
.stat-box::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--primary); }
.stat-box strong { font-size: 1.75rem; letter-spacing: -.035em; }
.dashboard-row, .moderation-row { padding: 1rem; border-radius: 16px; }
.mini-row { transition: background .15s ease; border-radius: 10px; padding-inline: .65rem; }
.mini-row:hover { background: var(--surface-soft); }

.table-panel { width: 100%; overflow-x: auto; padding: 0; }
table { width: 100%; border-collapse: collapse; min-width: 880px; font-size: .9rem; }
th { position: sticky; top: 0; z-index: 2; padding: .8rem 1rem; background: #f4f6f8; color: #475569; border-bottom: 1px solid var(--line-strong); text-align: left; white-space: nowrap; font-size: .76rem; text-transform: uppercase; letter-spacing: .04em; }
td { padding: .9rem 1rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
tbody tr:hover { background: #fafbfc; }
tbody tr:last-child td { border-bottom: 0; }
.premium-table-panel .inline-form { min-width: 260px; }
.report-card { border-left: 4px solid #60a5fa; }

.auth-panel { padding: clamp(1.25rem, 4vw, 2.2rem); border-top: 4px solid var(--primary); box-shadow: var(--shadow); }
.auth-panel h1 { margin-bottom: .65rem; }
.form-block { padding: clamp(1rem, 2vw, 1.4rem); }
.form-block h2 { padding-bottom: .75rem; border-bottom: 1px solid var(--line); }
.empty-state { border-style: dashed; box-shadow: none; }
.flash { box-shadow: var(--shadow-xs); }

.site-footer { margin-top: 4rem; background: #09111f; border-top: 1px solid #1e293b; }
.footer-grid { gap: 2.2rem; }
.footer-grid a { color: #cbd5e1; }
.footer-grid a:hover { color: #fff; }
.admin-surface { background: #f1f4f7; }
.admin-surface .site-header { border-bottom-color: #d8dee6; }
.admin-surface main { padding-bottom: 3rem; }
.admin-surface .section-head > div > p { color: var(--muted); max-width: 760px; }

/* Public company profile */
.company-profile-link { position: relative; z-index: 2; }
.company-profile-hero { position: relative; overflow: hidden; padding: 2.4rem 0 4.5rem; color: #fff; background: linear-gradient(125deg, #0b1220 0%, #13223b 60%, #203451 100%); }
.company-profile-hero::after { content: ''; position: absolute; width: 420px; height: 420px; right: -130px; top: -230px; border-radius: 50%; background: radial-gradient(circle, rgba(234,88,12,.3), transparent 68%); pointer-events: none; }
.company-hero-shell { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.company-identity { display: flex; align-items: center; gap: 1.25rem; min-width: 0; }
.company-monogram { width: 92px; height: 92px; flex: 0 0 92px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 24px; color: #fff; background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.07)); box-shadow: inset 0 1px rgba(255,255,255,.18), 0 18px 42px rgba(0,0,0,.18); font-size: 2.4rem; font-weight: 850; }
.company-verified-line { display: flex; align-items: center; gap: .45rem; color: #bbf7d0; font-size: .84rem; font-weight: 780; }
.verified-dot { width: 22px; height: 22px; display: inline-grid; place-items: center; border-radius: 999px; color: #052e16; background: #86efac; font-size: .75rem; }
.company-identity h1 { margin: .45rem 0 .25rem; color: #fff; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.05; letter-spacing: -.04em; }
.company-identity p { margin: 0; color: #cbd5e1; }
.company-hero-actions { display: flex; align-items: center; justify-content: flex-end; gap: .65rem; flex-wrap: wrap; }
.company-share-btn { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.1); backdrop-filter: blur(8px); }
.company-share-btn:hover { background: rgba(255,255,255,.17); }
.company-stat-band { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: -2.35rem; overflow: hidden; padding: 0; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 20px 48px rgba(15,23,42,.13); }
.company-stat-band > div { min-height: 106px; display: flex; flex-direction: column; justify-content: center; padding: 1.05rem 1.25rem; border-right: 1px solid var(--line); }
.company-stat-band > div:last-child { border-right: 0; }
.company-stat-band strong { color: var(--dark); font-size: 1.55rem; line-height: 1.1; letter-spacing: -.025em; }
.company-stat-band span { margin-top: .35rem; color: var(--muted); font-size: .83rem; font-weight: 680; }
.company-stat-band small { margin-top: .1rem; color: #a16207; font-size: .72rem; font-weight: 720; }
.company-stat-pending { background: #fffbeb; }
.company-profile-layout { display: grid; grid-template-columns: minmax(245px, .72fr) minmax(0, 2fr); gap: 1.4rem; align-items: start; padding-top: 2.25rem; }
.company-inventory-column { min-width: 0; }
.company-about-column { display: grid; gap: 1rem; position: sticky; top: 0; }
.company-about-card { padding: 1.3rem; }
.company-about-card h2 { margin: .35rem 0 .7rem; }
.company-about-card > p { color: var(--muted); }
.company-facts { display: grid; gap: 0; margin: 1rem 0 0; }
.company-facts div { display: grid; gap: .2rem; padding: .8rem 0; border-top: 1px solid var(--line); }
.company-facts dt { color: var(--muted); font-size: .78rem; font-weight: 680; }
.company-facts dd { margin: 0; color: var(--dark); font-weight: 760; }
.company-trust-note { display: flex; gap: .75rem; padding: 1rem; border: 1px solid #bbf7d0; border-radius: 16px; background: #f0fdf4; }
.company-trust-icon { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: var(--success); font-weight: 850; }
.company-trust-note strong { color: #14532d; }
.company-trust-note p { margin: .25rem 0 0; color: #3f6212; font-size: .82rem; }
.company-inventory-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.company-inventory-head h2 { margin: .3rem 0 .2rem; font-size: clamp(1.55rem, 3vw, 2rem); letter-spacing: -.025em; }
.company-inventory-head p { margin: 0; color: var(--muted); }
.company-filter-bar { display: grid; grid-template-columns: minmax(140px, .8fr) minmax(160px, 1fr) minmax(145px, .85fr) auto auto; gap: .65rem; align-items: end; margin-bottom: 1.15rem; padding: .85rem; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: var(--shadow-xs); }
.company-filter-bar label { display: grid; gap: .35rem; color: var(--muted); font-size: .78rem; font-weight: 720; }
.company-filter-bar input, .company-filter-bar select { min-height: 44px; padding-block: .65rem; }
.company-filter-bar .btn { min-height: 44px; }
.company-filter-reset { min-height: 44px; display: inline-flex; align-items: center; padding: 0 .4rem; color: var(--primary); font-size: .86rem; font-weight: 760; }
.company-listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.company-mobile-contact { display: none; }

@media (max-width: 980px) {
  .container { width: min(100% - 2rem, 100%); }
  .search-grid-main { grid-template-columns: 1fr 1fr; }
  .search-grid-main .search-submit { grid-column: 1 / -1; }
  .trust-rail { grid-template-columns: 1fr; }
  .company-hero-shell { align-items: flex-start; flex-direction: column; }
  .company-stat-band { grid-template-columns: repeat(2, 1fr); }
  .company-stat-band > div:nth-child(2) { border-right: 0; }
  .company-stat-band > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .company-profile-layout { grid-template-columns: 1fr; }
  .company-about-column { position: static; grid-template-columns: 1fr 1fr; }
  .company-filter-bar { grid-template-columns: 1fr 1fr; }
  .company-filter-bar .btn { align-self: end; }
}

@media (max-width: 720px) {
  body { padding-bottom: 78px; }
  .container { width: min(100% - 1rem, 100%); }
  .section-space { padding: 1rem 0 2rem; }
  .site-header { top: 0; }
  .nav-shell { min-height: 62px; }
  .brand-text small { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .top-search-section { padding-top: .5rem; }
  .v2-search-panel { border-radius: 18px; padding: 1.05rem; }
  .v2-search-panel::after { width: 220px; height: 220px; }
  .search-heading { margin-bottom: .85rem; }
  .search-heading h1 { font-size: 1.55rem; }
  .search-heading p { font-size: .875rem; }
  .search-grid-main { grid-template-columns: 1fr 1fr; }
  .search-grid-main label:nth-child(2) { grid-column: 1 / -1; grid-row: 2; }
  .search-grid-main .search-submit { grid-column: 1 / -1; }
  .trust-rail { margin-top: .55rem; }
  .trust-rail-item { padding: .72rem .8rem; }
  .trust-rail-item:nth-child(n+3) { display: none; }
  .mobile-results-toolbar { top: 62px; margin-inline: 0; width: 100%; box-shadow: 0 5px 16px rgba(15,23,42,.07); }
  .mobile-results-toolbar [data-filter-open] { display: inline-flex; }
  .mobile-results-toolbar > span { order: initial; margin-right: 0; }
  .listing-grid { gap: .8rem; }
  .listing-card { border-radius: 15px; }
  .v2-card-body { padding: .85rem; }
  .card-title { min-height: auto; }
  .card-trust-badges .trust-source { max-width: 56%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .detail-layout { padding-top: .5rem; }
  .gallery-panel { padding: .4rem; border-radius: 14px; }
  .gallery-nav { width: 42px; height: 42px; }
  .detail-main { padding: 1rem; }
  .detail-header { gap: .75rem; }
  .detail-primary-contact { padding: .85rem; }
  .detail-specs div { min-height: 70px; padding: .75rem; }
  .table-panel { margin-inline: -.5rem; width: calc(100% + 1rem); border-radius: 0; }
  th { top: 0; }
  .mobile-bottom-nav a { flex-direction: column; gap: .15rem; font-size: .72rem; }
  .mobile-nav-icon { width: 21px; height: 21px; }
  .site-footer { margin-top: 2rem; padding-bottom: 4rem; }
  .admin-surface { padding-bottom: 0; }
  .admin-surface .nav-shell { padding-block: .6rem; flex-direction: column; align-items: stretch; gap: .45rem; }
  .admin-surface .brand { align-self: flex-start; }
  .admin-surface .nav-links { display: flex; flex-direction: row; align-items: center; flex-wrap: nowrap; overflow-x: auto; padding-bottom: .25rem; scrollbar-width: none; }
  .admin-surface .nav-links::-webkit-scrollbar { display: none; }
  .admin-surface .nav-links > a { white-space: nowrap; background: #f5f7f9; }
  .admin-surface .nav-links form { flex: 0 0 auto; }
  .company-profile-hero { padding: 1.35rem 0 3.55rem; }
  .company-hero-shell { gap: 1.2rem; }
  .company-identity { align-items: flex-start; gap: .85rem; }
  .company-monogram { width: 64px; height: 64px; flex-basis: 64px; border-radius: 18px; font-size: 1.7rem; }
  .company-identity h1 { font-size: 1.8rem; }
  .company-hero-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .company-hero-actions .company-share-btn { grid-column: 1 / -1; }
  .company-stat-band { width: calc(100% - 1rem); margin-top: -2.55rem; border-radius: 15px; }
  .company-stat-band > div { min-height: 92px; padding: .8rem; }
  .company-stat-band strong { font-size: 1.25rem; }
  .company-profile-layout { padding-top: 1.4rem; }
  .company-about-column { grid-template-columns: 1fr; }
  .company-inventory-head h2 { font-size: 1.5rem; }
  .company-filter-bar { grid-template-columns: 1fr 1fr; position: sticky; top: 0; z-index: 22; padding: .65rem; border-radius: 13px; box-shadow: 0 8px 24px rgba(15,23,42,.12); }
  .company-filter-bar > * { min-width: 0; }
  .company-filter-bar label:nth-child(2) { display: none; }
  .company-filter-bar .btn { min-height: 44px; }
  .company-filter-reset { display: none; }
  .company-mobile-contact { position: fixed; left: .5rem; right: .5rem; bottom: 75px; z-index: 48; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; padding: .5rem; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: 0 14px 40px rgba(15,23,42,.22); backdrop-filter: blur(12px); }
  .company-mobile-contact .btn { min-height: 46px; }
  .company-listing-grid { grid-template-columns: 1fr; }
  .page-company-profile { padding-bottom: 145px; }
}

@media (max-width: 420px) {
  .search-grid-main { grid-template-columns: 1fr; }
  .search-grid-main label:nth-child(2), .search-grid-main .search-submit { grid-column: auto; grid-row: auto; }
  .v2-card-meta { align-items: start; }
  .card-time { text-align: right; }
  .detail-specs, .detail-specs-two { grid-template-columns: 1fr 1fr; }
}

.toggle-switch { position: relative; display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer; -webkit-user-select: none; user-select: none; }
.toggle-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle-track { position: relative; width: 44px; height: 24px; background: #cbd5e1; border-radius: 24px; transition: background 0.2s ease; flex-shrink: 0; }
.toggle-track::before { content: ""; position: absolute; left: 3px; bottom: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform 0.2s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.toggle-switch input:checked + .toggle-track { background: var(--success); }
.toggle-switch input:checked + .toggle-track::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-track { opacity: 0.5; cursor: not-allowed; }
.toggle-label { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); min-width: 3em; }

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23475569' d='M1.41 0 6 4.58 10.59 0 12 1.41l-6 6-6-6Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 0.8rem;
  padding-right: 2.4rem;
  cursor: pointer;
}
.v2-search-panel select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23cbd5e1' d='M1.41 0 6 4.58 10.59 0 12 1.41l-6 6-6-6Z'/%3E%3C/svg%3E");
}

@media (max-width: 720px) {
  .advanced-fields {
    grid-template-columns: 1fr;
  }
}

/* Shared glass visual language */
body {
  --glass-surface: rgba(255, 255, 255, .72);
  --glass-border: rgba(255, 255, 255, .88);
  --glass-shadow: 0 18px 48px rgba(65, 78, 98, .1), inset 0 1px 0 rgba(255, 255, 255, .9);
  background:
    radial-gradient(circle at 90% 5%, rgba(186, 217, 255, .42), transparent 28rem),
    radial-gradient(circle at 8% 38%, rgba(226, 235, 248, .78), transparent 34rem),
    linear-gradient(145deg, #f7f9fc 0%, #eef3f9 52%, #f8fafc 100%);
  background-attachment: fixed;
}
.site-header {
  border-bottom-color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 10px 35px rgba(71, 85, 105, .08);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}
.header-ribbon { background: rgba(8, 15, 28, .94); }
.nav-links > a:not(.btn):hover { background: rgba(255, 255, 255, .62); }
.search-panel,
.panel,
.listing-card,
.empty-state,
.table-panel,
.stat-box,
.company-stat-band,
.company-filter-bar,
.modal-dialog {
  border-color: var(--glass-border);
  background: var(--glass-surface);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}
.listing-card { overflow: hidden; }
.v2-card { background: rgba(255, 255, 255, .7); }
.v2-card:hover {
  border-color: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 56px rgba(65, 78, 98, .16), inset 0 1px 0 rgba(255, 255, 255, .96);
}
.card-specs span,
.detail-specs div,
.contact-meta-list div { border-color: rgba(226, 232, 240, .72); background: rgba(255, 255, 255, .56); }
input,
select,
textarea { background-color: rgba(255, 255, 255, .7); }
.v2-search-panel input,
.v2-search-panel select { background-color: rgba(255, 255, 255, .08); }
input:focus,
select:focus,
textarea:focus { background-color: rgba(255, 255, 255, .94); }
.v2-search-panel input:focus,
.v2-search-panel select:focus { background-color: rgba(255, 255, 255, .14); }
.btn-secondary,
.btn-archive { border-color: rgba(255, 255, 255, .92); background: rgba(255, 255, 255, .68); backdrop-filter: blur(14px); }
.btn-secondary:hover,
.btn-archive:hover { background: rgba(255, 255, 255, .92); }
.stat-box::before { border-radius: 0 999px 999px 0; }
.dashboard-row,
.moderation-row,
.form-block { border-color: rgba(255, 255, 255, .82); background: rgba(255, 255, 255, .48); }
.table-panel th { background: rgba(241, 245, 249, .88); backdrop-filter: blur(16px); }
.table-panel tbody tr:hover { background: rgba(255, 255, 255, .52); }
.empty-state { background: rgba(255, 255, 255, .52); }
.flash { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.mobile-bottom-nav { border-top-color: rgba(255, 255, 255, .86); background: rgba(255, 255, 255, .82); backdrop-filter: blur(20px) saturate(135%); -webkit-backdrop-filter: blur(20px) saturate(135%); }
.company-stat-band > div { background: rgba(255, 255, 255, .38); }
.company-stat-band .company-stat-pending { background: rgba(255, 251, 235, .72); }
.site-footer { background: rgba(8, 15, 28, .96); backdrop-filter: blur(20px); }
.admin-surface {
  background:
    radial-gradient(circle at 88% 4%, rgba(191, 219, 254, .4), transparent 28rem),
    linear-gradient(145deg, #f4f7fb, #e9eff6 55%, #f5f7fa);
  background-attachment: fixed;
}

@media (max-width: 720px) {
  body, .admin-surface { background-attachment: scroll; }
  .search-panel, .panel, .listing-card, .empty-state, .table-panel, .stat-box, .company-stat-band, .company-filter-bar, .modal-dialog { backdrop-filter: blur(16px) saturate(125%); -webkit-backdrop-filter: blur(16px) saturate(125%); }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header,
  .search-panel,
  .panel,
  .listing-card,
  .empty-state,
  .table-panel,
  .stat-box,
  .company-stat-band,
  .company-filter-bar,
  .modal-dialog,
  .mobile-bottom-nav { background-color: rgba(255, 255, 255, .96); }
}

/* Reusable minimal glass surfaces and listing detail composition */
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.glass-surface {
  background: var(--glass-surface, rgba(255, 255, 255, .72));
  border: 1px solid var(--glass-border, rgba(255, 255, 255, .86));
  box-shadow: var(--glass-shadow, 0 18px 48px rgba(65, 78, 98, .11), inset 0 1px 0 rgba(255, 255, 255, .88));
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}
.glass-icon-button {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 16px;
  color: #334155;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 10px 24px rgba(71, 85, 105, .1), inset 0 1px rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  transition: transform .16s ease, background .16s ease, color .16s ease;
}
.glass-icon-button:hover { transform: translateY(-1px); background: rgba(255, 255, 255, .9); color: var(--favorite); }
.glass-icon-button.is-active { color: var(--favorite); background: rgba(255, 241, 242, .86); }
.glass-icon-button svg { width: 21px; height: 21px; }
.glass-chip {
  min-width: 0;
  display: grid;
  gap: .2rem;
  padding: .78rem .9rem;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 16px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 8px 22px rgba(71, 85, 105, .07), inset 0 1px rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
}
.glass-chip strong { color: #64748b; font-size: .72rem; font-weight: 720; }
.glass-chip span { overflow: hidden; color: #111827; font-size: .92rem; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }

.page-listing-detail {
  background:
    radial-gradient(circle at 88% 8%, rgba(186, 217, 255, .32), transparent 29rem),
    radial-gradient(circle at 8% 2%, rgba(224, 237, 228, .72), transparent 31rem),
    linear-gradient(180deg, #fafbf9 0, var(--ux-canvas) 42rem);
  background-attachment: fixed;
}
.page-listing-detail .site-header { border-bottom-color: rgba(255, 255, 255, .78); background: rgba(255, 255, 255, .76); box-shadow: 0 10px 35px rgba(71, 85, 105, .08); backdrop-filter: blur(22px) saturate(135%); }
.page-listing-detail .header-ribbon { background: rgba(8, 15, 28, .94); }
.page-listing-detail .site-footer { margin-top: 2rem; }
.detail-glass-hero { padding-top: 1.25rem; }
.detail-breadcrumb { display: flex; align-items: center; gap: .55rem; margin-bottom: .7rem; color: #64748b; font-size: .84rem; font-weight: 680; }
.detail-breadcrumb a { color: #475569; }
.detail-breadcrumb a:hover { color: var(--trust-blue); }
.detail-heading { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.15rem 1.3rem; border-radius: 24px; }
.detail-heading-copy { min-width: 0; }
.detail-heading h1 { margin: .35rem 0 .3rem; color: #0f172a; font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.05; letter-spacing: -.04em; }
.detail-heading .detail-header-meta { gap: .45rem; }
.detail-heading .eyebrow { color: #475569; }
.detail-heading .detail-submeta { margin: 0; color: #64748b; font-size: .86rem; }
.detail-heading-actions { display: flex; align-items: center; gap: .55rem; flex: 0 0 auto; }
.detail-heading-actions form { display: flex; }
.detail-mobile-price { display: none; align-items: baseline; gap: .35rem; margin-top: .7rem; }
.detail-mobile-price strong { color: #b91c2c; font-size: 1.55rem; }
.detail-mobile-price span { color: #64748b; font-weight: 700; }
.glass-detail-layout { grid-template-columns: minmax(0, 1.72fr) minmax(310px, .62fr); gap: 1.25rem; padding-top: 1rem; }
.glass-detail-layout .detail-main-column { min-width: 0; }
.glass-detail-layout .gallery-panel { padding: .6rem; border-radius: 26px; }
.glass-detail-layout .gallery-stage { border-radius: 20px; background: rgba(255, 255, 255, .55); }
.glass-detail-layout .main-gallery-image { aspect-ratio: 16 / 9.5; }
.glass-detail-layout .gallery-nav { border: 1px solid rgba(255, 255, 255, .9); color: #334155; background: rgba(255, 255, 255, .68); box-shadow: 0 10px 26px rgba(15, 23, 42, .15); backdrop-filter: blur(14px); }
.glass-detail-layout .gallery-count { right: .9rem; bottom: .9rem; left: auto; background: rgba(15, 23, 42, .78); backdrop-filter: blur(10px); }
.glass-detail-layout .thumb-strip-shell { padding: 0 .15rem .15rem; }
.glass-detail-layout .thumb-strip { gap: .65rem; }
.glass-detail-layout .thumb-btn { flex-basis: 92px; width: 92px; border-radius: 14px; opacity: .76; transition: opacity .16s ease, border-color .16s ease, transform .16s ease; }
.glass-detail-layout .thumb-btn:hover, .glass-detail-layout .thumb-btn.active { opacity: 1; transform: translateY(-1px); }
.glass-detail-layout .thumb-btn.active { border-color: #be123c; box-shadow: 0 0 0 3px rgba(190, 18, 60, .1); }
.detail-quick-specs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .65rem; }
.glass-detail-layout .detail-main { padding: 1rem; border-radius: 24px; }
.glass-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.glass-info-grid .detail-section-box { margin: 0; padding: 1rem; border-color: rgba(226, 232, 240, .72); border-radius: 18px; background: rgba(248, 250, 252, .58); box-shadow: none; }
.glass-info-grid .detail-description-section, .glass-info-grid .detail-trust-section { grid-column: 1 / -1; }
.glass-info-grid .detail-section-head { display: grid; gap: .18rem; margin-bottom: .75rem; }
.glass-info-grid .detail-section-head h2 { font-size: 1.08rem; }
.glass-info-grid .detail-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem; }
.glass-info-grid .detail-specs div { min-height: 68px; padding: .72rem .78rem; border-color: rgba(226, 232, 240, .76); background: rgba(255, 255, 255, .66); }
.glass-info-grid .detail-description { color: #334155; }
.detail-trust-section > p { margin-bottom: 0; }
.glass-detail-layout .detail-sidebar { display: grid; gap: .85rem; align-content: start; }
.detail-price-card { display: flex; align-items: end; justify-content: space-between; gap: 1rem; padding: 1rem 1.1rem; border-radius: 22px; }
.detail-price-card > span { color: #64748b; font-size: .78rem; font-weight: 720; }
.detail-price-card strong { color: #b91c2c; font-size: 2.15rem; line-height: 1; letter-spacing: -.04em; }
.detail-price-card small { color: #334155; font-size: .9rem; font-weight: 760; letter-spacing: 0; }
.glass-detail-layout .contact-box { display: grid; gap: .85rem; padding: 1.1rem; border-top: 1px solid rgba(255, 255, 255, .9); border-radius: 24px; box-shadow: var(--glass-shadow); }
.contact-company-head { display: flex; align-items: center; gap: .75rem; }
.contact-company-mark { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 16px; color: #fff; background: linear-gradient(145deg, #be123c, #881337); box-shadow: 0 10px 24px rgba(190, 18, 60, .2); font-size: 1.15rem; font-weight: 850; }
.contact-company-head h2 { margin: .18rem 0 0; color: #0f172a; font-size: 1.18rem; }
.contact-company-head .eyebrow { color: #15803d; }
.glass-detail-layout .contact-box > p { margin: 0; font-size: .9rem; }
.glass-detail-layout .contact-meta-list { display: grid; gap: .55rem; }
.glass-detail-layout .contact-meta-list div { padding: .75rem .8rem; border-color: rgba(255, 255, 255, .86); border-radius: 16px; background: rgba(255, 255, 255, .58); }
.glass-detail-layout .contact-meta-list strong { color: #64748b; font-size: .72rem; }
.glass-detail-layout .contact-meta-list span { font-weight: 760; }
.glass-detail-layout .btn { border-radius: 15px; }
.detail-call-btn { min-height: 52px; color: #fff; background: linear-gradient(180deg, #273444, #111827); box-shadow: 0 10px 24px rgba(15, 23, 42, .16); }
.detail-call-btn:hover { color: #fff; background: #0f172a; }
.page-listing-detail .mobile-contact-bar { background: rgba(248, 250, 252, .76); border-top-color: rgba(255, 255, 255, .88); backdrop-filter: blur(20px) saturate(135%); }

@media (max-width: 1120px) {
  .detail-quick-specs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 821px) and (max-width: 980px) {
  .glass-detail-layout { grid-template-columns: minmax(0, 1.55fr) minmax(270px, .7fr); }
}
@media (max-width: 820px) {
  .detail-heading { align-items: flex-start; }
  .detail-mobile-price { display: flex; }
  .glass-detail-layout { grid-template-columns: 1fr; }
  .glass-detail-layout .detail-sidebar { order: 2; }
  .detail-price-card { display: none; }
  .glass-info-grid { grid-template-columns: 1fr; }
  .glass-info-grid .detail-description-section, .glass-info-grid .detail-trust-section { grid-column: auto; }
}
@media (max-width: 720px) {
  .page-listing-detail { background-attachment: scroll; }
  .detail-glass-hero { padding-top: .65rem; }
  .detail-breadcrumb { margin: 0 .25rem .55rem; font-size: .76rem; }
  .detail-heading { padding: .9rem; border-radius: 19px; }
  .detail-heading h1 { font-size: 1.55rem; }
  .detail-heading .trust-source { max-width: 155px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .detail-heading-actions { gap: .4rem; }
  .glass-icon-button { width: 44px; height: 44px; min-width: 44px; border-radius: 14px; }
  .glass-detail-layout { padding-top: .7rem; }
  .glass-detail-layout .gallery-panel { margin-inline: -.1rem; padding: .35rem; border-radius: 19px; }
  .glass-detail-layout .gallery-stage { border-radius: 15px; }
  .glass-detail-layout .main-gallery-image { aspect-ratio: 4 / 3; }
  .glass-detail-layout .thumb-btn { flex-basis: 72px; width: 72px; border-radius: 11px; }
  .detail-quick-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem; }
  .detail-quick-specs .glass-chip:last-child { grid-column: 1 / -1; }
  .glass-detail-layout .detail-main { padding: .7rem; border-radius: 19px; }
  .glass-info-grid .detail-section-box { padding: .85rem; border-radius: 15px; }
  .glass-info-grid .detail-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .glass-info-grid .detail-specs div { min-height: 64px; padding: .65rem; }
  .glass-detail-layout .contact-box { border-radius: 19px; }
}
@media (max-width: 420px) {
  .detail-heading { gap: .75rem; }
  .detail-heading .detail-header-meta { align-items: flex-start; }
  .detail-heading .eyebrow { width: 100%; }
  .glass-info-grid .detail-specs { grid-template-columns: 1fr 1fr; }
}

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

/* Premium public marketplace composition */
.page-home .top-search-section { padding-top: clamp(.75rem, 2vw, 1.5rem); }
.page-home .v2-search-panel {
  isolation: isolate;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 4vw, 3.25rem);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 30px;
  /* Hero background: user-provided image (fallback) + brand gradients */
  background-image:
    url("/static/demo_images/hero-bg.jpg"),
    radial-gradient(circle at 82% 36%, rgba(11, 203, 198, .23), transparent 19rem),
    linear-gradient(120deg, rgba(5, 12, 25, .86), rgba(15, 30, 54, .78) 58%, rgba(21, 42, 70, .7));
  background-size: cover, 60% auto, auto;
  background-position: right center, right 36% center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-blend-mode: overlay, normal, normal;
  box-shadow: 0 32px 80px rgba(15, 23, 42, .25), inset 0 1px 0 rgba(255, 255, 255, .12);
}
.page-home .v2-search-panel::after { display: none; }
.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 88%);
}
.hero-aurora {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}
.hero-aurora-one {
  width: 380px;
  height: 380px;
  right: -90px;
  top: -190px;
  background: radial-gradient(circle, rgba(249, 115, 22, .46), rgba(249, 115, 22, 0) 70%);
}
.hero-aurora-two {
  width: 310px;
  height: 310px;
  left: 38%;
  bottom: -260px;
  background: radial-gradient(circle, rgba(59, 130, 246, .28), rgba(59, 130, 246, 0) 70%);
}
.hero-eyebrow { display: inline-flex; align-items: center; gap: .45rem; }
.hero-eyebrow > span { width: 7px; height: 7px; border-radius: 50%; background: #fb923c; box-shadow: 0 0 0 5px rgba(251, 146, 60, .12), 0 0 18px rgba(251, 146, 60, .75); }
.page-home .v2-search-panel h1 { max-width: 760px; margin-top: .45rem; font-size: clamp(2rem, 5vw, 3.65rem); letter-spacing: -.05em; }
.page-home .v2-search-panel .search-heading p { max-width: 760px; font-size: clamp(.92rem, 1.4vw, 1.05rem); }
.hero-proof { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.hero-proof > span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 34px;
  padding: .38rem .7rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  font-size: .78rem;
  font-weight: 650;
}
.hero-proof strong { color: #fff; font-size: .84rem; }
.page-home .search-grid-main {
  padding: .65rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.page-home .v2-search-panel input,
.page-home .v2-search-panel select { border-color: rgba(255,255,255,.2); background: rgba(4, 12, 25, .42); }
.page-home .search-submit { gap: .5rem; min-width: 142px; }
.page-home .search-submit svg { width: 19px; height: 19px; }
.page-home .trust-rail {
  margin-top: -1.15rem;
  margin-inline: clamp(.6rem, 2vw, 1.5rem);
  position: relative;
  z-index: 2;
  border-color: rgba(255,255,255,.92);
  border-radius: 20px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 20px 45px rgba(71, 85, 105, .12);
  backdrop-filter: blur(22px) saturate(135%);
}
.page-home .trust-rail-item { background: rgba(255,255,255,.58); }
.page-home .listings-headline { border-bottom: 0; }
.page-home .listings-headline::after { content: ''; flex: 1; height: 1px; margin-bottom: .6rem; background: linear-gradient(90deg, var(--line), transparent); }
.page-home .listing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.35rem; }
.page-home .v2-card {
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 40px rgba(71, 85, 105, .1), inset 0 1px 0 rgba(255,255,255,.95);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.page-home .v2-card:hover { transform: translateY(-7px); box-shadow: 0 28px 60px rgba(51, 65, 85, .17), inset 0 1px 0 #fff; }
.page-home .card-media-wrap { margin: .42rem .42rem 0; border-radius: 17px; overflow: hidden; }
.page-home .card-image-link img { aspect-ratio: 4 / 2.65; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.page-home .v2-card:hover .card-image-link img { transform: scale(1.035); }
.page-home .photo-count-badge { border: 1px solid rgba(255,255,255,.17); }
.card-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 999px; border: 1px solid rgba(255,255,255,.85);
  background: rgba(0,0,0,.42); color: #fff;
  backdrop-filter: blur(10px);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.35rem; z-index: 2; padding: 0;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .18s ease, background .18s ease, transform .18s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.card-carousel-arrow:hover { background: rgba(0,0,0,.6); }
.card-carousel-arrow:focus-visible { opacity: 1; pointer-events: auto; }
.card-carousel-arrow.prev { left: .5rem; }
.card-carousel-arrow.next { right: .5rem; }
.listing-card:hover .card-carousel-arrow,
.listing-card:focus-within .card-carousel-arrow,
.card-carousel-arrow:focus-visible { opacity: 1; pointer-events: auto; }
.listing-card:hover .card-carousel-arrow.prev { transform: translateY(-50%) translateX(2px); }
.listing-card:hover .card-carousel-arrow.next { transform: translateY(-50%) translateX(-2px); }
@media (max-width: 720px) {
  .card-carousel-arrow { opacity: 1; pointer-events: auto; width: 32px; height: 32px; font-size: 1.15rem; }
  .card-carousel-arrow.prev { left: .35rem; }
  .card-carousel-arrow.next { right: .35rem; }
  .listing-card:hover .card-carousel-arrow.prev { transform: translateY(-50%) translateX(0); }
  .listing-card:hover .card-carousel-arrow.next { transform: translateY(-50%) translateX(0); }
}
.page-home .card-price-row { align-items: baseline; }
.page-home .price { font-size: 1.42rem; }
.card-open-cue { display: inline-flex; align-items: center; gap: .22rem; margin-left: auto; color: var(--primary); font-size: .76rem; font-weight: 800; white-space: nowrap; }
.card-open-cue svg { width: 17px; height: 17px; transition: transform .18s ease; }
.v2-card:hover .card-open-cue svg { transform: translateX(3px); }

@media (max-width: 980px) {
  .page-home .listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .page-home .v2-search-panel { min-height: 0; padding: 1.1rem; border-radius: 22px; }
  .page-home .v2-search-panel h1 { font-size: clamp(1.75rem, 8vw, 2.35rem); }
  .hero-proof > span:last-child { display: none; }
  .page-home .search-grid-main { padding: .55rem; border-radius: 15px; }
  .page-home .trust-rail { margin-top: -.45rem; margin-inline: .35rem; border-radius: 16px; }
  .page-home .listing-grid { grid-template-columns: 1fr; }
  .page-home .v2-card { border-radius: 18px; }
  .page-home .card-media-wrap { border-radius: 14px; }
  .page-home .listings-headline::after { display: none; }
}

/* SürQaytar brand system */
:root {
  --bg: #f3f8fa;
  --surface-soft: #eaf4f5;
  --surface-strong: #d9e9eb;
  --text: #071d35;
  --muted: #52677a;
  --line: #d9e5e8;
  --line-strong: #b9ccd1;
  --primary: #08aeb4;
  --primary-dark: #07858e;
  --trust-blue: #087d98;
  --dark: #061b33;
  --shadow: 0 16px 40px rgba(6, 27, 51, .09);
  --shadow-hover: 0 26px 62px rgba(6, 27, 51, .17);
}

body {
  background:
    radial-gradient(circle at 8% 0%, rgba(8, 174, 180, .09), transparent 27rem),
    linear-gradient(180deg, #f8fbfc 0%, var(--bg) 48%, #edf5f6 100%);
}

:focus-visible { outline-color: rgba(8, 174, 180, .72); }
.header-ribbon { background: #041528; }
.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 252, 253, .88);
  border-bottom-color: rgba(185, 204, 209, .65);
  box-shadow: 0 10px 34px rgba(6, 27, 51, .05);
  backdrop-filter: blur(22px) saturate(145%);
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: #14d6cf;
  background: linear-gradient(145deg, #092c4f, #04182c);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.13), 0 10px 24px rgba(5, 30, 55, .23);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.brand:hover .brand-mark { transform: rotate(-7deg) scale(1.04); box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 14px 32px rgba(5, 30, 55, .3); }
.brand-mark svg { width: 31px; height: 31px; }
.brand-text strong { color: #061b33; font-size: 1.24rem; font-weight: 900; letter-spacing: -.055em; }
.brand-text strong span { color: var(--primary-dark); }
.brand-text small { font-size: .67rem; font-weight: 780; letter-spacing: .14em; text-transform: uppercase; }
.nav-links > a:not(.btn):hover { color: var(--primary-dark); background: rgba(8, 174, 180, .08); }

.btn-primary {
  color: #03222a;
  background: linear-gradient(135deg, #18ddd4, #08aeb4);
  border-color: #07939c;
  box-shadow: 0 10px 24px rgba(8, 174, 180, .24), inset 0 1px 0 rgba(255,255,255,.38);
}
.btn-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #08c6c4, #07858e);
  box-shadow: 0 14px 30px rgba(8, 133, 142, .3);
}
.eyebrow { color: var(--primary-dark); }

.page-home .v2-search-panel {
  min-height: 410px;
  border-color: rgba(24, 221, 212, .18);
  /* Keep the hero image as the first background layer so it shows through */
  background-image:
    url("/static/demo_images/hero-bg.jpg"),
    radial-gradient(circle at 82% 36%, rgba(11, 203, 198, .23), transparent 19rem),
    linear-gradient(118deg, rgba(4,9,20,0.55) 0%, rgba(7,34,66,0.6) 57%, rgba(6,69,91,0.55) 100%);
  background-size: cover, 52% auto, auto;
  background-position: right center, right 36% center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-blend-mode: overlay, normal, normal;
  box-shadow: 0 34px 86px rgba(4, 21, 40, .3), inset 0 1px 0 rgba(255,255,255,.13);
}
.page-home .v2-search-panel::before {
  content: '';
  position: absolute;
  z-index: -1;
  right: -7%;
  bottom: -62%;
  width: 52%;
  aspect-ratio: 1;
  border: 3px solid rgba(36, 227, 219, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(36, 227, 219, .035), 0 0 0 58px rgba(36, 227, 219, .025);
}
.hero-grid {
  opacity: .12;
  background-image:
    linear-gradient(rgba(22, 210, 205, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 210, 205, .18) 1px, transparent 1px);
}
.hero-aurora-one {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(14, 208, 203, .5), rgba(14, 208, 203, 0) 69%);
  animation: brand-float 8s ease-in-out infinite alternate;
}
.hero-aurora-two {
  background: radial-gradient(circle, rgba(40, 139, 185, .34), rgba(40, 139, 185, 0) 70%);
  animation: brand-float 11s ease-in-out infinite alternate-reverse;
}
.hero-eyebrow > span {
  background: #1de0d6;
  box-shadow: 0 0 0 5px rgba(29, 224, 214, .12), 0 0 20px rgba(29, 224, 214, .82);
  animation: brand-pulse 2.4s ease-out infinite;
}
.page-home .v2-search-panel h1 { max-width: 820px; font-weight: 870; }
.page-home .v2-search-panel .search-heading p { color: #c6dce4; }
.page-home .search-grid-main {
  border-color: rgba(41, 222, 214, .18);
  background: rgba(2, 18, 34, .38);
}
.page-home .v2-search-panel input,
.page-home .v2-search-panel select {
  border-color: rgba(112, 216, 214, .25);
  background: rgba(2, 16, 30, .58);
}
.page-home .v2-search-panel input:focus,
.page-home .v2-search-panel select:focus { border-color: #21d8d0; box-shadow: 0 0 0 4px rgba(33, 216, 208, .13); }
.page-home .trust-rail-icon { color: var(--primary-dark); background: #e1fbf9; }
.page-home .trust-rail { border-color: rgba(8, 174, 180, .16); }

.page-home .v2-card {
  border-color: rgba(185, 204, 209, .78);
  background: rgba(255,255,255,.86);
}
.page-home .v2-card::before {
  content: '';
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}
.page-home .v2-card:hover { border-color: rgba(8, 174, 180, .45); }
.page-home .v2-card:hover::before { opacity: 1; }
.page-home .card-media-wrap { background: #061b33; }
.page-home .card-image-link::after {
  content: '';
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(4, 21, 40, .42));
  pointer-events: none;
}
.price { color: #061b33; }
.price small { color: var(--muted); }
.instant-contact {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  color: var(--primary-dark);
  font-size: .72rem;
  font-weight: 820;
}
.instant-contact::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #12b981; box-shadow: 0 0 0 4px rgba(18, 185, 129, .1); }
.card-city::before { color: var(--primary); }
.card-open-cue { color: var(--primary-dark); }
.trust-success { color: #076b68; background: #dcfaf7; }
.mobile-bottom-nav a.active { color: var(--primary-dark); background: #def9f7; }
.site-footer { background: linear-gradient(145deg, #041528, #072a45); border-top-color: rgba(22, 210, 205, .2); }
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text strong span { color: #20d8d0; }

@keyframes brand-float {
  from { transform: translate3d(-2%, -2%, 0) scale(.96); }
  to { transform: translate3d(4%, 5%, 0) scale(1.08); }
}
@keyframes brand-pulse {
  0% { box-shadow: 0 0 0 0 rgba(29, 224, 214, .42), 0 0 20px rgba(29, 224, 214, .8); }
  70%, 100% { box-shadow: 0 0 0 11px rgba(29, 224, 214, 0), 0 0 20px rgba(29, 224, 214, .45); }
}

/* 2026 public experience: editorial marketplace layer */
:root {
  --ux-ink: #12211f;
  --ux-muted: #687572;
  --ux-canvas: #f5f7f4;
  --ux-paper: #ffffff;
  --ux-line: #dfe5e1;
  --ux-accent: #176b5b;
  --ux-accent-dark: #0f4f43;
  --ux-warm: #e9b872;
  --ux-radius: 24px;
  --ux-shadow: 0 24px 70px rgba(25, 45, 40, .09);
}

body:not(.admin-surface) {
  font-family: "Manrope", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ux-ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(224, 237, 228, .72), transparent 31rem),
    linear-gradient(180deg, #fafbf9 0, var(--ux-canvas) 42rem);
}
body:not(.admin-surface) .container { width: min(1280px, calc(100% - 3rem)); }
body:not(.admin-surface) .site-header {
  position: sticky;
  top: 0;
  border-bottom: 1px solid rgba(18, 33, 31, .07);
  background: rgba(250, 251, 249, .88);
  box-shadow: none;
  backdrop-filter: blur(20px) saturate(145%);
}
body:not(.admin-surface) .header-ribbon { display: none; }
body:not(.admin-surface) .nav-shell { min-height: 82px; }
body:not(.admin-surface) .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: var(--ux-accent-dark);
  box-shadow: 0 10px 24px rgba(15, 79, 67, .2);
}
body:not(.admin-surface) .brand-text strong { font-size: 1.12rem; letter-spacing: -.04em; }
body:not(.admin-surface) .brand-text small { font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
body:not(.admin-surface) .nav-links { gap: .35rem; }
body:not(.admin-surface) .nav-links > a:not(.btn) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 .9rem;
  border-radius: 999px;
  color: #40504c;
  font-size: .88rem;
  font-weight: 650;
}
body:not(.admin-surface) .nav-links > a:not(.btn):hover { color: var(--ux-ink); background: #edf1ee; }
body:not(.admin-surface) .btn {
  min-height: 50px;
  border-radius: 14px;
  font-size: .9rem;
  font-weight: 750;
  letter-spacing: -.01em;
}
body:not(.admin-surface) .btn svg, body:not(.admin-surface) [data-lucide] { width: 18px; height: 18px; flex: 0 0 auto; }
body:not(.admin-surface) .btn-primary {
  color: #fff;
  background: var(--ux-accent);
  box-shadow: 0 10px 24px rgba(23, 107, 91, .18);
}
body:not(.admin-surface) .btn-primary:hover { background: var(--ux-accent-dark); box-shadow: 0 14px 30px rgba(23, 107, 91, .24); }

.page-home .top-search-section { padding-top: 1.4rem; }
.page-home .v2-search-panel {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4.5vw, 4.5rem);
  border: 0;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(8, 31, 28, .95) 0%, rgba(8, 31, 28, .83) 48%, rgba(8, 31, 28, .25) 100%),
    url("/static/demo_images/hero-bg.jpg") center 54% / cover no-repeat,
    #102c28;
  box-shadow: 0 34px 90px rgba(13, 42, 37, .2);
}
.page-home .v2-search-panel::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(68, 173, 148, .2), transparent 28rem),
    linear-gradient(180deg, transparent 55%, rgba(4, 20, 17, .35));
}
.page-home .v2-search-panel .search-heading { max-width: 860px; margin-bottom: 1.8rem; }
.page-home .hero-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .48rem .72rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #dcebe7;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}
.page-home .hero-eyebrow::before { display: none; }
.page-home .v2-search-panel h1 {
  max-width: 850px;
  margin: .9rem 0 0;
  color: #fff;
  font-size: clamp(2.35rem, 5.8vw, 5rem);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.065em;
}
.page-home .v2-search-panel .search-heading p {
  max-width: 660px;
  margin-top: 1.15rem;
  color: #c8d8d4;
  font-size: 1rem;
  line-height: 1.7;
}
.page-home .hero-proof { margin-top: 1.25rem; gap: .7rem; }
.page-home .hero-proof > span {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  padding: .45rem .65rem;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  color: #d8e5e2;
  background: rgba(4, 20, 17, .25);
  font-size: .75rem;
  backdrop-filter: blur(10px);
}
.page-home .hero-proof strong { color: #fff; font-weight: 700; }
.page-home .search-grid-main {
  grid-template-columns: 1.05fr 1.05fr .9fr auto;
  gap: .35rem;
  padding: .45rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  background: rgba(250, 252, 250, .94);
  box-shadow: 0 18px 45px rgba(0, 18, 14, .18);
  backdrop-filter: blur(20px);
}
.page-home .search-grid-main label { position: relative; gap: 0; padding: .3rem .8rem; }
.page-home .search-grid-main label + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  width: 1px;
  height: 70%;
  background: var(--ux-line);
}
.page-home .search-grid-main label > span { padding-left: .25rem; color: var(--ux-muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; }
.page-home .search-grid-main select {
  min-height: 38px;
  padding: .25rem 2rem .25rem .2rem;
  border: 0;
  color: var(--ux-ink);
  background-color: transparent;
  box-shadow: none;
  font-weight: 700;
}
.brand-picker { position: relative; min-width: 0; }
.brand-picker-native { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.brand-picker-trigger {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
  padding: .45rem .7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ux-ink, #172033);
  background: #fff;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.brand-picker-selection, .brand-picker-menu button { display: flex; align-items: center; gap: .65rem; min-width: 0; }
.brand-picker .brand-name, .brand-picker-menu .brand-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.brand-option-count { min-width: 1.65rem; margin-left: auto; padding: .14rem .4rem; border-radius: 999px; color: #52635f; background: #e8eeec; font-size: .7rem; font-weight: 800; line-height: 1.35; text-align: center; }
.brand-picker img, .brand-picker-menu img, .brand-logo-all, .brand-logo-fallback { width: 26px; height: 26px; flex: 0 0 26px; object-fit: contain; }
.brand-picker img[hidden], .brand-picker-menu img[hidden], .brand-logo-fallback[hidden] { display: none !important; }
.brand-logo-all, .brand-logo-fallback { display: inline-flex; align-items: center; justify-content: center; border-radius: 7px; background: #eef3f1; color: var(--ux-accent, #176b5b); }
.brand-logo-all svg { width: 16px; height: 16px; flex: 0 0 16px; }
.brand-logo-fallback { font-size: .72rem; font-weight: 850; }
.brand-picker-chevron { width: 17px; height: 17px; flex: 0 0 auto; transition: transform .16s ease; }
.brand-picker.is-open .brand-picker-chevron { transform: rotate(180deg); }
.brand-picker-menu {
  position: absolute;
  top: calc(100% + .45rem);
  left: 0;
  z-index: 80;
  width: max(100%, 220px);
  max-height: 300px;
  overflow-y: auto;
  padding: .4rem;
  border: 1px solid #dce4e1;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .18);
}
.brand-picker-menu.is-portaled {
  position: fixed;
  z-index: 85;
}
.brand-picker-menu button {
  width: 100%;
  padding: .6rem .65rem;
  border: 0;
  border-radius: 9px;
  color: #263633;
  background: transparent;
  font: inherit;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}
.brand-picker-menu button:hover, .brand-picker-menu button:focus-visible { outline: none; background: #f0f5f3; }
.brand-picker-menu button[aria-selected="true"] { color: var(--ux-accent, #176b5b); background: #e8f2ef; }
.page-home .search-grid-main .brand-picker-trigger { min-height: 38px; padding: .25rem .2rem; border: 0; background: transparent; box-shadow: none; }
.page-home .search-grid-main .brand-picker-menu { left: -.6rem; }
.company-filter-bar .brand-picker-trigger { min-height: 44px; background: #f7f9f7; }
.filter-result-summary { width: fit-content; display: flex; align-items: center; gap: .4rem; margin-top: .75rem; padding: .45rem .65rem; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: #dcebe7; background: rgba(4,20,17,.3); font-size: .78rem; backdrop-filter: blur(10px); }
.filter-result-summary svg { width: 15px; height: 15px; }
.filter-result-summary strong { color: #fff; font-size: .9rem; }
.page-home .search-submit { min-width: 132px; height: 58px; align-self: center; border-radius: 16px; }
.quick-searches {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .85rem;
  color: rgba(255,255,255,.72);
  font-size: .75rem;
}
.quick-searches a {
  padding: .35rem .6rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.07);
}
.quick-searches a:hover { background: rgba(255,255,255,.14); }
.page-home .advanced-search { border-top-color: rgba(255,255,255,.12); }
.page-home .trust-rail {
  max-width: calc(100% - 3rem);
  margin: -1.35rem auto 0;
  padding: .7rem;
  border: 1px solid rgba(18, 33, 31, .08);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--ux-shadow);
}
.page-home .trust-rail-item { border-radius: 15px; background: transparent; }
.page-home .trust-rail-icon { color: var(--ux-accent); background: #e8f2ee; }
.page-home .listings-section { padding-top: 2.5rem; }
.page-home .listings-headline { margin-bottom: 1.4rem; }
.page-home .listings-headline::after { display: none; }
.page-home .listings-headline h2,
.page-listing-detail .section-head h2 {
  margin-top: .25rem;
  color: var(--ux-ink);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -.045em;
}
.page-home .listings-headline .eyebrow,
.page-listing-detail .section-head .eyebrow { color: var(--ux-accent); text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; }
.page-home .listing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }

body:not(.admin-surface) .v2-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 33, 31, .09);
  border-radius: var(--ux-radius);
  background: var(--ux-paper);
  box-shadow: 0 10px 35px rgba(24, 46, 40, .055);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
}
body:not(.admin-surface) .v2-card::before { display: none; }
body:not(.admin-surface) .v2-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 107, 91, .22);
  box-shadow: 0 25px 60px rgba(24, 46, 40, .13);
}
body:not(.admin-surface) .card-media-wrap { margin: 0; border-radius: 0; background: #dfe8e3; }
body:not(.admin-surface) .card-image-link img { aspect-ratio: 1.42 / 1; transition: transform .65s cubic-bezier(.2,.75,.2,1); }
body:not(.admin-surface) .v2-card:hover .card-image-link img { transform: scale(1.045); }
body:not(.admin-surface) .card-image-link::after { inset: 48% 0 0; background: linear-gradient(transparent, rgba(6, 22, 19, .3)); }
.card-verified-badge,
body:not(.admin-surface) .photo-count-badge {
  position: absolute;
  bottom: .8rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  min-height: 30px;
  padding: .35rem .58rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 27, 23, .68);
  backdrop-filter: blur(12px);
  font-size: .68rem;
  font-weight: 700;
}
.card-verified-badge { left: .8rem; }
body:not(.admin-surface) .photo-count-badge { right: .8rem; left: auto; }
.card-verified-badge svg, body:not(.admin-surface) .photo-count-badge svg { width: 14px; height: 14px; }
body:not(.admin-surface) .card-favorite-form { top: .75rem; right: .75rem; }
body:not(.admin-surface) .favorite-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-color: rgba(255,255,255,.6);
  color: #223b35;
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 25px rgba(7, 24, 20, .14);
  backdrop-filter: blur(12px);
}
body:not(.admin-surface) .favorite-btn.is-active { color: #c4435c; background: #fff; }
body:not(.admin-surface) .v2-card-body { gap: .9rem; padding: 1.1rem 1.15rem 1.2rem; }
.card-kicker { display: flex; align-items: center; justify-content: space-between; gap: .7rem; color: var(--ux-muted); font-size: .7rem; font-weight: 650; }
.card-kicker span { display: inline-flex; align-items: center; gap: .3rem; }
.card-kicker svg { width: 14px; height: 14px; color: var(--ux-accent); }
.card-title-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .7rem; align-items: start; }
body:not(.admin-surface) .card-title { font-size: 1rem; font-weight: 750; letter-spacing: -.025em; }
body:not(.admin-surface) .price { color: var(--ux-ink); font-size: 1.12rem; font-weight: 800; white-space: nowrap; }
body:not(.admin-surface) .price small { display: block; margin-top: .12rem; color: var(--ux-muted); font-size: .63rem; font-weight: 600; text-align: right; }
body:not(.admin-surface) .card-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .35rem; }
body:not(.admin-surface) .card-specs span {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: .25rem;
  padding: .55rem .25rem;
  border: 0;
  border-radius: 12px;
  color: #53615e;
  background: #f3f6f4;
  font-size: .65rem;
  white-space: nowrap;
}
body:not(.admin-surface) .card-specs svg { width: 15px; height: 15px; color: var(--ux-accent); }
.card-company-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .65rem;
  padding-top: .85rem;
  border-top: 1px solid #edf0ee;
}
.company-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--ux-accent-dark);
  background: #e6f0ec;
  font-size: .76rem;
  font-weight: 800;
}
.card-company-row div { min-width: 0; display: grid; }
.card-company-row .company-profile-link, .card-company-row div > span { overflow: hidden; font-size: .72rem; font-weight: 750; text-overflow: ellipsis; white-space: nowrap; }
.card-company-row small { font-size: .62rem; }
body:not(.admin-surface) .card-open-cue {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-left: 0;
  border-radius: 50%;
  color: var(--ux-accent);
  background: #edf4f1;
}
body:not(.admin-surface) .card-open-cue svg { width: 16px; height: 16px; }

.page-listing-detail .detail-glass-hero { padding-top: 1.5rem; }
.page-listing-detail .detail-breadcrumb a { display: inline-flex; align-items: center; gap: .35rem; }
.page-listing-detail .detail-heading {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.page-listing-detail .detail-heading h1 { font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 600; letter-spacing: -.06em; }
.page-listing-detail .trust-badge { gap: .3rem; }
.page-listing-detail .trust-badge svg { width: 14px; height: 14px; }
.page-listing-detail .premium-detail-layout { grid-template-columns: minmax(0, 1.55fr) minmax(310px, .62fr); gap: 1.4rem; }
.page-listing-detail .gallery-panel { overflow: hidden; padding: .55rem; border: 1px solid rgba(18,33,31,.08); border-radius: 28px; box-shadow: var(--ux-shadow); }
.page-listing-detail .gallery-stage { border-radius: 22px; }
.page-listing-detail .main-gallery-image { aspect-ratio: 16 / 10.2; }
.page-listing-detail .thumb-strip-shell { padding: .25rem .25rem 0; }
.page-listing-detail .thumb-btn { flex-basis: 74px; width: 74px; border-radius: 10px; }
.page-listing-detail .thumb-btn.active { border-color: var(--ux-accent); }
.page-listing-detail .detail-quick-specs { grid-template-columns: repeat(5, 1fr); gap: .6rem; }
.page-listing-detail .glass-chip {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .8rem;
  border: 1px solid rgba(18,33,31,.08);
  border-radius: 17px;
  background: rgba(255,255,255,.75);
  box-shadow: none;
}
.page-listing-detail .glass-chip > svg { width: 20px; height: 20px; color: var(--ux-accent); }
.page-listing-detail .glass-chip > span { display: grid; gap: .15rem; color: var(--ux-ink); font-size: .76rem; font-weight: 650; }
.page-listing-detail .glass-chip strong { color: var(--ux-muted); font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; }
.page-listing-detail .polished-detail-main {
  border: 1px solid rgba(18,33,31,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(24,46,40,.06);
}
.page-listing-detail .detail-section-box { border: 0; border-radius: 17px; background: #f5f7f5; }
.page-listing-detail .detail-price-card,
.page-listing-detail .v2-contact-box {
  border: 1px solid rgba(18,33,31,.09);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 55px rgba(24,46,40,.09);
}
.page-listing-detail .detail-price-card { display: grid; gap: .2rem; }
.page-listing-detail .detail-price-card > span { color: var(--ux-muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.page-listing-detail .detail-price-card > strong { color: var(--ux-ink); font-size: 2.3rem; letter-spacing: -.05em; }
.page-listing-detail .detail-price-card > strong small { font-size: .8rem; letter-spacing: 0; }
.page-listing-detail .contact-company-mark { color: #fff; background: var(--ux-accent); }
.page-listing-detail .btn-whatsapp { background: #176b5b; }
.page-listing-detail .detail-call-btn { color: var(--ux-accent-dark); border: 1px solid #bed8d0; background: #edf5f2; }
.contact-reassurance { display: flex; gap: .5rem; margin: 1rem 0 0; color: var(--ux-muted); font-size: .68rem; line-height: 1.5; }
.contact-reassurance svg { width: 17px; height: 17px; color: var(--ux-accent); }

@media (max-width: 980px) {
  .page-home .listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-listing-detail .premium-detail-layout { grid-template-columns: 1fr; }
  .page-listing-detail .detail-sidebar { display: grid; grid-template-columns: .75fr 1.25fr; gap: 1rem; }
  .page-listing-detail .sticky { position: static; }
}

@media (max-width: 720px) {
  body:not(.admin-surface) .container { width: min(100% - 1rem, 1280px); }
  body:not(.admin-surface) .site-header { position: relative; }
  body:not(.admin-surface) .nav-shell { min-height: 68px; }
  body:not(.admin-surface) .brand-mark { width: 38px; height: 38px; }
  body:not(.admin-surface) .brand-text small { display: none; }
  .page-home .top-search-section { padding-top: .5rem; }
  .page-home .v2-search-panel {
    min-height: 520px;
    justify-content: flex-end;
    padding: 1.25rem;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(7, 28, 24, .28), rgba(7, 28, 24, .95) 62%),
      url("/static/demo_images/hero-bg.jpg") 58% center / cover no-repeat,
      #102c28;
  }
  .page-home .v2-search-panel h1 { font-size: clamp(2.1rem, 11vw, 3.15rem); }
  .page-home .v2-search-panel .search-heading p { font-size: .88rem; line-height: 1.55; }
  .page-home .hero-proof > span { padding: .36rem .5rem; }
  .page-home .hero-proof > span:nth-child(2) { display: none; }
  .page-home .search-grid-main { grid-template-columns: 1fr 1fr; padding: .45rem; border-radius: 18px; }
  .page-home .search-grid-main label { padding: .25rem .55rem; }
  .page-home .search-grid-main label:nth-child(3) { display: none; }
  .page-home .search-grid-main label:nth-child(2)::before { display: block; }
  .page-home .search-submit { grid-column: 1 / -1; width: 100%; height: 52px; }
  .quick-searches { display: none; }
  .page-home .trust-rail { max-width: calc(100% - 1rem); margin-top: -.55rem; overflow-x: auto; justify-content: flex-start; }
  .page-home .trust-rail-item { min-width: 260px; }
  .page-home .listing-grid { grid-template-columns: 1fr; gap: 1rem; }
  body:not(.admin-surface) .card-image-link img { aspect-ratio: 1.55 / 1; }
  .page-listing-detail .detail-heading { padding-inline: .25rem; }
  .page-listing-detail .detail-heading h1 { font-size: 2.15rem; }
  .page-listing-detail .detail-heading .trust-source { display: none; }
  .page-listing-detail .gallery-panel { border-radius: 20px; }
  .page-listing-detail .gallery-stage { border-radius: 15px; }
  .page-listing-detail .main-gallery-image { aspect-ratio: 4 / 3; }
  .page-listing-detail .detail-quick-specs { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .25rem; }
  .page-listing-detail .glass-chip { min-width: 148px; min-height: 78px; scroll-snap-align: start; }
  .page-listing-detail .detail-sidebar { display: block; }
  .page-listing-detail .detail-price-card, .page-listing-detail .v2-contact-box { display: none; }
  .page-listing-detail .mobile-contact-bar {
    left: .5rem;
    right: .5rem;
    bottom: .5rem;
    gap: .45rem;
    padding: .45rem;
    border: 1px solid rgba(18,33,31,.1);
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 50px rgba(15,45,38,.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.admin-surface) .v2-card,
  body:not(.admin-surface) .card-image-link img { transition: none; }
  body:not(.admin-surface) .v2-card:hover { transform: none; }
}

/* Premium vendor microsite */
.page-company-profile .site-header { position: relative; }
.vendor-hero {
  --vendor-cover: none;
  position: relative;
  min-height: 455px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 29, 25, .97) 0%, rgba(7, 29, 25, .88) 48%, rgba(7, 29, 25, .3) 100%),
    var(--vendor-cover) center 48% / cover no-repeat,
    linear-gradient(135deg, #0c332d, #164e43);
}
.vendor-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(72, 177, 151, .2), transparent 30rem),
    linear-gradient(180deg, transparent 60%, rgba(5, 23, 19, .35));
  pointer-events: none;
}
.vendor-hero-inner { position: relative; z-index: 1; padding-top: 1.5rem; padding-bottom: 4.7rem; }
.vendor-breadcrumb { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.7); font-size: .75rem; }
.vendor-breadcrumb a { display: inline-flex; align-items: center; gap: .35rem; color: #fff; }
.vendor-breadcrumb svg { width: 15px; height: 15px; }
.vendor-hero-content { min-height: 335px; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.vendor-brand { display: flex; align-items: center; gap: 1.35rem; min-width: 0; }
.vendor-logo {
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 28px;
  background: rgba(255,255,255,.12);
  box-shadow: 0 25px 60px rgba(0,0,0,.2), inset 0 1px rgba(255,255,255,.2);
  backdrop-filter: blur(18px);
}
.vendor-monogram { display: grid; place-items: center; font-size: 2.7rem; font-weight: 750; }
.vendor-verified {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .42rem .65rem;
  border: 1px solid rgba(185, 242, 225, .2);
  border-radius: 999px;
  color: #d6f7ed;
  background: rgba(30, 128, 105, .2);
  font-size: .68rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}
.vendor-verified svg { width: 15px; height: 15px; }
.vendor-brand-copy h1 {
  max-width: 700px;
  margin: .7rem 0 .35rem;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.065em;
}
.vendor-brand-copy p { display: flex; align-items: center; gap: .35rem; margin: 0; color: #c7d9d4; }
.vendor-brand-copy p svg { width: 16px; height: 16px; }
.vendor-hero-actions { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; justify-content: flex-end; }
.vendor-hero-actions .btn { border-color: rgba(255,255,255,.2); }
.vendor-share-btn { color: #fff; background: rgba(255,255,255,.1); backdrop-filter: blur(12px); }
.vendor-share-btn:hover { background: rgba(255,255,255,.18); }
.vendor-call-btn { color: #12352f; background: #fff; }
.vendor-call-btn:hover { background: #edf5f2; }

.vendor-proof-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -2.65rem;
  overflow: hidden;
  border: 1px solid rgba(18,33,31,.09);
  border-radius: 22px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 24px 65px rgba(19,47,40,.13);
  backdrop-filter: blur(18px);
}
.vendor-proof-grid article {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.1rem 1.25rem;
  border-right: 1px solid #e8ece9;
}
.vendor-proof-grid article:last-child { border-right: 0; }
.vendor-proof-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 13px;
  color: var(--ux-accent);
  background: #e8f2ee;
}
.vendor-proof-icon svg { width: 19px; height: 19px; }
.vendor-proof-grid article > div { display: grid; gap: .12rem; }
.vendor-proof-grid strong { color: var(--ux-ink); font-size: 1.45rem; line-height: 1; letter-spacing: -.04em; }
.vendor-proof-grid article span:last-child { color: var(--ux-muted); font-size: .68rem; font-weight: 650; }

.vendor-page-layout { display: grid; grid-template-columns: minmax(270px, .72fr) minmax(0, 2fr); gap: 1.5rem; padding-top: 3rem; }
.vendor-sidebar { position: sticky; top: 1rem; display: grid; gap: 1rem; align-self: start; }
.vendor-about-card, .vendor-trust-card, .vendor-reviews-card {
  border: 1px solid rgba(18,33,31,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 40px rgba(24,46,40,.055);
}
.vendor-about-card { padding: 1.4rem; }
.vendor-about-card .eyebrow, .vendor-inventory-head .eyebrow { color: var(--ux-accent); font-size: .66rem; letter-spacing: .11em; text-transform: uppercase; }
.vendor-about-card h2 { margin: .45rem 0 .75rem; font-size: 1.35rem; line-height: 1.2; letter-spacing: -.035em; }
.vendor-about-card > p { margin: 0; color: var(--ux-muted); font-size: .82rem; line-height: 1.7; }
.vendor-facts { display: grid; margin-top: 1.15rem; }
.vendor-facts > div { display: grid; grid-template-columns: auto 1fr; gap: .65rem; padding: .82rem 0; border-top: 1px solid #edf0ee; color: var(--ux-ink); font-size: .78rem; font-weight: 700; }
.vendor-facts > div > svg { width: 17px; height: 17px; margin-top: .15rem; color: var(--ux-accent); }
.vendor-facts span { display: grid; gap: .12rem; }
.vendor-facts small { color: var(--ux-muted); font-size: .62rem; font-weight: 600; }
.vendor-facts a { color: var(--ux-accent-dark); }
.vendor-trust-card, .vendor-reviews-card { padding: 1.1rem; }
.vendor-trust-card { display: flex; gap: .75rem; background: #edf6f2; }
.vendor-trust-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  border-radius: 12px;
  color: #fff;
  background: var(--ux-accent);
}
.vendor-trust-mark.soft { color: var(--ux-accent); background: #e8f2ee; }
.vendor-trust-mark svg { width: 18px; height: 18px; }
.vendor-trust-card strong, .vendor-section-title strong { display: block; font-size: .8rem; }
.vendor-trust-card p, .vendor-reviews-card > p { margin: .3rem 0 0; color: var(--ux-muted); font-size: .7rem; line-height: 1.55; }
.vendor-section-title { display: flex; align-items: center; gap: .7rem; }
.vendor-section-title small { display: block; color: var(--ux-muted); font-size: .62rem; }
.vendor-inventory { min-width: 0; }
.vendor-inventory-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }
.vendor-inventory-head h2 { margin: .32rem 0 .25rem; font-size: clamp(1.8rem, 3vw, 2.65rem); font-weight: 600; letter-spacing: -.05em; }
.vendor-inventory-head p { margin: 0; color: var(--ux-muted); font-size: .78rem; }
.vendor-price-summary { display: grid; gap: .15rem; flex: 0 0 auto; text-align: right; }
.vendor-price-summary small { color: var(--ux-muted); font-size: .65rem; }
.vendor-price-summary strong { font-size: 1.15rem; letter-spacing: -.03em; }
.vendor-filter-bar {
  grid-template-columns: minmax(130px,.8fr) minmax(150px,1fr) minmax(145px,.9fr) auto auto;
  padding: .7rem;
  border-color: rgba(18,33,31,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 35px rgba(24,46,40,.05);
}
.vendor-filter-bar input, .vendor-filter-bar select { border-color: #e5eae7; border-radius: 11px; background: #f7f9f7; }
.vendor-filter-bar .company-filter-reset { color: var(--ux-accent); }
.vendor-listing-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }

@media (max-width: 980px) {
  .vendor-hero-content { align-items: flex-start; flex-direction: column; justify-content: flex-end; }
  .vendor-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .vendor-proof-grid article:nth-child(2) { border-right: 0; }
  .vendor-proof-grid article:nth-child(-n+2) { border-bottom: 1px solid #e8ece9; }
  .vendor-page-layout { grid-template-columns: 1fr; }
  .vendor-sidebar { position: static; grid-template-columns: 1.3fr 1fr 1fr; }
  .vendor-filter-bar { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .vendor-hero {
    min-height: 500px;
    background:
      linear-gradient(180deg, rgba(7,29,25,.3), rgba(7,29,25,.97) 58%),
      var(--vendor-cover) center / cover no-repeat,
      linear-gradient(135deg, #0c332d, #164e43);
  }
  .vendor-hero-inner { padding: 1rem 0 4.1rem; }
  .vendor-hero-content { min-height: 420px; gap: 1.35rem; }
  .vendor-brand { align-items: flex-end; gap: .85rem; }
  .vendor-logo { width: 74px; height: 74px; flex-basis: 74px; border-radius: 20px; }
  .vendor-monogram { font-size: 1.8rem; }
  .vendor-brand-copy h1 { margin-top: .5rem; font-size: clamp(2rem, 10vw, 3rem); }
  .vendor-brand-copy p { font-size: .75rem; }
  .vendor-verified { padding: .34rem .5rem; font-size: .58rem; }
  .vendor-hero-actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .vendor-share-btn { grid-column: 1 / -1; }
  .vendor-proof-grid { width: calc(100% - 1rem); margin-top: -2.3rem; border-radius: 18px; }
  .vendor-proof-grid article { min-height: 86px; gap: .55rem; padding: .75rem; }
  .vendor-proof-icon { width: 34px; height: 34px; flex-basis: 34px; border-radius: 10px; }
  .vendor-proof-grid strong { font-size: 1.15rem; }
  .vendor-proof-grid article span:last-child { font-size: .6rem; }
  .vendor-page-layout { padding-top: 2rem; }
  .vendor-sidebar { grid-template-columns: 1fr; }
  .vendor-inventory-head { align-items: flex-start; }
  .vendor-price-summary { display: none; }
  .vendor-filter-bar { position: sticky; top: 0; grid-template-columns: 1fr 1fr; z-index: 22; }
  .vendor-filter-bar label:nth-child(2), .vendor-filter-bar .company-filter-reset { display: none; }
  .vendor-filter-bar .btn { grid-column: 1 / -1; }
  .vendor-listing-grid { grid-template-columns: 1fr; }
  .page-company-profile .company-mobile-contact {
    bottom: 74px;
    border-color: rgba(18,33,31,.1);
    border-radius: 18px;
    background: rgba(255,255,255,.94);
  }
}

@media (max-width: 720px) {
  .site-header { top: 0; }
  .page-home .v2-search-panel { min-height: 0; }
  .brand-mark { width: 41px; height: 41px; border-radius: 13px; }
  .brand-mark svg { width: 28px; height: 28px; }
  .brand-text strong { font-size: 1.08rem; }
  .instant-contact { display: none; }
}

/* Dark liquid glass homepage */
body.page-home {
  --home-glass: rgba(18, 24, 25, .66);
  --home-glass-soft: rgba(29, 37, 37, .54);
  --home-glass-border: rgba(255, 255, 255, .16);
  --home-text: #f4f7f6;
  --home-muted: #aebbb8;
  color: var(--home-text);
  background:
    radial-gradient(circle at 12% 12%, rgba(45, 132, 113, .25), transparent 30rem),
    radial-gradient(circle at 86% 38%, rgba(122, 146, 139, .18), transparent 27rem),
    radial-gradient(circle at 48% 78%, rgba(34, 92, 82, .2), transparent 34rem),
    linear-gradient(145deg, #080b0c 0%, #111718 48%, #070a0b 100%);
  background-attachment: fixed;
  isolation: isolate;
  overflow-x: hidden;
}

body.page-home::before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 7% 34%, rgba(198, 226, 218, .48) 0 2.5rem, rgba(48, 116, 102, .24) 7rem, transparent 16rem),
    radial-gradient(circle at 94% 24%, rgba(226, 232, 207, .42) 0 3rem, rgba(74, 132, 119, .22) 8rem, transparent 17rem),
    radial-gradient(circle at 72% 76%, rgba(177, 220, 211, .3) 0 4rem, rgba(48, 133, 116, .18) 11rem, transparent 23rem),
    radial-gradient(circle at 21% 88%, rgba(199, 184, 139, .2), transparent 17rem);
  filter: saturate(125%);
}

body.page-home::after {
  content: "";
  position: fixed;
  z-index: -1;
  right: -9rem;
  top: 34vh;
  width: min(44vw, 620px);
  aspect-ratio: 1.35;
  border: clamp(34px, 5vw, 72px) solid rgba(121, 197, 180, .2);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-24deg);
  box-shadow:
    0 0 0 2px rgba(228, 255, 248, .15),
    inset 18px 18px 38px rgba(226, 255, 247, .2),
    inset -22px -24px 45px rgba(15, 66, 56, .35),
    0 0 70px rgba(92, 187, 167, .18);
  filter: blur(.2px);
}

body.page-home main,
body.page-home .site-footer {
  position: relative;
  z-index: 1;
}

body.page-home .site-header {
  border-bottom-color: rgba(255, 255, 255, .1);
  color: var(--home-text);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .07), transparent 28%),
    rgba(11, 15, 16, .46);
  box-shadow: 0 14px 45px rgba(0, 0, 0, .24), inset 0 -1px 0 rgba(255, 255, 255, .04);
  -webkit-backdrop-filter: blur(30px) saturate(145%);
  backdrop-filter: blur(30px) saturate(145%);
}

body.page-home .brand-text strong,
body.page-home .nav-links > a:not(.btn) {
  color: var(--home-text);
}

body.page-home .nav-links > a:not(.btn):hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

body.page-home .language-switcher {
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .06);
}

body.page-home .language-switcher a {
  color: #b9c5c2;
}

body.page-home .v2-search-panel {
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .2);
  background:
    linear-gradient(90deg, rgba(5, 10, 10, .76) 0%, rgba(9, 17, 16, .6) 50%, rgba(8, 14, 14, .28) 100%),
    url("/static/demo_images/hero-bg.jpg") center 54% / cover no-repeat,
    #0b1111;
  box-shadow:
    0 38px 100px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(255, 255, 255, .2),
    inset 0 0 55px rgba(222, 255, 247, .035);
}

body.page-home .v2-search-panel::before {
  background:
    radial-gradient(circle at 80% 22%, rgba(201, 230, 219, .14), transparent 18rem),
    radial-gradient(circle at 20% 16%, rgba(52, 159, 134, .2), transparent 25rem),
    linear-gradient(180deg, transparent 48%, rgba(2, 6, 6, .42));
}

body.page-home .search-grid-main {
  position: relative;
  overflow: visible;
  border-color: rgba(255, 255, 255, .26);
  background:
    radial-gradient(circle at 82% 0, rgba(255, 255, 255, .12), transparent 30%),
    linear-gradient(135deg, rgba(50, 57, 57, .48), rgba(14, 20, 20, .32));
  box-shadow:
    0 28px 68px rgba(0, 0, 0, .38),
    inset 0 1px 0 rgba(255, 255, 255, .26),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
  -webkit-backdrop-filter: blur(38px) saturate(155%);
  backdrop-filter: blur(38px) saturate(155%);
}

body.page-home .search-grid-main label + label::before {
  background: rgba(255, 255, 255, .12);
}

body.page-home .search-grid-main label > span {
  color: #99a7a4;
}

body.page-home .search-grid-main select,
body.page-home .search-grid-main .brand-picker-trigger {
  color: #f5f8f7;
}

body.page-home .search-grid-main select option {
  color: #17201f;
  background: #f7faf8;
}

body.page-home .search-grid-main .brand-logo-all,
body.page-home .search-grid-main .brand-logo-fallback,
body.page-home .search-grid-main .brand-option-count {
  color: #bfe9df;
  background: rgba(81, 151, 134, .2);
}

body.page-home .search-grid-main .brand-picker-menu {
  left: -.6rem;
}

body.page-home .trust-rail {
  border-color: rgba(255, 255, 255, .22);
  background:
    radial-gradient(circle at 15% 0, rgba(255, 255, 255, .12), transparent 30%),
    linear-gradient(135deg, rgba(43, 51, 50, .45), rgba(14, 20, 20, .34));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .24),
    inset 0 -1px 0 rgba(255, 255, 255, .05);
  -webkit-backdrop-filter: blur(34px) saturate(150%);
  backdrop-filter: blur(34px) saturate(150%);
}

body.page-home .trust-rail-item {
  color: var(--home-muted);
}

body.page-home .trust-rail-item strong {
  color: var(--home-text);
}

body.page-home .trust-rail-icon {
  color: #9fe0d2;
  background: rgba(63, 133, 116, .2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

body.page-home .listings-headline h2,
body.page-home .listings-headline p {
  color: var(--home-text);
}

body.page-home .listings-headline .eyebrow {
  color: #80cbbb;
}

body.page-home .v2-card {
  border-color: rgba(255, 255, 255, .22);
  color: var(--home-text);
  background:
    radial-gradient(circle at 88% 4%, rgba(255, 255, 255, .15), transparent 12rem),
    linear-gradient(145deg, rgba(49, 57, 57, .42), rgba(11, 16, 16, .3));
  box-shadow:
    0 28px 75px rgba(0, 0, 0, .38),
    inset 0 1px 0 rgba(255, 255, 255, .25),
    inset 0 -1px 0 rgba(255, 255, 255, .045);
  -webkit-backdrop-filter: blur(34px) saturate(155%);
  backdrop-filter: blur(34px) saturate(155%);
}

body.page-home .v2-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .18), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 32%),
    radial-gradient(circle at 100% 4%, rgba(214, 255, 245, .13), transparent 25%);
  pointer-events: none;
}

body.page-home .v2-card:hover {
  border-color: rgba(157, 224, 210, .35);
  box-shadow:
    0 34px 82px rgba(0, 0, 0, .45),
    0 0 0 1px rgba(117, 205, 187, .08),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

body.page-home .card-title,
body.page-home .card-title a,
body.page-home .price,
body.page-home .card-company-row .company-profile-link,
body.page-home .card-company-row div > span {
  color: var(--home-text);
}

body.page-home .card-kicker,
body.page-home .price small,
body.page-home .card-company-row small {
  color: var(--home-muted);
}

body.page-home .card-specs span {
  border: 1px solid rgba(255, 255, 255, .1);
  color: #c3cecb;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

body.page-home .card-specs svg,
body.page-home .card-kicker svg,
body.page-home .card-open-cue {
  color: #79c9b8;
}

body.page-home .card-company-row {
  border-top-color: rgba(255, 255, 255, .09);
}

body.page-home .company-avatar,
body.page-home .card-open-cue {
  color: #a6dfd3;
  background: rgba(74, 139, 123, .16);
}

body.page-home .favorite-btn {
  border-color: rgba(255, 255, 255, .18);
  color: #eff5f3;
  background: rgba(20, 26, 26, .58);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .1);
}

body.page-home .empty-state {
  border-color: var(--home-glass-border);
  color: var(--home-text);
  background: var(--home-glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

body.page-home .site-footer {
  border-top-color: rgba(255, 255, 255, .1);
  background: rgba(5, 9, 9, .64);
  -webkit-backdrop-filter: blur(28px) saturate(130%);
  backdrop-filter: blur(28px) saturate(130%);
}

@media (max-width: 720px) {
  body.page-home {
    background-attachment: scroll;
  }

  body.page-home .v2-card,
  body.page-home .trust-rail,
  body.page-home .search-grid-main {
    -webkit-backdrop-filter: blur(16px) saturate(115%);
    backdrop-filter: blur(16px) saturate(115%);
  }
}

/* Dark liquid glass listing detail */
body.page-listing-detail {
  --home-glass: rgba(18, 24, 25, .66);
  --home-glass-soft: rgba(29, 37, 37, .54);
  --home-glass-border: rgba(255, 255, 255, .16);
  --home-text: #f4f7f6;
  --home-muted: #aebbb8;
  color: var(--home-text);
  background:
    radial-gradient(circle at 12% 12%, rgba(45, 132, 113, .25), transparent 30rem),
    radial-gradient(circle at 86% 38%, rgba(122, 146, 139, .18), transparent 27rem),
    radial-gradient(circle at 48% 78%, rgba(34, 92, 82, .2), transparent 34rem),
    linear-gradient(145deg, #080b0c 0%, #111718 48%, #070a0b 100%);
  background-attachment: fixed;
  isolation: isolate;
  overflow-x: hidden;
}

body.page-listing-detail::before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 7% 34%, rgba(198, 226, 218, .48) 0 2.5rem, rgba(48, 116, 102, .24) 7rem, transparent 16rem),
    radial-gradient(circle at 94% 24%, rgba(226, 232, 207, .42) 0 3rem, rgba(74, 132, 119, .22) 8rem, transparent 17rem),
    radial-gradient(circle at 72% 76%, rgba(177, 220, 211, .3) 0 4rem, rgba(48, 133, 116, .18) 11rem, transparent 23rem),
    radial-gradient(circle at 21% 88%, rgba(199, 184, 139, .2), transparent 17rem);
  filter: saturate(125%);
}

body.page-listing-detail::after {
  content: "";
  position: fixed;
  z-index: -1;
  right: -9rem;
  top: 34vh;
  width: min(44vw, 620px);
  aspect-ratio: 1.35;
  border: clamp(34px, 5vw, 72px) solid rgba(121, 197, 180, .2);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-24deg);
  box-shadow:
    0 0 0 2px rgba(228, 255, 248, .15),
    inset 18px 18px 38px rgba(226, 255, 247, .2),
    inset -22px -24px 45px rgba(15, 66, 56, .35),
    0 0 70px rgba(92, 187, 167, .18);
  filter: blur(.2px);
}

body.page-listing-detail main,
body.page-listing-detail .site-footer {
  position: relative;
  z-index: 1;
}

body.page-listing-detail .site-header {
  border-bottom-color: rgba(255, 255, 255, .1);
  color: var(--home-text);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .07), transparent 28%),
    rgba(11, 15, 16, .46);
  box-shadow: 0 14px 45px rgba(0, 0, 0, .24), inset 0 -1px 0 rgba(255, 255, 255, .04);
  -webkit-backdrop-filter: blur(30px) saturate(145%);
  backdrop-filter: blur(30px) saturate(145%);
}

body.page-listing-detail .brand-text strong,
body.page-listing-detail .nav-links > a:not(.btn) {
  color: var(--home-text);
}

body.page-listing-detail .nav-links > a:not(.btn):hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

body.page-listing-detail .language-switcher {
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .06);
}

body.page-listing-detail .language-switcher a {
  color: #b9c5c2;
}

body.page-listing-detail .detail-breadcrumb,
body.page-listing-detail .detail-breadcrumb a,
body.page-listing-detail .detail-heading .detail-submeta,
body.page-listing-detail .muted,
body.page-listing-detail .contact-reassurance {
  color: var(--home-muted);
}

body.page-listing-detail .detail-breadcrumb a:hover,
body.page-listing-detail .detail-section-head .eyebrow,
body.page-listing-detail .section-head .eyebrow,
body.page-listing-detail .glass-chip > svg,
body.page-listing-detail .contact-reassurance svg {
  color: #80cbbb;
}

body.page-listing-detail .detail-heading h1,
body.page-listing-detail .detail-description,
body.page-listing-detail .detail-specs span,
body.page-listing-detail .glass-chip > span,
body.page-listing-detail .detail-price-card > strong,
body.page-listing-detail .detail-price-card small,
body.page-listing-detail .contact-meta-list span {
  color: var(--home-text);
}

body.page-listing-detail h2 {
  color: #fff;
}

body.page-listing-detail .glass-surface,
body.page-listing-detail .gallery-panel,
body.page-listing-detail .polished-detail-main,
body.page-listing-detail .detail-price-card,
body.page-listing-detail .v2-contact-box,
body.page-listing-detail .empty-state {
  border-color: rgba(255, 255, 255, .22);
  background:
    radial-gradient(circle at 88% 4%, rgba(255, 255, 255, .15), transparent 12rem),
    linear-gradient(145deg, rgba(49, 57, 57, .42), rgba(11, 16, 16, .3));
  box-shadow:
    0 28px 75px rgba(0, 0, 0, .38),
    inset 0 1px 0 rgba(255, 255, 255, .25),
    inset 0 -1px 0 rgba(255, 255, 255, .045);
  -webkit-backdrop-filter: blur(34px) saturate(155%);
  backdrop-filter: blur(34px) saturate(155%);
}

body.page-listing-detail .detail-heading {
  padding: 1.15rem 0 0;
}

body.page-listing-detail .gallery-stage {
  background: rgba(7, 12, 12, .56);
}

body.page-listing-detail .gallery-nav,
body.page-listing-detail .glass-icon-button {
  border-color: rgba(255, 255, 255, .18);
  color: #eff5f3;
  background: rgba(20, 26, 26, .58);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .1);
}

body.page-listing-detail .glass-icon-button:hover,
body.page-listing-detail .gallery-nav:hover {
  color: #9fe0d2;
  background: rgba(255, 255, 255, .08);
}

body.page-listing-detail .glass-chip,
body.page-listing-detail .detail-section-box,
body.page-listing-detail .detail-specs div,
body.page-listing-detail .contact-meta-list div {
  border-color: rgba(255, 255, 255, .1);
  color: #c3cecb;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

body.page-listing-detail .glass-chip strong,
body.page-listing-detail .detail-specs strong,
body.page-listing-detail .detail-price-card > span,
body.page-listing-detail .contact-meta-list strong {
  color: var(--home-muted);
}

body.page-listing-detail .contact-company-mark {
  color: #a6dfd3;
  background: rgba(74, 139, 123, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

body.page-listing-detail .trust-badge {
  border-color: rgba(255, 255, 255, .14);
  color: #c8d8d4;
  background: rgba(255, 255, 255, .07);
}

body.page-listing-detail .trust-success {
  color: #bbf7d0;
  background: rgba(21, 128, 61, .18);
}

body.page-listing-detail .trust-info {
  color: #bfe9df;
  background: rgba(81, 151, 134, .18);
}

body.page-listing-detail .btn-whatsapp {
  background: #176b5b;
  box-shadow: 0 16px 30px rgba(23, 107, 91, .24);
}

body.page-listing-detail .detail-call-btn {
  color: #d8f5ee;
  border-color: rgba(157, 224, 210, .28);
  background: rgba(74, 139, 123, .16);
}

body.page-listing-detail .v2-card {
  border-color: rgba(255, 255, 255, .22);
  color: var(--home-text);
  background:
    radial-gradient(circle at 88% 4%, rgba(255, 255, 255, .15), transparent 12rem),
    linear-gradient(145deg, rgba(49, 57, 57, .42), rgba(11, 16, 16, .3));
  box-shadow:
    0 28px 75px rgba(0, 0, 0, .38),
    inset 0 1px 0 rgba(255, 255, 255, .25),
    inset 0 -1px 0 rgba(255, 255, 255, .045);
  -webkit-backdrop-filter: blur(34px) saturate(155%);
  backdrop-filter: blur(34px) saturate(155%);
}

body.page-listing-detail .v2-card:hover {
  border-color: rgba(157, 224, 210, .35);
  box-shadow:
    0 34px 82px rgba(0, 0, 0, .45),
    0 0 0 1px rgba(117, 205, 187, .08),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

body.page-listing-detail .card-title,
body.page-listing-detail .card-title a,
body.page-listing-detail .price,
body.page-listing-detail .card-company-row .company-profile-link,
body.page-listing-detail .card-company-row div > span {
  color: var(--home-text);
}

body.page-listing-detail .card-kicker,
body.page-listing-detail .price small,
body.page-listing-detail .card-company-row small {
  color: var(--home-muted);
}

body.page-listing-detail .card-specs span {
  border: 1px solid rgba(255, 255, 255, .1);
  color: #c3cecb;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09);
}

body.page-listing-detail .card-specs svg,
body.page-listing-detail .card-kicker svg,
body.page-listing-detail .card-open-cue {
  color: #79c9b8;
}

body.page-listing-detail .card-company-row {
  border-top-color: rgba(255, 255, 255, .09);
}

body.page-listing-detail .company-avatar,
body.page-listing-detail .card-open-cue {
  color: #a6dfd3;
  background: rgba(74, 139, 123, .16);
}

body.page-listing-detail .favorite-btn {
  border-color: rgba(255, 255, 255, .18);
  color: #eff5f3;
  background: rgba(20, 26, 26, .58);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .1);
}

body.page-listing-detail .site-footer {
  border-top-color: rgba(255, 255, 255, .1);
  background: rgba(5, 9, 9, .64);
  -webkit-backdrop-filter: blur(28px) saturate(130%);
  backdrop-filter: blur(28px) saturate(130%);
}

body.page-listing-detail .mobile-contact-bar {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(5, 9, 9, .72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .42);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
}

@media (max-width: 720px) {
  body.page-listing-detail {
    background-attachment: scroll;
  }

  body.page-listing-detail .v2-card,
  body.page-listing-detail .gallery-panel,
  body.page-listing-detail .polished-detail-main,
  body.page-listing-detail .detail-price-card,
  body.page-listing-detail .v2-contact-box {
    -webkit-backdrop-filter: blur(16px) saturate(115%);
    backdrop-filter: blur(16px) saturate(115%);
  }

  body.page-listing-detail .detail-heading {
    padding-inline: .25rem;
  }
}
