
/* Prime Wholesale V22.2 isolated customer camera scanner */
.pw-scan-overlay{
  position:fixed;
  inset:0;
  z-index:30000;
  background:rgba(15,23,42,.66);
  padding:18px;
  overflow:auto;
}
.pw-scan-modal{
  max-width:820px;
  margin:36px auto;
  background:#fff;
  border-radius:24px;
  box-shadow:0 30px 90px rgba(0,0,0,.32);
  border:1px solid #d8dee7;
  padding:20px;
}
.pw-scan-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
  border-bottom:1px solid #e5eaf1;
  padding-bottom:14px;
  margin-bottom:14px;
}
.pw-scan-head h1{margin:0;font-size:1.55rem}
.pw-scan-close{
  border:0;
  border-radius:50%;
  width:40px;
  height:40px;
  font-size:22px;
  cursor:pointer;
  background:#edf1f5;
}
.pw-scan-reader{
  min-height:280px;
  border:2px dashed #cfd7e3;
  border-radius:18px;
  background:#f8fafc;
  display:grid;
  place-items:center;
  overflow:hidden;
  margin:14px 0;
}
.pw-scan-reader video{
  border-radius:16px;
}
.pw-scan-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 110px;
  gap:10px;
  align-items:end;
  margin-top:12px;
}
.pw-scan-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.pw-scan-status{
  margin-top:12px;
  padding:12px;
  border-radius:14px;
  background:#f2f4f7;
  color:#344054;
  line-height:1.35;
}
.pw-scan-status.ok{
  background:#dcfae6;
  color:#067647;
}
.pw-scan-status.err{
  background:#fee4e2;
  color:#b42318;
}
.pw-scan-note{
  font-size:.9rem;
  color:#667085;
  margin-top:10px;
}
@media(max-width:720px){
  .pw-scan-overlay{padding:8px}
  .pw-scan-modal{margin:10px auto;padding:14px;border-radius:18px}
  .pw-scan-reader{min-height:230px}
  .pw-scan-grid{grid-template-columns:1fr}
  .pw-scan-actions .btn{width:100%}
}
