.mp-back {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  white-space: nowrap;
}
.mp-back:active { opacity: .6; }

.mp-header {
  padding: 20px 16px 8px;
}
.mp-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
}
.mp-sub {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}

/* FILTROS */
.mp-filters {
  display: flex;
  gap: 8px;
  padding: 0 16px 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.mp-chip {
  flex-shrink: 0;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
}
.mp-chip.active {
  background: #c0000c;
  border-color: #c0000c;
  color: #fff;
}

/* STATS */
.mp-stats {
  display: flex;
  gap: 10px;
  padding: 0 16px 16px;
}
.mp-stat {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.mp-stat span {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #c0000c;
}
.mp-stat label {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

/* GRUPOS DE DATA */
.mp-date-group {
  margin-bottom: 8px;
}
.mp-date-label {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 8px 16px 6px;
}

/* CARD DE PEDIDO */
.mp-order-card {
  background: #fff;
  margin: 0 16px 10px;
  border-radius: 12px;
  padding: 14px 14px 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  border-left: 4px solid #e0e0e0;
}
.mp-order-card.status-pendente     { border-left-color: #f57f17; }
.mp-order-card.status-confirmado   { border-left-color: #1565c0; }
.mp-order-card.status-em_separacao { border-left-color: #e65100; }
.mp-order-card.status-enviado      { border-left-color: #6a1b9a; }
.mp-order-card.status-entregue     { border-left-color: #2e7d32; }
.mp-order-card.status-cancelado    { border-left-color: #aaa; opacity: .6; }

.mp-order-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}
.mp-order-num {
  font-size: 13px;
  font-weight: 800;
  color: #1a1a1a;
}
.mp-order-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 99px;
  background: #f5f5f5;
  color: #555;
}
.mp-order-status.status-pendente     { background: #fff3e0; color: #e65100; }
.mp-order-status.status-confirmado   { background: #e3f2fd; color: #1565c0; }
.mp-order-status.status-em_separacao { background: #fbe9e7; color: #bf360c; }
.mp-order-status.status-enviado      { background: #f3e5f5; color: #6a1b9a; }
.mp-order-status.status-entregue     { background: #e8f5e9; color: #2e7d32; }
.mp-order-status.status-cancelado    { background: #f5f5f5; color: #999; }

.mp-order-client {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}
.mp-order-meta {
  font-size: 12px;
  color: #999;
}
.mp-order-total {
  font-size: 15px;
  font-weight: 800;
  color: #c0000c;
  margin-top: 8px;
}

.mp-empty {
  text-align: center;
  color: #bbb;
  font-size: 14px;
  padding: 48px 16px;
}
