/* Reserva booking UI */
.reserva-main { padding: 6.5rem 0 2.5rem; min-height: auto; }
.reserva-main + .pro { border-top: 1px solid var(--cream-2); }
.reserva-title {
  font-family: var(--font-d); font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--heading); font-weight: 500; margin-bottom: .5rem;
}
.reserva-lead { max-width: 540px; font-weight: 300; margin-bottom: 2rem; }

.reserva-steps {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem;
}
.reserva-steps .rs {
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .45rem .85rem; background: var(--cream-2); color: var(--text);
}
.reserva-steps .rs.is-on { background: var(--heading); color: #fff; }
.reserva-steps .rs.is-done { background: var(--rose); color: #fff; }

.panel { display: none; }
.panel.is-on { display: block; animation: rise .45s var(--ease); }
.panel h2 {
  font-family: var(--font-d); font-size: 1.75rem; color: var(--heading);
  font-weight: 500; margin-bottom: 1.25rem;
}
.panel h2 small { font-size: .9rem; color: var(--text); font-family: var(--font-b); font-weight: 300; }

.reserva-hint {
  font-size: .92rem;
  font-weight: 300;
  color: var(--text);
  margin: -.5rem 0 1.25rem;
  max-width: 540px;
}
.reserva-next-row {
  margin-top: 1.5rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.treat-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.treat-section-title {
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--heading);
  margin: 0 0 .85rem;
}
.treat-section-note {
  font-size: .85rem;
  font-weight: 300;
  color: var(--text);
  margin: -.45rem 0 1rem;
}
.treat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  align-items: stretch;
}
@media (max-width: 900px) {
  .treat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .treat-grid { grid-template-columns: 1fr; }
}
.treat-card {
  background: #fff;
  border: 1px solid var(--cream-2);
  padding: 1.15rem 1.2rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-b);
  transition: border-color .25s, transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  min-height: 148px;
  width: 100%;
  box-sizing: border-box;
}
.treat-card:hover { border-color: var(--rose); transform: translateY(-2px); box-shadow: var(--shadow); }
.treat-card.is-selected { border-color: var(--rose); box-shadow: 0 0 0 2px rgba(184,137,122,.35); }
.treat-card .price {
  font-family: var(--font-d); font-size: 1.55rem; color: var(--heading);
  font-weight: 600; display: block; margin: .4rem 0 .15rem;
}
.treat-card .name {
  font-weight: 500; color: var(--heading); font-size: .9rem; line-height: 1.35;
  flex: 1;
}
.treat-card .mins { font-size: .75rem; color: var(--text); margin-top: auto; padding-top: .35rem; }
.treat-card .extra {
  display: block; font-size: .72rem; color: var(--rose-dark);
  margin-top: .2rem; font-weight: 500;
}
.treat-card--promo {
  border-color: rgba(184, 137, 122, .28);
  background: linear-gradient(180deg, #fff 0%, #faf6f3 100%);
}
.treat-card--promo .extra { color: var(--rose); }

.cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem; max-width: 420px;
}
.cal-nav button {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--rose);
  background: transparent; color: var(--rose); font-size: 1.4rem; cursor: pointer;
}
.cal-nav strong { font-family: var(--font-d); font-size: 1.35rem; color: var(--heading); }

.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: .4rem;
  max-width: 420px; margin-bottom: 1.5rem;
}
.cal-dow {
  text-align: center; font-size: .65rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--rose); padding: .35rem 0;
}
.cal-day {
  aspect-ratio: 1; border: none; background: #fff; cursor: pointer;
  font-family: var(--font-b); font-size: .9rem; color: var(--heading);
  border: 1px solid transparent;
}
.cal-day:hover:not(:disabled) { border-color: var(--rose); }
.cal-day.is-selected { background: var(--heading); color: #fff; }
.cal-day:disabled { opacity: .3; cursor: default; background: transparent; }
.cal-day.has-slots { background: #fff; }
.cal-day.muted { visibility: hidden; }

.slot-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: .5rem; margin-bottom: 1rem; max-width: 560px;
}
.slot {
  border: 1px solid var(--cream-2); background: #fff; padding: .75rem .5rem;
  font-family: var(--font-b); font-size: .85rem; cursor: pointer; color: var(--heading);
}
.slot:hover:not(:disabled) { border-color: var(--rose); }
.slot.is-selected { background: var(--rose); color: #fff; border-color: var(--rose); }
.slot:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.slot-hint { font-size: .82rem; font-weight: 300; margin-bottom: 1rem; }

.summary {
  background: var(--cream-2); padding: 1rem 1.25rem; margin-bottom: 1.25rem;
  font-size: .95rem; color: var(--heading);
}
.book-form {
  display: grid; gap: 1rem; max-width: 420px;
}
.book-form label {
  display: grid; gap: .35rem; font-size: .78rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text);
}
.book-form input, .book-form textarea {
  border: 1px solid var(--cream-2); background: #fff; padding: .85rem 1rem;
  font-family: var(--font-b); font-size: 1rem; color: var(--heading);
  text-transform: none; letter-spacing: 0;
}
.book-form input:focus, .book-form textarea:focus { outline: 1px solid var(--rose); }
.field-note {
  margin: -.35rem 0 .25rem;
  font-size: .78rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.45;
  max-width: 420px;
}
.api-note { margin-top: 1rem; font-size: .8rem; color: var(--text); }
.done-box {
  background: #fff; padding: 2.5rem 2rem; max-width: 560px;
  border: 1px solid var(--cream-2);
}
.done-box.receipt { box-shadow: var(--shadow); }
.receipt-brand {
  margin: 0 0 .5rem;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
}
.done-box h2 { margin-bottom: .75rem; font-family: var(--font-d); font-weight: 500; }
.receipt-hello { margin-bottom: 1.25rem; font-weight: 300; line-height: 1.55; color: var(--text); }
.receipt-grid {
  display: grid; grid-template-columns: 1fr auto; gap: .55rem 1.25rem;
  margin: 0 0 1.25rem; font-size: .95rem;
}
.receipt-grid dt { color: var(--text); font-weight: 300; margin: 0; }
.receipt-grid dd { margin: 0; text-align: right; color: var(--heading); font-family: var(--font-d); font-weight: 500; }
.receipt-hours {
  background: var(--cream); padding: .9rem 1rem; margin-bottom: 1rem;
  font-size: .9rem; font-weight: 300; color: var(--text);
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
