/* Custom Cart Styles - Field Heights */

/* Ensure PRECIO, CANTIDAD, and SUBTOTAL have the same height */
.woocommerce-cart table.shop_table tbody tr.cart_item td.product-price,
.woocommerce-cart table.shop_table tbody tr.cart_item td.product-quantity,
.woocommerce-cart table.shop_table tbody tr.cart_item td.product-subtotal {
    min-height: 55px !important;
    height: 55px !important;
    padding: 12px 16px !important;
    box-sizing: border-box !important;
}

/* Ensure the quantity input container also matches */
.woocommerce-cart table.shop_table tbody tr.cart_item td.product-quantity .quantity {
    height: auto !important;
}