/* ===== Wizard — pagina dedicata "Prenota" ===== */
#szb-wizard { max-width: 980px; margin: 0 auto; padding: 70px 24px 100px; }
.wiz-head { text-align: center; margin-bottom: 48px; }
.wiz-head .s-label { display: block; }
.wiz-head .s-body { margin: 0 auto; }

/* Progress bar */
.wiz-progress { display: flex; align-items: center; justify-content: center; margin-bottom: 56px; gap: 0; }
.wiz-step-dot { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.wiz-step-dot span {
  width: 34px; height: 34px; border-radius: 50%; background: var(--white, #fff);
  border: 1.5px solid var(--stone, #E8E2D9); color: var(--ink-lt, #A89E94);
  display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 500;
  transition: all .25s;
}
.wiz-step-dot label { font-size: .68rem; color: var(--ink-lt, #A89E94); letter-spacing: .04em; white-space: nowrap; }
.wiz-step-dot.active span { background: var(--terra, #B5795A); border-color: var(--terra, #B5795A); color: #fff; }
.wiz-step-dot.active label { color: var(--ink, #1E1B18); font-weight: 500; }
.wiz-step-dot.done span { background: var(--ink, #1E1B18); border-color: var(--ink, #1E1B18); color: #fff; }
.wiz-line { width: 60px; height: 1px; background: var(--stone, #E8E2D9); margin: 0 4px 22px; flex-shrink: 0; }

/* Panels */
.wiz-panel { display: none; animation: wizFade .35s ease; }
.wiz-panel.active { display: block; }
@keyframes wizFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.wiz-room-grid { margin-top: 0; }
.wiz-room-pick { cursor: pointer; }
.wiz-room-pick .szb-room-btn { pointer-events: none; }

.wiz-room-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white, #fff); border: 1px solid var(--stone, #E8E2D9);
  padding: 8px 18px; border-radius: 100px; font-size: .8rem; color: var(--ink-m, #6B6258); margin-bottom: 28px;
}
.wiz-cal-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: start; }
.wiz-step3-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: start; margin-bottom: 24px; }
.wiz-recap { background: var(--bg, #FAFAF8); }

.wiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.wiz-btn-back {
  background: none; border: none; color: var(--ink-m, #6B6258); font-size: .85rem;
  cursor: pointer; padding: 10px 4px; transition: color .2s;
}
.wiz-btn-back:hover { color: var(--ink, #1E1B18); }
.wiz-btn-next {
  background: var(--ink, #1E1B18); color: #fff; border: none; padding: 13px 32px;
  border-radius: 6px; font-size: .85rem; font-weight: 500; cursor: pointer; transition: background .2s;
}
.wiz-btn-next:hover { background: var(--ink-m, #6B6258); }
.wiz-btn-next:disabled { opacity: .4; cursor: default; }

@media (max-width: 860px) {
  .wiz-progress { gap: 0; }
  .wiz-line { width: 24px; }
  .wiz-step-dot label { display: none; }
  .wiz-cal-wrap, .wiz-step3-grid { grid-template-columns: 1fr; }
}
