.cart-products > .row {
    position: relative;
}

.cart-products > .row::before,
.cart-products > .row:last-child::after {
    content: " ";
    position: absolute;
    width: 98%;
    height: 0.5px;
    background: var(--bs-dark);
    margin: 0 1%;
    opacity: .2;
}

.cart-products > .row::before {
    top: -25px;
}
.cart-products > .row:last-child::after {
    bottom: -25px;
}

.cart-products .cart-heading-small {
    font-size:0.8rem;
}
