:root {
  --tenant-primary: #4f46e5;
  --bg: #f6f7fb;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
}

.booking-navbar {
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(17,24,39,.06);
}
.booking-navbar .navbar-brand { color: var(--text); }
.brand-dot {
  width: 34px; height: 34px;
  display: inline-block;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tenant-primary), #8b5cf6);
}
.progress-pill {
  font-size: .8rem;
  font-weight: 600;
  color: var(--tenant-primary);
  background: rgba(79,70,229,.08);
  padding: .35rem .9rem;
  border-radius: 999px;
}

.booking-hero h1 { font-size: clamp(1.4rem, 3vw, 2rem); }

.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(17,24,39,.05);
}
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .9rem;
}

.btn-accent {
  background: var(--tenant-primary);
  border-color: var(--tenant-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: .6rem 1.2rem;
}
.btn-accent:hover, .btn-accent:focus {
  background: var(--tenant-primary);
  filter: brightness(.92);
  color: #fff;
}
.btn-accent:disabled { opacity: .55; }
.btn-outline-accent {
  color: var(--tenant-primary);
  border-color: var(--tenant-primary);
  border-radius: 999px;
}
.btn-outline-accent:hover {
  background: var(--tenant-primary);
  color: #fff;
}

/* Servicios */
.service-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .65rem .9rem;
  cursor: pointer;
  transition: all .15s ease;
  background: #fff;
}
.service-item:hover { border-color: var(--tenant-primary); }
.service-item.selected {
  border-color: var(--tenant-primary);
  background: rgba(79,70,229,.04);
}
.service-item .form-check-input { margin-top: 0; }
.service-thumb {
  width: 46px; height: 46px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f2f6;
  font-size: 1.2rem;
}
.service-price { font-weight: 700; white-space: nowrap; }

/* Slots */
.time-slot {
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  background: #fff;
  transition: all .15s ease;
}
.time-slot:hover { border-color: var(--tenant-primary); }
.time-slot.selected {
  background: var(--tenant-primary);
  border-color: var(--tenant-primary);
  color: #fff;
}

/* Resumen lateral */
.summary-sidebar { border-top: 3px solid var(--tenant-primary); }
.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .5rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: .92rem;
}
.summary-list li:last-child { border-bottom: none; }
.summary-list span { color: var(--muted); }

.booking-footer { border-top: 1px solid var(--border); }

@media (max-width: 992px) {
  .summary-sidebar { position: static !important; }
}
