/* =====================================================================
   The Shop.
   ===================================================================== */

.shop-wallet { font-size: 14px; }

.quest-list { display: flex; flex-direction: column; gap: 14px; }
.quest-row { display: flex; flex-direction: column; gap: 6px; }
.quest-top { align-items: baseline; }
.quest-label { font-size: 14.5px; color: var(--paper); }
.quest-progress { font-size: 12.5px; color: var(--dim); }
.quest-done { font-family: var(--mono); font-size: 12px; color: var(--jade); }
/* 44px is the touch-target floor, not a suggestion: this is played by
   children on tablets and shared Chromebooks, whose aim is worse than an
   adult's. These rules previously set 34-36px and, loading after app.css,
   quietly won. */
.btn.small-btn { min-height: 44px; padding: 8px 14px; font-size: 13px; align-self: flex-start; }

.season-panel .row { align-items: baseline; margin-bottom: 8px; }
.season-panel h2 { margin: 0; }
.season-panel .bar-fill { background: var(--gold); }

.shop-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.shop-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 15px 16px 16px;
  border: 1px solid var(--edge2);
  border-radius: var(--r-md);
  background: var(--well);
}
.shop-card.owned { border-color: var(--jade); opacity: .85; }
.shop-card.premium { opacity: .6; }
.shop-kind {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
}
.shop-card h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
}
.shop-blurb { margin: 0 0 4px; font-size: 13px; color: var(--soft); line-height: 1.4; flex: 1; }

.room.shop { --room: var(--gold); }
