/* ============================================================
   BidSA — Main Stylesheet
   Inspired by Bring a Trailer: clean, white, red-accent,
   community-first, functional over flashy.
   ============================================================ */

:root {
  --white:      #FFFFFF;
  --off-white:  #F7F7F7;
  --light:      #EBEBEB;
  --red:        #C41230;
  --red-dark:   #9E0E26;
  --red-bg:     #FDF2F4;
  --text:       #1A1A1A;
  --text-mid:   #4A4A4A;
  --muted:      #767676;
  --border:     #E0E0E0;
  --border-dark:#BDBDBD;
  --green:      #2E7D32;
  --green-bg:   #F1F8F1;
  --blue:       #1565C0;
  --blue-bg:    #EEF3FB;
  --card-shadow: 0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --card-hover:  0 4px 12px rgba(0,0,0,.14);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--off-white);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 1.5;
}

h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

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

/* ---- Brand ---- */
.brand-bid { color: var(--red);  font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; }
.brand-sa  { color: var(--text); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; }

/* KYG logo lockup: big "KYG" with "Koloi Ya Goa" underneath */
.brand-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.brand-logo:hover { text-decoration: none; }
.brand-kyg {
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: .06em;
  color: var(--red);
}
.brand-kyg .k, .brand-kyg .g { color: var(--red); }
.brand-kyg .y { color: var(--text); }
.brand-tagline {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
/* Footer / dark-friendly variant keeps same colours on white footer */
.brand-logo.lg .brand-kyg { font-size: 2.2rem; }
.brand-logo.lg .brand-tagline { font-size: .72rem; }

/* ---- Navbar ---- */
#mainNav {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

#mainNav .navbar-brand { padding: .5rem 0; }

#mainNav .nav-link {
  color: var(--text-mid) !important;
  font-size: .9rem;
  font-weight: 600;
  padding: .5rem .85rem !important;
  border-radius: 3px;
  transition: color .15s, background .15s;
}

#mainNav .nav-link:hover {
  color: var(--red) !important;
  background: var(--red-bg);
  text-decoration: none;
}

.notif-badge {
  position: absolute;
  top: 0; right: -2px;
  font-size: .6rem;
  padding: 2px 5px;
}

.notif-dropdown { background: var(--white); border: 1px solid var(--border); box-shadow: var(--card-hover); }
.notif-dropdown .dropdown-item { color: var(--text); font-size: .875rem; }
.notif-dropdown .dropdown-item:hover { background: var(--off-white); }

.avatar-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: .8rem;
}

.dropdown-menu {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--card-hover);
  border-radius: 4px;
}

.dropdown-item { color: var(--text); font-size: .9rem; padding: .5rem 1rem; }
.dropdown-item:hover { background: var(--off-white); color: var(--red); }
.dropdown-divider { border-color: var(--border); }

/* ---- Buttons ---- */
.btn-red {
  background: var(--red);
  color: var(--white);
  border: none;
  font-weight: 600;
  border-radius: 3px;
  transition: background .15s, transform .1s;
  font-size: .9rem;
}
.btn-red:hover { background: var(--red-dark); color: var(--white); transform: translateY(-1px); }

.btn-outline-red {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
  font-weight: 600;
  border-radius: 3px;
  font-size: .9rem;
  transition: all .15s;
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }

.btn-grey {
  border: 1px solid var(--border);
  color: var(--text-mid);
  background: var(--white);
  font-weight: 500;
  border-radius: 3px;
  font-size: .875rem;
  transition: all .15s;
}
.btn-grey:hover { border-color: var(--border-dark); background: var(--off-white); color: var(--text); }

/* ---- Hero ---- */
.hero-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}

.hero-img-wrap {
  position: relative;
  aspect-ratio: 16/7;
  overflow: hidden;
  background: #111;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.3) 55%, rgba(0,0,0,0) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 2rem 3rem;
}

.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: .75rem;
}

.hero-title {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: .5rem;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}

.hero-meta { font-size: .9rem; color: rgba(255,255,255,.8); }

.hero-bid-strip {
  background: var(--white);
  border-top: 3px solid var(--red);
  padding: 1rem 0;
}

.hero-bid-item { padding: .5rem 1.5rem; }
.hero-bid-item + .hero-bid-item { border-left: 1px solid var(--border); }
.hero-bid-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.hero-bid-value { font-size: 1.35rem; font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.hero-bid-value.red { color: var(--red); }

/* ---- Section headings ---- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--text);
}

.section-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.01em;
  margin: 0;
}

.section-sub { font-size: .85rem; color: var(--muted); margin-top: .2rem; }

/* ---- Auction Card ---- */
.auction-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.auction-card:hover {
  box-shadow: var(--card-hover);
  border-color: var(--border-dark);
}

.auction-card .card-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eee;
}

.auction-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.auction-card:hover .card-img-wrap img { transform: scale(1.03); }

.auction-card .card-body {
  padding: .85rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title-text {
  font-size: .975rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: .25rem;
}

.card-meta {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: .6rem;
}

.card-bid-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: .6rem;
  border-top: 1px solid var(--light);
}

.card-bid-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.card-bid-amount { font-size: 1.05rem; font-weight: 800; color: var(--text); letter-spacing: -.01em; }

.card-time { font-size: .78rem; font-weight: 600; color: var(--muted); }
.card-time.urgent { color: var(--red); }

/* Card badges */
.badge-reserve-met {
  position: absolute; top: 8px; left: 8px;
  background: var(--green); color: #fff;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 7px; border-radius: 2px;
}

.badge-no-reserve {
  position: absolute; top: 8px; left: 8px;
  background: var(--red); color: #fff;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 7px; border-radius: 2px;
}

.badge-ending {
  position: absolute; top: 8px; right: 8px;
  background: rgba(196,18,48,.88); color: #fff;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 3px 7px; border-radius: 2px;
}

.badge-sold-overlay {
  position: absolute; inset: 0;
  background: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
}

.badge-sold-overlay span {
  border: 3px solid var(--red);
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 800;
  padding: .3rem 1.2rem;
  transform: rotate(-10deg);
  letter-spacing: .1em;
  background: rgba(255,255,255,.7);
}

.watchlist-btn {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--border);
  color: var(--muted);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s; font-size: .95rem;
  backdrop-filter: blur(4px);
}
.watchlist-btn:hover, .watchlist-btn.active { color: var(--red); border-color: var(--red); }

/* ---- Category Pills ---- */
.category-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: .6rem 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.category-strip::-webkit-scrollbar { display: none; }

.cat-pill {
  display: inline-block;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 20px;
  margin-right: .4rem;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
}
.cat-pill:hover, .cat-pill.active {
  background: var(--red); color: var(--white); border-color: var(--red); text-decoration: none;
}

/* ---- Why cards ---- */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  height: 100%;
  border-top: 3px solid var(--red);
  transition: box-shadow .2s;
}
.why-card:hover { box-shadow: var(--card-hover); }
.why-icon { font-size: 1.75rem; color: var(--red); margin-bottom: .75rem; }
.why-title { font-size: .975rem; font-weight: 700; margin-bottom: .4rem; }

/* ---- Auction Detail ---- */
.gallery-main img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; border-radius: 3px;
  cursor: zoom-in; border: 1px solid var(--border);
}

.gallery-thumbs {
  display: flex; gap: .4rem;
  overflow-x: auto; padding-bottom: .25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.gallery-thumbs img {
  width: 78px; height: 54px;
  object-fit: cover; border-radius: 2px;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0; transition: border-color .15s, opacity .15s; opacity: .65;
}
.gallery-thumbs img.active, .gallery-thumbs img:hover { border-color: var(--red); opacity: 1; }

.bid-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  padding: 1.5rem;
  position: sticky; top: 72px;
}

.current-bid-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.current-bid-amount { font-size: 2rem; font-weight: 800; color: var(--text); letter-spacing: -.03em; line-height: 1; }

.reserve-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 3px;
}
.reserve-badge.met     { background: var(--green-bg); color: var(--green); border: 1px solid #C8E6C9; }
.reserve-badge.not-met { background: var(--red-bg);   color: var(--red);   border: 1px solid #FFCDD2; }
.reserve-badge.none    { background: var(--red-bg);   color: var(--red);   border: 1px solid #FFCDD2; }

.countdown-block { display: flex; gap: .5rem; margin: 1rem 0; }

.countdown-unit {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: .5rem .65rem;
  text-align: center; min-width: 50px;
}
.countdown-num { font-size: 1.35rem; font-weight: 800; color: var(--text); line-height: 1; }
.countdown-lbl { font-size: .58rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }

.bid-input-row { display: flex; gap: .5rem; }
.bid-input-row input {
  flex: 1;
  border: 1px solid var(--border-dark);
  color: var(--text); border-radius: 3px;
  padding: .6rem .9rem; font-size: .95rem;
  background: var(--white);
}
.bid-input-row input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(196,18,48,.12); }

.bid-history-list { list-style: none; padding: 0; margin: 0; }
.bid-history-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem 0; border-bottom: 1px solid var(--light); font-size: .875rem;
}
.bid-history-list li:last-child { border-bottom: none; }
.bid-winner-icon { color: var(--red); }

/* ---- Vehicle Info ---- */
.vehicle-info-table { width: 100%; border-collapse: collapse; }
.vehicle-info-table th, .vehicle-info-table td { padding: .6rem .85rem; border-bottom: 1px solid var(--light); font-size: .9rem; }
.vehicle-info-table th { color: var(--muted); font-weight: 600; width: 40%; background: var(--off-white); }
.vehicle-info-table td { color: var(--text); font-weight: 500; }

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 1.4rem; }
.timeline::before { content: ''; position: absolute; left: 6px; top: 0; bottom: 0; width: 2px; background: var(--light); }
.timeline-item { position: relative; margin-bottom: 1.1rem; }
.timeline-item::before {
  content: ''; position: absolute; left: -1.4rem; top: 5px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--red);
}
.timeline-year  { font-size: .72rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .07em; }
.timeline-event { font-size: .9rem; font-weight: 700; color: var(--text); }
.timeline-note  { font-size: .83rem; color: var(--muted); }

/* ---- Comments ---- */
.comment-item { display: flex; gap: .9rem; padding: 1rem 0; border-bottom: 1px solid var(--light); }
.comment-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.comment-author { font-weight: 700; font-size: .875rem; color: var(--text); }
.comment-time   { font-size: .75rem; color: var(--muted); }
.comment-text   { font-size: .9rem; color: var(--text-mid); margin-top: .2rem; line-height: 1.55; }

/* ---- Forms ---- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
}

.form-label { font-size: .875rem; font-weight: 600; color: var(--text); margin-bottom: .3rem; }

.form-control, .form-select {
  background: var(--white);
  border: 1px solid var(--border-dark);
  color: var(--text);
  border-radius: 3px;
  font-size: .9rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,18,48,.12);
  background: var(--white);
  color: var(--text);
}
.form-control::placeholder { color: #AAA; }

/* ---- Filter Sidebar ---- */
.filter-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.1rem;
  position: sticky; top: 72px;
}

.filter-title {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); font-weight: 700;
  margin-bottom: .6rem; padding-bottom: .4rem;
  border-bottom: 1px solid var(--light);
}

.filter-check { display: flex; align-items: center; gap: .45rem; margin-bottom: .35rem; cursor: pointer; }
.filter-check input[type=checkbox], .filter-check input[type=radio] { accent-color: var(--red); }
.filter-check label { font-size: .875rem; color: var(--text-mid); cursor: pointer; }

/* ---- Sell Steps ---- */
.step-indicator { display: flex; margin-bottom: 1.5rem; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.step-indicator .step {
  flex: 1; padding: .7rem; text-align: center;
  background: var(--white); border-right: 1px solid var(--border);
  font-size: .8rem; font-weight: 600; color: var(--muted); transition: all .2s;
}
.step-indicator .step:last-child { border-right: none; }
.step-indicator .step.active { background: var(--red); color: var(--white); border-color: var(--red); }
.step-indicator .step.done   { background: var(--off-white); color: var(--text); }

/* ---- Drop Zone ---- */
.drop-zone {
  border: 2px dashed var(--border-dark);
  border-radius: 4px; padding: 2.5rem 2rem;
  text-align: center; cursor: pointer;
  transition: border-color .2s, background .2s; background: var(--off-white);
}
.drop-zone:hover, .drop-zone.dragging { border-color: var(--red); background: var(--red-bg); }
.drop-zone .drop-icon { font-size: 2.2rem; color: var(--muted); margin-bottom: .6rem; }

/* ---- Dashboard Stats ---- */
.stat-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 4px;
  padding: 1.35rem; position: relative; overflow: hidden;
}
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.stat-card.red::before   { background: var(--red); }
.stat-card.green::before { background: var(--green); }
.stat-card.blue::before  { background: var(--blue); }
.stat-card.grey::before  { background: var(--border-dark); }

.stat-icon  { font-size: 1.75rem; opacity: .12; position: absolute; right: 1.1rem; top: 1.1rem; color: var(--text); }
.stat-value { font-size: 1.8rem; font-weight: 800; color: var(--text); letter-spacing: -.03em; }
.stat-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }

/* ---- Pills ---- */
.pill {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 2px;
}
.pill-active   { background: var(--blue-bg);  color: var(--blue);  border: 1px solid #BBDEFB; }
.pill-ended    { background: var(--light);     color: var(--muted); border: 1px solid var(--border); }
.pill-sold     { background: var(--green-bg);  color: var(--green); border: 1px solid #C8E6C9; }
.pill-pending  { background: #FFF8E1;          color: #F57F17;      border: 1px solid #FFECB3; }
.pill-approved { background: var(--green-bg);  color: var(--green); border: 1px solid #C8E6C9; }
.pill-rejected { background: var(--red-bg);    color: var(--red);   border: 1px solid #FFCDD2; }

/* ---- Tables ---- */
.table-clean { color: var(--text); border-color: var(--border); font-size: .9rem; }
.table-clean thead th {
  background: var(--off-white); color: var(--muted);
  font-size: .72rem; text-transform: uppercase; letter-spacing: .07em;
  border-color: var(--border); font-weight: 700;
}
.table-clean tbody tr { border-color: var(--border); transition: background .1s; }
.table-clean tbody tr:hover { background: var(--off-white); }
.table-clean td { border-color: var(--border); vertical-align: middle; }

/* ---- Admin ---- */
.admin-sidebar {
  background: var(--white);
  border-right: 1px solid var(--border);
  min-height: 100vh; padding: 1rem 0;
  width: 220px; flex-shrink: 0;
}

.admin-nav-link {
  display: flex; align-items: center; gap: .65rem;
  padding: .6rem 1.1rem;
  color: var(--text-mid); font-size: .875rem; font-weight: 500;
  transition: all .15s; border-left: 3px solid transparent;
  text-decoration: none;
}
.admin-nav-link:hover { background: var(--off-white); color: var(--red); text-decoration: none; }
.admin-nav-link.active { border-left-color: var(--red); background: var(--red-bg); color: var(--red); font-weight: 700; }

.admin-layout { display: flex; }
.admin-main   { flex: 1; padding: 2rem; background: var(--off-white); min-height: 100vh; }

/* ---- Footer ---- */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
  margin-top: 4rem;
  font-size: .875rem;
}

.footer-heading { color: var(--text); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .75rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .35rem; }
.footer-links a { color: var(--text-mid); transition: color .15s; }
.footer-links a:hover { color: var(--red); text-decoration: none; }

.footer-divider { border-color: var(--border); margin: 1.75rem 0 1rem; }

.social-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--off-white); border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all .15s; font-size: .95rem;
}
.social-icon:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* ---- Misc ---- */
.section-sep { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.text-red   { color: var(--red)   !important; }
.text-muted { color: var(--muted) !important; }
.bg-white   { background: var(--white) !important; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-overlay { padding: 1.25rem 1.5rem; }
  .hero-title   { font-size: 1.4rem; }
  .bid-sidebar  { position: static; margin-top: 1.5rem; }
  .filter-sidebar { position: static; margin-bottom: 1.25rem; }
  .admin-sidebar  { display: none; }
  .hero-bid-item + .hero-bid-item { border-left: none; border-top: 1px solid var(--border); }
}
