.shopping-cart-products__container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2.5rem 0;
}
.shopping-cart-product__title-main {
    font-weight: var(--font-weight-bold);
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap: nowrap;
}

.shopping-cart__image {
    display: inline-flex;
    gap: 1.5rem;
    max-width: 100%;
}.shopping-cart__image img{
    max-width:98px
 }
.shopping-cart-product__info {
    display: flex;
    justify-content: space-between;
}.shopping-cart-product {
     border-bottom: 1px solid var(--color-gray-3);
 }
.shopping-cart-product__extra-button {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
}
.btn-delete {
    color: var(--color-error-1);
}.btn-delete i {
     color: var(--color-black);
 } .btn-delete::after{
        border-color: var(--color-error-1);}
.shopping-cart-product__container .text-and-icon__title {
    font-size: var(--text-size-XXS);
    font-weight: var(--font-weight-regular);
    line-height: var(--text-line-height-XXS);
    letter-spacing: var(--text-letter-spacing-XXS);
}.shopping-cart-total-product {
     font-weight: var(--font-weight-bold);
     font-size: var(--text-size-S);
     line-height: var(--text-line-height-S);
     letter-spacing: var(--text-letter-spacing-S);
 }.shopping-cart-total-product-detail {
      font-size: var(--text-size-XXS);
      line-height: var(--text-line-height-XXS);
      letter-spacing: var(--text-letter-spacing-XXS);
  }
@media(max-width:575px) {
    .shopping-cart__image {
       padding-bottom:0.5rem
    }.shopping-cart-product__info {
         align-items: center;
     }
    .shopping-cart-product__title{
    flex: 0 0 calc(100% - 95px - 1.5rem);
    max-width: calc(100% - 95px - 1.5rem);
    }
    .shopping-cart-product >div>div:not(.shopping-cart__image) {
        font-size: var(--text-size-XXS);
        font-weight: var(--font-weight-regular);
        line-height: var(--text-line-height-XXS);
        letter-spacing: var(--text-letter-spacing-XXS);
    }
}

@media(min-width:576px){
    .shopping-cart-product__container {
        display: flex;
        gap: 1.125rem;
        align-items: center;
    }
    .shopping-cart-total-product {
        font-size: var(--text-size-M);
        line-height: var(--text-line-height-M);
        letter-spacing: var(--text-letter-spacing-M);
    }
    .shopping-cart-product__container .text-and-icon__title {
        font-size: var(--text-size-XS);
        line-height: var(--text-line-height-XS);
        letter-spacing: var(--text-letter-spacing-XS);
    }

    .shopping-cart-product__extra-button {
        padding: 1.5rem 0;
    }
    .shopping-cart__image img{
        max-width:100%;
        margin-bottom: auto;
    }
    .shopping-cart__image  {
        max-width:160px;
        flex:0 0 160px;
    }

    .shopping-cart-product__text{
        display: flex;
        flex-direction: column;
        max-width: calc(100% - 129px);

    }
    .shopping-cart-product__info {
        max-width: calc(100% - 180px);
        align-items: center;
        width: 100%;
    }
}



