/* Force absolute center alignment for WooCommerce Cart Table */
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    text-align: center !important;
    vertical-align: middle !important;
}

.woocommerce-cart .woocommerce table.shop_table th,
.woocommerce-cart .woocommerce table.shop_table td {
    text-align: center !important;
}

/* Ensure empty headers or specific columns don't break layout */
.woocommerce table.shop_table th.product-remove,
.woocommerce table.shop_table td.product-remove,
.woocommerce table.shop_table th.product-thumbnail,
.woocommerce table.shop_table td.product-thumbnail {
    text-align: center !important;
}

/* Fix flex/grid based themes overriding text-align */
.woocommerce table.shop_table td.product-name a {
    display: inline-block;
    text-align: center;
}
