/* ── Reserva de citas — estilos adicionales (no interfieren con styles.css) ── */

.slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  min-height: 44px;
}

.slots-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.slot-btn {
  padding: var(--sp-sm) var(--sp-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.slot-btn:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.slot-btn.selected {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.booking-alert {
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-lg);
  font-size: 0.9rem;
}

.booking-alert-error {
  background: #FDECEC;
  color: #9C3A3A;
  border: 1px solid #F4C7C7;
}

.booking-alert-info {
  background: var(--gold-pale);
  color: #7A6435;
  border: 1px solid var(--gold-light);
}

.booking-result {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sp-3xl) var(--sp-lg);
}

.booking-result h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: var(--sp-md);
}

.booking-result p {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
}

.nav-links a.active {
  color: var(--rose);
}
