
/*
* Added: Adjust WooCommerce main container width for desktop view (>= 769px).
* Limits the container to 90% width while preserving the mobile layout.
*/
@media all and (min-width: 769px) {
	.woocommerce main,
	.woocommerce-page main {
		width: 90% !important;
		margin: 0 auto !important;
	}
}
