* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #0f172a;
  color: #f8fafc;
  min-height: 100vh;
}
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #1e293b;
  border-bottom: 3px solid #e94560;
  position: sticky;
  top: 0;
  z-index: 10;
}
.top h1 { font-size: clamp(1.4rem, 3vw, 2rem); }
#reloj { color: #94a3b8; font-size: 1.1rem; }
.top-actions { display: flex; gap: 1rem; align-items: center; }
.badge {
  background: #e94560;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
}
.btn-link, .btn-ghost {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-link { background: #334155; color: #fff; }
.btn-ghost { background: transparent; color: #94a3b8; border: 1px solid #475569; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
  padding: 1.25rem;
}
.card {
  background: #1e293b;
  border-radius: 16px;
  padding: 1.25rem;
  border-left: 6px solid #64748b;
  animation: pop 0.3s ease;
}
@keyframes pop { from { transform: scale(0.95); opacity: 0; } }
.card.nuevo { border-left-color: #f59e0b; }
.card.en_proceso { border-left-color: #3b82f6; }
.card.listo, .card.esperando_repartidor { border-left-color: #22c55e; }
.card.asignado, .card.en_reparto { border-left-color: #a855f7; }
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.numero { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.estado {
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  background: #334155;
  text-transform: uppercase;
  font-weight: 600;
}
.cliente { font-size: 1.2rem; margin-bottom: 0.5rem; }
.dir { color: #94a3b8; font-size: 0.95rem; margin-bottom: 1rem; }
.items { margin-bottom: 1rem; }
.item { padding: 0.4rem 0; font-size: 1.15rem; border-bottom: 1px solid #334155; }
.total { font-size: 1.4rem; font-weight: 700; color: #4ade80; margin-bottom: 1rem; }
.actions { display: flex; flex-direction: column; gap: 0.6rem; }
.btn {
  padding: 1.1rem;
  border: none;
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}
.btn-proceso { background: #3b82f6; color: #fff; }
.btn-listo { background: #22c55e; color: #fff; }
.btn-reparto { background: #a855f7; color: #fff; }
.btn-entregado { background: #64748b; color: #fff; }
.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem;
  color: #64748b;
  font-size: 1.5rem;
}
.rep { font-size: 0.95rem; color: #c4b5fd; margin-bottom: 0.5rem; }
