/* ============================================================
   eBAY AUCTIONS PAGE — loaded AFTER styles.css AND shop.css.
   Reuses the shop's shell + controls; adds the $0.99 promo hooks
   (left column) and the auction-specific card bits: time-left
   badge, "current bid" label, bid count, and Bid CTA. Scoped to
   body.auctions so it never touches the Buy It Now shop.
   ============================================================ */

/* ---- Left-column selling points under the lede ---- */
.auc-hooks {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 340px;
}
.auc-hooks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}
.auc-tick {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background: var(--orange);
  color: #111;
  font-size: 0.7rem;
  font-weight: 700;
}
.sheet-left h1 .accent { white-space: nowrap; }

/* ---- Auction card tuning ---- */
/* An auction card carries one extra line (bid row) vs the shop card, so give the
   media a touch less height on this page to keep the 5x3 grid on one screen. */
.auctions .grid-5 .mini-media {
  height: clamp(62px, 9.4vh, 104px);
}
.auctions .grid-5 .mini-body {
  padding: 0.34rem 0.6rem 0.46rem;
  gap: 0.06rem;
}

/* Time-left badge — sits inline in the meta line, NOT over the photo. */
.auc-timer {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.35rem;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(8, 20, 42, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.08rem 0.44rem;
}
.auc-timer.is-soon {
  color: #fff;
  background: #c0392b;
  border-color: #e74c3c;
  animation: auc-pulse 1.2s ease-in-out infinite;
}
@keyframes auc-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* "Current bid" mini-label sits above the price value */
.auc-bidlabel {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.1;
}
.auctions .grid-5 .mini-price { font-size: 0.98rem; line-height: 1.1; }

/* Bid count + Bid CTA on one row */
.auc-bidrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin: 0.12rem 0 0;
}
.auc-bids {
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--orange);
}
.auc-bids-none { color: rgba(255, 255, 255, 0.45); font-weight: 500; }
.auc-bidcta {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #111;
  background: var(--orange);
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
  transition: filter 0.15s;
}
.auc-card:hover .auc-bidcta { filter: brightness(1.08); }
.auctions .grid-5 .mini-meta { font-size: 0.66rem; }

/* On phones the grid scrolls; let the media breathe again (match shop.css) */
@media (max-width: 900px) {
  .auc-hooks { max-width: none; }
  .auctions .grid-5 .mini-media { height: clamp(150px, 40vw, 220px); }
}
