

/* badge price strike off css code */
.product-price-wrapper{

    display:flex;

    align-items:center;

    gap:10px;

    flex-wrap:wrap;
    font-family: var(--body-font);
}

.old-price{

    color:#999;

    text-decoration:line-through;

    font-size:15px;

    font-weight:500;

    opacity:0.8;
    
}

.current-price{

    color:#84c545;

    font-size:26px;

    font-weight:700;
}


.discount-badge{

    /*background:#ff4d4d;*/
background: #d80d0e;
    color:#fff;

    font-size:11px;

    font-weight:700;

    padding:5px 10px;

    border-radius:30px;

    letter-spacing:0.5px;
}



/* badge price strike off css code ends here */



