/* ── ЗАКАЗЫ ── */
      .orders-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .order-card {
        background: var(--bg3);
        border: 1px solid var(--brd);
        border-radius: 10px;
        padding: 15px;
      }

      .order-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
      }

      .order-id {
        font-family: "Oswald", sans-serif;
        color: var(--gold);
        font-size: 1rem;
      }

      .order-status {
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
      }

      .status-processing {
        background: #f59e0b20;
        color: #f59e0b;
        border: 1px solid #f59e0b;
      }
      .status-assembling {
        background: #3b82f620;
        color: #3b82f6;
        border: 1px solid #3b82f6;
      }
      .status-shipped {
        background: #10b98120;
        color: #10b981;
        border: 1px solid #10b981;
      }
      .status-ready {
        background: #8b5cf620;
        color: #8b5cf6;
        border: 1px solid #8b5cf6;
      }

      .order-items {
        font-size: 0.9rem;
        color: var(--txt2);
        margin: 10px 0;
      }

      .order-total {
        font-family: "Oswald", sans-serif;
        color: var(--gold);
        font-size: 1.1rem;
      }