.suite-includes {
  padding: 24px 16px;
  margin-left: -15px;
  margin-right: -15px;
  border-top: 1px solid $gray;
  border-bottom: 1px solid $gray;

  &__header {
    margin-bottom: 12px;
  }

  &__products {
    display: none;
  }

  &__total {
    margin-top: 8px;
    margin-bottom: 12px;
  }

  &__price-container {
    display: flex;
    flex-direction: column;
    row-gap: 8px;

    margin-bottom: 12px;
  }

  &__old-price {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    color: $warm-grey;

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

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

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

  &__vat {
    display: flex;
    column-gap: 8px;
    align-items: end;

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

  &__delivery {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

@include media-breakpoint-up(sm) {
  .suite-includes {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    border: 1px solid $gray;
    border-radius: 4px;
  }
}

@include media-breakpoint-up(md) {
  .suite-includes {
    min-width: 345px;
  }
}

@include media-breakpoint-up(lg) {
  .suite-includes {
    padding: 24px;
    min-width: 622px;

    &__header {
      margin-bottom: 16px;
    }

    & .image-accordion {
      display: none;
    }

    &__products {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid $gray;
    }

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

    &__total {
      margin-top: 16px;
    }

    &__price-container {
      margin-bottom: 0;
    }

    & .suite-product-card {
      flex-basis: 278px;
      padding-bottom: 0;
      padding-top: 0;
      border-bottom: 0;
    }

    &__button {
      min-width: 120px;
    }
  }
}

@include media-breakpoint-up(xl) {
  .suite-includes {
    & .suite-product-card {
      flex-basis: 336px;
    }
  }
}
