.cart-table tr th {
    font-size: 16px;
    font-optical-sizing: auto;
    font-style: normal;
    font-family: var(--font-2);
    color: var(--text);
    font-weight: 400;
    border-top: 0;
}

.quantity-input {
    padding: 4px 24px;
    border: 1px solid var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity-input button {
    font-size: 16px;
    font-optical-sizing: auto;
    font-style: normal;
    font-family: var(--font-2);
    color: var(--dark);
    font-weight: 400;
    padding: 0;
}

.quantity-input span {
    display: block;
    font-size: 20px;
    font-optical-sizing: auto;
    font-style: normal;
    font-family: var(--font-2);
    color: var(--dark);
    font-weight: 700;
    padding: 0 24px;
}

.product-img {
    width: 110px;
    height: 160px;
    border: 2px solid var(--border);
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: 20px;
}


@media (max-width: 767.98px) {

    .cart-table {
        width: 190vw;
    }

    .subtotal-container .heading-3 {
        font-size: 20px;
    }

}

