/* Hide WooCommerce prices (shop, category, single product) */
.woocommerce-Price-amount,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price,
.woocommerce div.product .summary .price,
.woocommerce div.product .woocommerce-variation-price,
.woocommerce div.product .woocommerce-variation .price,
.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal,
.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table .cart-subtotal,
.woocommerce-checkout-review-order-table .order-total {
  display: none !important;
}

/* Optional: hide "Sale" badge price layouts if needed */
.woocommerce del,
.woocommerce ins {
  display: none !important;
}
/* Optional: Hide Sale/Discount Badges */
.woocommerce span.onsale {
    display: none !important;
}
/* Hide Add to Cart Buttons */
.add_to_cart_button,
.single_add_to_cart_button,
button[name="add-to-cart"] {
    display: none !important;
}

