/**
 * Appily Fortyeight — Lot Stage (product)
 * Layout: full-bleed image stage + portrait → floating buy console → facts/perks/sheets → related reel → dock
 */

.page-product-lot {
  --lt-ink: #0C1A14;
  --lt-forest: #163528;
  --lt-lime: #C6F542;
  --lt-mint: #3DDC97;
  --lt-fog: #EAF6EF;
  --lt-mist: #F3FBF6;
  --lt-muted: #5F7468;
  --lt-line: rgba(12, 26, 20, 0.1);
  --lt-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --lt-shadow: 0 22px 48px rgba(12, 26, 20, 0.12);
  background:
    radial-gradient(900px 420px at 90% -8%, rgba(198, 245, 66, 0.1), transparent 55%),
    radial-gradient(700px 380px at 0% 100%, rgba(61, 220, 151, 0.08), transparent 50%),
    var(--lt-mist);
}

.page-product-lot .page-main { padding-top: 0; }
.page-product-lot:has(.a48-lot-dock) { padding-bottom: 76px; }
.a48-lot { padding-bottom: 3rem; }

.a48-lot-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s var(--lt-ease) calc(var(--a48-delay, 0) * .08s),
              transform .65s var(--lt-ease) calc(var(--a48-delay, 0) * .08s);
}
.a48-lot-reveal.is-visible { opacity: 1; transform: none; }

/* ── Full-bleed stage ── */
.a48-lot-stage {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: clamp(420px, 62vh, 620px);
  display: grid;
  align-items: end;
  background: var(--lt-ink);
}

.a48-lot-stage-media {
  position: absolute;
  inset: 0;
}
.a48-lot-stage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: ltKen 18s ease-in-out infinite alternate;
}
@keyframes ltKen {
  to { transform: scale(1.1) translate(-1.5%, 1%); }
}
.a48-lot-stage-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 26, 20, .92) 0%, rgba(12, 26, 20, .72) 42%, rgba(12, 26, 20, .35) 70%, rgba(12, 26, 20, .55) 100%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(198, 245, 66, .12), transparent 55%);
}
.a48-lot-stage-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 12px,
    rgba(198, 245, 66, .03) 12px,
    rgba(198, 245, 66, .03) 13px
  );
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  animation: ltScan 8s linear infinite;
}
@keyframes ltScan {
  to { background-position: 0 40px; }
}

.a48-lot-stage-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr minmax(240px, .85fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: end;
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(2.25rem, 4vw, 3rem);
}

.a48-lot-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .45rem;
  margin-bottom: .85rem;
  font-size: .72rem;
  font-weight: 600;
}
.a48-lot-crumb a {
  color: rgba(234, 246, 239, .7);
  text-decoration: none;
}
.a48-lot-crumb a:hover { color: var(--lt-lime); }
.a48-lot-crumb span { color: rgba(234, 246, 239, .35); }

.a48-lot-stage-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1rem;
}

.a48-lot-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 245, 66, .45);
  background: rgba(198, 245, 66, .1);
  color: var(--lt-lime);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.a48-lot-chip--soft {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: rgba(234, 246, 239, .85);
}
.a48-lot-chip--soft.is-out {
  border-color: rgba(255, 140, 120, .45);
  color: #ffb4a0;
}
.a48-lot-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lt-lime);
  box-shadow: 0 0 0 0 rgba(198, 245, 66, .5);
  animation: ltPing 1.8s ease-out infinite;
}
.a48-lot-chip--soft.is-out .a48-lot-live-dot {
  background: #ff8a80;
  animation: none;
}
@keyframes ltPing {
  70%, 100% { box-shadow: 0 0 0 10px transparent; }
}

.a48-lot-stage h1 {
  margin: 0 0 .75rem;
  font-family: var(--a48-font-serif, Georgia, serif);
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  max-width: 16ch;
}

.a48-lot-lede {
  margin: 0 0 1.15rem;
  max-width: 48ch;
  color: rgba(234, 246, 239, .78);
  font-size: .95rem;
  line-height: 1.55;
}

.a48-lot-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .55rem .75rem;
}
.a48-lot-price-row s {
  color: rgba(234, 246, 239, .45);
  font-size: 1rem;
}
.a48-lot-sale {
  padding: .2rem .5rem;
  border-radius: 999px;
  background: rgba(198, 245, 66, .22);
  color: var(--lt-lime);
  font-size: .72rem;
  font-weight: 800;
}
.a48-lot-price-row strong {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--lt-lime);
  font-variant-numeric: tabular-nums;
}
.a48-lot-price-row em {
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(234, 246, 239, .6);
}

/* Portrait card over stage */
.a48-lot-portrait {
  margin: 0;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .35);
  background: rgba(12, 26, 20, .4);
  aspect-ratio: 1;
  max-width: 380px;
  margin-left: auto;
  width: 100%;
}
.a48-lot-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--lt-ease);
}
.a48-lot-portrait:hover img { transform: scale(1.05); }
.a48-lot-portrait-sale {
  position: absolute;
  top: .85rem;
  left: .85rem;
  z-index: 2;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: var(--lt-lime);
  color: var(--lt-ink);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.a48-lot-portrait figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding: .85rem 1rem;
  background: linear-gradient(transparent, rgba(12, 26, 20, .85));
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(234, 246, 239, .85);
}

/* Body */
.a48-lot-body {
  padding: 0 0 0;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

/* Buy console — full-width floating, not a side rail */
.a48-lot-console {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.35rem;
  padding: clamp(1.2rem, 2.8vw, 1.75rem);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(198, 245, 66, .16), transparent 50%),
    linear-gradient(145deg, #0C1A14, #163528 55%, #0F241C);
  box-shadow: 0 28px 60px rgba(12, 26, 20, .22);
  border: 1px solid rgba(198, 245, 66, .18);
}
.a48-lot-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 12px,
    rgba(255, 255, 255, .015) 12px,
    rgba(255, 255, 255, .015) 13px
  );
  pointer-events: none;
}
.a48-lot-console > * { position: relative; z-index: 1; }

.a48-lot-console-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: .85rem;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.a48-lot-console-price {
  display: flex;
  align-items: baseline;
  gap: .55rem;
}
.a48-lot-console-price s {
  color: rgba(234, 246, 239, .4);
}
.a48-lot-console-price strong {
  font-size: 1.75rem;
  color: var(--lt-lime);
  font-variant-numeric: tabular-nums;
}

.a48-lot-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lt-forest);
}
.a48-lot-tag--lime { color: var(--lt-lime); }

.a48-lot-error {
  margin: 0 0 1rem;
  padding: .8rem 1rem;
  border-radius: 14px;
  background: rgba(255, 180, 120, .12);
  border: 1px solid rgba(255, 180, 120, .35);
  color: #ffc49a;
  font-size: .88rem;
}

.a48-lot-form {
  display: grid;
  gap: 1.1rem;
}

.a48-lot-option-label {
  margin: 0 0 .55rem;
  font-size: .82rem;
  color: rgba(234, 246, 239, .7);
}
.a48-lot-option-label strong { color: #fff; }

.a48-lot-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.a48-lot-pill {
  padding: .55rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
  color: rgba(234, 246, 239, .85);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s var(--lt-ease);
}
.a48-lot-pill:hover {
  border-color: rgba(198, 245, 66, .45);
  transform: translateY(-1px);
}
.a48-lot-pill.is-active {
  background: var(--lt-lime);
  border-color: var(--lt-lime);
  color: var(--lt-ink);
}

.a48-lot-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.a48-lot-qty-row label {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(234, 246, 239, .75);
}
.a48-lot-stepper {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
  overflow: hidden;
}
.a48-lot-stepper button {
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.a48-lot-stepper button:hover { background: rgba(255, 255, 255, .08); }
.a48-lot-stepper input {
  width: 2.8rem;
  border: 0;
  text-align: center;
  background: transparent;
  color: var(--lt-lime);
  font-weight: 800;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.a48-lot-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}

.a48-lot-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
  margin: 1.15rem 0 .85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.a48-lot-meta div {
  display: grid;
  gap: .2rem;
}
.a48-lot-meta dt {
  margin: 0;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(234, 246, 239, .55);
}
.a48-lot-meta dd {
  margin: 0;
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  word-break: break-word;
}

.a48-lot-payments {
  display: flex;
  gap: .45rem;
}
.a48-lot-payments span {
  padding: .3rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 245, 66, .28);
  background: rgba(198, 245, 66, .08);
  color: var(--lt-lime);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
}

/* Facts */
.a48-lot-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.a48-lot-fact {
  padding: .55rem .85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--lt-line);
  font-size: .8rem;
  color: var(--lt-muted);
  box-shadow: 0 8px 20px rgba(12, 26, 20, .05);
}
.a48-lot-fact strong {
  color: var(--lt-forest);
  margin-right: .25rem;
}

/* Perks */
.a48-lot-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  margin-bottom: 1.35rem;
}
.a48-lot-perk {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1.1rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--lt-line);
  box-shadow: var(--lt-shadow);
}
.a48-lot-perk-code {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  display: grid;
  place-content: center;
  flex-shrink: 0;
  background: var(--lt-ink);
  color: var(--lt-lime);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.a48-lot-perk strong {
  display: block;
  margin-bottom: .25rem;
  color: var(--lt-ink);
  font-size: .95rem;
}
.a48-lot-perk p {
  margin: 0;
  font-size: .84rem;
  color: var(--lt-muted);
  line-height: 1.45;
}

/* Sheets */
.a48-lot-sheets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.a48-lot-sheet {
  background: #fff;
  border: 1px solid var(--lt-line);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: var(--lt-shadow);
}
.a48-lot-sheet-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--lt-line);
}
.a48-lot-sheet-num {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  display: grid;
  place-content: center;
  background: var(--lt-ink);
  color: var(--lt-lime);
  font-size: .72rem;
  font-weight: 800;
}
.a48-lot-sheet-head h2 {
  margin: 0;
  font-family: var(--a48-font-serif, Georgia, serif);
  font-size: 1.2rem;
  color: var(--lt-ink);
}
.a48-lot-detail-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: .55rem;
  color: var(--lt-muted);
  font-size: .9rem;
  line-height: 1.5;
}
.a48-lot-detail-list strong { color: var(--lt-ink); }

.a48-lot-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.a48-lot-spec-table th,
.a48-lot-spec-table td {
  padding: .55rem 0;
  border-bottom: 1px solid var(--lt-line);
  text-align: left;
  vertical-align: top;
}
.a48-lot-spec-table th {
  width: 38%;
  color: var(--lt-muted);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.a48-lot-spec-table td {
  color: var(--lt-ink);
  font-weight: 600;
}
.a48-lot-spec-table tr:last-child th,
.a48-lot-spec-table tr:last-child td { border-bottom: 0; }

/* Related */
.a48-lot-related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.a48-lot-related-head h2 {
  margin: .35rem 0 .25rem;
  font-family: var(--a48-font-serif, Georgia, serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--lt-ink);
}
.a48-lot-related-head p {
  margin: 0;
  color: var(--lt-muted);
  font-size: .88rem;
}
.a48-lot-related-link {
  color: var(--lt-forest);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.a48-lot-related-link:hover { color: var(--lt-ink); }

.a48-lot-related-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 240px);
  gap: .85rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.a48-lot-related-card {
  --rel-i: 0;
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--lt-line);
  box-shadow: var(--lt-shadow);
  opacity: 0;
  transform: translateY(12px);
  animation: ltCardIn .55s var(--lt-ease) forwards;
  animation-delay: calc(var(--rel-i) * .06s);
  transition: transform .25s var(--lt-ease), border-color .2s ease;
}
@keyframes ltCardIn {
  to { opacity: 1; transform: none; }
}
.a48-lot-related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 220, 151, .45);
}
.a48-lot-related-media {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--lt-fog);
}
.a48-lot-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--lt-ease);
}
.a48-lot-related-card:hover .a48-lot-related-media img { transform: scale(1.06); }
.a48-lot-related-tag {
  position: absolute;
  top: .65rem;
  left: .65rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: var(--lt-ink);
  color: var(--lt-lime);
  font-size: .65rem;
  font-weight: 800;
}
.a48-lot-related-body { padding: .9rem 1rem 1.05rem; }
.a48-lot-related-cat {
  display: block;
  margin-bottom: .3rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lt-muted);
}
.a48-lot-related-body h3 {
  margin: 0 0 .65rem;
  font-size: .95rem;
  line-height: 1.3;
}
.a48-lot-related-body h3 a {
  color: var(--lt-ink);
  text-decoration: none;
}
.a48-lot-related-body h3 a:hover { color: var(--lt-forest); }
.a48-lot-related-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.a48-lot-related-foot strong {
  color: var(--lt-forest);
  font-variant-numeric: tabular-nums;
}
.a48-lot-related-foot a {
  font-size: .8rem;
  font-weight: 800;
  color: var(--lt-ink);
  text-decoration: none;
}

/* Buttons */
.a48-lot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .9rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: .9rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--lt-ease), background .2s ease, border-color .2s ease, color .2s ease;
}
.a48-lot-btn:hover:not(.is-disabled) { transform: translateY(-1px); }
.a48-lot-btn--lime {
  background: var(--lt-lime);
  color: var(--lt-ink);
}
.a48-lot-btn--lime:hover:not(.is-disabled) { background: #d4ff5c; }
.a48-lot-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}
.a48-lot-btn--ghost:hover:not(.is-disabled) {
  border-color: var(--lt-lime);
  color: var(--lt-lime);
}
.a48-lot-btn.is-disabled {
  opacity: .45;
  cursor: not-allowed;
}
.a48-lot-miss .a48-lot-btn--lime { /* keep */ }

/* Dock */
.a48-lot-dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  padding: .75rem 0 calc(.75rem + env(safe-area-inset-bottom));
  background: rgba(12, 26, 20, .94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(198, 245, 66, .2);
  transform: translateY(110%);
  transition: transform .35s var(--lt-ease);
}
.a48-lot-dock.is-visible { transform: none; }
.a48-lot-dock-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.a48-lot-dock-copy {
  display: grid;
  gap: .15rem;
  color: #fff;
  min-width: 0;
}
.a48-lot-dock-copy strong {
  font-size: .92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.a48-lot-dock-copy span {
  color: var(--lt-lime);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.a48-lot-dock-actions {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}
.a48-lot-dock .a48-lot-btn {
  padding: .7rem 1rem;
  font-size: .82rem;
}

/* Miss */
.page-lot-miss .page-main { padding-top: 0; }
.a48-lot-miss-wrap {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background:
    radial-gradient(700px 360px at 50% 0%, rgba(198, 245, 66, 0.12), transparent 55%),
    var(--lt-mist);
}
.a48-lot-miss {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 2.75rem) 1.5rem;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--lt-line);
  box-shadow: var(--lt-shadow);
}
.a48-lot-miss-orbit {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px dashed rgba(22, 53, 40, .3);
  position: relative;
  animation: ltSpin 12s linear infinite;
}
@keyframes ltSpin { to { transform: rotate(360deg); } }
.a48-lot-miss-orbit span {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--lt-lime);
  box-shadow: 0 0 0 5px rgba(198, 245, 66, .2);
}
.a48-lot-miss-kicker {
  margin: .65rem 0 .35rem;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lt-muted);
}
.a48-lot-miss h1 {
  margin: 0 0 .5rem;
  font-family: var(--a48-font-serif, Georgia, serif);
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  color: var(--lt-ink);
}
.a48-lot-miss > p {
  margin: 0 auto 1.25rem;
  color: var(--lt-muted);
}

/* Responsive */
@media (max-width: 960px) {
  .a48-lot-stage-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .a48-lot-stage-meta,
  .a48-lot-crumb { justify-content: center; }
  .a48-lot-stage h1 { max-width: none; margin-inline: auto; }
  .a48-lot-lede { margin-inline: auto; }
  .a48-lot-price-row { justify-content: center; }
  .a48-lot-portrait { margin-inline: auto; max-width: 300px; }
  .a48-lot-perks,
  .a48-lot-sheets { grid-template-columns: 1fr; }
  .a48-lot-meta { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .a48-lot-actions { grid-template-columns: 1fr; }
  .a48-lot-related-head { flex-direction: column; align-items: flex-start; }
  .a48-lot-dock-inner { flex-direction: column; align-items: stretch; }
  .a48-lot-dock-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .a48-lot-dock .a48-lot-btn--ghost {
    border-color: rgba(255, 255, 255, .28);
    color: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a48-lot-stage-media img,
  .a48-lot-stage-scan,
  .a48-lot-live-dot,
  .a48-lot-miss-orbit { animation: none; }
  .a48-lot-reveal,
  .a48-lot-related-card {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
  .a48-lot-portrait:hover img,
  .a48-lot-related-card:hover .a48-lot-related-media img { transform: none; }
}
