.cart-recommended-products li {
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 4px 12px 0 rgba(28, 31, 115, 0.15);
    width: 33.33%;
    padding: 16px;
    position: relative;
}

.cart-recommended-products .hasDiscount span.money {
    color: #B71A3B;
}
.cart-recommended-products ul {
    display: flex;
    grid-gap: 30px;
    flex: 0 0 1;
}

.cart-recommended-products h3 {
    color: var(--BLACK, #1F292E);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 26px */
    margin: 48px 0 24px;
}

.cartProductName .brandName {
    font-weight:500
}
.cartProductName {
    color: #000;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 126%; /* 16.38px */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    margin-bottom: 4px;
}

.cartProductContent {
    display: inline-block;
    width: calc(100% - 84px);
    padding-left: 16px;
    vertical-align: middle;
    box-sizing: border-box;
}

.cart-recommended-products .price {
    color: var(--BLACK, #1F292E);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 21px */
}
.cart-recommended-products .hasDiscount .regular-price {
    color: var(--Text-color-gray, #8B8C96) !important;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-decoration: line-through;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

.offerbtn {
    color: var(--MIDNIGHT-BLUE, #1C1F73);
    text-align: center;
    font-size: 12px;
    font-family: var(--proxima);
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 0 10px;
    float: right;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--MIDNIGHT-BLUE, #1C1F73);
    cursor: pointer;
    position: relative;
}

.offerbtn span.cartloader {
    width: 12px;
    height: 12px;
    margin-left: -6px;
    margin-top: -6px;
}

.discountFlag {
    position: absolute;
    top: 16px;
    left: 0;
    border-radius: 0 8px 8px 0;
    background: #B71A3B;
    color: #FFF;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    padding: 0 4px;
    line-height: 20px;
    width: 40px;
}

@media (max-width: 1199px) {
    .cart-recommended-products li {
        width: 100%;
    }

    .cart-recommended-products ul {
        flex-direction: column;
        grid-gap: 16px;
    }

}
@media (max-width: 767px) {
    .cart-recommended-products {
        padding: 0 10px;
    }
    .cart-recommended-products h3 {
        font-size: 18px;
        margin: 32px 0 16px;
    }
}