/**
 * Base checkout adjustments (always-on when the plugin is active on the checkout).
 *
 * These selectors hide the duplicate shipping rows that are produced because the
 * shipping selector is rendered in the relocated table while the price-only row is
 * injected into the main order-review table. They are DOM-position tuned to this
 * theme's checkout markup — verify against the live DOM before changing them.
 */
.woocommerce-shipping-totals:nth-child(3),
.woocommerce-econt-shipping:nth-child(1) {
    display: none;
}
