.product-cart {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    background: #fff;
}



.product-cart .image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-cart .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain !important;
}

.product-cart .detail {
    padding: 12px 0 0px 0px;
}

.product-cart .detail .text .productName {
    font-size: 14px;
    margin-bottom: 5px;
    height: 40px !important;
}

.product-cart .detail .text .price strong {
    margin-right: 10px;
    color: #ff9000;
}

.product-cart .detail .text .price .mrp {
    font-size: 14px;
    color: #202020;
}

.product-cart .detail .bottom-set-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.product-cart .detail .bottom-set-button .purchasing.wishListFavorite {
    min-width: 40px;
    background-color: #ffa9a9;
    border: none;
    outline: none;
}
.product-cart .detail .bottom-set-button .purchasing.wishListFavorite ion-icon {
    color: #9f1616;
}

.product-cart .detail .bottom-set-button .purchasing.wishListFavorite.active {
    background-color: #9f1616;
}
.product-cart .detail .bottom-set-button .purchasing.wishListFavorite.active ion-icon{
    color: #ffa9a9;
}





.product-cart .detail .bottom-set-button .purchasing.buyNow {
    width: calc(100% - 50px);
    background-color: #ff9000;

}


.product-cart .detail .purchasing {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #ff9000;
    border-radius: 4px;
    margin-top: 10px;
    gap: 6px;
    transition: all 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



.product-cart .detail .purchasing:active {
    transform: scale(0.95);
}

.product-cart .detail .purchasing ion-icon {
    font-size: 20px;
    display: flex;
    color: #ffffff;
}

.product-cart .detail .purchasing {
    padding: 6px 10px;
}

.product-cart .detail .purchasing a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 500px) {

    .product-cart .detail .text .productName {
        margin-bottom: 0 !important;
    }
    
    .product-cart .detail .text .price strong {
        font-size: 14px !important;
    }

    .product-cart .detail .text .price .mrp strike {
        font-size: 12px !important;
    }
    .product-cart .detail .purchasing a {
        white-space: nowrap !important;
    }
}