/* Upsell products */
.upsell-products {
  grid-template-columns: minmax(0, 1fr);
  row-gap: 0.625rem;
  
  display: grid;

  @media screen and (min-width: 1400px) {
    margin-left: auto;
    max-width: calc(100% - var(--product-gallery-thumbnail-size) - var(--product-gap));
  }

  .upsell-products__header {
    text-align: start;
    font-size: 1rem;
    line-height: 1.3;
    color: #000;

    @media screen and (min-width: 700px) {
      text-align: center;
    }
  }

  .upsell-products__product-list {
    gap: 0.625rem;
    display: flex;
    flex-direction: column;
  }

  .horizontal-product-card{
    gap: 1.8125rem;
  }

  .horizontal-product-card__figure{
    width: 5.625rem;
    height: 6.75rem;

    img{
      height: 100%;
      object-fit: cover;
    }
  }

  .horizontal-product-card__info{
    gap: 0.75rem;
  }

  .\@large\:horizontal-product-card__button{
    display: inline-flex;
  }

  .button--subdued.button--outline{
    color: #2C2C2C;
    padding: .58rem 2.4rem;
    border: 0.0625rem solid #DCDCDC;
    text-transform: uppercase;
  }

  product-form .link{
    display: none;
  }

  .horizontal-product-card__info > div{
    gap: 0.375rem;
  }

  .product-title{
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.2;
    color: #000;
  }

  .price-list *{
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .price-list sale-price{
    color: #000;
  }
}



