/*
 * CommerceKit Twenty Twenty-Five Compatibility Styles
 */

/*
 * Twenty Twenty-Five uses a block-based single product template. The gallery
 * block renders inside <main> with constrained-width block layout. Remove the
 * max-width constraint so the gallery fills its column naturally.
 */
.woocommerce .wp-block-woocommerce-product-image-gallery {
	max-width: none;
}
#commercegurus-pdp-gallery-wrapper {
	width: 100%;
}
.woocommerce div.product form.cart::after,
.woocommerce div.product form.cart::before {
	display: none;
}
.commercekit-inventory + div {
    clear: both;
}
/*
 * The sticky ATC polyfill adds .summary to .wp-block-woocommerce-add-to-cart-form
 * so the JS clone logic can find form.cart. Reset WooCommerce's float/width rules
 * that would otherwise shrink the block wrapper once .summary is applied.
 */
 .woocommerce div.product .wp-block-woocommerce-add-to-cart-form.summary {
	float: none;
	width: 100%;
}