/* =========================================================
DRCLEAR - Remove duplicate price after add to cart
========================================================= */

/* Hide additional price under variations/cart area */
.single-product form.cart .woocommerce-Price-amount {
    display: none;
}

/* Keep only the main price (top one) */
.single-product .summary > .price .woocommerce-Price-amount {
    display: inline-block !important;
}