.suite-product-card {
  display: flex;
  column-gap: 8px;

  &:not(:first-child) {
    padding-top: 8px;
  }

  &:not(:last-child) {
    padding-bottom: 8px;
    border-bottom: 1px solid $gray-light;
  }

  & img {
    width: 60px;
    height: 60px;
  }

  &__info {
    width: 100%;
  }

  &__title {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1rem;

    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
  }

  &__old-price {
    margin-bottom: 4px;
    font-weight: 500;
    line-height: 0.875rem;
    color: $warm-grey;

    & s {
      text-decoration: line-through;
      text-decoration-color: $gray-dark;
    }
  }

  &__price-qty {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }

  &__price {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25rem;
    color: $blue-dark;

    &--red {
      color: $red;
    }
  }

  &__vat {
    display: flex;
    column-gap: 4px;
    align-items: baseline;

    &-text {
      font-weight: 500;
      font-size: 0.75rem;
      line-height: 0.875rem;
      color: $blue-dark;
    }
  }

  &__quantity {
    font-size: 0.75rem;
    line-height: 1rem;
    color: $squant;

    & span {
      color: $gray-dark;
    }
  }
}

@include media-breakpoint-up(xl) {
  .suite-product-card {
    &__title {
      overflow: auto;
      text-overflow: unset;
      -webkit-line-clamp: unset;
    }
  }
}
