.pisell-unified-retail {
  min-width: 0;
  min-height: 640px;
  overflow: hidden;
  background: #f5f6f8;
}

.pisell-unified-retail__layout {
  display: flex;
  min-height: 640px;
}

.pisell-unified-retail__catalog {
  flex: 1 1 auto;
  min-width: 0;
  padding: 16px;
  overflow: auto;
  background: #4e4e4e;
}

.pisell-unified-retail__product-list {
  min-height: 100%;

  .list-content.list-content-grid {
    .list-items .list-group-items {
      align-items: stretch;
    }

    .list-items .list-group-items .list-item {
      display: flex;
      height: 100%;

      > * {
        width: 100%;
        height: 100%;
      }
    }
  }
}

.pisell-unified-retail__cart {
  display: flex;
  flex: 0 0 420px;
  flex-direction: column;
  gap: 12px;
  min-width: 360px;
  padding: 16px;
  overflow: hidden;
  color: #fff;
  background: #181818;
}

.pisell-unified-retail__cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  h3 {
    margin: 0;
    color: inherit;
    font-size: 18px;
    line-height: 28px;
  }

  span {
    color: #98a2b3;
    font-size: 13px;
  }
}

.pisell-unified-retail__cart-items {
  flex: 1 1 auto;
  min-height: 180px;
  overflow: auto;
}

.pisell-unified-retail__amount {
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 6px;
}

.pisell-unified-retail__submit {
  flex: 0 0 auto;
  height: 44px;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .pisell-unified-retail {
    min-height: 0;
  }

  .pisell-unified-retail__layout {
    flex-direction: column;
    min-height: 0;
  }

  .pisell-unified-retail__catalog {
    min-height: 480px;
  }

  .pisell-unified-retail__cart {
    flex-basis: auto;
    min-width: 0;
    min-height: 420px;
  }
}
