/**
 * Override WooCommerce out-of-stock product styling
 *
 * By default WooCommerce hides the entire cart form (including variations, price)
 * for out-of-stock products. This override keeps them visible so users can still
 * see the variations and price, even though the add-to-cart button is disabled.
 */

/* Show the cart form for out-of-stock products */
.product-single .product.outofstock .cart {
    display: flex !important;
}

/* Keep the delivery info hidden for out-of-stock products */
.product-single .product.outofstock .product-delivery-info {
    display: none !important;
}
