/* ============================================================================
   The DoC — hybrid match cards (quote result step). Navy/blue theme; Gold tier
   gets a warm accent so the premium badge stands out. Reuses theme.css tokens.
   ============================================================================ */
.match-cards { margin: 22px 0 6px; }
.match-loading { color: var(--ink-500); font-size: 14px; text-align: center; padding: 18px 0; }

.match-head { margin-bottom: 12px; }
.match-head h3 { margin: 0 0 2px; font-size: 18px; font-weight: 800; color: var(--navy-900); }
.match-head p { margin: 0; font-size: 13px; color: var(--ink-500); }

.match-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .match-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); } }

.match-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.match-card.is-picked { border-color: var(--blue-500); box-shadow: 0 0 0 2px rgba(46,134,224,.25), var(--shadow); }
.match-card-gold { border-color: #E4C063; background: linear-gradient(180deg, #fffdf6, var(--paper)); }
.match-card-gold.is-picked { box-shadow: 0 0 0 2px rgba(201,169,97,.4), var(--shadow); }

.match-top { display: flex; align-items: center; gap: 12px; }
.match-avatar {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue-100); color: var(--navy-700);
  display: grid; place-items: center; font-weight: 800; font-size: 16px;
}
.match-avatar-gold { background: #F6E9C2; color: #8a6a1f; }
.match-id { min-width: 0; }
.match-name { font-weight: 800; color: var(--navy-900); font-size: 15px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.match-name-link { color: var(--navy-900); text-decoration: none; }
.match-name-link:hover { color: var(--blue-500); text-decoration: underline; }
.match-rating { margin-top: 2px; font-size: 13px; }
.match-stars { color: #FFB800; letter-spacing: 1px; }
.match-rating-num { color: var(--ink-500); font-weight: 700; }
.match-new { color: var(--ink-500); font-style: italic; }

.match-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.match-badge {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .03em;
  padding: 3px 9px; border-radius: var(--radius-pill); white-space: nowrap;
}
.match-badge-verified { background: var(--success-bg, #E3F6E9); color: var(--success, #1E7E45); }
.match-badge-gold { background: #F6E9C2; color: #8a6a1f; }
.match-dist { font-size: 12.5px; color: var(--ink-500); font-weight: 600; }
.match-avail { background: #E3F6E9; color: #1E7E45; border-radius: var(--radius-pill); padding: 3px 10px; font-size: 12px; font-weight: 700; }
.match-price { font-size: 12.5px; color: var(--navy-900); font-weight: 800; margin-left: auto; }

.match-rev-toggle {
  align-self: flex-start; background: none; border: none; cursor: pointer; padding: 0;
  color: var(--blue-500); font: inherit; font-size: 13px; font-weight: 700; text-decoration: underline;
}
.match-revbox { display: flex; flex-direction: column; gap: 8px; }
.match-rev { font-size: 13px; color: var(--ink-700); line-height: 1.45; background: var(--bg); border-radius: var(--radius-sm); padding: 8px 10px; }
.match-rev-stars { color: #FFB800; letter-spacing: 1px; margin-right: 4px; }

.match-pick { margin-top: 2px; }

.match-empty {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--blue-50, #F3F8FE); border: 1px solid var(--blue-100);
  border-radius: var(--radius); padding: 16px;
}
.match-empty strong { color: var(--navy-900); font-size: 15px; }
.match-empty span { color: var(--ink-500); font-size: 13.5px; line-height: 1.45; }
.match-waitlist { display: flex; gap: 8px; margin-top: 4px; }
.match-waitlist .input { flex: 1; }
.match-waitlist .btn { min-height: 0; padding: 12px 16px; white-space: nowrap; }
.match-wl-done { margin-top: 4px; font-size: 14px; font-weight: 700; color: var(--success, #1E7E45); }

@media (prefers-reduced-motion: reduce) { .match-card { transition: none; } }

/* ========== #2 preferred-slot picker ========== */
.slot-picker { margin-top: 14px; padding: 14px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.slot-head { font-weight: 800; color: var(--navy-900); font-size: 14px; margin-bottom: 10px; }
.slot-head span { font-weight: 500; color: var(--ink-500); font-size: 12.5px; }
.slot-dates, .slot-times { display: flex; flex-wrap: wrap; gap: 8px; }
.slot-times { margin-top: 8px; }
.slot-chip, .slot-time { border: 1px solid var(--line); background: var(--bg, #fff); color: var(--ink-700); border-radius: var(--radius-pill); padding: 8px 14px; font-size: 13px; font-weight: 700; cursor: pointer; }
.slot-chip.is-on, .slot-time.is-on { background: var(--blue-500); border-color: var(--blue-500); color: #fff; }
.slot-note { margin-top: 8px; font-size: 12.5px; color: var(--ink-500); }

/* Gold tier seal (top performers) */
.gold-seal { width: 15px; height: 15px; border-radius: 50%; vertical-align: -2px; margin-right: 3px; }
