
.stpp-wrap{
  --accent:#f88452;
  --accent-dark:#e8612d;
  --soft:#fff3ec;
  --line:#f88452;
  --text:#111827;
  --muted:#667085;
  max-width:900px;
  margin:auto;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Arial,sans-serif;
  color:var(--text);
}
.stpp-wrap *{box-sizing:border-box}
.stpp-wrap h2{
  font-size:36px;
  margin:0 0 12px;
  font-weight:800;
  color:#111827;
}
.stpp-wrap p{
  font-size:18px;
  color:#111827;
  margin:0 0 24px;
}
.drop{
  display:block;
  border:2px dashed var(--accent);
  background:#fff;
  padding:42px 24px;
  border-radius:18px;
  text-align:center;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(248,132,82,.10);
  transition:.18s ease;
}
.drop:hover{
  background:var(--soft);
  border-color:var(--accent-dark);
  box-shadow:0 12px 30px rgba(248,132,82,.18);
}
.drop div{
  font-size:24px;
}
.drop b{
  display:block;
  color:#111827;
  font-size:20px;
  margin:8px 0;
}
.drop small{
  color:#475467;
  font-size:14px;
}
.opts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin:18px 0;
}
.opts label{
  display:flex;
  flex-direction:column;
  color:#111827;
  font-size:16px;
  font-weight:700;
}
.opts select{
  margin-top:8px;
  width:100%;
  border:1.5px solid #d0d5dd;
  border-radius:12px;
  background:#fff;
  color:#111827;
  padding:13px 14px;
  font-size:16px;
  outline:none;
}
.opts select:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(248,132,82,.16);
}
button#make{
  background:var(--accent);
  color:#fff;
  border:0;
  padding:14px 22px;
  border-radius:12px;
  font-weight:800;
  font-size:16px;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(248,132,82,.25);
}
button#make:hover{background:var(--accent-dark)}
#list{
  margin-top:14px;
  display:grid;
  gap:8px;
}
#list div{
  padding:12px 14px;
  border:1.5px solid #fed7aa;
  background:#fff7ed;
  border-radius:12px;
  color:#111827;
  font-weight:700;
}
#status{
  margin-top:14px;
  padding:14px;
  border:1.5px solid #d0d5dd;
  background:#fff;
  border-radius:12px;
  color:#111827;
  font-weight:700;
  box-shadow:0 4px 14px rgba(17,24,39,.06);
}
@media(max-width:700px){
  .opts{grid-template-columns:1fr}
  .stpp-wrap h2{font-size:30px}
}
