/* =========================================
   Asta Scelta – Passage v23
   Grand Magasin + Belétage
   Ausstellung · Bewertung · Marktauswertung · Objekt-Beobachtung
========================================= */

.passage-page main {
  background: #0b0b0e;
  color: var(--text-main);
}

.passage-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line-soft);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.passage-bg-grand {
  background-image: url("../img/auktion/backgrounds/passage-grand-magasin-bg.jpg");
}

.passage-bg-beletage {
  background-image: url("../img/auktion/backgrounds/passage-beletage-bg.jpg");
}

.passage-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,7,9,.88) 0%, rgba(7,7,9,.64) 34%, rgba(7,7,9,.24) 64%, rgba(7,7,9,.10) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.34));
}

.passage-beletage-page .passage-hero-shade {
  background:
    linear-gradient(90deg, rgba(7,7,9,.90) 0%, rgba(7,7,9,.72) 38%, rgba(7,7,9,.34) 68%, rgba(7,7,9,.16) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.40));
}

.passage-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 96px;
  max-width: 760px;
}

.passage-hero-content h1 {
  margin: 0 0 22px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: .94;
  font-weight: 850;
  letter-spacing: -.055em;
  color: #f7f2e8;
}

.passage-hero-content .hero-subline {
  max-width: 720px;
  color: rgba(245,242,235,.92);
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
  line-height: 1.7;
}

.passage-hero-note {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(245,242,235,.74);
  font-size: .98rem;
  line-height: 1.75;
}

.passage-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.passage-intro,
.passage-boutiques,
.passage-closing {
  background:
    radial-gradient(circle at 80% 0%, rgba(214,179,106,.10), transparent 30%),
    #0b0b0e;
}

.passage-grand-page .passage-intro,
.passage-grand-page .passage-boutiques,
.passage-grand-page .passage-closing {
  background:
    radial-gradient(circle at 78% 0%, rgba(214,179,106,.12), transparent 32%),
    linear-gradient(180deg, #111113 0%, #0b0b0e 100%);
}

.passage-signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 42px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 54px rgba(0,0,0,.25);
}

.passage-signal-strip div {
  padding: 24px 26px;
  background: rgba(10,10,13,.82);
}

.passage-signal-strip strong,
.passage-signal-strip span {
  display: block;
}

.passage-signal-strip strong {
  color: var(--accent);
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.passage-signal-strip span {
  color: var(--text-soft);
  font-size: .94rem;
}

.passage-explain-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 34px;
}

.passage-explain-grid h2,
.passage-closing-box h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  color: #f7f2e8;
}

.passage-explain-grid p:not(.section-kicker),
.passage-closing-box p:not(.section-kicker),
.section-intro {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.passage-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.passage-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  font-weight: 800;
  font-size: .88rem;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.passage-category:hover,
.passage-category.is-active {
  transform: translateY(-1px);
  color: #111;
  background: var(--accent);
  border-color: var(--accent);
}

.passage-boutique-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.passage-boutique-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
    #111114;
  box-shadow: 0 22px 64px rgba(0,0,0,.30);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.passage-grand-page .passage-boutique-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.03)),
    #141416;
}

.passage-boutique-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -38% -20%;
  height: 58%;
  opacity: .22;
  background: radial-gradient(circle at 50% 50%, rgba(214,179,106,.32), transparent 66%);
  pointer-events: none;
}

.passage-boutique-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214,179,106,.34);
  box-shadow: 0 28px 80px rgba(0,0,0,.42);
}

.boutique-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.boutique-category {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 900;
}

.boutique-share {
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  color: var(--text-soft);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.boutique-share:hover {
  color: #111;
  background: var(--accent);
  border-color: var(--accent);
}

.passage-boutique-card h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 6px;
  color: #f7f2e8;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.12;
  letter-spacing: -.025em;
}

.boutique-signature {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: rgba(214,179,106,.86);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-weight: 850;
}

.boutique-text {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: rgba(245,242,235,.76);
  line-height: 1.68;
}

.boutique-inventory,
.boutique-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.boutique-inventory {
  margin-top: auto;
  margin-bottom: 16px;
}

.boutique-inventory span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: rgba(245,242,235,.84);
  font-size: .76rem;
  font-weight: 800;
}

.boutique-tags {
  margin-bottom: 22px;
}

.boutique-tags span {
  color: rgba(245,242,235,.58);
  font-size: .78rem;
  line-height: 1.35;
}

.boutique-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: #f7f2e8;
  font-weight: 850;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.passage-boutique-card:hover .boutique-link {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.passage-closing-box {
  padding: 42px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  box-shadow: 0 22px 64px rgba(0,0,0,.28);
}

.passage-closing-box p:not(.section-kicker) {
  max-width: 860px;
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .passage-boutique-grid,
  .passage-signal-strip,
  .passage-explain-grid {
    grid-template-columns: 1fr;
  }

  .passage-hero {
    min-height: 72vh;
  }
}

@media (max-width: 720px) {
  .passage-hero-content {
    padding: 96px 0 72px;
  }

  .passage-hero-content h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .passage-boutique-card,
  .passage-closing-box {
    padding: 24px;
    border-radius: 22px;
  }

  .passage-signal-strip div {
    padding: 20px;
  }
}


/* =========================================
   Asta Scelta – Passage v23.1 Korrektur
   Fix:
   - Grand Magasin bekommt zwingend eigenes JPG-Hintergrundbild
   - Belétage bekommt zwingend eigenes JPG-Hintergrundbild
   - Grand Magasin heller/offener, passend zur Hauptetage
   - Belétage modern-edel, aber nicht altbacken
   - keine goldenen Standardränder an Boutique-Boxen
========================================= */

/* Hintergrundbilder hart und seitenbezogen setzen */
body.passage-grand-page .passage-hero,
body.passage-grand-page .passage-bg-grand {
  background-image: url("../img/auktion/backgrounds/passage-grand-magasin-bg.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

body.passage-beletage-page .passage-hero,
body.passage-beletage-page .passage-bg-beletage {
  background-image: url("../img/auktion/backgrounds/passage-beletage-bg.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Grand Magasin: heller, offener, wärmer */
body.passage-grand-page main {
  background: #f7f2e8;
  color: #17150f;
}

body.passage-grand-page .passage-hero-shade {
  background:
    linear-gradient(90deg, rgba(7,7,9,.70) 0%, rgba(7,7,9,.48) 34%, rgba(7,7,9,.14) 66%, rgba(7,7,9,.02) 100%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(247,242,232,.16));
}

body.passage-grand-page .passage-hero-content h1 {
  color: #fff7e9;
  text-shadow: 0 18px 44px rgba(0,0,0,.26);
}

body.passage-grand-page .passage-hero-content .hero-subline,
body.passage-grand-page .passage-hero-note {
  color: rgba(255,248,236,.90);
}

body.passage-grand-page .passage-intro,
body.passage-grand-page .passage-boutiques,
body.passage-grand-page .passage-closing {
  background:
    radial-gradient(circle at 82% 0%, rgba(214,179,106,.14), transparent 34%),
    linear-gradient(180deg, #fbf7ee 0%, #f1eadc 54%, #e8decd 100%);
  color: #17150f;
}

body.passage-grand-page .passage-signal-strip {
  border-color: rgba(30,24,15,.08);
  background: rgba(255,255,255,.68);
  box-shadow: 0 18px 46px rgba(77,55,25,.10);
}

body.passage-grand-page .passage-signal-strip div {
  background: rgba(255,255,255,.86);
}

body.passage-grand-page .passage-signal-strip span,
body.passage-grand-page .passage-explain-grid p:not(.section-kicker),
body.passage-grand-page .passage-closing-box p:not(.section-kicker),
body.passage-grand-page .section-intro {
  color: #5f574d;
}

body.passage-grand-page .passage-explain-grid h2,
body.passage-grand-page .passage-closing-box h2,
body.passage-grand-page .section-head h2 {
  color: #17150f;
}

body.passage-grand-page .passage-category {
  color: #3b342b;
  background: rgba(255,255,255,.64);
  border-color: rgba(30,24,15,.09);
}

body.passage-grand-page .passage-category:hover,
body.passage-grand-page .passage-category.is-active {
  color: #17150f;
  background: rgba(214,179,106,.22);
  border-color: rgba(214,179,106,.42);
}

/* Grand Magasin: schwarze Karten ja, aber nicht matschig; keine Goldränder im Normalzustand */
body.passage-grand-page .passage-boutique-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035)),
    #121214;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 22px 54px rgba(66,45,21,.22);
}

body.passage-grand-page .passage-boutique-card:hover {
  border-color: rgba(214,179,106,.30);
  box-shadow: 0 28px 72px rgba(66,45,21,.28);
}

body.passage-grand-page .passage-closing-box {
  background: rgba(255,255,255,.78);
  border-color: rgba(30,24,15,.08);
  box-shadow: 0 18px 46px rgba(77,55,25,.10);
}

/* Belétage: eigenes Bild + modern-edel, nicht zu schwer */
body.passage-beletage-page main {
  background: #0b0b0e;
}

body.passage-beletage-page .passage-intro,
body.passage-beletage-page .passage-boutiques,
body.passage-beletage-page .passage-closing {
  background:
    radial-gradient(circle at 82% 0%, rgba(214,179,106,.10), transparent 32%),
    linear-gradient(180deg, #111114 0%, #0b0b0e 100%);
}

body.passage-beletage-page .passage-boutique-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    #111114;
  border-color: rgba(255,255,255,.08);
}

body.passage-beletage-page .passage-boutique-card:hover {
  border-color: rgba(214,179,106,.28);
}
