/* ============================================================
   SCHNAPP! Design System — nach CI-Guide
   Farben, Typo, Komponenten. Mobile-first.
   ============================================================ */

@font-face {
  font-family: 'Anton';
  src: url('../fonts/anton.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --void: #09090B;
  --card: #18181B;
  --card-mid: #27272A;
  --orange: #FE6E00;
  --yellow: #FBB024;
  --white: #FAFAFA;
  --live-red: #FB2C36;
  --green: #05DF72;
  --muted: #A1A1AA;
  --dim: #71717A;

  --font-display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-card: 24px;
  --r-frame: 14px;
  --r-pill: 9999px;

  --header-h: 60px;
  --bottomnav-h: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--void);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.6;
  padding-bottom: calc(var(--bottomnav-h) + env(safe-area-inset-bottom, 0px));
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-ui); cursor: pointer; }
input { font-family: var(--font-ui); }

::selection { background: var(--orange); color: var(--void); }

/* Tastatur-Fokus sichtbar — sonst ist die Seite ohne Maus unbedienbar */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Scroll-Reveal: Sektionen gleiten sanft rein */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Live-Puls (Social Proof unter "Endet gleich") */
.live-pulse {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 100%;
}
.live-pulse b { color: var(--white); }
.live-pulse .lp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--live-red);
  flex-shrink: 0;
  animation: pulse 1.4s infinite;
}
.live-pulse.flash { animation: lpFlash .6s ease; }
@keyframes lpFlash {
  0% { border-color: var(--orange); background: #241505; }
  100% { border-color: var(--card-mid); background: var(--card); }
}

/* ---------- Typografie ---------- */

.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-weight: 400; /* Anton ist single-weight, wirkt wie 900 */
}
.display .hl { color: var(--orange); }

.label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
}

/* ---------- Container ---------- */

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .wrap { padding: 0 44px; } }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-mid);
}
.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo .word {
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
}
.logo .word em { font-style: normal; color: var(--orange); }
.logo .claim {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 3px;
}
.logo .claim em { font-style: normal; color: var(--orange); }

.desktop-nav { display: none; align-items: center; gap: 4px; }
@media (min-width: 900px) { .desktop-nav { display: flex; } }
.desktop-nav a {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color .15s, background .15s;
  position: relative;
}
.desktop-nav a:hover { color: var(--white); background: var(--card); }
.desktop-nav a.active { color: var(--white); background: var(--card-mid); }
.desktop-nav a.nav-sell { color: var(--orange); border: 1px solid rgba(254, 110, 0, 0.45); }
.desktop-nav a.nav-sell:hover { background: rgba(254, 110, 0, 0.12); color: var(--orange); }
.desktop-nav a .count-badge { position: static; margin-left: 6px; }

.header-right { display: flex; align-items: center; gap: 10px; }

/* User-Menü (Merkliste, Gebote, Profil) */
.user-menu { position: relative; }
.user-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--card-mid);
  background: var(--card);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: border-color .15s;
}
.user-btn:hover { border-color: var(--dim); }
.user-dot {
  position: absolute;
  top: 1px; right: 1px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--void);
  display: none;
}
.user-dot.show { display: block; }
.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 240px;
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-frame);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  padding: 8px;
  display: none;
  z-index: 200;
}
.user-dropdown.open { display: block; animation: toastIn .18s ease; }
.user-dropdown .ud-head { padding: 10px 12px 12px; border-bottom: 1px solid var(--card-mid); margin-bottom: 6px; }
.user-dropdown .ud-head b { display: block; font-size: 14px; }
.user-dropdown .ud-head span { font-size: 11.5px; color: var(--dim); }
.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}
.user-dropdown a:hover { background: var(--card-mid); color: var(--white); }
.user-dropdown a svg { width: 17px; height: 17px; color: var(--orange); flex-shrink: 0; }
.user-dropdown a .count-badge { position: static; margin-left: auto; }
.user-dropdown .ud-sep { height: 1px; background: var(--card-mid); margin: 6px 4px; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  border: 0;
  background: var(--yellow);
  color: #1a1204;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.header-cta:hover { filter: brightness(1.06); }
/* Sehr schmale Screens: CTA weglassen — Bottom-Nav übernimmt */
@media (max-width: 430px) { .site-header .header-cta { display: none; } }

/* ---------- Bottom-Nav (mobile-first App-Gefühl) ---------- */

.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  height: calc(var(--bottomnav-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(14, 14, 16, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--card-mid);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media (min-width: 900px) {
  .bottom-nav { display: none; }
  body { padding-bottom: 0; }
}
.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dim);
  position: relative;
}
.bottom-nav a svg { width: 21px; height: 21px; }
.bottom-nav a.active { color: var(--orange); }
.bottom-nav a.nav-swipe .swipe-bubble {
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--orange), #ff8c2e);
  display: flex; align-items: center; justify-content: center;
  color: var(--void);
  margin-top: -18px;
  box-shadow: 0 4px 18px rgba(254, 110, 0, 0.45);
}
.bottom-nav a.nav-swipe.active .swipe-bubble { outline: 2px solid var(--white); }
.count-badge {
  position: absolute;
  top: 6px;
  right: calc(50% - 22px);
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: var(--r-pill);
  background: var(--orange);
  color: var(--void);
  font-size: 10px;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
}
.count-badge.show { display: inline-flex; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-pill);
  border: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform .12s, filter .15s, background .15s;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary { background: var(--yellow); color: #1a1204; }
.btn-primary:hover { filter: brightness(1.07); }
.btn-orange { background: var(--orange); color: var(--void); }
.btn-orange:hover { filter: brightness(1.08); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--card-mid);
}
.btn-ghost:hover { border-color: var(--dim); background: var(--card); }
.btn-lg { padding: 15px 28px; font-size: 14px; }
.btn-md { padding: 11px 20px; font-size: 12.5px; }
.btn-sm { padding: 8px 14px; font-size: 11px; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }

/* ---------- Badges ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge-live { background: rgba(251, 44, 54, 0.14); color: var(--live-red); }
.badge-live .dot { animation: pulse 1.4s infinite; }
.badge-vorschau { background: rgba(250, 250, 250, 0.09); color: var(--muted); }
.badge-beendet { background: rgba(250, 250, 250, 0.06); color: var(--dim); }
.badge-highlight { background: rgba(254, 110, 0, 0.15); color: var(--orange); }
.badge-neu { background: rgba(251, 176, 36, 0.14); color: var(--yellow); }
.badge-versand { background: rgba(5, 223, 114, 0.12); color: var(--green); }
.badge-endet { background: rgba(251, 44, 54, 0.16); color: var(--live-red); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ---------- Cards ---------- */

.card {
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-card);
  overflow: hidden;
}

/* Auktionskarte */
.auction-card { display: flex; flex-direction: column; transition: border-color .15s, transform .15s; }
.auction-card:hover { border-color: #3f3f46; transform: translateY(-2px); }
.auction-card .ac-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.auction-card .ac-img img { width: 100%; height: 100%; object-fit: cover; }
.auction-card .ac-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,9,11,0) 55%, rgba(9,9,11,0.75));
}
.auction-card .ac-badges { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; gap: 6px; }
.auction-card .ac-ort {
  position: absolute; bottom: 10px; left: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700;
}
.auction-card .ac-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.auction-card h3 { font-size: 17px; font-weight: 800; line-height: 1.25; }
.auction-card .ac-desc { font-size: 13px; color: var(--muted); }
.auction-card .ac-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: auto; }
.stat-box {
  background: var(--void);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-frame);
  padding: 8px 10px;
}
.stat-box .label { font-size: 9.5px; }
.stat-box .val { font-size: 13.5px; font-weight: 800; margin-top: 2px; }
.stat-box .val.urgent { color: var(--live-red); }

/* Los-Karte (Grid) */
.lot-card { display: flex; flex-direction: column; position: relative; transition: border-color .15s, transform .15s; }
.lot-card:hover { border-color: #3f3f46; transform: translateY(-2px); }
.lot-card .lc-img { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--card-mid); }
.lot-card .lc-img img { width: 100%; height: 100%; object-fit: cover; }
.lot-card .lc-nr {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: rgba(9,9,11,0.72);
  backdrop-filter: blur(6px);
  padding: 3px 9px;
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; color: var(--muted);
}
.lot-card .lc-timer {
  position: absolute; bottom: 10px; left: 10px; z-index: 2;
  background: rgba(9,9,11,0.78);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.lot-card .lc-timer.urgent { color: var(--live-red); }
.lot-card .lc-timer.ended { color: var(--dim); }
.lot-card .lc-heart {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 34px; height: 34px;
  border-radius: var(--r-pill);
  border: 0;
  background: rgba(9,9,11,0.72);
  backdrop-filter: blur(6px);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: transform .12s;
}
.lot-card .lc-heart:active { transform: scale(1.2); }
.lot-card .lc-heart.on { color: var(--orange); }
.lot-card .lc-highlight { position: absolute; top: 10px; right: 52px; z-index: 2; }
.lot-card .lc-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.lot-card h4 { font-size: 14px; font-weight: 700; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
.lot-card .lc-price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; margin-top: auto; }
.lot-card .lc-bid .label { font-size: 9px; }
.lot-card .lc-bid .val { font-size: 18px; font-weight: 800; color: var(--yellow); font-variant-numeric: tabular-nums; }
.lot-card .lc-uvp { text-align: right; }
.lot-card .lc-uvp .strike { font-size: 11px; color: var(--dim); text-decoration: line-through; }
.lot-card .lc-uvp .save { font-size: 11px; font-weight: 800; color: var(--green); }
.lot-card .lc-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--dim); }
.lot-card.is-ended .lc-img img { filter: grayscale(0.8) brightness(0.6); }

/* Listen-Ansicht */
.lot-row {
  display: grid;
  grid-template-columns: 116px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
}
.lot-row .lr-img { width: 116px; height: 116px; border-radius: var(--r-frame); overflow: hidden; position: relative; background: var(--card-mid); }
.lot-row .lr-img img { width: 100%; height: 100%; object-fit: cover; }
.lot-row h4 { font-size: 15px; font-weight: 700; line-height: 1.3; }
.lot-row .lr-sub { font-size: 12.5px; color: var(--muted); margin-top: 8px; }
.lot-row .lr-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.lot-row .lr-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--dim);
  background: var(--void);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-pill);
  padding: 3px 10px;
}
.lot-row .lr-right { text-align: right; display: flex; flex-direction: column; gap: 5px; align-items: flex-end; }
.lot-row .lr-bid { font-size: 19px; font-weight: 800; color: var(--yellow); font-variant-numeric: tabular-nums; }
.lot-row .lr-uvp { font-size: 11.5px; }
.lot-row .lr-uvp s { color: var(--dim); }
.lot-row .lr-uvp em { font-style: normal; font-weight: 800; color: var(--green); margin-left: 6px; }
.lot-row .lr-bids { font-size: 11.5px; color: var(--dim); }
.lot-row .lr-timer { font-size: 12.5px; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--muted); }
.lot-row .lr-timer.urgent { color: var(--live-red); }
.lot-row.is-ended .lr-img img { filter: grayscale(0.8) brightness(0.6); }
@media (max-width: 560px) {
  .lot-row { grid-template-columns: 88px 1fr auto; gap: 12px; padding: 12px; }
  .lot-row .lr-img { width: 88px; height: 88px; }
  .lot-row .lr-tags { display: none; }
}

.list-lots { display: flex; flex-direction: column; gap: 20px; }

/* ---------- Grids ---------- */

.grid-lots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (min-width: 720px) { .grid-lots { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.grid-auctions { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 700px) { .grid-auctions { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1100px) { .grid-auctions { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Sektionen ---------- */

.section { padding-block: 72px 36px; }
@media (min-width: 768px) { .section { padding-block: 96px 44px; } }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 36px;
}
.section-head h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(22px, 4.5vw, 32px); letter-spacing: 0; }
.section-head h2 .hl { color: var(--orange); }
.section-head .more { font-size: 13px; font-weight: 700; color: var(--orange); white-space: nowrap; }
.section-head .sub {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  color: var(--dim);
  margin-top: 8px;
  letter-spacing: 0;
}

/* ---------- Trenner: feine Linie + Hammer-Punkt ---------- */
.divider {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 56px 10px;
}
@media (min-width: 768px) { .divider { padding-block: 76px 12px; } }
.divider .d-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-mid) 30%, var(--card-mid) 70%, transparent);
}
.divider .d-icon {
  color: var(--orange);
  opacity: 0.85;
  display: flex;
  transform: rotate(-8deg);
}
.divider .d-icon svg { width: 20px; height: 20px; }

/* ---------- Endet-gleich-Ticker ---------- */

.ticker-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ticker-scroll::-webkit-scrollbar { display: none; }
.ticker-scroll .lot-card { min-width: 210px; max-width: 240px; flex: 0 0 auto; scroll-snap-align: start; }
@media (min-width: 768px) { .ticker-scroll .lot-card { min-width: 250px; } }

/* ---------- Tabs / Pills / Toggles ---------- */

.tabs {
  display: inline-flex;
  gap: 4px;
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-pill);
  padding: 4px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tabs button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.tabs button.active { background: var(--white); color: var(--void); }

.chip-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.chip-row::-webkit-scrollbar { display: none; }
.chip {
  border: 1px solid var(--card-mid);
  background: var(--card);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.chip.active { background: var(--orange); border-color: var(--orange); color: var(--void); font-weight: 800; }

.switch { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); cursor: pointer; user-select: none; }
.switch .track {
  width: 38px; height: 22px;
  border-radius: var(--r-pill);
  background: var(--card-mid);
  position: relative;
  transition: background .15s;
}
.switch .track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  transition: transform .15s;
}
.switch input { display: none; }
.switch input:checked + .track { background: var(--orange); }
.switch input:checked + .track::after { transform: translateX(16px); }

.view-toggle { display: inline-flex; border: 1px solid var(--card-mid); border-radius: var(--r-pill); overflow: hidden; }
.view-toggle button, .view-toggle a {
  border: 0; background: transparent; color: var(--dim);
  padding: 8px 13px; display: flex; align-items: center;
  cursor: pointer;
}
.view-toggle button.active { background: var(--card-mid); color: var(--white); }
.view-toggle a:hover, .view-toggle button:hover { color: var(--white); }
.view-toggle .vt-swipe { color: var(--orange); border-left: 1px solid var(--card-mid); }

select.select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23A1A1AA' fill='none' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 1px solid var(--card-mid);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 34px 8px 14px;
  border-radius: var(--r-pill);
}

.search-input {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-pill);
  color: var(--white);
  font-size: 14px;
  padding: 11px 18px;
  outline: none;
}
.search-input:focus { border-color: var(--orange); }
.search-input::placeholder { color: var(--dim); }

/* ---------- Countdown groß (Losdetail) ---------- */

.countdown-panel {
  background: var(--void);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-frame);
  padding: 18px 20px;
}
.countdown-panel .cp-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.countdown-digits { display: flex; align-items: center; gap: 6px; }
.countdown-digits .unit {
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: 10px;
  padding: 8px 0;
  text-align: center;
  flex: 1;
}
.countdown-digits .unit b { display: block; font-size: 24px; font-weight: 800; font-variant-numeric: tabular-nums; }
.countdown-digits .unit span { font-size: 9px; font-weight: 700; letter-spacing: 0.08em; color: var(--dim); text-transform: uppercase; }
.countdown-digits .sep { color: var(--dim); font-weight: 800; }
.countdown-digits.urgent .unit b { color: var(--live-red); }
.countdown-panel .cp-extend {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--dim);
}
.countdown-panel .cp-extend b { color: var(--orange); }
.countdown-panel.flash { animation: extendFlash 1s ease; }
@keyframes extendFlash {
  0% { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(254,110,0,0.25); }
  100% { border-color: var(--card-mid); box-shadow: none; }
}

/* ---------- Bieten-Panel ---------- */

.bid-panel { background: var(--card); border: 1px solid var(--card-mid); border-radius: var(--r-card); padding: 26px 24px; display: flex; flex-direction: column; gap: 22px; }
.bid-price-row { display: flex; justify-content: space-between; gap: 14px; }
.bid-price-row .current .val { font-size: 34px; font-weight: 800; color: var(--yellow); font-variant-numeric: tabular-nums; line-height: 1.1; margin-top: 4px; }
.bid-price-row .current .by { font-size: 11.5px; color: var(--dim); margin-top: 3px; }
.bid-price-row .uvp-box { text-align: right; }
.bid-price-row .uvp-box .strike { font-size: 15px; color: var(--dim); text-decoration: line-through; }
.bid-price-row .uvp-box .save { font-size: 12.5px; font-weight: 800; color: var(--green); margin-top: 3px; }

.quick-bids { display: flex; gap: 8px; flex-wrap: wrap; }
.quick-bids .qb {
  border: 1px solid var(--card-mid);
  background: var(--void);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-variant-numeric: tabular-nums;
}
.quick-bids .qb.rec { border-color: var(--yellow); color: var(--yellow); }
.quick-bids .qb:hover { border-color: var(--dim); }

.bid-input-row { display: flex; gap: 8px; }
.bid-input-row .bid-input {
  flex: 1;
  min-width: 0;
  background: var(--void);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-pill);
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  padding: 12px 18px;
  outline: none;
  font-variant-numeric: tabular-nums;
}
.bid-input-row .bid-input:focus { border-color: var(--yellow); }
.bid-hint { font-size: 11.5px; color: var(--dim); text-align: center; }
.bid-hint b { color: var(--muted); }

/* Zustand: überboten / höchstbietend */
.bid-state {
  border-radius: var(--r-frame);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  display: none;
  align-items: center;
  gap: 8px;
}
.bid-state.show { display: flex; }
.bid-state.winning { background: rgba(5,223,114,0.1); color: var(--green); }
.bid-state.outbid { background: rgba(251,44,54,0.12); color: var(--live-red); }

/* ---------- Aufgeldrechner ---------- */

.fee-calc { border: 1px solid var(--card-mid); border-radius: var(--r-frame); overflow: hidden; }
.fee-calc summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: var(--muted);
  user-select: none;
}
.fee-calc summary::-webkit-details-marker { display: none; }
.fee-calc summary .chev { transition: transform .2s; }
.fee-calc[open] summary .chev { transform: rotate(180deg); }
.fee-calc .fc-body { padding: 0 16px 16px; display: flex; flex-direction: column; gap: 8px; }
.fee-calc .fc-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums; }
.fee-calc .fc-row.total { border-top: 1px solid var(--card-mid); padding-top: 10px; margin-top: 4px; font-size: 15px; font-weight: 800; color: var(--white); }
.fee-calc .fc-row.total b { color: var(--orange); }

/* ---------- Gebotshistorie ---------- */

.bid-history { display: flex; flex-direction: column; }
.bid-history .bh-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4px;
  border-bottom: 1px solid var(--card-mid);
  font-size: 13.5px;
}
.bid-history .bh-row:last-child { border-bottom: 0; }
.bid-history .bh-who { display: flex; align-items: center; gap: 10px; }
.bid-history .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  color: var(--void);
  flex-shrink: 0;
}
.bid-history .bh-time { font-size: 11px; color: var(--dim); }
.bid-history .bh-amount { font-weight: 800; font-variant-numeric: tabular-nums; }
.bid-history .bh-row.top .bh-amount { color: var(--yellow); }
.bid-history .bh-row.me .bh-who b { color: var(--orange); }

/* ---------- Auktionskopf (Losliste) ---------- */

.auction-head {
  background: linear-gradient(160deg, #141416, var(--void) 70%);
  border-bottom: 1px solid var(--card-mid);
  padding: 52px 0 56px;
}
.auction-head h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(26px, 5vw, 42px); margin: 16px 0 14px; }
.auction-head .ah-desc { color: var(--muted); font-size: 13.5px; max-width: 640px; }
.auction-head .ah-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-pill);
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}
.meta-pill b { color: var(--white); font-weight: 700; }
.meta-pill svg { color: var(--orange); flex-shrink: 0; }

.filterbar {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: rgba(9,9,11,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-mid);
  padding: 22px 0;
}
.filterbar .fb-inner { display: flex; flex-direction: column; gap: 16px; }
.filterbar .fb-row { display: flex; gap: 8px; align-items: center; justify-content: space-between; flex-wrap: wrap; }

/* ---------- Hero (Startseite) ---------- */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--card-mid);
}
@media (min-width: 900px) { .hero { min-height: 560px; } }
.hero .hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(254,110,0,0.13), transparent 65%);
  pointer-events: none;
}
.hero .hammer {
  position: absolute;
  right: -8%;
  top: -4%;
  width: min(62vw, 460px);
  mix-blend-mode: screen;
  opacity: 0.95;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
  transform: rotate(8deg);
}
@media (min-width: 900px) { .hero .hammer { right: 4%; width: 480px; } }
.hero .hero-inner { position: relative; width: 100%; }
.hero .hero-content { position: relative; z-index: 2; padding-block: 80px 88px; }
.hero h1 { font-size: clamp(46px, 11vw, 96px); }
.hero .hero-sub {
  margin-top: 24px;
  font-size: 15px;
  color: var(--muted);
  max-width: 430px;
}
.hero .hero-sub b { color: var(--white); }
.hero .hero-ctas { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
/* Zahlen im Hero — integriertes Stats-Band */
.hero .hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 14px;
  margin-top: 44px;
}
@media (min-width: 700px) { .hero .hero-proof { grid-template-columns: repeat(4, minmax(0, 170px)); } }
.hero .proof {
  background: rgba(24, 24, 27, 0.7);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-frame);
  padding: 12px 14px;
}
.hero .proof b {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--orange);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero .proof span { display: block; margin-top: 6px; font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 700; }

/* Hammer als Video (Scroll-Scrubbing) */
.hero .hammer-video {
  position: absolute;
  right: -8%;
  top: -16%;
  width: min(62vw, 460px);
  aspect-ratio: 9/16;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.95;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
  transform: rotate(8deg);
  /* weiche Kanten — Video-Rechteck darf nicht sichtbar sein */
  -webkit-mask-image: radial-gradient(ellipse 62% 60% at 52% 45%, #000 48%, transparent 75%);
  mask-image: radial-gradient(ellipse 62% 60% at 52% 45%, #000 48%, transparent 75%);
}
@media (min-width: 900px) { .hero .hammer-video { right: -20px; width: 500px; top: -14%; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero .hammer { transform: none !important; }
  .hero.impact .hammer { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Swipe (SCHNAPP ODER WEG) ---------- */

.swipe-page {
  height: calc(100dvh - var(--header-h) - var(--bottomnav-h) - env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 900px) { .swipe-page { height: calc(100dvh - var(--header-h)); } }
.swipe-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 0 4px; }
.swipe-stage {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  min-height: 0;
}
.swipe-card {
  position: absolute;
  width: min(88vw, 360px);
  aspect-ratio: 3/4.35;
  max-height: 96%;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--card-mid);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.swipe-card.behind1 { transform: scale(.94) translateY(16px); filter: brightness(.6); }
.swipe-card.behind2 { transform: scale(.88) translateY(30px); filter: brightness(.35); }
.swipe-card .sc-img { position: absolute; inset: 0; }
.swipe-card .sc-img img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.swipe-card .sc-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,9,11,0.5) 0%, rgba(9,9,11,0) 28%, rgba(9,9,11,0) 45%, rgba(9,9,11,0.92) 82%);
}
.swipe-card .sc-top { position: relative; z-index: 2; display: flex; justify-content: space-between; padding: 14px; }
.swipe-card .sc-bottom { position: relative; z-index: 2; margin-top: auto; padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.swipe-card .sc-ort {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  color: var(--white);
  background: rgba(9,9,11,0.6);
  backdrop-filter: blur(6px);
  align-self: flex-start;
  padding: 5px 11px;
  border-radius: var(--r-pill);
}
.swipe-card .sc-ort svg { color: var(--orange); }
.swipe-card h3 { font-size: 21px; font-weight: 800; line-height: 1.15; }
.swipe-card .sc-sub { font-size: 12.5px; color: var(--muted); }
.swipe-card .sc-row { display: flex; justify-content: space-between; align-items: flex-end; }
.swipe-card .sc-bid .label { font-size: 9.5px; }
.swipe-card .sc-bid .val { font-size: 24px; font-weight: 800; color: var(--yellow); font-variant-numeric: tabular-nums; }
.swipe-card .sc-uvp { text-align: right; font-size: 12px; }
.swipe-card .sc-uvp .strike { color: var(--dim); text-decoration: line-through; }
.swipe-card .sc-uvp .save { color: var(--green); font-weight: 800; }
.swipe-card .sc-timer {
  display: inline-flex; gap: 6px; align-items: center;
  font-size: 12.5px; font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--white);
}
.swipe-card .sc-timer.urgent { color: var(--live-red); }

.swipe-card .stamp {
  position: absolute;
  top: 18%;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 18px;
  border: 3.5px solid;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
}
.swipe-card .stamp-schnapp { left: 8%; color: var(--green); border-color: var(--green); transform: rotate(-14deg); }
.swipe-card .stamp-weg { right: 8%; color: var(--live-red); border-color: var(--live-red); transform: rotate(14deg); }

.swipe-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 10px 0 18px;
}
.swipe-actions .sa {
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .12s;
}
.swipe-actions .sa:active { transform: scale(.9); }
.swipe-actions .sa-weg {
  width: 58px; height: 58px;
  background: var(--card);
  border: 1.5px solid var(--card-mid);
  color: var(--live-red);
}
.swipe-actions .sa-schnapp {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--green), #04c05f);
  color: #032c17;
  box-shadow: 0 6px 24px rgba(5,223,114,0.35);
}
.streak-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-pill);
  padding: 7px 13px;
  font-size: 12.5px;
  font-weight: 800;
}
.streak-pill .flame { color: var(--orange); }

.swipe-empty {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 30px 20px;
}
.swipe-empty h3 { font-family: var(--font-display); font-size: 28px; text-transform: uppercase; }
.swipe-empty p { color: var(--muted); font-size: 14px; max-width: 300px; }

/* ---------- Toasts ---------- */

.toast-wrap {
  position: fixed;
  top: calc(var(--header-h) + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(92vw, 380px);
  pointer-events: none;
}
.toast {
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-left: 4px solid var(--orange);
  border-radius: var(--r-frame);
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 10px 34px rgba(0,0,0,0.5);
  animation: toastIn .25s ease;
  pointer-events: auto;
}
.toast b { font-weight: 800; }
.toast.t-outbid { border-left-color: var(--live-red); }
.toast.t-win { border-left-color: var(--green); }
.toast.t-info { border-left-color: var(--yellow); }
.toast .t-link { color: var(--orange); font-weight: 800; }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.toast.hide { opacity: 0; transition: opacity .3s; }

/* ---------- Losdetail Layout ---------- */

.lot-detail {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "gallery" "bid" "details" "desc";
  gap: 30px;
  padding-block: 22px 48px;
}
@media (min-width: 960px) {
  .lot-detail {
    grid-template-columns: 1.05fr 1fr;
    grid-template-areas:
      "gallery bid"
      "details bid"
      "desc    bid";
    grid-template-rows: auto auto 1fr;
    gap: 30px 48px;
    align-items: start;
  }
}
.ld-left { display: contents; }
.ld-left .gallery { grid-area: gallery; }
.ld-details { grid-area: details; }
.ld-desc { grid-area: desc; }
.ld-right { grid-area: bid; }
.gallery .g-main {
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--card-mid);
  position: relative;
  border: 1px solid var(--card-mid);
}
.gallery .g-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery .g-thumbs { display: flex; gap: 8px; margin-top: 10px; }
.gallery .g-thumbs button {
  width: 68px; height: 68px;
  border-radius: var(--r-frame);
  overflow: hidden;
  border: 1.5px solid var(--card-mid);
  background: var(--card-mid);
  padding: 0;
  flex-shrink: 0;
}
.gallery .g-thumbs button.active { border-color: var(--orange); }
.gallery .g-thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* Linke Spalte der Los-Seite: Details + Beschreibung */
.ld-details dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 24px;
  margin-top: 14px;
  font-size: 13.5px;
}
.ld-details dt { color: var(--dim); }
.ld-details dd { color: var(--white); font-weight: 600; }
.ld-desc p {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 65ch;
}

.ld-right { display: flex; flex-direction: column; gap: 20px; }
.ld-title-row .cat { font-size: 11.5px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.07em; }
.ld-title-row h1 { font-size: clamp(22px, 5vw, 30px); font-weight: 800; line-height: 1.15; margin-top: 6px; }
.ld-title-row .sub { color: var(--muted); font-size: 14px; margin-top: 6px; }

.detail-tabs { border-bottom: 1px solid var(--card-mid); display: flex; gap: 2px; }
.detail-tabs button {
  border: 0;
  background: none;
  color: var(--dim);
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 16px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.detail-tabs button.active { color: var(--white); border-bottom-color: var(--orange); }
.tab-panel { display: none; padding: 14px 2px; font-size: 14px; color: var(--muted); }
.tab-panel.active { display: block; }
.tab-panel dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; }
.tab-panel dt { color: var(--dim); font-size: 13px; }
.tab-panel dd { color: var(--white); font-size: 13px; font-weight: 600; }

.lot-nav { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 4px 0 14px; }
.lot-nav .ln-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700; color: var(--muted);
  background: none; border: 1px solid var(--card-mid);
  padding: 8px 14px; border-radius: var(--r-pill);
}
.lot-nav .ln-btn:hover { color: var(--white); border-color: var(--dim); }
.lot-nav .ln-pos { font-size: 12px; color: var(--dim); font-weight: 600; }

/* ---------- Breadcrumb ---------- */

.crumbs { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--dim); padding: 14px 0 0; flex-wrap: wrap; }
.crumbs a:hover { color: var(--white); }
.crumbs .sep { opacity: .5; }
.crumbs .here { color: var(--muted); }

/* ---------- Merkliste / Gebote ---------- */

.page-head { padding-block: 52px 12px; }
.page-head h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(28px, 6vw, 44px); }
.page-head h1 .hl { color: var(--orange); }
.page-head p { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 560px; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.empty-state .big { font-size: 40px; }
.empty-state h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 24px; }
.empty-state p { color: var(--muted); font-size: 14px; max-width: 320px; }

.watch-card { position: relative; }
.watch-card .wc-status { position: absolute; top: 10px; left: 10px; z-index: 2; }
.watch-card .wc-remove {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 32px; height: 32px;
  border-radius: 50%; border: 0;
  background: rgba(9,9,11,0.72);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
}
.watch-card .wc-remove:hover { color: var(--live-red); }

.mybid-row {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
}
.mybid-row .mb-img { width: 74px; height: 74px; border-radius: var(--r-frame); overflow: hidden; background: var(--card-mid); }
.mybid-row .mb-img img { width: 100%; height: 100%; object-fit: cover; }
.mybid-row h4 { font-size: 14px; font-weight: 700; }
.mybid-row .mb-sub { font-size: 12px; color: var(--dim); margin-top: 3px; display: flex; gap: 10px; flex-wrap: wrap; }
.mybid-row .mb-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.mybid-row .mb-price { font-size: 16px; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--yellow); }
.mybid-row.outbid { border-color: rgba(251,44,54,0.4); }
.mybid-row.won { border-color: rgba(5,223,114,0.35); }

/* ---------- Swipe-Demo (animierter Kartenstapel im Teaser) ---------- */

.swipe-demo {
  position: relative;
  width: 190px;
  height: 250px;
  flex-shrink: 0;
  margin: 0 auto;
}
.swipe-demo .sd-card {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid var(--card-mid);
  background: linear-gradient(180deg, #2e2e33 0%, #202024 55%, #141416 100%);
  overflow: hidden;
}
.swipe-demo .sd-card::before {
  content: '';
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  height: 55%;
  border-radius: 12px;
  background: linear-gradient(140deg, #3a3a40, #26262b);
}
.swipe-demo .sd-card::after {
  content: '';
  position: absolute;
  left: 14px; right: 60px; bottom: 52px;
  height: 9px;
  border-radius: 6px;
  background: #3a3a40;
  box-shadow: 0 16px 0 -2px #2e2e33;
}
.swipe-demo .sd-price {
  position: absolute;
  left: 14px; bottom: 14px;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--yellow);
}
.swipe-demo .sd-back1 { transform: scale(.93) translateY(12px); filter: brightness(.65); }
.swipe-demo .sd-back2 { transform: scale(.86) translateY(24px); filter: brightness(.4); }
.swipe-demo .sd-top { animation: sdSwipe 3.6s ease-in-out infinite; }
.swipe-demo .sd-stamp {
  position: absolute;
  top: 18px; left: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  color: var(--green);
  border: 2.5px solid var(--green);
  border-radius: 7px;
  padding: 2px 9px;
  transform: rotate(-12deg);
  opacity: 0;
  animation: sdStamp 3.6s ease-in-out infinite;
}
.swipe-demo .sd-hand {
  position: absolute;
  bottom: -8px; left: 50%;
  color: var(--white);
  opacity: 0.9;
  animation: sdHand 3.6s ease-in-out infinite;
}
@keyframes sdSwipe {
  0%, 28% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  45% { transform: translate(26px, -4px) rotate(5deg); opacity: 1; }
  62% { transform: translate(230px, -30px) rotate(22deg); opacity: 0; }
  63%, 78% { transform: translate(0, 18px) scale(.93); opacity: 0; }
  92%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
}
@keyframes sdStamp {
  0%, 30% { opacity: 0; transform: rotate(-12deg) scale(1.3); }
  40%, 60% { opacity: 1; transform: rotate(-12deg) scale(1); }
  62%, 100% { opacity: 0; }
}
@keyframes sdHand {
  0%, 26% { transform: translate(-50%, 0); opacity: .9; }
  45% { transform: translate(10px, -6px); opacity: .9; }
  60%, 100% { transform: translate(60px, -10px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .swipe-demo .sd-top, .swipe-demo .sd-stamp, .swipe-demo .sd-hand { animation: none; }
  .swipe-demo .sd-stamp { opacity: 1; }
}

/* ---------- Schritte mit Icons (Auktionsteilnahme) ---------- */

.howto-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (min-width: 900px) { .howto-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.howto {
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-card);
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.howto .h-nr {
  position: absolute;
  top: 14px; left: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--dim);
}
.howto .h-icon {
  width: 58px; height: 58px;
  margin: 0 auto;
  border-radius: var(--r-pill);
  background: rgba(254, 110, 0, 0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.howto .h-icon svg { width: 26px; height: 26px; }
.howto h3 { font-size: 14.5px; font-weight: 800; margin-top: 14px; text-transform: uppercase; letter-spacing: 0.02em; }
.howto p { font-size: 12.5px; color: var(--muted); margin-top: 6px; }

/* ---------- Testimonial-Slider (fullscreen, ganz unten) ---------- */

.quote-slider {
  border-top: 1px solid var(--card-mid);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(254, 110, 0, 0.07), transparent 65%),
    var(--void);
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-slider .qs-inner { max-width: 780px; margin: 0 auto; min-height: 240px; display: flex; flex-direction: column; justify-content: center; }
.quote-slider .qs-slide { display: none; animation: qsIn .45s ease; }
.quote-slider .qs-slide.active { display: block; }
@keyframes qsIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.quote-slider .stars { color: var(--yellow); font-size: 18px; letter-spacing: 4px; }
.quote-slider blockquote {
  font-size: clamp(19px, 3.4vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  margin-top: 18px;
}
.quote-slider .qs-who { margin-top: 22px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.quote-slider .qs-who .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--void);
}
.quote-slider .qs-who b { font-size: 14px; display: block; text-align: left; }
.quote-slider .qs-who span { font-size: 12px; color: var(--dim); display: block; text-align: left; }
.quote-slider .qs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}
.quote-slider .qs-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--card-mid);
  background: var(--card);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.quote-slider .qs-arrow:hover { color: var(--white); border-color: var(--dim); }
.quote-slider .qs-dots { display: flex; gap: 8px; }
.quote-slider .qs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--card-mid);
  cursor: pointer;
  padding: 0;
}
.quote-slider .qs-dot.active { background: var(--orange); width: 22px; border-radius: 4px; }

/* ---------- Modal (Auktionsinfos / Bedingungen) ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(4px);
  display: none;
  align-items: flex-end;
  justify-content: center;
}
@media (min-width: 700px) { .modal-overlay { align-items: center; } }
.modal-overlay.open { display: flex; }
.modal-card {
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 560px;
  max-height: 86vh;
  overflow-y: auto;
  padding: 24px 22px 28px;
  animation: modalIn .25s ease;
}
@media (min-width: 700px) { .modal-card { border-radius: var(--r-card); } }
@keyframes modalIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.modal-card .m-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.modal-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 22px; }
.modal-card .m-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--card-mid);
  background: var(--void);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.modal-card dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 18px; font-size: 13.5px; }
.modal-card dt { color: var(--dim); }
.modal-card dd { color: var(--white); font-weight: 600; }
.modal-card .m-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; line-height: 1.6; }
.modal-card table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 8px; }
.modal-card th, .modal-card td { text-align: left; padding: 7px 10px; border-bottom: 1px solid var(--card-mid); }
.modal-card th { color: var(--dim); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.modal-card td { font-variant-numeric: tabular-nums; }

/* Info-Buttons auf der Los-Seite */
.info-btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.info-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--card-mid);
  background: var(--card);
  color: var(--white);
  border-radius: var(--r-frame);
  padding: 13px 10px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .15s;
}
.info-btn:hover { border-color: var(--orange); }
.info-btn svg { color: var(--orange); flex-shrink: 0; }

/* Accordion (Gebotshistorie etc.) */
.accordion {
  border: 1px solid var(--card-mid);
  border-radius: var(--r-frame);
  overflow: hidden;
  background: var(--card);
}
.accordion summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .chev { transition: transform .2s; color: var(--dim); }
.accordion[open] summary .chev { transform: rotate(180deg); }
.accordion .a-body { padding: 0 16px 14px; }

/* ---------- Zahlen-Band ---------- */

.stats-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 800px) { .stats-band { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.stat-tile {
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-card);
  padding: 30px 22px;
  text-align: center;
}
.stat-tile b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  color: var(--orange);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-tile span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ---------- Kundenstimmen ---------- */

.quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 800px) { .quotes-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
.quote-card {
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-card);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote-card .stars { color: var(--yellow); font-size: 14px; letter-spacing: 2px; }
.quote-card p { font-size: 14px; line-height: 1.55; color: var(--white); }
.quote-card .who { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.quote-card .who .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  color: var(--void);
  flex-shrink: 0;
}
.quote-card .who b { font-size: 13px; }
.quote-card .who span { display: block; font-size: 11.5px; color: var(--dim); }

/* ---------- Verkaufen-Banner + Prozess-Schritte ---------- */

.sell-banner {
  border: 1px solid rgba(254, 110, 0, 0.4);
  background: linear-gradient(120deg, #1f1206, var(--card) 60%);
  border-radius: var(--r-card);
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.sell-banner h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(24px, 5vw, 36px); }
.sell-banner h2 .hl { color: var(--orange); }
.sell-banner p { color: var(--muted); font-size: 13.5px; margin-top: 8px; max-width: 460px; }

.steps { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps.three { grid-template-columns: 1fr; }
@media (min-width: 800px) { .steps.three { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-card);
  padding: 22px 18px;
}
.step .nr { font-family: var(--font-display); font-size: 40px; color: var(--orange); line-height: 1; }
.step h3 { font-size: 15px; font-weight: 800; margin-top: 10px; }
.step p { font-size: 13px; color: var(--muted); margin-top: 6px; }

.audience-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .audience-grid { grid-template-columns: repeat(4, 1fr); } }
.audience {
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-card);
  padding: 20px 18px;
}
.audience .ai {
  width: 42px; height: 42px;
  border-radius: var(--r-frame);
  background: rgba(254, 110, 0, 0.12);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
}
.audience h3 { font-size: 14.5px; font-weight: 800; margin-top: 12px; }
.audience p { font-size: 12.5px; color: var(--muted); margin-top: 5px; }

/* ---------- Kontakt-/Anfrageformular ---------- */

.contact-card {
  background: var(--card);
  border: 1.5px solid var(--orange);
  border-radius: var(--r-card);
  padding: 26px 22px;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 640px) { .contact-card { padding: 32px 36px; } }
.contact-form { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.contact-form .cf-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .contact-form .cf-row { grid-template-columns: 1fr 1fr; } }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  background: var(--void);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-frame);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 16px;
  outline: none;
  font-family: var(--font-ui);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--yellow); }
.contact-form ::placeholder { color: var(--dim); }
.contact-form textarea { min-height: 96px; resize: vertical; }
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23A1A1AA' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.contact-success { display: none; text-align: center; padding: 18px 0 8px; }
.contact-card.done .contact-form, .contact-card.done .cc-intro { display: none; }
.contact-card.done .contact-success { display: block; }

/* ---------- FAQ ---------- */

.faq { display: flex; flex-direction: column; gap: 10px; max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-frame);
}
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { transition: transform .2s; color: var(--dim); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .faq-body { padding: 0 18px 16px; font-size: 13.5px; color: var(--muted); }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--card-mid);
  margin-top: 90px;
  padding: 52px 0 40px;
}
.site-footer .f-grid { display: flex; flex-direction: column; gap: 22px; }
@media (min-width: 768px) { .site-footer .f-grid { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.site-footer .f-about { max-width: 320px; font-size: 12.5px; color: var(--dim); }
.site-footer .f-links { display: flex; gap: 40px; flex-wrap: wrap; }
.site-footer .f-col h5 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dim); margin-bottom: 10px; }
.site-footer .f-col a { display: block; font-size: 13px; color: var(--muted); padding: 3px 0; }
.site-footer .f-col a:hover { color: var(--white); }
.site-footer .f-bottom { margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--card-mid); font-size: 11.5px; color: var(--dim); display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }

/* ---------- Utilities ---------- */

.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: initial; } }
.muted { color: var(--muted); }
.dim { color: var(--dim); }
.tnum { font-variant-numeric: tabular-nums; }
.mt-0 { margin-top: 0; }

/* Skeleton-Fallback für Bilder */
.img-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--card), var(--card-mid));
  color: var(--dim);
}

/* ---------- Verkaufen: Hero-Split + Abrechnungs-Mock ---------- */

.sell-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
  padding-block: 48px 8px;
}
@media (min-width: 960px) {
  .sell-hero { grid-template-columns: 1.02fr 0.98fr; gap: 72px; padding-block: 76px 20px; }
}
.sell-hero h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(30px, 5.5vw, 52px); line-height: 1.14; }
.sell-hero h1 .hl { color: var(--orange); }
.sell-hero .lead { color: var(--muted); font-size: 14.5px; line-height: 1.7; margin-top: 18px; max-width: 520px; }
.sell-trust { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 26px; font-size: 12px; color: var(--dim); font-weight: 600; }
.sell-trust span { display: inline-flex; align-items: center; gap: 7px; }
.sell-trust svg { width: 14px; height: 14px; color: var(--green); flex: none; }

.payout-card {
  position: relative;
  background: linear-gradient(165deg, #1d1d21, #121215);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-card);
  padding: 26px 26px 24px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
  max-width: 480px;
}
@media (min-width: 960px) { .payout-card { justify-self: end; width: 100%; } }
.payout-card .pc-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--card-mid); }
.payout-card .pc-head b { font-family: var(--font-display); text-transform: uppercase; font-size: 17px; letter-spacing: 0.02em; }
.payout-card .pc-head span { font-size: 11px; color: var(--dim); }
.payout-card .p-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 11px 0;
  font-size: 13px;
  border-bottom: 1px dashed rgba(63, 63, 70, 0.55);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.payout-card .p-row .pl { color: var(--muted); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.payout-card .p-row .pl b { color: var(--white); font-weight: 700; }
.payout-card .p-row .pv { font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }
.payout-card .p-row.p-more { border-bottom: 0; color: var(--dim); font-size: 12px; justify-content: flex-start; }
.payout-card .p-sum {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 10px; padding-top: 16px; border-top: 1px solid var(--card-mid);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s ease 0.65s, transform 0.5s ease 0.65s;
}
.payout-card .p-sum .pl { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; }
.payout-card .p-sum .pv { font-family: var(--font-display); font-size: 30px; color: var(--yellow); }
.payout-card .p-note { margin-top: 10px; font-size: 11.5px; color: var(--green); display: flex; align-items: center; gap: 7px; opacity: 0; transition: opacity 0.5s ease 0.85s; }
.payout-card .p-note svg { width: 13px; height: 13px; flex: none; }
.payout-card.in .p-row, .payout-card.in .p-sum { opacity: 1; transform: none; }
.payout-card.in .p-note { opacity: 1; }
.payout-card .p-row:nth-of-type(1) { transition-delay: 0.15s; }
.payout-card .p-row:nth-of-type(2) { transition-delay: 0.3s; }
.payout-card .p-row:nth-of-type(3) { transition-delay: 0.45s; }
.payout-card .p-row:nth-of-type(4) { transition-delay: 0.55s; }
.payout-badge {
  position: absolute; top: -14px; right: 22px;
  background: var(--yellow); color: #09090B;
  font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 7px 14px; border-radius: var(--r-pill);
  transform: rotate(2.5deg);
  box-shadow: 0 8px 24px rgba(251, 176, 36, 0.25);
}

/* ---------- Verkaufen: Gebotsverlauf-Diagramm ---------- */

.curve-section { position: relative; }
.curve-section::before {
  content: ""; position: absolute; inset: -40px 0 0;
  background: radial-gradient(560px 320px at 72% 20%, rgba(254, 110, 0, 0.08), transparent 70%);
  pointer-events: none;
}
.curve-card { position: relative; margin-top: 44px; }
.curve-stage { position: relative; }
.curve-stage svg { display: block; width: 100%; height: auto; }
.curve-line {
  fill: none; stroke: var(--orange); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
  transition: stroke-dashoffset 2.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.reveal.in .curve-line { stroke-dashoffset: 0; }
.curve-dot { fill: var(--yellow); opacity: 0; transition: opacity 0.4s ease 2.1s; }
.curve-dot-pulse { fill: none; stroke: var(--yellow); stroke-width: 2; opacity: 0; }
.reveal.in .curve-dot { opacity: 1; }
.reveal.in .curve-dot-pulse { animation: curvePulse 2s ease-out 2.3s infinite; }
@keyframes curvePulse {
  0% { opacity: 0.8; r: 7; }
  70% { opacity: 0; r: 22; }
  100% { opacity: 0; r: 22; }
}
.curve-bid { fill: var(--orange); opacity: 0; transition: opacity 0.35s ease; }
.reveal.in .curve-bid { opacity: 0.9; }
.reveal.in .curve-bid.b1 { transition-delay: 0.7s; }
.reveal.in .curve-bid.b2 { transition-delay: 1.1s; }
.reveal.in .curve-bid.b3 { transition-delay: 1.5s; }
.reveal.in .curve-bid.b4 { transition-delay: 1.8s; }
.curve-note {
  position: absolute;
  font-size: 11.5px; font-weight: 700;
  color: var(--muted);
  background: rgba(24, 24, 27, 0.92);
  border: 1px solid var(--card-mid);
  padding: 7px 12px; border-radius: var(--r-pill);
  white-space: nowrap;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in .curve-note { opacity: 1; transform: none; }
.curve-note.n-start { left: 1%; bottom: 16%; transition-delay: 0.5s; }
.curve-note.n-mid { left: 34%; bottom: 34%; transition-delay: 1.2s; }
.curve-note.n-extend { right: 22%; top: 34%; color: var(--orange); border-color: rgba(254, 110, 0, 0.45); transition-delay: 1.7s; }
.curve-note.n-end {
  right: 1%; top: 4%;
  background: var(--yellow); color: #09090B; border-color: var(--yellow);
  font-weight: 900; font-size: 12.5px;
  transition-delay: 2.3s;
}
@media (max-width: 700px) {
  .curve-note { font-size: 10px; padding: 5px 9px; }
  .curve-note.n-mid { display: none; }
}
.curve-legend { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 26px; font-size: 12px; color: var(--dim); }
.curve-legend b { color: var(--white); font-size: 17px; display: block; font-variant-numeric: tabular-nums; }
.curve-legend b.o { color: var(--orange); }
.curve-legend b.y { color: var(--yellow); }

/* ---------- Verkaufen: Timeline statt Boxen ---------- */

.steps.timeline { position: relative; gap: 30px; }
.steps.timeline .step { background: transparent; border: 0; padding: 0; display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: start; }
.steps.timeline .nr {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--card); border: 1.5px solid var(--orange);
  color: var(--orange);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.steps.timeline .st-body h3 { margin-top: 4px; }
.steps.timeline::before {
  content: ""; position: absolute;
  left: 23px; top: 14px; bottom: 14px; width: 2px;
  background: linear-gradient(180deg, var(--orange), rgba(254, 110, 0, 0.1));
}
@media (min-width: 800px) {
  .steps.timeline { gap: 28px; }
  .steps.timeline .step { grid-template-columns: 1fr; gap: 0; }
  .steps.timeline .nr { margin-bottom: 18px; }
  .steps.timeline .st-body h3 { margin-top: 0; }
  .steps.timeline::before {
    left: 24px; right: 12.5%; top: 23px; bottom: auto; width: auto; height: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(254, 110, 0, 0.12));
  }
}

/* ---------- Verkaufen: Vergleich Eigenregie vs. SCHNAPP ---------- */

.vs-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 44px; }
@media (min-width: 820px) { .vs-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.vs-col { border-radius: var(--r-card); padding: 30px 28px; }
.vs-col h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 19px; letter-spacing: 0.02em; }
.vs-col ul { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.vs-col li { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; line-height: 1.55; }
.vs-col li svg { width: 16px; height: 16px; flex: none; margin-top: 2px; }
.vs-plain { border: 1px dashed var(--card-mid); color: var(--muted); }
.vs-plain h3 { color: var(--dim); }
.vs-plain li svg { color: var(--dim); }
.vs-schnapp { background: linear-gradient(165deg, rgba(254, 110, 0, 0.1), rgba(24, 24, 27, 0.6)); border: 1px solid rgba(254, 110, 0, 0.4); }
.vs-schnapp h3 .hl { color: var(--orange); }
.vs-schnapp li svg { color: var(--green); }

/* ---------- Verkaufen: Händler-Zitat ---------- */

.sell-quote { max-width: 820px; margin: 0 auto; text-align: center; }
.sell-quote blockquote {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(21px, 3.6vw, 32px);
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.sell-quote blockquote .hl { color: var(--yellow); }
.sell-quote .sq-who { margin-top: 24px; font-size: 13px; color: var(--muted); }
.sell-quote .sq-who b { color: var(--white); display: block; font-size: 14px; margin-bottom: 3px; }

/* Zähler-Span in Stat-Kacheln: Untertitel-Regel neutralisieren */
.stat-tile b span { display: inline; font: inherit; color: inherit; letter-spacing: inherit; margin: 0; }

/* ---------- Verkaufen: Mini-Erlösrechner ---------- */

.calc-card {
  margin-top: 48px;
  background: linear-gradient(165deg, #1c1c20, #131316);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-card);
  padding: 30px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 880px) { .calc-card { grid-template-columns: 1.1fr 0.9fr; gap: 48px; padding: 36px 40px; align-items: center; } }
.calc-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 20px; }
.calc-card h3 .hl { color: var(--orange); }
.calc-card .cc-sub { font-size: 12.5px; color: var(--muted); margin-top: 8px; line-height: 1.6; }
.calc-controls { margin-top: 24px; display: flex; flex-direction: column; gap: 20px; }
.calc-controls label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dim); font-weight: 700; display: block; margin-bottom: 10px; }
.calc-controls .cc-val { color: var(--orange); font-size: 13px; text-transform: none; letter-spacing: 0; margin-left: 8px; }
.calc-controls input[type="range"] {
  width: 100%;
  accent-color: var(--orange);
  height: 32px;
  cursor: pointer;
}
.calc-controls select {
  width: 100%;
  background: var(--void);
  border: 1px solid var(--card-mid);
  color: var(--white);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13.5px;
  font-family: var(--font-ui);
}
.calc-result {
  text-align: center;
  border-left: 0;
  padding: 24px 18px;
  background: rgba(254, 110, 0, 0.06);
  border: 1px dashed rgba(254, 110, 0, 0.35);
  border-radius: var(--r-frame);
}
@media (min-width: 880px) { .calc-result { padding: 34px 26px; } }
.calc-result .cr-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; }
.calc-result .cr-range { font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 40px); color: var(--yellow); margin-top: 10px; line-height: 1.1; font-variant-numeric: tabular-nums; }
.calc-result .cr-note { font-size: 11px; color: var(--dim); margin-top: 12px; line-height: 1.5; }
.calc-result .btn { margin-top: 18px; }

/* ---------- Verkaufen: Verwertet-Marquee ---------- */

.sold-marquee { overflow: hidden; position: relative; margin-top: 44px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.sold-track { display: flex; gap: 18px; width: max-content; animation: soldScroll 42s linear infinite; }
.sold-marquee:hover .sold-track { animation-play-state: paused; }
@keyframes soldScroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .sold-track { animation: none; } }
.sold-item {
  width: 190px; flex: none;
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-frame);
  overflow: hidden;
}
.sold-item img { width: 100%; height: 110px; object-fit: cover; display: block; }
.sold-item .si-body { padding: 12px 14px 14px; }
.sold-item .si-title { font-size: 11.5px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sold-item .si-sum { font-size: 15px; font-weight: 800; color: var(--green); margin-top: 4px; font-variant-numeric: tabular-nums; }
.sold-item .si-sum span { color: var(--dim); font-weight: 600; font-size: 11px; margin-left: 6px; }

/* ---------- Verkaufen: Deadline-Band ---------- */

.deadline-band {
  background: linear-gradient(120deg, var(--orange), var(--yellow));
  border-radius: var(--r-card);
  padding: 34px 30px;
  color: #09090B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
@media (min-width: 720px) { .deadline-band { padding: 40px 44px; } }
.deadline-band h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(22px, 4vw, 32px); line-height: 1.14; }
.deadline-band .db-sub { font-size: 13px; font-weight: 600; margin-top: 8px; opacity: 0.85; max-width: 420px; }
.deadline-band .db-right { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.db-count { display: flex; gap: 8px; }
.db-count .dc-cell { background: rgba(9, 9, 11, 0.92); color: var(--white); border-radius: 12px; padding: 10px 0 8px; text-align: center; min-width: 62px; }
.db-count .dc-cell b { font-family: var(--font-display); font-size: 24px; display: block; line-height: 1; font-variant-numeric: tabular-nums; }
.db-count .dc-cell span { font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); display: block; margin-top: 4px; }
.deadline-band .btn-dark { background: #09090B; color: var(--white); }
.deadline-band .btn-dark:hover { background: #18181B; }

/* Mehrzeilige Sub-/Leadtexte: Zeilen gleichmäßig umbrechen statt einzelnes Wort in Zeile 2 */
.section-head .sub, .page-head p, .sell-hero .lead, .ah-desc, .calc-card .cc-sub, .sell-quote blockquote {
  text-wrap: balance;
}

/* ---------- Start: Kategorie-Kacheln ---------- */

.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 720px) { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(6, 1fr); } }
.cat-tile {
  position: relative;
  display: block;
  border-radius: var(--r-frame);
  overflow: hidden;
  aspect-ratio: 1 / 1.18;
  border: 1px solid var(--card-mid);
}
.cat-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.cat-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 9, 11, 0.88));
}
.cat-tile b {
  position: absolute;
  left: 14px; bottom: 12px; right: 10px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.03em;
}
.cat-tile span {
  position: absolute;
  left: 14px; bottom: 34px;
  z-index: 2;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cat-tile:hover img { transform: scale(1.07); }
.cat-tile:hover { border-color: rgba(254, 110, 0, 0.5); }

/* ---------- Auktions-Kopf: Live-Stats + Fortschritt ---------- */

.ah-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.ah-stat { display: flex; flex-direction: column; gap: 2px; }
.ah-stat b {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ah-stat b.o { color: var(--orange); }
.ah-stat b.g { color: var(--green); }
.ah-stat span { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--dim); font-weight: 700; }
.ah-progress { display: flex; flex-direction: column; gap: 7px; min-width: 190px; }
.ah-progress .track { height: 7px; border-radius: 4px; background: var(--card-mid); overflow: hidden; }
.ah-progress .fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--orange), var(--yellow)); transition: width 0.6s ease; }
.ah-progress span { font-size: 10.5px; color: var(--dim); font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }

/* ---------- Auktion: Endet-als-Nächstes-Strip ---------- */

.soon-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.soon-strip::-webkit-scrollbar { display: none; }
.soon-item {
  flex: none;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-pill);
  padding: 7px 18px 7px 8px;
  color: var(--white);
  transition: border-color 0.15s ease;
}
.soon-item:hover { border-color: rgba(254, 110, 0, 0.5); }
.soon-item img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.soon-item .si-t { font-size: 12.5px; font-weight: 700; max-width: 170px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.soon-item .si-c { font-size: 11.5px; font-weight: 800; color: var(--live-red); font-variant-numeric: tabular-nums; }
.soon-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--live-red);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}
.soon-label .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--live-red); animation: pulse 1.4s infinite; }

/* ---------- Los-Detail: Gebot-vs-UVP-Balken ---------- */

.price-bar { margin-top: 16px; }
.price-bar .track {
  position: relative;
  height: 28px;
  background: var(--void);
  border: 1px solid var(--card-mid);
  border-radius: 9px;
  overflow: hidden;
}
.price-bar .fill {
  position: absolute;
  top: 3px; bottom: 3px; left: 3px;
  width: 0;
  min-width: 52px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 9px;
  font-size: 11.5px;
  font-weight: 800;
  color: #09090B;
  white-space: nowrap;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.price-bar .uvp-mark {
  position: absolute;
  right: 9px; top: 50%;
  transform: translateY(-50%);
  font-size: 10.5px;
  color: var(--dim);
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Los-Detail: Trust-Zeile ---------- */

.lot-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--card-mid);
  font-size: 11.5px;
  color: var(--dim);
  font-weight: 600;
}
.lot-trust span { display: inline-flex; gap: 7px; align-items: center; }
.lot-trust svg { width: 13px; height: 13px; color: var(--green); flex: none; }

/* ---------- Bild-Logo (Header, Footer, Landing) mit Text-Fallback ---------- */

.logo .logo-img { height: 42px; width: auto; display: block; }
.site-footer .logo .logo-img { height: 48px; }
.logo .logo-text { display: none; }
.logo.noimg .logo-img { display: none; }
.logo.noimg .logo-text { display: flex; flex-direction: column; line-height: 1; }

.flyer-logo .logo-img { height: 56px; width: auto; display: block; filter: drop-shadow(2px 3px 0 rgba(20, 8, 0, 0.35)); }
.flyer-logo .logo-text { display: none; }
.flyer-logo.noimg .logo-img { display: none; }
.flyer-logo.noimg .logo-text { display: flex; flex-direction: column; line-height: 1; }

/* ---------- Start A: Los des Tages ---------- */

.feature-lot {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--card);
  border: 1px solid var(--card-mid);
  border-radius: var(--r-card);
  overflow: hidden;
}
@media (min-width: 900px) { .feature-lot { grid-template-columns: 1.05fr 1fr; min-height: 420px; } }
.feature-lot .fl-media { position: relative; display: block; min-height: 260px; }
@media (min-width: 900px) { .feature-lot .fl-media { min-height: 0; } }
.feature-lot .fl-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-lot .fl-media .fl-timerbadge {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-size: 14px; font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--live-red);
}
.feature-lot .fl-body { padding: 30px 26px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
@media (min-width: 900px) { .feature-lot .fl-body { padding: 44px 46px; } }
.feature-lot .fl-top { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.feature-lot .fl-eyebrow {
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--yellow);
}
.feature-lot h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(24px, 3.4vw, 38px); line-height: 1.14; }
.feature-lot .fl-sub { color: var(--muted); font-size: 13.5px; }
.feature-lot .fl-price-row { display: flex; align-items: flex-end; gap: 22px; flex-wrap: wrap; margin-top: 6px; }
.feature-lot .fl-price .label { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dim); font-weight: 700; }
.feature-lot .fl-price .val { font-family: var(--font-display); font-size: clamp(34px, 4.5vw, 48px); color: var(--yellow); line-height: 1.05; font-variant-numeric: tabular-nums; }
.feature-lot .fl-uvp { font-size: 12.5px; padding-bottom: 6px; }
.feature-lot .fl-uvp s { color: var(--dim); display: block; }
.feature-lot .fl-uvp em { font-style: normal; font-weight: 800; color: var(--green); }
.feature-lot .fl-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.feature-lot .fl-meta { font-size: 12px; color: var(--dim); }

/* ---------- Start B: Auktions-Mosaik ---------- */

.auction-mosaic { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 900px) {
  .auction-mosaic { grid-template-columns: 1.55fr 1fr; grid-auto-rows: 1fr; }
  .auction-mosaic .auction-card:first-child { grid-row: 1 / 3; }
  .auction-mosaic .auction-card:first-child .ac-img { flex: 1 1 auto; min-height: 300px; }
  .auction-mosaic .auction-card:not(:first-child) { display: flex; flex-direction: column; }
  .auction-mosaic .auction-card:not(:first-child) .ac-img { min-height: 130px; max-height: 170px; }
  .auction-mosaic .auction-card:not(:first-child) .ac-desc { display: none; }
}

/* ---------- Start C: Zahlen ohne Kacheln ---------- */

.stats-bare { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 16px; text-align: center; padding-block: 14px; }
@media (min-width: 800px) { .stats-bare { grid-template-columns: repeat(4, 1fr); } }
.stats-bare .sb-item { position: relative; }
@media (min-width: 800px) {
  .stats-bare .sb-item + .sb-item::before {
    content: ""; position: absolute; left: 0; top: 12%; bottom: 12%;
    width: 1px; background: var(--card-mid);
  }
}
.stats-bare b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}
.stats-bare span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dim); font-weight: 700; margin-top: 10px; }

/* ---------- Start F: Atmo-Band ---------- */

.atmo-band {
  position: relative;
  min-height: clamp(280px, 40vw, 460px);
  background: url('../img/atmo-lager.jpg') center / cover no-repeat var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  .atmo-band { background-attachment: fixed; }
}
.atmo-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.72), rgba(9, 9, 11, 0.28) 45%, rgba(9, 9, 11, 0.82));
}
.atmo-claim { position: relative; z-index: 2; text-align: center; padding: 60px 20px; }
.atmo-claim h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(30px, 6vw, 58px);
  line-height: 1.14;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}
.atmo-claim h2 .hl { color: var(--orange); }
.atmo-claim p { color: var(--muted); font-size: 13.5px; margin-top: 14px; max-width: 520px; margin-inline: auto; text-wrap: balance; }
