/* Hotel Mariblanca — Booking público */

/* ── CONTENEDOR ── */
.mb-booking-section {
  background: var(--dark);
  padding: 90px 48px;
}
.mb-booking-section .section-title { color: var(--cream); }
.mb-booking-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* ── INDICADOR DE PASOS ── */
.mb-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.mb-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.mb-step-dot .dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(184,149,42,.35);
  background: transparent;
  color: rgba(184,149,42,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  transition: all .3s;
}
.mb-step-dot .step-label {
  font-size: .55rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,240,232,.35);
  white-space: nowrap;
  transition: color .3s;
}
.mb-step-dot.active .dot {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark);
}
.mb-step-dot.active .step-label { color: var(--gold); }
.mb-step-dot.current .dot {
  border-color: var(--gold);
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,149,42,.15);
}
.mb-step-line {
  width: 60px;
  height: 1px;
  background: rgba(184,149,42,.2);
  margin-bottom: 24px;
}

/* ── PASOS OCULTOS ── */
.mb-paso { display: none; animation: fadeUp .4s both; }

/* ── CAMPOS ── */
.mb-field { margin-bottom: 20px; }
.mb-field label {
  display: block;
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: 'Josefin Sans', sans-serif;
}
.mb-field input,
.mb-field select,
.mb-field textarea {
  width: 100%;
  background: rgba(245,240,232,.06);
  border: 1px solid rgba(245,240,232,.2);
  color: var(--cream);
  padding: 12px 14px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: .88rem;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.mb-field input:focus,
.mb-field select:focus,
.mb-field textarea:focus {
  border-color: var(--gold);
}
.mb-field select option { background: #1a1209; color: #f5f0e8; }
.mb-field textarea { height: 80px; resize: vertical; }

.mb-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .mb-grid-2 { grid-template-columns: 1fr; } }

/* ── BOTONES ── */
.mb-btn-primary {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-family: 'Josefin Sans', sans-serif;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}
.mb-btn-primary:hover { background: var(--gold-l); }
.mb-btn-primary:disabled { opacity: .55; cursor: not-allowed; }
.mb-btn-back {
  background: none;
  border: 1px solid rgba(245,240,232,.25);
  color: rgba(245,240,232,.6);
  padding: 12px 24px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  margin-right: 12px;
}
.mb-btn-back:hover { border-color: var(--gold); color: var(--gold); }

/* ── ERROR ── */
#mb-error {
  display: none;
  background: rgba(200,0,0,.15);
  border: 1px solid rgba(200,0,0,.4);
  color: #ffaaaa;
  padding: 12px 16px;
  font-size: .82rem;
  margin-bottom: 16px;
}

/* ── RESUMEN PASOS ── */
.mb-resumen {
  background: rgba(245,240,232,.06);
  border: 1px solid rgba(184,149,42,.25);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.mb-resumen-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(245,240,232,.08);
  font-size: .82rem;
}
.mb-resumen-row:last-child { border-bottom: none; }
.mb-resumen-label {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.mb-resumen-val { color: var(--cream); }

/* ── HABITACIONES ── */
#mb-lista-habs { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.mb-hab-card {
  background: rgba(245,240,232,.06);
  border: 1px solid rgba(245,240,232,.15);
  padding: 20px 22px;
  transition: border-color .25s;
}
.mb-hab-card:hover { border-color: var(--gold); }
.mb-hab-no-disp { opacity: .45; }
.mb-hab-nombre {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 5px;
}
.mb-hab-detalle {
  font-size: .7rem;
  letter-spacing: .1em;
  color: rgba(245,240,232,.5);
  margin-bottom: 14px;
}
.mb-hab-precio {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}
.mb-precio-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold-l);
  font-style: italic;
}
.mb-precio-noche {
  font-size: .65rem;
  color: rgba(245,240,232,.45);
  letter-spacing: .1em;
}
.mb-hab-estado { font-size: .72rem; color: rgba(245,240,232,.4); margin-bottom: 10px; }
.mb-btn-seleccion {
  background: none;
  border: 1px solid rgba(184,149,42,.5);
  color: var(--gold);
  padding: 9px 22px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}
.mb-btn-seleccion:hover { background: var(--gold); color: var(--dark); }

/* ── CONFIRMACIÓN ── */
.mb-confirmacion {
  text-align: center;
  padding: 20px 0;
}
.mb-conf-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px;
}
.mb-conf-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 10px;
}
.mb-conf-sub {
  font-size: .82rem;
  color: rgba(245,240,232,.6);
  margin-bottom: 28px;
  line-height: 1.7;
}
.mb-conf-detalle {
  background: rgba(245,240,232,.06);
  border: 1px solid rgba(184,149,42,.25);
  padding: 20px;
  text-align: left;
  margin-bottom: 20px;
}
.mb-conf-nota {
  font-size: .75rem;
  color: rgba(245,240,232,.45);
  line-height: 1.7;
  margin-top: 16px;
}

@media (max-width: 640px) {
  .mb-booking-section { padding: 64px 20px; }
  .mb-step-line { width: 30px; }
  .mb-steps { gap: 0; }
}
