/* =========================================
   Asta Scelta - Auktion v14.1
   Korrektur: Auktions-Hintergründe sichtbar
========================================= */

.auction-page {
  --auction-container: var(--container, 1280px);
  --auction-gold: var(--accent, #d6b36a);
  --auction-gold-soft: #ead9aa;
  --auction-ink: #17150f;
  --auction-muted: #756f64;
  --auction-line: rgba(30, 24, 15, 0.12);
  --auction-card: rgba(255, 255, 255, 0.86);
  --auction-card-dark: rgba(15, 14, 16, 0.76);
  background: #f4efe5;
  color: var(--auction-ink);
}

.auction-main {
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 179, 106, 0.14), transparent 38%),
    linear-gradient(180deg, #fbf7ee 0%, #f0e9dc 55%, #eae1d1 100%);
  min-height: 100vh;
}

.auction-container {
  width: min(100% - 40px, var(--auction-container));
  margin-inline: auto;
}

.auction-hero.section-spacing {
  padding: 96px 0 90px;
}

.auction-stage-shell {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  border-radius: 30px;
  border: 1px solid rgba(158, 124, 55, 0.22);
  box-shadow: 0 28px 80px rgba(67, 49, 24, 0.18);
  background: transparent;
  isolation: isolate;
}

.auction-stage-shell[data-auction-theme="dark"] {
  color: #f7f1e4;
  background: transparent;
  border-color: rgba(214, 179, 106, 0.22);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.auction-stage-bg {
  position: absolute;
  inset: 0;
  background-image: var(--auction-bg, url('../img/auktion/backgrounds/auktion-grand-magasin-bg.png'));
  background-position: center;
  background-size: cover;
  transform: scale(1.012);
  z-index: 0;
  pointer-events: none;
}

.auction-stage-shell[data-auction-theme="dark"] .auction-stage-bg {
  background-image: var(--auction-bg, url('../img/auktion/backgrounds/auktion-beletage-bg.png'));
}

.auction-stage-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(249,246,239,.96) 0%, rgba(249,246,239,.76) 26%, rgba(249,246,239,.18) 50%, rgba(249,246,239,.68) 73%, rgba(249,246,239,.94) 100%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.02));
  z-index: 1;
  pointer-events: none;
}

.auction-stage-shell[data-auction-theme="dark"] .auction-stage-overlay {
  background:
    linear-gradient(90deg, rgba(7,7,10,.88) 0%, rgba(7,7,10,.54) 25%, rgba(7,7,10,.16) 50%, rgba(7,7,10,.58) 75%, rgba(7,7,10,.88) 100%),
    radial-gradient(circle at 50% 42%, rgba(214,179,106,.10), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.22));
}

.auction-stage-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(330px, 1.25fr) minmax(300px, 0.9fr);
  gap: 26px;
  align-items: stretch;
  min-height: 680px;
  padding: 34px;
}

.auction-left-panel,
.auction-action-card {
  align-self: stretch;
}

.auction-left-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  max-width: 390px;
}

.auction-kicker,
.card-kicker,
.metric-label,
.auction-section-head p {
  margin: 0 0 10px;
  color: var(--auction-gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
}

.auction-left-panel h1 {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.055em;
  font-size: clamp(3.8rem, 6.5vw, 6.6rem);
  line-height: 0.96;
  color: #17120a;
}

.auction-stage-shell[data-auction-theme="dark"] .auction-left-panel h1 {
  color: #f7f1e4;
}

.auction-lead {
  max-width: 360px;
  margin: 22px 0 0;
  color: #5f584e;
  font-size: 1rem;
  line-height: 1.75;
}

.auction-stage-shell[data-auction-theme="dark"] .auction-lead {
  color: rgba(247,241,228,.76);
}

.auction-benefits {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.auction-benefits div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 11px;
  padding: 11px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(167,131,58,.14);
  backdrop-filter: blur(10px);
}

.auction-stage-shell[data-auction-theme="dark"] .auction-benefits div {
  background: rgba(0,0,0,.28);
  border-color: rgba(214,179,106,.16);
}

.auction-benefits span {
  grid-row: span 2;
  color: var(--auction-gold);
  font-size: 1.15rem;
}

.auction-benefits strong {
  font-size: 0.86rem;
  line-height: 1.1;
}

.auction-benefits small {
  color: #776f63;
  font-size: 0.76rem;
}

.auction-stage-shell[data-auction-theme="dark"] .auction-benefits small {
  color: rgba(247,241,228,.62);
}

.soft-card {
  border-radius: 22px;
  border: 1px solid var(--auction-line);
  background: var(--auction-card);
  box-shadow: 0 18px 42px rgba(75, 53, 24, 0.12);
  backdrop-filter: blur(16px);
}

.auction-stage-shell[data-auction-theme="dark"] .soft-card,
.auction-page.dark-theme .soft-card {
  background: var(--auction-card-dark);
  border-color: rgba(214,179,106,.17);
  box-shadow: 0 22px 58px rgba(0,0,0,.36);
}

.lot-card {
  padding: 22px;
}

.lot-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.lot-card div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  align-items: baseline;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.auction-stage-shell[data-auction-theme="dark"] .lot-card div {
  border-bottom-color: rgba(255,255,255,.08);
}

.lot-card div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.lot-card dt {
  color: #877d6e;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.lot-card dd {
  margin: 0;
  color: #211b11;
  font-weight: 700;
  font-size: 0.9rem;
}

.auction-stage-shell[data-auction-theme="dark"] .lot-card dt { color: rgba(247,241,228,.55); }
.auction-stage-shell[data-auction-theme="dark"] .lot-card dd { color: #f7f1e4; }

.status-dot,
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39b56d;
  margin-right: 8px;
  box-shadow: 0 0 0 4px rgba(57,181,109,.14);
}

.auction-object-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 590px;
  padding: 40px 0 72px;
}

.auction-object-stage img {
  position: relative;
  z-index: 2;
  width: min(106%, 650px);
  max-height: 410px;
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(0,0,0,.34));
}

.object-shadow {
  position: absolute;
  z-index: 1;
  bottom: 74px;
  width: min(82%, 520px);
  height: 46px;
  background: radial-gradient(ellipse, rgba(0,0,0,.38), rgba(0,0,0,0) 68%);
  filter: blur(9px);
}

.object-caption {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  min-width: min(94%, 420px);
  padding: 12px 18px;
  text-align: center;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(214,179,106,.20);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 38px rgba(0,0,0,.12);
}

.auction-stage-shell[data-auction-theme="dark"] .object-caption {
  background: rgba(10,10,13,.76);
  border-color: rgba(214,179,106,.24);
}

.object-caption strong,
.object-caption span {
  display: block;
}

.object-caption strong {
  font-size: 0.94rem;
  letter-spacing: .02em;
}

.object-caption span {
  color: #7b7163;
  font-size: 0.78rem;
}

.auction-stage-shell[data-auction-theme="dark"] .object-caption span { color: rgba(247,241,228,.66); }

.auction-action-card {
  padding: 24px;
  align-self: center;
  max-width: 360px;
  margin-left: auto;
}

.live-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(214,179,106,.14);
  color: #9a7327;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.metric-label {
  margin-top: 24px;
}

.metric-main,
.bid-right-box strong,
.auction-stat-grid strong {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.metric-main {
  color: var(--auction-gold);
  font-size: clamp(2.7rem, 5vw, 4.25rem);
  font-weight: 850;
  line-height: .92;
  margin-bottom: 10px;
}

.target-line {
  margin: 0 0 22px;
  color: #72685c;
  font-size: .92rem;
}

.target-line strong {
  color: #1d1810;
}

.auction-stage-shell[data-auction-theme="dark"] .target-line { color: rgba(247,241,228,.66); }
.auction-stage-shell[data-auction-theme="dark"] .target-line strong { color: #fff6dc; }

.bid-right-box {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(214,179,106,.28);
  background: linear-gradient(135deg, rgba(214,179,106,.13), rgba(255,255,255,.28));
}

.auction-stage-shell[data-auction-theme="dark"] .bid-right-box {
  background: linear-gradient(135deg, rgba(214,179,106,.13), rgba(0,0,0,.22));
}

.bid-right-box p {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 850;
  color: var(--auction-gold);
}

.bid-right-box div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bid-right-box span {
  display: block;
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.62);
  text-align: right;
}

.auction-stage-shell[data-auction-theme="dark"] .bid-right-box span {
  background: rgba(0,0,0,.28);
}

.bid-right-box small {
  display: block;
  margin-bottom: 4px;
  color: #82786a;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .66rem;
  font-weight: 800;
}

.bid-right-box strong {
  color: var(--auction-gold);
  font-size: 1.35rem;
  font-weight: 900;
}

.auction-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}

.auction-stat-grid div,
.seat-box {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(0,0,0,.06);
}

.auction-stage-shell[data-auction-theme="dark"] .auction-stat-grid div,
.auction-stage-shell[data-auction-theme="dark"] .seat-box {
  background: rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.08);
}

.auction-stat-grid small,
.seat-box span,
.seat-box small {
  display: block;
  color: #817669;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
}

.auction-stage-shell[data-auction-theme="dark"] .auction-stat-grid small,
.auction-stage-shell[data-auction-theme="dark"] .seat-box span,
.auction-stage-shell[data-auction-theme="dark"] .seat-box small { color: rgba(247,241,228,.58); }

.auction-stat-grid strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 850;
  line-height: 1;
  margin-top: 6px;
}

.seat-box {
  margin-bottom: 18px;
}

.seat-box strong {
  display: block;
  margin: 4px 0;
  color: var(--auction-gold);
  font-size: 1rem;
  letter-spacing: .06em;
}

.auction-actions {
  display: grid;
  gap: 10px;
}

.auction-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.auction-share {
  border-color: rgba(214,179,106,.42) !important;
}

.phase-strip {
  display: grid;
  grid-template-columns: 220px 1fr 250px;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  margin-top: 24px;
}

.phase-item span {
  display: block;
  color: var(--auction-gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .68rem;
  font-weight: 850;
}

.phase-item strong {
  display: block;
  font-size: 1rem;
}

.phase-item small {
  color: #7b7163;
}

.phase-line {
  height: 4px;
  border-radius: 999px;
  background: rgba(214,179,106,.22);
  overflow: hidden;
}

.phase-line i {
  display: block;
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, var(--auction-gold), #f1d58d);
}

.auction-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(310px, .78fr);
  gap: 24px;
  margin-top: 24px;
}

.next-lots,
.trust-card {
  padding: 24px;
}

.auction-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.auction-section-head p { margin: 0; }
.auction-section-head a { color: var(--auction-gold); font-weight: 800; font-size: .88rem; }

.next-lot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.next-lot-card {
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.07);
}

.next-lot-thumb {
  height: 120px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f5efe3, #e7dcc8);
  position: relative;
}

.next-lot-thumb img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.next-lot-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(214,179,106,.92);
  color: #161109;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.next-lot-body {
  padding: 14px;
}

.next-lot-body h3 {
  margin: 3px 0 5px;
  font-size: .92rem;
  line-height: 1.25;
}

.next-lot-body p {
  margin: 0;
  color: #776f63;
  font-size: .78rem;
}

.next-lot-price {
  display: block;
  margin-top: 11px;
  color: var(--auction-gold);
  font-weight: 900;
  font-size: .9rem;
}

.trust-card > p:not(.card-kicker) {
  margin: 0 0 18px;
  color: #6f665b;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.trust-grid span {
  padding: 12px;
  border-radius: 14px;
  background: rgba(214,179,106,.11);
  border: 1px solid rgba(214,179,106,.20);
  font-size: .82rem;
  font-weight: 800;
}

.auction-tabs {
  display: flex;
  gap: 8px;
  padding: 10px;
  margin-top: 24px;
  overflow-x: auto;
}

.auction-tabs a {
  flex: 1;
  min-width: max-content;
  padding: 13px 16px;
  border-radius: 14px;
  text-align: center;
  color: #62594f;
  font-weight: 800;
  font-size: .9rem;
}

.auction-tabs a.active,
.auction-tabs a:hover {
  background: rgba(214,179,106,.16);
  color: #161109;
}

@media (max-width: 1180px) {
  .auction-stage-grid {
    grid-template-columns: 1fr;
  }
  .auction-left-panel,
  .auction-action-card {
    max-width: none;
  }
  .auction-object-stage {
    min-height: 420px;
  }
  .auction-lower-grid,
  .phase-strip {
    grid-template-columns: 1fr;
  }
  .next-lot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .auction-container { width: min(100% - 24px, var(--auction-container)); }
  .auction-hero.section-spacing { padding: 72px 0 60px; }
  .auction-stage-shell { border-radius: 22px; }
  .auction-stage-grid { padding: 20px; gap: 18px; }
  .auction-left-panel h1 { font-size: 3.9rem; }
  .auction-benefits { grid-template-columns: 1fr; }
  .bid-right-box div,
  .auction-stat-grid,
  .trust-grid,
  .next-lot-grid { grid-template-columns: 1fr; }
  .auction-object-stage { min-height: 330px; padding-bottom: 70px; }
  .auction-object-stage img { width: 108%; }
}

/* =========================================
   Asta Scelta – Auktion Objektposition v14.3
   Fix: größere Hero-Objekte + bessere Bühnenposition
========================================= */

.auction-object-stage {
  --object-width: min(92%, 560px);
  --object-max-height: 340px;
  --object-bottom: 92px;
  --object-shift-x: 18px;
  --object-shift-y: 0px;

  --shadow-width: min(66%, 420px);
  --shadow-height: 42px;
  --shadow-blur: 18px;
  --shadow-opacity: .22;

  position: relative;
  min-height: 590px;
  padding: 40px 0 72px;
}

.auction-stage-shell[data-auction-theme="dark"] .auction-object-stage {
  --object-width: min(98%, 640px);
  --object-max-height: 390px;
  --object-bottom: 86px;
  --object-shift-x: 10px;
  --object-shift-y: 0px;

  --shadow-width: min(76%, 520px);
  --shadow-height: 52px;
  --shadow-blur: 22px;
  --shadow-opacity: .46;
}

.auction-object-stage img {
  position: absolute;
  left: 50%;
  bottom: var(--object-bottom);
  z-index: 2;

  width: var(--object-width);
  max-height: var(--object-max-height);
  object-fit: contain;

  transform: translateX(-50%) translate(var(--object-shift-x), var(--object-shift-y));

  filter:
    drop-shadow(0 12px 14px rgba(0,0,0,.10))
    drop-shadow(0 24px 30px rgba(0,0,0,.20));
}

.auction-stage-shell[data-auction-theme="dark"] .auction-object-stage img {
  filter:
    drop-shadow(0 14px 18px rgba(0,0,0,.18))
    drop-shadow(0 30px 38px rgba(0,0,0,.42));
}

.object-shadow {
  position: absolute;
  left: 50%;
  bottom: calc(var(--object-bottom) - 4px);
  transform: translateX(-50%) translateX(var(--object-shift-x));
  z-index: 1;

  width: var(--shadow-width);
  height: var(--shadow-height);

  background: radial-gradient(
    ellipse,
    rgba(0,0,0,var(--shadow-opacity)) 0%,
    rgba(0,0,0,0) 72%
  );

  filter: blur(var(--shadow-blur));
  pointer-events: none;
}

.next-lot-thumb img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,.14));
}

@media (max-width: 720px) {
  .auction-object-stage {
    min-height: 330px;
    padding-bottom: 70px;

    --object-width: min(104%, 390px);
    --object-max-height: 240px;
    --object-bottom: 86px;
    --object-shift-x: 0px;

    --shadow-width: min(72%, 280px);
  }

  .auction-stage-shell[data-auction-theme="dark"] .auction-object-stage {
    --object-width: min(108%, 420px);
    --object-max-height: 250px;
    --object-bottom: 82px;
    --object-shift-x: 0px;

    --shadow-width: min(78%, 310px);
  }
}

/* =========================================
   Asta Scelta – Auktion Typografie v14.4
   Fix: Überschrift und Preis ruhiger skalieren
========================================= */

.auction-left-panel h1 {
  font-size: clamp(3.2rem, 5.2vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.metric-main {
  font-size: clamp(2.4rem, 4vw, 3.45rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.auction-stage-shell[data-auction-theme="dark"] .auction-left-panel h1 {
  font-size: clamp(3.1rem, 5vw, 5.15rem);
}

.auction-stage-shell[data-auction-theme="dark"] .metric-main {
  font-size: clamp(2.35rem, 3.9vw, 3.35rem);
}

@media (max-width: 720px) {
  .auction-left-panel h1 {
    font-size: clamp(2.9rem, 13vw, 3.8rem);
  }

  .metric-main {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }
}

/* =========================================
   Asta Scelta – Auktion Schatten-Fix v14.5
   Fix: sichtbarer Bodenschatten unter Fahrzeugen
========================================= */

.auction-object-stage {
  --shadow-width: min(76%, 520px);
  --shadow-height: 58px;
  --shadow-blur: 20px;
  --shadow-opacity: .30;
}

.auction-stage-shell[data-auction-theme="dark"] .auction-object-stage {
  --shadow-width: min(82%, 600px);
  --shadow-height: 68px;
  --shadow-blur: 24px;
  --shadow-opacity: .58;
}

.object-shadow {
  bottom: calc(var(--object-bottom) - 18px);
  background: radial-gradient(
    ellipse,
    rgba(0, 0, 0, var(--shadow-opacity)) 0%,
    rgba(0, 0, 0, calc(var(--shadow-opacity) * .55)) 28%,
    rgba(0, 0, 0, 0) 74%
  );
  filter: blur(var(--shadow-blur));
  opacity: 1;
}

.auction-object-stage img {
  filter:
    drop-shadow(0 8px 8px rgba(0,0,0,.10))
    drop-shadow(0 22px 24px rgba(0,0,0,.22));
}

.auction-stage-shell[data-auction-theme="dark"] .auction-object-stage img {
  filter:
    drop-shadow(0 10px 12px rgba(0,0,0,.18))
    drop-shadow(0 30px 34px rgba(0,0,0,.46));
}

/* =========================================
   Asta Scelta – Auktion Objekt-Feintuning v14.6
   Ziel:
   - Grand Magasin: Fahrzeug etwas tiefer + etwas breiter
   - Belétage: Fahrzeug etwas höher + etwas breiter
   - Schatten: dunkler, kompakter, weniger weich
========================================= */

.auction-object-stage {
  --object-width: min(78%, 430px);
  --object-max-height: 272px;
  --object-bottom: 98px;
  --object-shift-x: 0px;
  --object-shift-y: 10px;
  --shadow-width: min(58%, 360px);
  --shadow-height: 26px;
  --shadow-blur: 10px;
  --shadow-opacity: .34;
}

.auction-stage-shell[data-auction-theme="dark"] .auction-object-stage {
  --object-width: min(88%, 540px);
  --object-max-height: 318px;
  --object-bottom: 118px;
  --object-shift-x: 0px;
  --object-shift-y: -10px;
  --shadow-width: min(56%, 390px);
  --shadow-height: 24px;
  --shadow-blur: 9px;
  --shadow-opacity: .62;
}

.object-shadow {
  bottom: calc(var(--object-bottom) - 8px);
  background: radial-gradient(
    ellipse,
    rgba(0, 0, 0, var(--shadow-opacity)) 0%,
    rgba(0, 0, 0, calc(var(--shadow-opacity) * .82)) 34%,
    rgba(0, 0, 0, calc(var(--shadow-opacity) * .32)) 58%,
    rgba(0, 0, 0, 0) 78%
  );
  filter: blur(var(--shadow-blur));
}

.auction-object-stage img {
  filter:
    drop-shadow(0 6px 8px rgba(0,0,0,.10))
    drop-shadow(0 14px 18px rgba(0,0,0,.18));
}

.auction-stage-shell[data-auction-theme="dark"] .auction-object-stage img {
  filter:
    drop-shadow(0 8px 10px rgba(0,0,0,.18))
    drop-shadow(0 16px 22px rgba(0,0,0,.32));
}

@media (max-width: 720px) {
  .auction-object-stage {
    --object-width: min(94%, 360px);
    --object-max-height: 228px;
    --object-bottom: 92px;
    --object-shift-y: 8px;
    --shadow-width: min(60%, 240px);
    --shadow-height: 18px;
    --shadow-blur: 8px;
  }

  .auction-stage-shell[data-auction-theme="dark"] .auction-object-stage {
    --object-width: min(98%, 390px);
    --object-max-height: 244px;
    --object-bottom: 98px;
    --object-shift-y: -6px;
    --shadow-width: min(64%, 270px);
    --shadow-height: 18px;
    --shadow-blur: 8px;
  }
}

/* =========================================
   Asta Scelta – Auktion Objekt-Feintuning v14.8
   Fix laut Feedback
   - Objekte sauber über Titelbox zentrieren
   - Beide Objekte ca. 10 % größer
   - Höhe/Tiefe beibehalten
   - Zusätzliche Schatten vollständig entfernen
========================================= */

.auction-object-stage {
  --object-width: min(92%, 550px);
  --object-max-height: 310px;
  --object-bottom: 78px;
  --object-shift-x: 0px;
  --object-shift-y: 14px;

  position: relative;
  min-height: 590px;
  padding: 40px 0 72px;
}

.auction-stage-shell[data-auction-theme="dark"] .auction-object-stage {
  --object-width: min(100%, 680px);
  --object-max-height: 360px;
  --object-bottom: 118px;
  --object-shift-x: 0px;
  --object-shift-y: -4px;
}

.auction-object-stage img {
  position: absolute;
  left: 50%;
  bottom: var(--object-bottom);
  z-index: 2;
  width: var(--object-width);
  max-height: var(--object-max-height);
  object-fit: contain;
  transform: translateX(-50%) translate(var(--object-shift-x), var(--object-shift-y));
  filter: none;
}

.auction-stage-shell[data-auction-theme="dark"] .auction-object-stage img {
  filter: none;
}

.object-shadow {
  display: none;
}

.next-lot-thumb img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: none;
}

@media (max-width: 720px) {
  .auction-object-stage {
    min-height: 330px;
    padding-bottom: 70px;
    --object-width: min(98%, 400px);
    --object-max-height: 246px;
    --object-bottom: 78px;
    --object-shift-x: 0px;
    --object-shift-y: 10px;
  }

  .auction-stage-shell[data-auction-theme="dark"] .auction-object-stage {
    --object-width: min(100%, 440px);
    --object-max-height: 270px;
    --object-bottom: 92px;
    --object-shift-x: 0px;
    --object-shift-y: -2px;
  }
}

/* =========================================
   Asta Scelta – Auktion v15
   Tabs, Inhaltskarten, klickbare nächste Lose
========================================= */

.next-lot-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.next-lot-card:hover {
  transform: translateY(-2px);
  border-color: rgba(214,179,106,.44);
  box-shadow: 0 16px 34px rgba(55, 38, 18, .14);
}

.auction-tabs {
  position: relative;
  z-index: 3;
}

.auction-tabs a {
  cursor: pointer;
}

.auction-tab-panels {
  margin-top: 18px;
  padding: 28px;
}

.auction-tab-panel[hidden] {
  display: none !important;
}

.auction-tab-panel {
  display: block;
}

.tab-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(30, 24, 15, .09);
}

.tab-panel-head h2 {
  margin: 0;
  color: #161109;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.tab-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tab-info-card {
  min-height: 150px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(30, 24, 15, .08);
  background: rgba(255,255,255,.58);
}

.tab-info-card strong {
  display: block;
  margin-bottom: 10px;
  color: #17120a;
  font-size: .98rem;
}

.tab-info-card p {
  margin: 0;
  color: #655d52;
  font-size: .93rem;
  line-height: 1.65;
}

.auction-page.auction-dark .auction-tab-panels,
.auction-page.auction-dark .auction-tabs,
.auction-page.auction-dark .next-lots,
.auction-page.auction-dark .trust-card,
.auction-page.auction-dark .phase-strip {
  background: rgba(15, 14, 16, .76);
  border-color: rgba(214,179,106,.17);
  box-shadow: 0 22px 58px rgba(0,0,0,.28);
}

.auction-page.auction-dark .tab-panel-head {
  border-bottom-color: rgba(255,255,255,.08);
}

.auction-page.auction-dark .tab-panel-head h2,
.auction-page.auction-dark .tab-info-card strong {
  color: #f7f1e4;
}

.auction-page.auction-dark .tab-info-card {
  background: rgba(0,0,0,.22);
  border-color: rgba(214,179,106,.14);
}

.auction-page.auction-dark .tab-info-card p {
  color: rgba(247,241,228,.70);
}

.auction-page.auction-dark .auction-tabs a {
  color: rgba(247,241,228,.66);
}

.auction-page.auction-dark .auction-tabs a.active,
.auction-page.auction-dark .auction-tabs a:hover {
  background: rgba(214,179,106,.16);
  color: #f7f1e4;
}

/* Letzte Objektlogik bleibt bewusst schattenfrei */
.object-shadow {
  display: none;
}

.auction-object-stage img {
  filter: none;
}

.auction-stage-shell[data-auction-theme="dark"] .auction-object-stage img {
  filter: none;
}

@media (max-width: 900px) {
  .tab-panel-grid {
    grid-template-columns: 1fr;
  }

  .auction-tab-panels {
    padding: 20px;
  }

  .tab-info-card {
    min-height: auto;
  }
}

/* =========================================
   Asta Scelta – Auktion v15.1
   Lower Background + Objektprofil unter Phase
========================================= */

.auction-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.auction-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 760px;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../img/auktion/backgrounds/auktion-grand-magasin-lower-bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: .22;
}

.auction-page.auction-dark .auction-hero::before {
  background-image: url("../img/auktion/backgrounds/auktion-beletage-lower-bg.jpg");
  opacity: .38;
}

.auction-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 760px;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(244,239,229,.96) 0%, rgba(244,239,229,.78) 22%, rgba(244,239,229,.86) 100%);
}

.auction-page.auction-dark .auction-hero::after {
  background:
    linear-gradient(180deg, rgba(13,12,13,.92) 0%, rgba(13,12,13,.70) 30%, rgba(13,12,13,.88) 100%);
}

.auction-hero > .auction-container,
.auction-container {
  position: relative;
  z-index: 1;
}

.auction-tab-panels {
  margin-top: 24px;
  margin-bottom: 24px;
}

.auction-lower-grid {
  margin-top: 24px;
}

.auction-page.auction-dark .phase-strip,
.auction-page.auction-dark .auction-tab-panels,
.auction-page.auction-dark .next-lots,
.auction-page.auction-dark .trust-card,
.auction-page.auction-dark .auction-tabs {
  background: rgba(15, 14, 16, .84);
  border-color: rgba(214,179,106,.20);
  color: #f7f1e4;
}

.auction-page.auction-dark .phase-item strong,
.auction-page.auction-dark .next-lot-body h3,
.auction-page.auction-dark .trust-grid span,
.auction-page.auction-dark .auction-section-head a,
.auction-page.auction-dark .next-lot-price {
  color: #f7f1e4;
}

.auction-page.auction-dark .phase-item small,
.auction-page.auction-dark .next-lot-body p,
.auction-page.auction-dark .trust-card > p:not(.card-kicker),
.auction-page.auction-dark .tab-info-card p {
  color: rgba(247,241,228,.70);
}

.auction-page.auction-dark .next-lot-card {
  background: rgba(15,14,16,.72);
  border-color: rgba(214,179,106,.18);
}

.auction-page.auction-dark .next-lot-thumb {
  background: linear-gradient(135deg, rgba(214,179,106,.13), rgba(0,0,0,.24));
}

.auction-page.auction-dark .next-lot-badge {
  background: rgba(214,179,106,.92);
  color: #15110a;
}

.auction-page.auction-dark .trust-grid span {
  background: rgba(214,179,106,.10);
  border-color: rgba(214,179,106,.22);
}

@media (max-width: 1180px) {
  .auction-hero::before,
  .auction-hero::after {
    top: 1040px;
  }
}

@media (max-width: 720px) {
  .auction-hero::before,
  .auction-hero::after {
    top: 900px;
  }

  .auction-tab-panels {
    margin-top: 18px;
  }
}

/* =========================================
   Asta Scelta – Auktion v15.2
   Fix: Tabs direkt unter Phase, Lower-BG stärker/fixed, Hero-Abstand reduziert
========================================= */

/* Abstand oberhalb der Auktionsbühne ca. 50 % reduzieren */
.auction-hero.section-spacing {
  padding-top: 48px;
}

/* Lower-Hintergrund stärker und viewport-fixiert */
.auction-hero::before {
  top: 0;
  background-attachment: fixed;
  background-position: center top;
  opacity: .36;
}

.auction-page.auction-dark .auction-hero::before {
  opacity: .52;
}

.auction-hero::after {
  top: 0;
  background:
    linear-gradient(180deg, rgba(244,239,229,.94) 0%, rgba(244,239,229,.72) 36%, rgba(244,239,229,.82) 100%);
}

.auction-page.auction-dark .auction-hero::after {
  background:
    linear-gradient(180deg, rgba(13,12,13,.90) 0%, rgba(13,12,13,.60) 40%, rgba(13,12,13,.84) 100%);
}

/* Bühne bleibt oberhalb des Lower-Hintergrunds klar und nicht vom Lower-BG überlagert */
.auction-stage-shell {
  position: relative;
  z-index: 2;
}

.phase-strip,
.auction-tabs,
.auction-tab-panels,
.auction-lower-grid {
  position: relative;
  z-index: 1;
}

/* Tabs sitzen direkt unter dem Phasenblock */
.auction-tabs {
  margin-top: 24px;
  margin-bottom: 18px;
}

.auction-tab-panels {
  margin-top: 0;
  margin-bottom: 24px;
}

/* Lower-Bereich danach sauber darunter */
.auction-lower-grid {
  margin-top: 24px;
}

/* Belétage: alle unteren Blöcke dunkler/lesbarer */
.auction-page.auction-dark .auction-tab-panels,
.auction-page.auction-dark .next-lots,
.auction-page.auction-dark .trust-card,
.auction-page.auction-dark .auction-tabs,
.auction-page.auction-dark .phase-strip {
  background: rgba(15, 14, 16, .88);
  border-color: rgba(214,179,106,.22);
  color: #f7f1e4;
}

.auction-page.auction-dark .tab-info-card,
.auction-page.auction-dark .next-lot-card {
  background: rgba(0,0,0,.28);
  border-color: rgba(214,179,106,.18);
}

.auction-page.auction-dark .tab-panel-head h2,
.auction-page.auction-dark .tab-info-card strong,
.auction-page.auction-dark .next-lot-body h3,
.auction-page.auction-dark .trust-grid span {
  color: #f7f1e4;
}

.auction-page.auction-dark .tab-info-card p,
.auction-page.auction-dark .next-lot-body p,
.auction-page.auction-dark .trust-card > p:not(.card-kicker) {
  color: rgba(247,241,228,.72);
}

@media (max-width: 1180px) {
  .auction-hero.section-spacing {
    padding-top: 42px;
  }

  .auction-hero::before,
  .auction-hero::after {
    top: 0;
  }
}

@media (max-width: 720px) {
  .auction-hero.section-spacing {
    padding-top: 34px;
  }

  .auction-hero::before {
    background-attachment: scroll;
    opacity: .30;
  }

  .auction-page.auction-dark .auction-hero::before {
    opacity: .44;
  }
}

/* =========================================
   Asta Scelta – Auktion v15.3 CLEAN
   CEO-Variante:
   - Belétage-Hintergrund ruhiger
   - Goldene Ränder der Hauptboxen entfernt
   - Button-/Aktionsränder bleiben unberührt
========================================= */

/* Lower-Background Sichtbarkeit */
.auction-hero::before {
  opacity: .36;
}

.auction-page.auction-dark .auction-hero::before {
  opacity: .42;
}

/* Goldene Ränder der Hauptboxen entfernen */
.auction-stage-shell,
.auction-stage-shell[data-auction-theme="dark"],
.phase-strip,
.auction-tabs,
.auction-tab-panels,
.next-lots,
.trust-card {
  border-color: transparent;
}

/* Belétage-Unterbereich weiterhin ruhig und hochwertig */
.auction-page.auction-dark .phase-strip,
.auction-page.auction-dark .auction-tab-panels,
.auction-page.auction-dark .next-lots,
.auction-page.auction-dark .trust-card,
.auction-page.auction-dark .auction-tabs {
  background: rgba(15, 14, 16, .88);
  border-color: transparent;
  color: #f7f1e4;
}

/* Interne kleinere Karten dürfen dezente Struktur behalten */
.auction-page.auction-dark .tab-info-card,
.auction-page.auction-dark .next-lot-card,
.auction-page.auction-dark .trust-grid span {
  border-color: rgba(255,255,255,.08);
}

/* =========================================
   Asta Scelta – Zurück-Button
   Hinweis:
   - Nur der globale Zurück-Button bleibt erhalten
   - Alle Auktionsdetail-v16-Blöcke wurden entfernt
========================================= */

.auction-back-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 56px 0 10px;
}

.auction-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid rgba(184, 148, 77, 0.46);
  background: rgba(255, 255, 255, .78);
  color: #17150f;
  font-weight: 800;
  letter-spacing: .03em;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(24, 18, 9, .10);
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.auction-back-button:hover {
  transform: translateY(-2px);
  background: var(--auction-gold, #d6b36a);
  border-color: var(--auction-gold, #d6b36a);
  color: #17150f;
}

.auction-page.auction-dark .auction-back-button,
.auction-page.auction-beletage .auction-back-button {
  background: rgba(15, 14, 16, .78);
  color: #f7f1e4;
  border-color: rgba(214, 179, 106, .44);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.auction-page.auction-dark .auction-back-button:hover,
.auction-page.auction-beletage .auction-back-button:hover {
  background: var(--auction-gold, #d6b36a);
  color: #17150f;
}

@media (max-width: 720px) {
  .auction-back-row {
    margin-top: 40px;
  }
}
