/*
 Theme Name:   HJCo
 Description:  A child theme of Hello Elementor
 Author:       HJCo team
 Template:     hello-elementor
 Version:      1.0.0
*/


/* 1. Hide the Price column header and data cells */
.woocommerce-cart-form th.product-price,
.woocommerce-cart-form td.product-price {
    display: none !important;
}

/* 2. Adjust table layout to be more 'Elementor-like' */
.woocommerce-cart-form .product-name {
    width: 60%;
    /* Give the product details the most space */
}

.woocommerce-cart-form .product-subtotal {
    text-align: right !important;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

/* 3. Responsive Fix: Ensure the mobile 'Price' label is also hidden */
@media (max-width: 768px) {
    .woocommerce-cart-form td.product-price {
        display: none !important;
    }

    /* Ensure the mobile label for Subtotal shows 'Total' */
    .woocommerce-cart-form td.product-subtotal::before {
        content: "Total" !important;
    }
}