/* ==========================================================
   PRINT VOUCHERS PAGE
   /assets/pages/print.css
   ========================================================== */

.print-flow .card + .card{
  margin-top:18px;
}

.print-flow .step-title{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 10px;
}

.print-flow .step-num{
  width:32px;
  height:32px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  background:rgba(37,99,235,0.12);
  color:#1d4ed8;
  border:1px solid rgba(37,99,235,0.20);
  flex:0 0 auto;
}

.print-flow label{
  display:block;
  font-weight:800;
  margin:10px 0 6px;
}

.print-flow input{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,0.15);
  outline:none;
  font-size:16px;
  box-sizing:border-box;
  background:#fff;
}

.print-flow input:focus{
  border-color:rgba(37,99,235,0.55);
  box-shadow:0 0 0 4px rgba(37,99,235,0.10);
}

.print-flow .hint{
  margin-top:8px;
}

.print-flow .hint .mono{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}

.print-flow .inline-badge{
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  border:1px solid rgba(15,23,42,0.12);
  background:rgba(15,23,42,0.04);
  color:#0f172a;
  margin-left:8px;
  vertical-align:middle;
}

.print-flow .err{
  display:none;
  margin-top:12px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(220,38,38,0.25);
  background:rgba(220,38,38,0.06);
  color:#991b1b;
  font-weight:600;
  font-size:14px;
}

.print-flow .ok{
  display:none;
  margin-top:12px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(34,197,94,0.25);
  background:rgba(34,197,94,0.08);
  color:#166534;
  font-weight:700;
  font-size:14px;
}

.print-flow .reveal{
  display:none;
}

.print-flow .reveal.is-on{
  display:block;
}

.print-flow .preview{
  border:1px solid rgba(15,23,42,0.10);
  background:rgba(15,23,42,0.02);
  border-radius:14px;
  padding:14px;
}

.print-flow .preview .line{
  margin:8px 0;
}

.print-flow .preview .big{
  font-weight:950;
  font-size:18px;
  letter-spacing:-0.2px;
  margin-top:6px;
}

.print-flow .preview .muted{
  color:#64748b;
}

.print-flow .preview .mono{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}

.print-flow .cta-row{
  align-items:center;
}

.print-flow .cta-row .btn,
.print-flow .cta-row .nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.print-flow .chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}

.print-flow .chip{
  appearance:none;
  border:1px solid rgba(15,23,42,0.14);
  background:rgba(15,23,42,0.03);
  color:#0f172a;
  border-radius:999px;
  padding:8px 10px;
  font-weight:750;
  font-size:13px;
  cursor:pointer;
  text-align:left;
}

.print-flow .chip:hover{
  border-color:rgba(37,99,235,0.35);
  box-shadow:0 0 0 4px rgba(37,99,235,0.08);
}

.print-flow .chip:active{
  transform:translateY(1px);
}

.print-flow .chips-note{
  margin-top:8px;
  color:#64748b;
  font-size:13px;
}

@media (max-width:919px){
  .print-flow .grid{
    gap:16px;
  }
}