/* =========================================
   BENBOGO · CART CLEANUP
========================================= */

/* Ocultar columnas PREU y SUBTOTAL */
.woocommerce-cart table.shop_table th.product-price,
.woocommerce-cart table.shop_table td.product-price,
.woocommerce-cart table.shop_table th.product-subtotal,
.woocommerce-cart table.shop_table td.product-subtotal {
    display: none !important;
}

/* Ocultar subtotal del resumen */
.woocommerce-cart .cart-subtotal {
    display: none !important;
}

/* Mejorar espaciado resumen */
.woocommerce-cart .cart_totals table.shop_table td,
.woocommerce-cart .cart_totals table.shop_table th {
    padding-top: 14px;
    padding-bottom: 14px;
}

/* Destacar suplemento premium */
.woocommerce-cart .fee th,
.woocommerce-cart .fee td {
    color: #ff8a3d;
    font-weight: 700;
}

/* =========================================
   BENBOGO · THANK YOU PAGE CLEANUP
========================================= */

/* Ocultar importes 0€ de los platos */
.woocommerce-order-received 
.woocommerce-table__line-item.order_item 
td.product-total {
    visibility: hidden !important;
}

/* Ocultar subtotal 0€ */
.woocommerce-order-received 
table.order_details tfoot tr:first-child {
    display: none !important;
}