.pisell-sale-detail-cart-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 0;

  &__empty {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 42px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
  }

  &--multi-col {
    display: grid;
    grid-template-columns: repeat(var(--pisell-cart-cols, 1), minmax(0, 1fr));
    align-items: start;
    gap: 8px;

    > * {
      min-width: 0;
    }

    .pisell-sale-detail-cart-items__empty {
      grid-column: 1 / -1;
    }
  }

  &__column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
  }

  &__numeric-stepper {
    min-width: 132px;
    --color-primary: #3b82f6;
  }
}
