/* Flow-based wizard layout, gated on body.wizard-flow: a flex column so the card
   fills and the legal note sits as a normal footer, replacing the vh min-height
   math. Remove the class to fall back to the original layout. */

body.wizard-flow {
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.wizard-flow #wizard-container {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 0 !important;
}

body.wizard-flow .wizard-wrapper {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
}

body.wizard-flow .wizard-legal-note {
  position: static;
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0.6rem 1.6rem;
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom));
}

body.wizard-flow .bulk-stage-1,
body.wizard-flow .decor-stage {
  min-height: 0;
}

/* step-6 form scrolls within its slide */
body.wizard-flow .bulk-stage-1-step-6.step.is-active {
  max-height: 100%;
}
