/* public.css — Automeeza redesign design system
   Tokens sourced from design_handoff_automeeza/tokens.css
   Used by public-facing pages (listings, detail, etc.)
   DO NOT import in admin pages — they use style.css */

/* ── Design tokens ──────────────────────────────────────────── */
:root {
  /* Warm neutrals */
  --ink-0:  #0c0d10;
  --ink-1:  #1a1d22;
  --ink-2:  #2b2f36;
  --ink-3:  #4b525b;
  --ink-4:  #6b727c;
  --ink-5:  #9aa0a8;
  --ink-6:  #c9ccd1;
  --ink-7:  #e5e6e9;
  --ink-8:  #eef0f2;
  --ink-9:  #f6f5f2;
  --ink-10: #fbfaf7;

  /* Brand red — Automeeza (R239) */
  --red-50:  #fdeaea;
  --red-100: #fbd0d0;
  --red-300: #f08585;
  --red-500: #ef2020;
  --red-600: #ef0f0f;
  --red-700: #c40d0d;
  --red-900: #6e0707;

  /* Functional */
  --green-50:  #e8f3ec;
  --green-500: #2a8a4a;
  --green-600: #1f6d3a;
  --amber-50:  #fbf1de;
  --amber-500: #b37706;

  /* Radii */
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  /* Shadows */
  --shadow-1: 0 1px 2px rgba(12,13,16,.05), 0 1px 3px rgba(12,13,16,.06);
  --shadow-2: 0 2px 4px rgba(12,13,16,.04), 0 8px 24px rgba(12,13,16,.08);
  --shadow-3: 0 20px 60px rgba(12,13,16,.16);

  /* Typography */
  --f-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --f-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --f-display: 'Inter', -apple-system, system-ui, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Base ───────────────────────────────────────────────────── */
body {
  background: var(--ink-10);
  color: var(--ink-1);
  font-family: var(--f-sans);
  font-size: 14px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.arabic { font-family: 'Cairo', var(--f-sans); }
body.arabic .pub-card-meta { font-family: 'Cairo', var(--f-sans); }
a { color: inherit; }

/* ── Nav ────────────────────────────────────────────────────── */
.pub-nav {
  background: #fff;
  border-bottom: 1px solid var(--ink-7);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 50px;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.pub-nav-logo {
  height: 26px;
  width: auto;
  display: block;
  flex-shrink: 0;
  text-decoration: none;
}
.pub-nav-logo img { height: 26px; width: auto; display: block; }
.pub-nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.pub-nav-links a {
  color: inherit;
  text-decoration: none;
  padding-bottom: 16px;
  margin-bottom: -16px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  display: inline-block;
}
.pub-nav-links a:hover { color: var(--red-700); }
.pub-nav-links a.active {
  color: var(--red-700);
  border-bottom-color: var(--red-600);
}
.pub-nav-spacer { flex: 1; }
.pub-nav-lang {
  display: flex;
  align-items: center;
  border: 1px solid var(--ink-7);
  border-radius: var(--radius-xs);
  overflow: hidden;
  flex-shrink: 0;
}
.pub-nav-lang button {
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--ink-4);
  font-family: inherit;
  line-height: 1;
}
.pub-nav-lang button.active { background: var(--ink-1); color: #fff; }
.pub-nav-cta {
  background: var(--red-600);
  color: #fff;
  border: none;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.pub-nav-cta:hover { background: var(--red-700); }
.pub-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: transparent;
  flex-shrink: 0;
  margin-inline-start: auto;
}
.pub-nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-1);
  border-radius: 2px;
}

/* Mobile nav overlay */
.pub-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12,13,16,.45);
}
.pub-mobile-nav.open { display: block; }
.pub-mobile-nav-sheet {
  background: #fff;
  max-height: 100vh;
  overflow-y: auto;
  padding-bottom: 24px;
}
.pub-mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--ink-7);
}
.pub-mobile-nav-close {
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink-7);
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink-3);
}
.pub-mobile-nav-sheet a {
  display: block;
  padding: 13px 20px;
  border-bottom: 1px solid var(--ink-8);
  color: var(--ink-1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.pub-mobile-nav-sheet a.active { color: var(--red-700); font-weight: 600; }
.pub-mobile-nav-lang {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
}

/* ── Hero / search strip ────────────────────────────────────── */
.pub-hero {
  padding: 20px 24px 16px;
  background: linear-gradient(180deg, #fff 0%, var(--ink-10) 100%);
  border-bottom: 1px solid var(--ink-7);
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}
.pub-hero-heading {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--ink-1);
}
.pub-hero-heading em { color: var(--red-600); font-style: normal; }
.pub-hero-sub { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; }

/* Search bar row */
.pub-searchbar { margin-top: 12px; position: relative; }
.pub-searchbar-row {
  background: #fff;
  border: 1px solid var(--ink-6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr auto;
  align-items: stretch;
}
.pub-search-field {
  padding: 8px 12px;
  border-right: 1px solid var(--ink-7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pub-search-field:last-of-type { border-right: none; }
[dir=rtl] .pub-search-field { border-right: none; border-left: 1px solid var(--ink-7); }
[dir=rtl] .pub-search-field:last-of-type { border-left: none; }
.pub-search-field-inner { flex: 1; min-width: 0; }
.pub-search-label {
  font-size: 10px;
  color: var(--ink-4);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: var(--f-mono);
}
[dir=rtl] .pub-search-label { letter-spacing: 0; text-transform: none; }
.pub-search-input-text,
.pub-search-input-num {
  border: none;
  outline: none;
  font-size: 13.5px;
  color: var(--ink-1);
  font-family: inherit;
  width: 100%;
  padding: 0;
  margin-top: 2px;
  background: transparent;
}
.pub-search-input-num { font-size: 13px; }
.pub-search-input-text::placeholder,
.pub-search-input-num::placeholder { color: var(--ink-5); }
/* hide browser number arrows */
.pub-search-input-num::-webkit-inner-spin-button,
.pub-search-input-num::-webkit-outer-spin-button { -webkit-appearance: none; }
.pub-search-input-num { -moz-appearance: textfield; }
.pub-search-year-pair { display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.pub-search-year-pair input {
  border: none;
  outline: none;
  font-size: 12.5px;
  color: var(--ink-1);
  font-family: inherit;
  width: 48px;
  background: transparent;
  padding: 0;
}
.pub-search-year-pair input::placeholder { color: var(--ink-5); }
.pub-search-year-pair input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pub-search-year-pair input { -moz-appearance: textfield; }
.pub-search-year-sep { color: var(--ink-4); font-size: 12px; }
.pub-search-btn {
  background: var(--red-600);
  color: #fff;
  border: none;
  margin: 5px;
  border-radius: 7px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.pub-search-btn:hover { background: var(--red-700); }

/* ── Mobile filter bar ──────────────────────────────────────── */
.pub-mobile-filter-bar {
  display: none;
  padding: 8px 16px;
  background: #fff;
  border-bottom: 1px solid var(--ink-7);
  gap: 8px;
  align-items: center;
}
.pub-mobile-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--ink-6);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  color: var(--ink-2);
  background: #fff;
  cursor: pointer;
}
.pub-mobile-filter-btn.active {
  border-color: var(--red-600);
  color: var(--red-700);
  background: var(--red-50);
}

/* Filter drawer (mobile) */
.pub-filter-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(12,13,16,.45);
}
.pub-filter-drawer.open { display: block; }
.pub-filter-drawer-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  max-height: 82vh;
  overflow-y: auto;
  padding: 16px 16px 40px;
}
.pub-filter-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.pub-filter-drawer-title { font-size: 15px; font-weight: 700; }
.pub-filter-drawer-close {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  border: 1px solid var(--ink-7);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink-3);
}
.pub-filter-drawer-apply {
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  background: var(--red-600);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}
.pub-filter-drawer-apply:hover { background: var(--red-700); }

/* ── Body layout: sidebar + results ────────────────────────── */
.pub-body {
  flex: 1;
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 0;
}

/* ── Filter sidebar ─────────────────────────────────────────── */
.pub-sidebar {
  background: #fff;
  padding: 14px 14px 20px;
  border-right: 1px solid var(--ink-7);
  overflow-y: auto;
  flex-shrink: 0;
}
[dir=rtl] .pub-sidebar {
  border-right: none;
  border-left: 1px solid var(--ink-7);
}
.pub-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.pub-sidebar-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--ink-1);
}
.pub-sidebar-clear {
  font-size: 11px;
  color: var(--red-700);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}
.pub-sidebar-clear:hover { text-decoration: underline; }

.pub-filter-section {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--ink-8);
}
.pub-filter-section:last-child { border-bottom: none; margin-bottom: 0; }
.pub-filter-section-title {
  font-size: 10.5px;
  color: var(--ink-4);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--f-mono);
}
[dir=rtl] .pub-filter-section-title { letter-spacing: 0; text-transform: none; }
.pub-filter-group { display: flex; flex-direction: column; gap: 1px; }
.pub-filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-size: 12.5px;
  color: var(--ink-2);
  user-select: none;
}
.pub-filter-row:hover { background: var(--ink-10); color: var(--ink-1); }
.pub-filter-row input[type=checkbox] {
  width: 13px;
  height: 13px;
  accent-color: var(--red-600);
  cursor: pointer;
  flex-shrink: 0;
}
.pub-filter-count {
  margin-left: auto;
  font-size: 10px;
  color: var(--ink-4);
  font-family: var(--f-mono);
}
[dir=rtl] .pub-filter-count { margin-left: 0; margin-right: auto; }
.pub-filter-input {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid var(--ink-6);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 12.5px;
  color: var(--ink-1);
  outline: none;
  background: #fff;
  margin-bottom: 6px;
}
.pub-filter-input:focus { border-color: var(--red-500); }
.pub-filter-input::placeholder { color: var(--ink-5); }
.pub-filter-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pub-filter-input { -moz-appearance: textfield; }
.pub-filter-pair { display: flex; gap: 6px; }
.pub-filter-pair .pub-filter-input { margin-bottom: 0; }
.pub-filter-more {
  font-size: 11px;
  color: var(--red-700);
  font-weight: 600;
  margin-top: 4px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
  display: inline-block;
}
.pub-filter-more:hover { text-decoration: underline; }
.pub-make-extra { display: none; flex-direction: column; gap: 1px; }
.pub-make-extra.open { display: flex; }

/* ── Results pane ───────────────────────────────────────────── */
.pub-results {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid var(--ink-7);
}
[dir=rtl] .pub-results { border-left: none; border-right: 1px solid var(--ink-7); }

/* Toolbar */
.pub-toolbar {
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  border-bottom: 1px solid var(--ink-7);
  background: #fff;
  flex-shrink: 0;
  gap: 10px;
  flex-wrap: wrap;
}
.pub-toolbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--ink-3);
  min-width: 0;
}
.pub-toolbar-left strong { color: var(--ink-1); }
.pub-toolbar-clear {
  font-size: 11px;
  color: var(--red-700);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
  font-weight: 600;
  display: none;
  white-space: nowrap;
}
.pub-toolbar-clear:hover { text-decoration: underline; }
.pub-toolbar-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.pub-toolbar-sort {
  padding: 6px 10px;
  border: 1px solid var(--ink-6);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 12px;
  color: var(--ink-1);
  background: #fff;
  outline: none;
  cursor: pointer;
}

/* Card grid */
.pub-grid {
  flex: 1;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  overflow-y: auto;
  align-content: start;
}

/* ── Car card ───────────────────────────────────────────────── */
.pub-card {
  background: #fff;
  border: 1px solid var(--ink-7);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .15s, transform .15s;
  animation: pubCardIn .25s ease both;
}
.pub-card:hover { box-shadow: var(--shadow-2); transform: translateY(-1px); }

@keyframes pubCardIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
.pub-card:nth-child(1) { animation-delay: .03s; }
.pub-card:nth-child(2) { animation-delay: .06s; }
.pub-card:nth-child(3) { animation-delay: .09s; }
.pub-card:nth-child(4) { animation-delay: .12s; }
.pub-card:nth-child(5) { animation-delay: .15s; }
.pub-card:nth-child(6) { animation-delay: .18s; }

/* 4:3 image block — padding-bottom trick for reliable cross-browser aspect ratio */
.pub-card-img {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 3/4 = 4:3 ratio */
  overflow: hidden;
  border-bottom: 1px solid var(--ink-7);
  background: var(--ink-8);
  flex-shrink: 0;
}
.pub-card-img img,
.pub-card-img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.pub-card-img img {
  object-fit: cover;
  display: block;
}
.pub-card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--ink-5);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pub-card-photo-count {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  background: rgba(0,0,0,.55);
  color: #fff;
  padding: 2px 6px;
  border-radius: 2px;
}
[dir=rtl] .pub-card-photo-count { right: auto; left: 8px; }

/* Card body */
.pub-card-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pub-card-badges {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}
.pub-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: var(--radius-xs);
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.pub-badge-inspected { background: var(--green-50); color: var(--green-600); }
.pub-badge-dealer    { background: var(--ink-9);    color: var(--ink-2); }
.pub-badge-private   { background: var(--red-50);   color: var(--red-700); }
.pub-badge-new       { background: var(--red-50);   color: var(--red-700); }
.pub-badge-used      { background: var(--ink-8);    color: var(--ink-3); }

.pub-card-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.25;
  color: var(--ink-1);
}
.pub-card-trim { font-size: 12px; color: var(--ink-3); margin-top: 1px; }
.pub-card-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-4);
  margin-top: 6px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pub-card-spacer { flex: 1; min-height: 6px; }
.pub-card-footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--ink-8);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.pub-card-price {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink-1);
  line-height: 1.3;
}
.ar-currency {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.6;
}
.pub-card-view {
  font-size: 11px;
  font-weight: 600;
  color: var(--red-700);
  background: transparent;
  border: 1px solid var(--red-300);
  border-radius: 4px;
  padding: 4px 10px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  display: inline-block;
}
.pub-card-view:hover { background: var(--red-50); }

/* ── State messages ─────────────────────────────────────────── */
.pub-state-msg {
  grid-column: 1 / -1;
  padding: 60px 0;
  text-align: center;
  color: var(--ink-4);
  font-size: 13px;
}
.pub-empty { grid-column: 1 / -1; padding: 60px 0; text-align: center; display: none; }
.pub-empty.show { display: block; }
.pub-empty p { font-size: 13px; color: var(--ink-4); }
.pub-empty button {
  margin-top: 10px;
  font-size: 13px;
  color: var(--red-700);
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  font-weight: 600;
}
.pub-empty button:hover { text-decoration: underline; }

/* ── Footer ─────────────────────────────────────────────────── */
.pub-footer {
  border-top: 1px solid var(--ink-7);
  background: #fff;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.pub-footer p { font-size: 11px; color: var(--ink-4); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .pub-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .pub-nav-links,
  .pub-nav-lang { display: none; }
  .pub-nav-hamburger { display: flex; }
  .pub-nav-cta { display: none; }

  .pub-hero { padding: 14px 16px 12px; }
  .pub-hero-heading { font-size: 18px; }

  .pub-searchbar-row {
    grid-template-columns: 1fr;
    border-radius: var(--radius-sm);
  }
  .pub-search-field {
    border-right: none;
    border-bottom: 1px solid var(--ink-7);
  }

  /* On mobile: natural page scroll instead of fixed-height internal scroll */
  .pub-body { grid-template-columns: 1fr; flex: none; }
  .pub-sidebar { display: none; }
  .pub-mobile-filter-bar { display: flex; }
  .pub-results { border-left: none; overflow: visible; flex: none; }

  .pub-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 12px;
    gap: 8px;
    overflow-y: visible;
    flex: none;
  }
  .pub-toolbar { padding: 8px 12px; }
  .pub-search-btn {
    padding: 13px 18px;
    font-size: 15px;
    justify-content: center;
    margin: 6px 5px 5px;
  }
}

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

/* ── RTL overrides ───────────────────────────────────────────── */
/* Sort label */
[dir=rtl] label[for="sortSelect"] { letter-spacing: 0; text-transform: none; }
/* Toolbar sort select in RTL */
[dir=rtl] .pub-toolbar-sort { direction: rtl; }
/* Mobile results border */
@media (max-width: 700px) {
  [dir=rtl] .pub-results { border-right: none; }
}
