/* ============================================================
   VENDOR-BOOKINGS.HTML — Vendor bookings hub
   Tokens resolve to css/variables.css.
   ============================================================ */

/* ── Filter tabs ─────────────────────────────────────────── */
.booking-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--color-white);
  border: 1px solid var(--color-hairline);
  border-radius: 12px;
  overflow-x: auto;
  margin-bottom: var(--space-6);
}
.booking-tab {
  background: none;
  border: none;
  padding: 9px var(--space-4);
  border-radius: var(--space-2);
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-graphite);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  white-space: nowrap;
}
.booking-tab:hover { background: var(--color-champagne); }
.booking-tab.active { background: var(--color-champagne); color: var(--color-accent-deep); }
.booking-tab .count {
  background: var(--color-stone);
  color: var(--color-charcoal);
  padding: 1px var(--space-2);
  border-radius: var(--r-pill);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semibold);
}
.booking-tab.active .count { background: var(--color-accent); color: var(--color-white); }

/* ── Hero (next event) ───────────────────────────────────── */
.next-event-hero {
  background: linear-gradient(135deg, var(--color-champagne) 0%, var(--color-bone) 100%);
  border: 1px solid var(--color-hairline);
  border-radius: var(--r-xl);
  padding: var(--space-6) 28px;
  margin-bottom: var(--space-6);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-6);
  align-items: center;
}
@media (max-width: 700px) { .next-event-hero { grid-template-columns: 1fr; } }
.hero-eyebrow {
  font-size: var(--fs-2xs);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-accent-deep);
  font-weight: var(--fw-semibold);
  margin-bottom: 6px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--color-ink);
  line-height: var(--lh-tight);
  margin-bottom: 6px;
}
.hero-sub { font-size: var(--fs-sm); color: var(--color-mid-grey); }
.hero-days { text-align: right; }
.hero-days-num {
  font-family: var(--font-display);
  font-size: var(--fs-5xl);
  color: var(--color-accent);
  line-height: 1;
  font-weight: var(--fw-light);
}
.hero-days-label {
  font-size: var(--fs-2xs);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-mid-grey);
  margin-top: 4px;
}

/* ── Upcoming event strip ────────────────────────────────── */
.event-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: var(--space-6);
}
.event-card {
  background: var(--color-white);
  border: 1px solid var(--color-hairline);
  border-radius: 12px;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.event-card.urgent { border-color: var(--color-accent); background: var(--color-accent-soft); }
.event-date-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.event-date {
  font-size: var(--fs-2xs);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--color-accent-deep);
  font-weight: var(--fw-semibold);
}
.event-day-num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--color-ink);
  line-height: 1;
}
.event-couple {
  font-weight: var(--fw-semibold);
  font-size: 14px;
  color: var(--color-charcoal);
}
.event-package { font-size: var(--fs-xs); color: var(--color-mid-grey); }
.event-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-hairline);
}
.event-amount {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--color-charcoal);
}
.event-cta {
  background: none;
  border: none;
  font-family: inherit;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-accent-deep);
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}
.event-cta:hover { text-decoration: underline; }

/* ── Avatars in row ──────────────────────────────────────── */
.couple-cell {
  display: flex;
  gap: 10px;
  align-items: center;
}
.couple-thumb {
  width: 36px; height: 36px;
  border-radius: var(--r-circle);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-xs);
}

.action-group {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.empty-row {
  text-align: center;
  padding: 40px var(--space-4);
  color: var(--color-mid-grey);
  font-size: 14px;
}
