/* GINNOA · Reservar — formulario + resumen + pago simulado */

.reservar-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-8);
  align-items: start;
}
@media (max-width: 900px) {
  .reservar-grid { grid-template-columns: 1fr; }
}

.reservar-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.reservar-form .contact-form__head { grid-column: 1 / -1; }
@media (max-width: 540px) {
  .reservar-form { grid-template-columns: 1fr; }
}

/* Resumen sticky */
.reservar-summary { position: sticky; top: calc(64px + var(--space-4)); }
.reservar-summary__card {
  background: var(--surface-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}
.reservar-summary__card h3 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.reservar-summary__space {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text-brand);
  margin-bottom: var(--space-4);
}
.reservar-summary__lines {
  list-style: none; padding: 0; margin: 0 0 var(--space-5) 0;
  display: grid; gap: var(--space-2);
}
.reservar-summary__lines li {
  display: flex; justify-content: space-between;
  font-size: var(--text-sm); color: var(--text-secondary);
}
.reservar-summary__total {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-3); margin-top: var(--space-1);
  font-size: var(--text-lg) !important;
  font-weight: var(--weight-bold);
  color: var(--text-primary) !important;
}
.reservar-summary__total span:last-child { color: var(--text-brand); }
.reservar-summary__note {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  background: var(--brand-accent-subtle);
  padding: var(--space-3);
  border-radius: var(--radius-md);
}
.reservar-summary__note i { color: var(--color-amber-700); margin-right: 4px; }

/* Pago modal */
.pay-modal .hero-modal__form { gap: var(--space-3); }
.pay-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  align-self: flex-start;
  font-size: var(--text-xs); font-weight: var(--weight-semibold);
  background: var(--color-warning-50); color: var(--color-warning-700);
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-full);
}
.pay-resumen {
  background: var(--surface-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: grid; gap: var(--space-2);
}
.pay-resumen__row { display: flex; justify-content: space-between; font-size: var(--text-sm); color: var(--text-secondary); }
.pay-resumen__total {
  border-top: 1px solid var(--border-default);
  padding-top: var(--space-2); font-weight: var(--weight-bold); color: var(--text-primary);
}
.pay-resumen__total span:last-child { color: var(--text-brand); }
.pay-methods {
  display: flex; align-items: center; gap: var(--space-3);
  margin-top: var(--space-2); color: var(--text-muted); font-size: 22px;
}
.pay-method-chip {
  font-size: var(--text-xs); font-weight: var(--weight-bold);
  background: var(--surface-muted); color: var(--text-secondary);
  padding: 2px 8px; border-radius: var(--radius-sm);
}
