hr {
    margin: 0;
}

.page__title {
    justify-content: center;
    gap: 0.5rem;
}

.page__title h3 {
    font-size: 1.8rem;
}

.cart__items {
    flex-direction: column;
    gap: 2rem;
}

.list__item {
    display: flex;
}

.list__item.item--mobile {
    gap: 1.25rem;
    align-items: center;
}

.list__item.item--mobile .product__summary .product__action {
    display: flex;
    gap: 0.5rem;
}

.product__info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-direction: column;
}

.product__summary {
    gap: 0.875rem;
    display: flex;
    flex-direction: column;
}

.product__summary .product__price {
    display: inline;
}

.product__img {
    height: 115px;
    width: 115px;
}

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

.product__action .product__quantity {
    width: 50%;
}


.product__quantity .item__quantity {
    width: 100%;
    border-radius: 0;
} 

#btnCheckout a {
    width: 100%;
}

@media screen and (min-width: 992px) {
    .product__price,
    .product__sub-total {
        text-align: center;
    }
    
    .product__quantity,
    .product__sub-total,
    .product__action {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .product__quantity .item__quantity {
        width: 50%;
    }
}

@media screen and (min-width: 375px) {
    .page__title {
        justify-content: space-between;
    }

    #btnCheckout a {
        width: 45%;
    }
}
