/* ============================================================
   VIBE TRIBE NOTIONS — booking.css
   Calendar, time slots, booking overview, practitioner card
   ============================================================ */

#booking {
  background: #0b0316;
  padding: clamp(80px,10vw,120px) 0;
  position: relative;
}
#booking::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pa), transparent);
}

.booking-grid-full {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

.booking-card {
  background: linear-gradient(135deg, rgba(42,18,80,0.4), rgba(14,5,24,0.75));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 24px;
  padding: clamp(24px,4vw,40px);
}

.step-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(124,58,237,0.15);
}
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pa), var(--pl));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-title-text {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 600;
}

/* Calendar */
.calendar-wrap {
  margin: 20px 0;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-month {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 600;
}
.cal-nav {
  background: transparent;
  border: 1px solid rgba(124,58,237,0.3);
  color: white;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.cal-nav:hover { background: rgba(124,58,237,0.25); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day-name {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  padding: 6px 0;
}
.cal-day {
  text-align: center;
  padding: 8px 4px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  cursor: default;
  transition: all 0.2s;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-day.empty { background: transparent; }
.cal-day.past { color: rgba(255,255,255,0.2); cursor: not-allowed; }
.cal-day.available {
  cursor: pointer;
  color: rgba(255,255,255,0.85);
}
.cal-day.available:hover {
  background: rgba(124,58,237,0.2);
  color: white;
}
.cal-day.today {
  border: 1px solid rgba(124,58,237,0.5);
  color: var(--pl);
  font-weight: 700;
}
.cal-day.selected {
  background: linear-gradient(135deg, var(--pa), var(--pl));
  color: white;
  font-weight: 700;
}

/* Time slots */
.time-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.time-slot {
  padding: 10px 8px;
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 10px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--muted);
}
.time-slot:hover {
  border-color: var(--pa);
  color: white;
  background: rgba(124,58,237,0.15);
}
.time-slot.selected {
  background: linear-gradient(135deg, var(--pa), var(--pl));
  border-color: transparent;
  color: white;
}

/* Practitioner card */
.practitioner-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 22px;
}
.practitioner-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(124,58,237,0.4);
}
.practitioner-name { font-size: 0.95rem; font-weight: 600; }
.practitioner-role { font-size: 0.75rem; color: var(--gold); margin-top: 2px; }

/* Overview */
.booking-overview {
  background: rgba(42,18,80,0.3);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 16px;
  padding: 20px;
  margin-top: 24px;
  margin-bottom: 20px;
}
.ov-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.ov-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(124,58,237,0.1);
  color: var(--muted);
}
.ov-row:last-child { border-bottom: none; font-weight: 700; color: var(--w); }
.ov-row span:last-child { color: var(--w); font-weight: 500; }
.ov-row.total span:last-child { color: var(--gold); font-family: var(--fd); font-size: 1.1rem; }

/* Booking success */
.booking-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.booking-success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.booking-success-title {
  font-family: var(--fd);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.booking-success-body { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 960px) {
  .booking-grid-full { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .time-slots { grid-template-columns: repeat(2,1fr); }
}
