/* ── Re-Art Auctions — Design System (matches portal) ──────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Rajdhani:wght@300;400;500;600&display=swap');

:root {
  --bg0:#03060d; --bg1:#060c18; --bg2:#0a1422; --bg3:#0f1d30;
  --bice:#c8e8fa; --bsky:#6bb8ef; --bcore:#2a7de1; --bdeep:#1a56b8;
  --gold:#c9a96e; --goldd:rgba(201,169,110,.55);
  --tp:#deedf8;  --ts:#a5c4d9;  --tm:#5a8db3;
  --brd:rgba(42,125,225,.18);
  --brdb:rgba(107,184,239,.45);
  --gi:rgba(200,232,250,.06);
  --fd:'Cormorant Garamond',Georgia,serif;
  --fu:'Rajdhani','Arial Narrow',sans-serif;
  --eo:cubic-bezier(.16,1,.3,1);
  /* Legacy compatibility */
  --bg: var(--bg0);
  --bg2l: var(--bg2);
  --border: var(--brd);
  --text: var(--tp);
  --muted: var(--tm);
  --green: #4caf8a;
  --red: #e57373;
  --blue: var(--bcore);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth }

body {
  font-family: var(--fu);
  background: var(--bg0);
  color: var(--tp);
  line-height: 1.7;
  font-size: 1rem;
  min-height: 100vh;
}

a { color: var(--bsky); text-decoration: none }
a:hover { color: var(--bice) }

/* ── NAV ── */
.pnav {
  position: fixed; top:0; left:0; right:0; z-index:200;
  padding: 14px clamp(16px,4%,60px);
  display: flex; align-items:center; justify-content:space-between;
  background: rgba(3,6,13,.88); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--brd);
}
.pnav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.pnav-logo {
  height: 30px; width: auto;
  filter: brightness(1.05);
}
.pnav-logo:hover { filter: brightness(1.2) drop-shadow(0 0 8px var(--bsky)) }
.pnav-label {
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; font-family: var(--fu);
  padding: 2px 7px; border: 1px solid var(--goldd); border-radius: 2px;
  line-height: 1;
}
.pnav-right {
  display: flex; align-items: center; gap: 14px;
}
.pnav-user {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ts); font-weight: 500;
}
.pnav-user em { color: var(--bsky); font-style: normal }

/* Hamburger toggle — hidden on desktop */
.pnav-toggle {
  display: none;
  background: none; border: 1px solid var(--brd);
  border-radius: 3px; color: var(--tm);
  padding: 6px 10px; font-size: 1.1rem; cursor: pointer;
  line-height: 1; transition: border-color .2s, color .2s;
}
.pnav-toggle:hover { border-color: var(--bsky); color: var(--bsky) }

/* ── LAYOUT ── */
.page-wrap {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  padding: 100px clamp(16px,4%,40px) 60px;
}
.page-wrap-wide {
  max-width: 1400px; margin: 0 auto;
  padding: 100px clamp(16px,4%,40px) 60px;
}
.page-wrap-narrow {
  max-width: 520px; margin: 0 auto;
  padding: 100px clamp(16px,4%,40px) 60px;
}

/* ── CANVAS (neural background) ── */
#nc { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .28 }

/* ── PAGE HEADER ── */
.ph-label {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; font-weight: 500;
}
.ph-title {
  font-family: var(--fd); font-size: clamp(1.8rem,4vw,2.6rem);
  font-weight: 300; color: var(--tp); margin-bottom: 6px; line-height: 1.15;
}
.ph-title em { color: var(--bsky); font-style: italic }
.ph-sub { color: var(--ts); font-size: .88rem; margin-bottom: 32px }

/* ── HERO ── */
.auction-hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px clamp(20px,5%,80px) 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 40%,
    rgba(26,86,184,.35) 0%, rgba(3,6,13,0) 70%);
}
.hero-label {
  font-size: .65rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.hero-title {
  font-family: var(--fd);
  font-size: clamp(2.4rem,7vw,5rem);
  font-weight: 300; color: var(--tp);
  line-height: 1.1; margin-bottom: 18px;
}
.hero-title em { color: var(--bsky); font-style: italic }
.hero-sub {
  font-family: var(--fu); font-size: clamp(.9rem,2vw,1.1rem);
  color: var(--ts); max-width: 600px;
  line-height: 1.7; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--tm); display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--tm), transparent);
}

/* ── WHAT WE AUCTION STRIP ── */
.auction-types {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--brd); border: 1px solid var(--brd);
  border-radius: 4px; overflow: hidden;
  margin-bottom: 60px;
}
.auction-type-item {
  background: var(--bg1);
  padding: 32px 28px;
  transition: background .3s;
}
.auction-type-item:hover { background: var(--bg2) }
.auction-type-icon {
  font-size: 1.6rem; margin-bottom: 14px;
  display: block;
}
.auction-type-title {
  font-family: var(--fd); font-size: 1.15rem;
  color: var(--tp); margin-bottom: 8px; font-weight: 400;
}
.auction-type-desc {
  font-size: .82rem; color: var(--ts); line-height: 1.6;
}
.auction-type-badge {
  display: inline-block; margin-top: 12px;
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--goldd);
  padding: 2px 8px; border-radius: 2px;
}

/* ── ABOUT STRIP ── */
.about-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center;
  background: var(--bg1); border: 1px solid var(--brd);
  border-radius: 4px; padding: 40px 40px;
  margin-bottom: 60px;
}
.about-strip-text {}
.about-strip-steps {
  display: flex; flex-direction: column; gap: 0;
}
.about-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--brd);
}
.about-step:last-child { border-bottom: none; padding-bottom: 0 }
.about-step-num {
  font-family: var(--fd); font-size: 1.4rem;
  color: var(--gold); opacity: .7; font-style: italic;
  flex-shrink: 0; width: 28px; line-height: 1.3;
}
.about-step-text { font-size: .85rem; color: var(--ts); line-height: 1.6 }
.about-step-text strong { color: var(--tp); font-weight: 500 }

/* ── SECTION TITLE ── */
.section-title {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 500;
  font-family: var(--fu);
  display: flex; align-items: center; gap: 14px;
}
.section-title::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, var(--brd), transparent);
}

/* ── CARDS ── */
.pcard {
  background: var(--bg2); border: 1px solid var(--brd);
  border-radius: 4px; padding: 28px;
  transition: border-color .3s;
}
.pcard:hover { border-color: var(--brdb) }

/* ── LOT CARDS GRID ── */
.lots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.lot-card {
  background: var(--bg2); border: 1px solid var(--brd);
  border-radius: 4px; overflow: hidden;
  transition: border-color .3s, transform .3s var(--eo);
  display: block; text-decoration: none; color: inherit;
}
.lot-card:hover {
  border-color: var(--brdb);
  transform: translateY(-3px);
}
.lot-card .thumb {
  width: 100%; height: 190px;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.lot-card .thumb img,
.lot-card .thumb video {
  width: 100%; height: 190px; object-fit: cover;
}
.lot-card .thumb-placeholder {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--tm);
}
.lot-card .card-body { padding: 16px }
.lot-card .card-tier {
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 6px;
}
.lot-card .card-title {
  font-family: var(--fd); font-size: 1.05rem; font-weight: 400;
  color: var(--tp); margin-bottom: 4px; line-height: 1.3;
}
.lot-card .card-meta  { font-size: .75rem; color: var(--tm); margin-bottom: 10px }
.lot-card .card-bid   { font-size: 1.1rem; color: var(--gold); font-weight: 500 }
.lot-card .card-timer { font-size: .75rem; color: var(--tm); margin-top: 4px }

/* ── FEATURED LOT ── */
.featured-lot {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--bg1); border: 1px solid var(--brd);
  border-radius: 4px; overflow: hidden;
  margin-bottom: 60px;
  transition: border-color .3s;
}
.featured-lot:hover { border-color: var(--brdb) }
.featured-lot-media {
  background: var(--bg3); min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.featured-lot-media img,
.featured-lot-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.featured-lot-body { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center }
.featured-lot-body .tier-label {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 8px;
}
.featured-lot-title {
  font-family: var(--fd); font-size: clamp(1.4rem,3vw,2rem);
  font-weight: 300; color: var(--tp); margin-bottom: 10px; line-height: 1.2;
}
.featured-lot-desc {
  font-size: .85rem; color: var(--ts); line-height: 1.65;
  margin-bottom: 24px; flex: 1;
}
.featured-lot-price-label {
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--tm); margin-bottom: 4px;
}
.featured-lot-price {
  font-family: var(--fd); font-size: 2rem; color: var(--gold);
  font-weight: 300; margin-bottom: 6px;
}
.featured-lot-timer {
  font-size: .82rem; color: var(--ts); margin-bottom: 22px;
}

/* ── TIER BADGES ── */
.tier-gold   { color: var(--gold);  border-color: var(--goldd) }
.tier-silver { color: #b0c4d8;      border-color: rgba(176,196,216,.4) }
.tier-bronze { color: #cd8a60;      border-color: rgba(205,138,96,.4) }
.tier-badge {
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid; border-radius: 2px; padding: 2px 8px; font-weight: 600;
  display: inline-block;
}

/* ── UPCOMING / ENDED MINI CARDS ── */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}
.mini-card {
  background: var(--bg1); border: 1px solid var(--brd);
  border-radius: 4px; padding: 18px 16px;
  transition: border-color .25s;
}
.mini-card:hover { border-color: var(--brdb) }
.mini-card-tier { margin-bottom: 6px }
.mini-card-title {
  font-family: var(--fd); font-size: .95rem;
  color: var(--tp); margin: 4px 0 6px; line-height: 1.3;
}
.mini-card-meta { font-size: .75rem; color: var(--tm) }
.mini-card-price { font-size: .9rem; color: var(--gold); margin-top: 6px }

/* ── COUNTDOWN ── */
.countdown { font-size: 1.1rem; font-weight: 500; color: var(--gold) }
.countdown.ending { color: #e57373 }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--fu); font-size: .72rem; letter-spacing: .13em;
  text-transform: uppercase; font-weight: 600;
  padding: 10px 22px; border-radius: 2px; cursor: pointer;
  text-decoration: none; border: none;
  transition: all .25s var(--eo);
}
.btn:hover { opacity: 1 }
.btn-primary  { background: var(--bcore); color: #fff }
.btn-primary:hover { background: var(--bdeep); color: #fff }
.btn-outline  { background: transparent; color: var(--bsky); border: 1px solid var(--bcore) }
.btn-outline:hover { background: var(--bcore); color: #fff }
.btn-ghost    { background: transparent; color: var(--tm); border: 1px solid var(--brd) }
.btn-ghost:hover { border-color: var(--bsky); color: var(--bsky) }
.btn-gold     { background: transparent; color: var(--gold); border: 1px solid var(--goldd) }
.btn-gold:hover { background: rgba(201,169,110,.12) }
.btn-danger   { background: transparent; color: #e57373; border: 1px solid rgba(229,115,115,.3) }
.btn-danger:hover { background: rgba(229,115,115,.1) }
.btn-sm { padding: 6px 14px; font-size: .65rem }
.btn-block { width: 100%; justify-content: center }
.btn-active { color: var(--bsky) !important; border-color: var(--bcore) !important }

/* ── ALERTS ── */
.palert {
  padding: 12px 16px; border-radius: 2px; font-size: .82rem;
  margin-bottom: 18px; border-left: 3px solid;
}
.palert-err  { background: rgba(229,115,115,.08); border-color: #e57373; color: #e57373 }
.palert-ok   { background: rgba(107,184,239,.08); border-color: var(--bsky); color: var(--bsky) }
.palert-info { background: rgba(201,169,110,.08); border-color: var(--gold); color: var(--gold) }
/* Legacy */
.alert-ok  { background: rgba(107,184,239,.08); border: 1px solid var(--bsky); color: var(--bsky); padding: 12px 16px; border-radius: 2px; margin-bottom: 16px; }
.alert-err { background: rgba(229,115,115,.08); border: 1px solid #e57373; color: #e57373; padding: 12px 16px; border-radius: 2px; margin-bottom: 16px; }
.alert-info { background: rgba(201,169,110,.08); border: 1px solid var(--gold); color: var(--gold); padding: 12px 16px; border-radius: 2px; margin-bottom: 16px; }

/* ── FORMS ── */
.fgroup { margin-bottom: 20px }
.flabel {
  display: block; font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ts); margin-bottom: 7px; font-weight: 500;
}
label { display: block; font-size: .75rem; color: var(--ts); margin-bottom: 5px; margin-top: 14px }
.finput, .fselect, .ftextarea,
input[type=text], input[type=email], input[type=password], input[type=number],
input[type=datetime-local], select, textarea {
  width: 100%; background: var(--bg1);
  border: 1px solid var(--brd); border-radius: 2px;
  color: var(--tp); font-family: var(--fu); font-size: .92rem;
  padding: 10px 14px;
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}
input:focus, select:focus, textarea:focus,
.finput:focus, .fselect:focus, .ftextarea:focus {
  border-color: var(--brdb);
  box-shadow: 0 0 0 3px rgba(42,125,225,.12);
}
input::placeholder, textarea::placeholder { color: var(--tm) }
.ftextarea, textarea { resize: vertical; min-height: 100px }
.fhint { color: var(--tm); font-size: .72rem; margin-top: 5px }
.ferr  { color: #e57373; font-size: .75rem; margin-top: 5px }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }

/* ── AUTH CARDS ── */
.auth-card, .auth-wrap {
  position: relative; z-index: 1;
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 16px;
}
.auth-box {
  width: 100%; max-width: 440px;
  background: var(--bg2); border: 1px solid var(--brd);
  border-radius: 4px; padding: 36px 32px;
}
.auth-logo {
  height: 38px; width: auto;
  filter: brightness(1.05); margin-bottom: 32px; display: block;
}
.auth-title {
  font-family: var(--fd); font-size: 1.6rem; font-weight: 300;
  color: var(--tp); margin-bottom: 4px;
}
.auth-title em { color: var(--bsky); font-style: italic }
.auth-sub  { color: var(--tm); font-size: .8rem; margin-bottom: 28px }
.auth-foot { margin-top: 20px; font-size: .78rem; color: var(--tm); text-align: center }
.auth-foot a { color: var(--bsky) }
.auth-foot a:hover { text-decoration: underline }

/* ── BID BOX ── */
.bid-box { background: var(--bg2); border: 1px solid var(--brd); border-radius: 4px; padding: 24px }
.bid-box .current-bid { font-family: var(--fd); font-size: 2rem; color: var(--gold); font-weight: 300 }
.bid-box .bid-label   { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--tm); margin-bottom: 4px }

/* ── BID TABLE ── */
.bid-table { width: 100%; border-collapse: collapse; font-size: .82rem }
.bid-table th { color: var(--tm); padding: 8px 10px; text-align: left; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid var(--brd) }
.bid-table td { padding: 8px 10px; border-bottom: 1px solid rgba(42,125,225,.08); color: var(--ts) }

/* ── LOT DETAIL ── */
.lot-detail-media { width: 100%; max-height: 500px; object-fit: contain; border-radius: 4px; background: var(--bg2) }

/* ── CERTIFICATE ── */
.cert-card { max-width: 680px; margin: 60px auto }
.cert-valid   { border-color: #4caf8a }
.cert-invalid { border-color: #e57373 }
.cert-row { display: flex; gap: 16px; margin-bottom: 10px; font-size: .82rem }
.cert-row .lbl { color: var(--tm); width: 160px; flex-shrink: 0 }

/* ── FILTER BAR ── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; align-items: center }
.filter-bar select { width: auto; min-width: 140px }

/* ── TABS ── */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--brd); margin-bottom: 24px }
.tab-btn { padding: 10px 20px; background: none; border: none; color: var(--tm); cursor: pointer; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; border-bottom: 2px solid transparent; font-family: var(--fu) }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold) }
.tab-pane { display: none }
.tab-pane.active { display: block }

/* ── FOOTER ── */
.pfooter {
  text-align: center; padding: 24px;
  font-size: .72rem; color: var(--tm);
  border-top: 1px solid var(--brd); margin-top: 60px;
  position: relative; z-index: 1;
}

/* ── DIVIDER ── */
.pdiv { border: none; border-top: 1px solid var(--brd); margin: 32px 0 }

/* ── TABLE (general) ── */
.ptable-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch }
.ptable { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 540px }
.ptable th { text-align: left; padding: 10px 14px; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--tm); border-bottom: 1px solid var(--brd); font-weight: 500 }
.ptable td { padding: 12px 14px; border-bottom: 1px solid rgba(42,125,225,.08); color: var(--ts); vertical-align: middle }
.ptable tr:hover td { background: var(--gi) }

/* ── LOT CARDS (new style for lots.php) ── */
.lot-card-link { text-decoration: none; color: inherit; display: block }
.lot-card-link .lot-card { height: 100% }
.lot-card-thumb {
  position: relative; width: 100%; height: 200px;
  background: var(--bg3); overflow: hidden;
}
.lot-card-thumb img,
.lot-card-thumb video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--eo);
}
.lot-card:hover .lot-card-thumb img,
.lot-card:hover .lot-card-thumb video { transform: scale(1.04) }
.lot-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--tm);
}
.lot-card-status {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(3,6,13,.82); backdrop-filter: blur(6px);
  font-size: .7rem; color: var(--gold);
  padding: 3px 8px; border-radius: 2px;
  border: 1px solid var(--goldd);
}
.lot-card-body { padding: 16px }
.lot-card-meta { display: flex; align-items: center; margin-bottom: 8px }
.lot-card-title {
  font-family: var(--fd); font-size: 1.05rem; font-weight: 400;
  color: var(--tp); margin-bottom: 4px; line-height: 1.3;
}
.lot-card-sub  { font-size: .75rem; color: var(--tm); margin-bottom: 10px }
.lot-card-bid  { font-size: 1.05rem; color: var(--gold); font-weight: 500 }
.ending { color: #e57373 !important }

/* ── LOT DETAIL PAGE ── */
.lot-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.lot-detail-main {}
.lot-detail-side {}
.lot-detail-media-wrap {
  background: var(--bg2); border: 1px solid var(--brd);
  border-radius: 4px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.lot-detail-media {
  width: 100%; max-height: 520px;
  object-fit: contain; display: block; cursor: zoom-in;
}
video.lot-detail-media { cursor: default }
.lot-detail-media-placeholder {
  min-height: 280px; width: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--tm); padding: 40px;
}
.bid-current { margin-top: 16px }
.bid-label { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--tm); margin-bottom: 4px }
.bid-amount { font-family: var(--fd); font-size: 2.2rem; color: var(--gold); font-weight: 300; line-height: 1.1 }
.bid-countdown { font-size: 1.3rem; font-weight: 500; color: var(--gold); margin-top: 2px }
.bid-countdown.ending { color: #e57373 }
.bid-info { font-size: .78rem; color: var(--tm); margin-top: 12px; line-height: 1.7 }

/* ── TABS (account.php style) ── */
.tab-hidden { display: none }

/* ══════════════════════════════════════════
   MOBILE — hamburger nav at ≤768px
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Show hamburger, hide nav links */
  .pnav-toggle { display: block }
  .pnav-right  { display: none }
  .pnav-right.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; inset: 0; z-index: 190;
    background: rgba(3,6,13,.97); backdrop-filter: blur(20px);
    padding: 80px clamp(20px,6%,48px) 40px;
    gap: 18px;
  }
  .pnav-right.open .btn { font-size: .82rem; padding: 12px 22px }
  .pnav-right.open .pnav-user { display: block; font-size: .75rem; padding: 8px 0; border-bottom: 1px solid var(--brd); width: 100% }

  /* Hero */
  .auction-hero { min-height: 85vh; padding: 100px 24px 60px }
  .hero-scroll { display: none }
  .hero-ctas { flex-direction: column; align-items: center }
  .hero-ctas .btn { width: 240px; justify-content: center }

  /* Featured lot stacks */
  .featured-lot { grid-template-columns: 1fr }
  .featured-lot-media { min-height: 240px }
  .featured-lot-body { padding: 24px 20px }

  /* Auction types: single column */
  .auction-types { grid-template-columns: 1fr }

  /* About strip */
  .about-strip { grid-template-columns: 1fr; padding: 28px 20px; gap: 24px }

  /* Mini grids */
  .mini-grid { grid-template-columns: 1fr 1fr }

  /* Lots grid */
  .lots-grid { grid-template-columns: 1fr 1fr }

  /* Lot detail */
  .lot-detail-grid { grid-template-columns: 1fr }
  .lot-detail-side { order: -1 }

  /* Forms */
  .grid2 { grid-template-columns: 1fr }
  .auth-box { padding: 28px 20px }

  /* Page wrap */
  .page-wrap, .page-wrap-wide, .page-wrap-narrow {
    padding-top: 80px;
  }
}

@media (max-width: 480px) {
  .lots-grid { grid-template-columns: 1fr }
  .mini-grid { grid-template-columns: 1fr }
  .filter-bar { flex-direction: column; align-items: stretch }
  .filter-bar select { width: 100% }
}
