/* ═══════════════════════════════════════════
   MARKER — Booking Portal Styles
   Shared by booking.html & booking-admin.html
═══════════════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F0EDE7;
  --surface: #FFFFFF;
  --elevated: #F7F5EF;
  --accent: #1B6B3A;
  --accent-light: #2D8F50;
  --accent-dark: #14522D;
  --accent-soft: rgba(27,107,58,0.07);
  --gold: #C4962C;
  --gold-light: #E8C95C;
  --navy: #1A2744;
  --navy-light: #2A3F5F;
  --white: #FFFFFF;
  --text: #1A2744;
  --text-secondary: rgba(26,39,68,0.55);
  --text-muted: rgba(26,39,68,0.35);
  --border: rgba(26,39,68,0.07);
  --border-strong: rgba(26,39,68,0.13);
  --green: #1B6B3A;
  --red: #C62828;
  --orange: #E67E22;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.03);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.07), 0 4px 12px rgba(0,0,0,0.03);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --radius-xl: 24px;
  --ease: cubic-bezier(0.16,1,0.3,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Header ── */
.bk-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  padding-top: calc(12px + env(safe-area-inset-top,0px));
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bk-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.bk-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  overflow: hidden;
  flex-shrink: 0;
}
.bk-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bk-logo-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.bk-user-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bk-user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ── Layout ── */
.bk-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 16px 80px;
}

.bk-container--wide {
  max-width: 1100px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border-strong);
  background: none;
  color: var(--text-secondary);
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.3;
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.4; pointer-events: none; }

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(27,107,58,0.2);
}
.btn-primary:hover { background: var(--accent-light); border-color: var(--accent-light); }

.btn-danger {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn-danger:hover { opacity: 0.85; }

.btn-sm { padding: 6px 12px; font-size: 12px; border-radius: 8px; }

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 14px;
  width: 100%;
}

.btn-block { width: 100%; }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent-soft); }

/* ── Cards ── */
.bk-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s var(--ease), border-color 0.2s;
}
.bk-card:hover {
  box-shadow: var(--shadow-md);
}
.bk-card--selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(27,107,58,0.15), var(--shadow-md);
}
.bk-card--clickable { cursor: pointer; }
.bk-card--clickable:active { transform: scale(0.99); }

/* ── Section titles ── */
.bk-section-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 16px;
}

.bk-section-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  margin-top: -10px;
}

/* ── Stepper ── */
.bk-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  padding: 0 4px;
}

.bk-step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}

.bk-step:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border-strong);
  margin: 0 8px;
  transition: background 0.3s;
}
.bk-step:not(:last-child).done::after {
  background: var(--accent);
}

.bk-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  border: 2px solid transparent;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.bk-step.active .bk-step-num {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(27,107,58,0.3);
}
.bk-step.done .bk-step-num {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.bk-step-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  display: none;
}
.bk-step.active .bk-step-label,
.bk-step.done .bk-step-label {
  color: var(--text);
}

@media (min-width: 480px) {
  .bk-step-label { display: block; }
}

/* ── Search ── */
.bk-search {
  position: relative;
  margin-bottom: 16px;
}
.bk-search input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.bk-search input:focus { border-color: var(--accent); }
.bk-search input::placeholder { color: var(--text-muted); }
.bk-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

/* ── Club cards ── */
.bk-clubs-grid {
  display: grid;
  gap: 12px;
}
.bk-club-card {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.bk-club-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(27,107,58,0.14));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.bk-club-info { flex: 1; min-width: 0; }
.bk-club-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bk-club-location {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}
.bk-club-arrow {
  color: var(--text-muted);
  font-size: 18px;
  flex-shrink: 0;
}

/* ── Calendar ── */
.bk-calendar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.bk-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.bk-cal-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.bk-cal-nav {
  display: flex;
  gap: 6px;
}
.bk-cal-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-secondary);
  transition: all 0.15s;
}
.bk-cal-btn:hover { border-color: var(--accent); color: var(--accent); }

.bk-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}
.bk-cal-weekday {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 4px 0;
}

.bk-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bk-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  cursor: default;
  color: var(--text-muted);
  transition: all 0.15s;
  position: relative;
}
.bk-cal-day.other-month { opacity: 0.3; }
.bk-cal-day.available {
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
}
.bk-cal-day.available:hover {
  background: var(--accent-soft);
  color: var(--accent);
}
.bk-cal-day.available::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.bk-cal-day.selected {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.bk-cal-day.selected::after { display: none; }
.bk-cal-day.today {
  border: 2px solid var(--accent);
}
.bk-cal-day.past { opacity: 0.3; pointer-events: none; }

/* ── Players count ── */
.bk-players-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.bk-player-opt {
  background: var(--surface);
  border: 2px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 20px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.bk-player-opt:hover {
  border-color: var(--accent);
}
.bk-player-opt.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.bk-player-opt-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.bk-player-opt.selected .bk-player-opt-num { color: var(--accent); }
.bk-player-opt-label {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ── Time slots ── */
.bk-slots-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bk-slot-tier-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  padding: 10px 0 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.bk-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
}

.bk-slot {
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s var(--ease);
}
.bk-slot:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.bk-slot.selected {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.bk-slot.unavailable {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.bk-slot-time {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.bk-slot.selected .bk-slot-time { color: #fff; }
.bk-slot-price {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 3px;
}
.bk-slot.selected .bk-slot-price { color: rgba(255,255,255,0.85); }
.bk-slot-seats {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}
.bk-slot.selected .bk-slot-seats { color: rgba(255,255,255,0.7); }

/* Tier color bar at top of slot */
.bk-slot::before {
  content: '';
  display: block;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 6px;
  background: var(--tier-color, var(--accent));
}
.bk-slot.selected::before { background: rgba(255,255,255,0.4); }

/* ── Confirmation ── */
.bk-confirm-card {
  text-align: center;
  padding: 32px 20px;
}
.bk-confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.bk-confirm-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.bk-confirm-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
  text-align: left;
}
.bk-confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.bk-confirm-row:last-child { border: none; }
.bk-confirm-label { color: var(--text-secondary); }
.bk-confirm-value { font-weight: 600; color: var(--navy); }

.bk-timer {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin: 16px 0;
  letter-spacing: -0.02em;
}
.bk-timer.warning { color: var(--orange); }
.bk-timer.danger { color: var(--red); animation: pulse 1s infinite; }

.bk-timer-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

/* ── Success/Failure ── */
.bk-result {
  text-align: center;
  padding: 48px 20px;
  animation: fadeUp 0.5s var(--ease);
}
.bk-result-icon {
  font-size: 60px;
  margin-bottom: 16px;
}
.bk-result-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.bk-result-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ── Forms ── */
.bk-form-group {
  margin-bottom: 16px;
}
.bk-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.bk-form-input,
.bk-form-select,
.bk-form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-xs);
  font-size: 16px;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.bk-form-input:focus,
.bk-form-select:focus,
.bk-form-textarea:focus { border-color: var(--accent); }

.bk-form-textarea { resize: vertical; min-height: 80px; }

.bk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bk-form-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Checkbox / Toggle chips ── */
.bk-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bk-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1.5px solid var(--border-strong);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--surface);
  color: var(--text-secondary);
  user-select: none;
}
.bk-chip:hover { border-color: var(--accent); }
.bk-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── Tables ── */
.bk-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.bk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.bk-table th {
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--elevated);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.bk-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.bk-table tr:last-child td { border-bottom: none; }
.bk-table tr:hover td { background: var(--accent-soft); }

/* ── Badges ── */
.bk-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.bk-badge--green { background: rgba(27,107,58,0.1); color: var(--accent); }
.bk-badge--orange { background: rgba(230,126,34,0.1); color: var(--orange); }
.bk-badge--red { background: rgba(198,40,40,0.1); color: var(--red); }
.bk-badge--gray { background: var(--elevated); color: var(--text-secondary); }

/* ── Tabs (admin) ── */
.bk-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
  overflow-x: auto;
}
.bk-tab {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  white-space: nowrap;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  font-family: inherit;
}
.bk-tab:hover { color: var(--text); }
.bk-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ── Panels ── */
.bk-panel { display: none; }
.bk-panel.active { display: block; animation: fadeIn 0.3s; }

/* ── Toast ── */
.bk-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: transform 0.4s var(--ease), opacity 0.4s;
  opacity: 0;
  pointer-events: none;
}
.bk-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.bk-toast.error { background: var(--red); }
.bk-toast.success { background: var(--accent); }

/* ── Loading ── */
.bk-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--border-strong);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 40px auto;
}

.bk-loading-text {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 12px;
}

/* ── Empty state ── */
.bk-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
}
.bk-empty-icon {
  font-size: 40px;
  margin-bottom: 12px;
  opacity: 0.5;
}
.bk-empty-text {
  font-size: 14px;
}

/* ── Modal ── */
.bk-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,39,68,0.45);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.bk-overlay.open { opacity: 1; pointer-events: auto; }

.bk-modal {
  background: var(--surface);
  border-radius: var(--radius);
  width: 100%;
  max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s var(--ease);
}
.bk-overlay.open .bk-modal {
  transform: scale(1) translateY(0);
}

.bk-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.bk-modal-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.bk-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: var(--elevated);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: background 0.15s;
}
.bk-modal-close:hover { background: var(--border-strong); }

.bk-modal-body { padding: 20px; }
.bk-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* ── Step navigation bar (fixed bottom on mobile) ── */
.bk-nav-bar {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.bk-nav-bar .btn { flex: 1; }

/* ── Admin: day view slot grid ── */
.bk-day-slots {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bk-day-slot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  font-size: 13px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.15s;
}
.bk-day-slot:hover { background: var(--accent-soft); }
.bk-day-slot.blocked {
  background: rgba(198,40,40,0.04);
  border-color: rgba(198,40,40,0.15);
}
.bk-day-slot-time {
  font-weight: 700;
  min-width: 50px;
}
.bk-day-slot-bar {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: var(--elevated);
  overflow: hidden;
}
.bk-day-slot-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--accent);
  transition: width 0.3s;
}
.bk-day-slot-fill.half { background: var(--gold); }
.bk-day-slot-fill.full { background: var(--red); }
.bk-day-slot-info {
  font-size: 12px;
  color: var(--text-secondary);
  min-width: 40px;
  text-align: right;
}
.bk-day-slot-actions {
  display: flex;
  gap: 4px;
}
.bk-day-slot-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.bk-day-slot-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ── Cancellation policy display ── */
.bk-policy {
  background: var(--accent-soft);
  border: 1px solid rgba(27,107,58,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.bk-policy strong { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 480px) {
  .bk-container { padding: 16px 12px 80px; }
  .bk-players-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .bk-player-opt { padding: 14px 6px; }
  .bk-player-opt-num { font-size: 24px; }
  .bk-slots-grid { grid-template-columns: repeat(3, 1fr); }
  .bk-form-row { grid-template-columns: 1fr; }
  .bk-stepper { gap: 0; }
  .bk-step-num { width: 28px; height: 28px; font-size: 12px; }
  .bk-confirm-card { padding: 24px 16px; }
}

@media (min-width: 768px) {
  .bk-slots-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .bk-clubs-grid { grid-template-columns: 1fr 1fr; }
}
