/* Mobile: show only order id + single view button; hide other table cells visually */
@media (max-width: 768px) {
  .woocommerce-account .woocommerce-orders-table thead { display: none; }

  .woocommerce-account .woocommerce-orders-table tbody tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 6px 12px rgba(0,0,0,0.04);
  }

  /* Hide original cells visually (keep in DOM for accessibility) */
  .woocommerce-account .woocommerce-orders-table tbody td { display:none; }

  /* Visible elements we inject */
  .wcomc-vo-order-id {
    font-weight:700;
    font-size:16px;
    color:#111;
  }
  .wcomc-vo-btn {
    padding:8px 12px;
    border-radius:8px;
    background: #0a6a2b;
    color: #fff;
    text-decoration: none;
    font-weight:600;
  }
}
