/* Orders */
.ord-prod-list { margin-bottom: 8px; }
.ord-prod-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 10px; background: var(--bg); border-radius: 4px; margin-bottom: 4px; font-size: 13px;
}
.ord-status { display: inline-block; padding: 2px 10px; border-radius: 10px; font-size: 11px; font-weight: 500; }
.ord-status.s-待付款 { background: #fee2e2; color: #dc2626; }
.ord-status.s-部分付款 { background: #fef3c7; color: #d97706; }
.ord-status.s-已付清 { background: #dcfce7; color: #16a34a; }
.ord-status.s-已取消 { background: #f3f4f6; color: #6b7280; }
