/* Harta.my design system
   Brand: cobalt #1249E8, sky #079fdf, ink #101322, page #f7f8fc
   Mobile-first; WCAG 2.2 AA target. */
:root {
  --cobalt: #1249e8;
  --cobalt-dark: #0e3cc4;
  --sky: #079fdf;
  --ink: #101322;
  --page: #f7f8fc;
  --surface: #ffffff;
  --soft: #eef2ff;
  --border: #e0e4ee;
  --muted: #687086;
  --muted-strong: #4a5268;
  --success: #137a49;
  --danger: #df3556;
  --warning: #b45309;
  --shadow: 0 1px 2px rgba(18, 25, 50, 0.08), 0 8px 24px rgba(18, 25, 50, 0.07);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --font: -apple-system, system-ui, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--page);
}

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

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--ink); }
h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h2 { font-size: 1.35rem; }
h3 { font-size: 1.05rem; }

p { margin: 0 0 0.75rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }

/* --- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid transparent; border-radius: 999px;
  padding: 9px 16px; font-size: 14px; font-weight: 600; line-height: 1;
  cursor: pointer; transition: background .15s, border-color .15s, color .15s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--cobalt); color: #fff; }
.btn-primary:hover { background: var(--cobalt-dark); }
.btn-secondary { background: var(--surface); color: var(--ink); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--cobalt); color: var(--cobalt); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--soft); color: var(--cobalt); }
.btn-danger { background: var(--surface); color: var(--danger); border-color: #f3c1cc; }
.btn-whatsapp { background: #25d366; color: #063b1d; }
.btn-whatsapp:hover { background: #1fb958; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 7px 12px; font-size: 13px; }

.icon { flex: none; }

/* --- Header --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--surface); border-bottom: 1px solid var(--border);
}
.topbar {
  max-width: var(--maxw); margin: 0 auto; padding: 10px 16px;
  display: flex; align-items: center; gap: 16px; min-height: 56px;
}
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 800; }
.brand:hover { text-decoration: none; }
.brand-logo { width: 34px; height: 34px; border-radius: 50%; flex: none; }
.brand-wordmark { font-size: 17px; letter-spacing: -0.02em; color: var(--cobalt); }

.main-nav { display: none; align-items: center; gap: 2px; flex: 1; }
.main-nav > a, .main-nav > button {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 12px; border-radius: 8px; border: 0; background: transparent;
  color: var(--ink); font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit;
}
.main-nav > a:hover, .main-nav > button:hover { background: var(--soft); color: var(--cobalt); text-decoration: none; }
.main-nav > a.active { color: var(--cobalt); background: var(--soft); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: var(--ink); position: relative; }
.nav-icon:hover { background: var(--soft); color: var(--cobalt); text-decoration: none; }
.nav-icon .badge {
  position: absolute; top: 2px; right: 2px; min-width: 16px; height: 16px;
  background: var(--cobalt); color: #fff; border-radius: 999px; font-size: 10px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px; font-weight: 700;
}

/* --- Browse mega-menu ----------------------------------------------- */
.browse-menu {
  position: absolute; top: calc(100% + 6px); left: 12px; width: min(560px, 92vw);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 16px; display: none; z-index: 60;
  max-height: 72vh; overflow: auto;
}
.browse-menu.open { display: block; }
.browse-group { margin-bottom: 14px; }
.browse-group-title { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 8px; }
.browse-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 12px; }
.browse-link { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 8px; color: var(--ink); font-size: 14px; }
.browse-link:hover { background: var(--soft); color: var(--cobalt); text-decoration: none; }
.browse-link .icon { color: var(--cobalt); }

/* --- Hero / search -------------------------------------------------- */
.hero {
  background:
    radial-gradient(circle at 88% 20%, rgba(7, 159, 223, .70), transparent 25%),
    linear-gradient(125deg, #173bc5, var(--cobalt));
  color: #fff;
}
.hero-inner { max-width: var(--maxw); margin: 0 auto; padding: 28px 16px 34px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .9); font-weight: 600; font-size: 14px; margin-bottom: 12px; }
.hero h1 { color: #fff; font-weight: 600; font-size: clamp(2rem, 5vw, 2.9rem); letter-spacing: -.04em; max-width: 720px; margin: 0; }
.hero-copy { display: grid; gap: 12px; align-items: end; margin-bottom: 20px; }
.hero-copy p { color: rgba(255, 255, 255, .9); font-size: 16px; margin-bottom: 12px; }
.hero-support { max-width: 400px; }
.hero-links { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-links a { display: inline-flex; align-items: center; gap: 5px; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.14); color: #fff; font-size: 13px; font-weight: 600; }
.hero-links a:hover { background: rgba(255,255,255,.24); text-decoration: none; }

.searchbar { display: flex; flex-direction: column; gap: 8px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 8px; box-shadow: var(--shadow); }
.searchfield { display: flex; align-items: center; gap: 8px; padding: 0 12px; flex: 1; }
.searchfield .icon { color: var(--muted); }
.searchfield input { flex: 1; border: 0; outline: 0; padding: 12px 0; font-size: 16px; background: transparent; color: var(--ink); min-width: 0; }
.search-location { display: flex; align-items: center; gap: 4px; padding: 0 12px; border-left: 1px solid var(--border); }
.search-location select { border: 0; outline: 0; padding: 12px 2px; font-size: 15px; color: var(--ink); background: transparent; cursor: pointer; max-width: 170px; }
.search-submit { display: flex; }
.search-submit .btn { flex: 1; justify-content: center; }

/* --- Section heads -------------------------------------------------- */
.section-head { display: flex; align-items: center; justify-content: space-between; margin: 28px 0 14px; }
.section-head h2 { margin: 0; }
.section-head .sub { color: var(--muted); font-size: 14px; }

/* --- Category grid -------------------------------------------------- */
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.category-tile {
  display: flex; align-items: center; gap: 10px; padding: 14px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--ink); font-weight: 600; transition: border-color .15s, transform .15s;
}
.category-tile:hover { border-color: var(--cobalt); color: var(--cobalt); text-decoration: none; transform: translateY(-1px); }
.category-tile .icon { color: var(--cobalt); }
.category-tile span { min-width: 0; }
.category-tile small { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; font-weight: 500; }
.category-tile-featured { background: linear-gradient(135deg, #edf2ff, #fff); border-color: #bfd0ff; }
.category-more { margin-top: 12px; }
.category-more summary { display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface); color: var(--ink); font-weight: 600; cursor: pointer; list-style: none; }
.category-more summary::-webkit-details-marker { display: none; }
.category-more summary:hover { border-color: var(--cobalt); color: var(--cobalt); }
.category-more[open] summary { margin-bottom: 12px; }

/* --- Listing cards -------------------------------------------------- */
.listings-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.listing-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .15s, border-color .15s;
}
.listing-card:hover { box-shadow: var(--shadow); border-color: #c9d3ef; }
.listing-card a.cover { position: absolute; inset: 0; z-index: 1; }
.listing-media { aspect-ratio: 4 / 3; background: var(--soft); display: flex; align-items: center; justify-content: center; color: #b7c0d6; overflow: hidden; position: relative; }
.listing-media img { width: 100%; height: 100%; object-fit: cover; }
.listing-media .listing-media-fallback { width: 42%; height: auto; object-fit: contain; opacity: .5; }
.listing-body { padding: 12px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.listing-price { font-size: 16px; font-weight: 800; color: var(--ink); }
.listing-title { font-size: 14.5px; font-weight: 600; color: var(--ink); margin: 0; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.listing-meta { display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: 13px; }
.listing-meta .icon { color: var(--muted); }
.listing-facts { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.fact { display: inline-flex; align-items: center; gap: 4px; background: var(--soft); color: var(--muted-strong); border-radius: 999px; padding: 3px 9px; font-size: 12px; font-weight: 600; }
.badge { display: inline-flex; align-items: center; gap: 4px; border-radius: 999px; padding: 2px 9px; font-size: 11px; font-weight: 700; }
.badge-promoted { background: #fff3d6; color: #8a5a00; }
.badge-verified { background: #e7f8ef; color: var(--success); }
.badge-condition { position: absolute; top: 10px; left: 10px; background: rgba(16,19,34,.72); color: #fff; z-index: 2; }

.save-btn {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--ink); display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 4px rgba(18,25,50,.2);
}
.save-btn.saved { color: var(--danger); }
.save-btn:hover { background: #fff; }

/* --- Tabs ----------------------------------------------------------- */
.tabs { display: flex; gap: 4px; overflow-x: auto; border-bottom: 1px solid var(--border); margin: 18px 0; -webkit-overflow-scrolling: touch; }
.tab { padding: 10px 16px; border: 0; background: transparent; border-bottom: 2px solid transparent; color: var(--muted); font-weight: 600; font-size: 14px; cursor: pointer; white-space: nowrap; font-family: inherit; }
.tab:hover { color: var(--cobalt); }
.tab.active { color: var(--cobalt); border-bottom-color: var(--cobalt); }

/* --- Filter panel --------------------------------------------------- */
.filter-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; margin-bottom: 18px; }
.filter-primary { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.filter-control { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 9px 12px; font-size: 14px; color: var(--ink); background: var(--surface); font-family: inherit; min-width: 0; }
.filter-control:focus { outline: 2px solid var(--cobalt); outline-offset: 1px; }
.filter-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.filter-status { color: var(--muted); font-size: 13px; min-height: 20px; }

/* --- Special (property/motors) cards -------------------------------- */
.special-results { display: flex; flex-direction: column; gap: 12px; }
.special-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; overflow: hidden; }
.special-card-main { display: flex; gap: 14px; padding: 14px; flex: 1; background: transparent; border: 0; text-align: left; cursor: pointer; color: inherit; font-family: inherit; }
.special-media { width: 96px; height: 96px; border-radius: var(--radius); background: var(--soft); display: flex; align-items: center; justify-content: center; color: var(--cobalt); flex: none; }
.special-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.special-body { flex: 1; min-width: 0; }
.special-price { font-weight: 800; font-size: 16px; margin: 0; }
.special-title { margin: 2px 0 4px; }
.special-meta { display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.special-facts { display: flex; flex-wrap: wrap; gap: 6px; }
.special-side { padding: 14px 12px; color: var(--muted); font-size: 12px; white-space: nowrap; }

/* --- Detail page ---------------------------------------------------- */
.detail-layout { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: var(--maxw); margin: 24px auto; padding: 0 16px; }
.detail-gallery { background: var(--soft); border-radius: var(--radius-lg); aspect-ratio: 16 / 10; display: flex; align-items: center; justify-content: center; color: #b7c0d6; overflow: hidden; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; }
.detail-gallery .detail-gallery-fallback { width: 34%; height: auto; object-fit: contain; opacity: .5; }
.detail-main h1 { margin: 4px 0 6px; }
.detail-price { font-size: 1.5rem; font-weight: 800; }
.detail-location { display: flex; align-items: center; gap: 5px; color: var(--muted); }
.detail-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.detail-sidebar { display: flex; flex-direction: column; gap: 14px; }
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; }
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 8px; }
.spec span { display: block; color: var(--muted); font-size: 12px; }
.spec strong { font-size: 14px; }
.safety-list { margin: 8px 0 0; padding-left: 18px; color: var(--muted-strong); }
.safety-list li { margin-bottom: 6px; }
.seller-card { display: flex; align-items: center; gap: 12px; }
.seller-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--soft); color: var(--cobalt); display: flex; align-items: center; justify-content: center; font-weight: 800; flex: none; }
.seller-name { font-weight: 700; }
.seller-signals { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }

/* --- Auth ----------------------------------------------------------- */
.auth-layout { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 940px; margin: 40px auto; padding: 0 16px; }
.auth-promise { display: none; }
.auth-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.auth-panel h2 { margin-top: 0; }
.auth-intro { color: var(--muted); }
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 11px 12px; font-size: 15px; font-family: inherit; color: var(--ink); background: var(--surface);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--cobalt); outline-offset: 1px; }
.field .help { color: var(--muted); font-size: 12px; margin-top: 4px; }
.field .error { color: var(--danger); font-size: 13px; margin-top: 4px; }
.auth-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 8px 0 14px; }
.or { display: flex; align-items: center; gap: 10px; color: var(--muted); margin: 16px 0; }
.or::before, .or::after { content: ""; height: 1px; background: var(--border); flex: 1; }
.google-btn { width: 100%; justify-content: center; border: 1px solid var(--border); }
.google-mark { font-weight: 800; font-size: 17px; }

/* --- Dashboard ------------------------------------------------------ */
.dashboard { max-width: var(--maxw); margin: 24px auto; padding: 0 16px; }
.dash-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.status-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.status-tab { border: 1px solid var(--border); background: var(--surface); color: var(--muted-strong); border-radius: 999px; padding: 6px 13px; font-size: 13px; font-weight: 600; }
.status-tab.active { background: var(--cobalt); border-color: var(--cobalt); color: #fff; }
.dash-list { display: flex; flex-direction: column; gap: 10px; }
.dash-item { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px; }
.dash-thumb { width: 64px; height: 64px; border-radius: var(--radius-sm); background: var(--soft); flex: none; display: flex; align-items: center; justify-content: center; color: #b7c0d6; overflow: hidden; }
.dash-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dash-info { flex: 1; min-width: 0; }
.dash-title { font-weight: 700; margin: 0 0 2px; }
.dash-meta { color: var(--muted); font-size: 13px; }
.dash-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.status-pill { display: inline-block; border-radius: 999px; padding: 2px 10px; font-size: 12px; font-weight: 700; }
.status-active { background: #e7f8ef; color: var(--success); }
.status-pending { background: #fff3d6; color: #8a5a00; }
.status-draft { background: var(--soft); color: var(--muted-strong); }
.status-rejected { background: #fde9ec; color: var(--danger); }
.status-expired, .status-removed { background: #eef0f5; color: var(--muted); }
.status-sold { background: #e7f0fe; color: var(--cobalt); }
.status-reserved { background: #f3e8ff; color: #6d28d9; }

/* --- Empty / alerts ------------------------------------------------- */
.empty { text-align: center; padding: 48px 16px; color: var(--muted); }
.empty .icon { color: #b7c0d6; }
.messages { max-width: var(--maxw); margin: 12px auto 0; padding: 0 16px; }
.alert { border-radius: var(--radius-sm); padding: 11px 14px; margin-bottom: 8px; font-size: 14px; border: 1px solid; }
.alert-success { background: #e7f8ef; border-color: #b8e7cd; color: #0c5c37; }
.alert-error { background: #fde9ec; border-color: #f5b8c6; color: #8f1f38; }
.alert-info { background: #e7f0fe; border-color: #bcd2fb; color: #163a8a; }

/* --- Pagination ----------------------------------------------------- */
.pagination { display: flex; gap: 6px; justify-content: center; margin: 24px 0; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; padding: 0 8px; border-radius: 8px; border: 1px solid var(--border); color: var(--ink); font-size: 14px; background: var(--surface); }
.pagination .current { background: var(--cobalt); border-color: var(--cobalt); color: #fff; }

/* --- Footer --------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--border); background: var(--surface); margin-top: 40px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 28px 16px; display: grid; grid-template-columns: 1fr; gap: 20px; }
.footer-col h4 { margin: 0 0 8px; font-size: 14px; }
.footer-col a { display: block; color: var(--muted-strong); padding: 3px 0; font-size: 14px; }
.footer-col a:hover { color: var(--cobalt); }
.footer-bottom { border-top: 1px solid var(--border); padding: 14px 16px; text-align: center; color: var(--muted); font-size: 13px; }

/* --- Mobile bottom navigation -------------------------------------- */
.mobile-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: var(--surface); border-top: 1px solid var(--border);
  display: flex; justify-content: space-around; padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
}
.mobile-nav a { display: flex; flex-direction: column; align-items: center; gap: 2px; color: var(--muted); font-size: 11px; font-weight: 600; padding: 4px 10px; }
.mobile-nav a.active, .mobile-nav a:hover { color: var(--cobalt); text-decoration: none; }
.mobile-nav .sell { background: var(--cobalt); color: #fff; border-radius: 999px; padding: 10px 16px; flex-direction: row; gap: 5px; font-size: 13px; }

body { padding-bottom: 70px; }

/* --- Forms misc ----------------------------------------------------- */
.form-actions { display: flex; gap: 10px; margin-top: 18px; }
.checkbox-list { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-list label { display: inline-flex; align-items: center; gap: 5px; font-size: 14px; color: var(--ink); }
.dyn-fields { border-top: 1px dashed var(--border); margin-top: 16px; padding-top: 16px; }
.dyn-fields h3 { margin-top: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.gallery-grid img { aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm); }

/* --- Responsive ----------------------------------------------------- */
@media (min-width: 640px) {
  .searchbar { flex-direction: row; align-items: center; }
  .search-submit { width: auto; }
  .search-submit .btn { flex: none; }
  .listings-grid { grid-template-columns: repeat(3, 1fr); }
  .filter-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .mobile-browse, .mobile-nav { display: none; }
  body { padding-bottom: 0; }
  .listings-grid { grid-template-columns: repeat(4, 1fr); }
  .filter-grid { grid-template-columns: repeat(4, 1fr); }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .auth-layout { grid-template-columns: 1fr 380px; }
  .auth-promise { display: block; }
  .detail-layout { grid-template-columns: 1fr 360px; }
  .footer-inner { grid-template-columns: repeat(4, 1fr); }
  .browse-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-copy { grid-template-columns: minmax(0, 1.6fr) minmax(300px, .8fr); gap: 44px; }
}

@media (max-width: 480px) {
  .topbar { padding: 8px 12px; gap: 6px; }
  .brand { gap: 7px; }
  .brand-logo { width: 30px; height: 30px; }
  .brand-wordmark { font-size: 16px; }
  .header-actions { gap: 2px; }
  .mobile-browse { width: 40px; padding: 9px; justify-content: center; }
  .mobile-browse-label, .header-sell { display: none; }
  .header-signin { padding-inline: 10px; }
  .hero-inner { padding-top: 24px; padding-bottom: 28px; }
  .hero h1 { font-size: clamp(1.9rem, 10vw, 2.45rem); }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
