@tanmay0713 first, my apologies for missing replying to your email! I’ve noticed you’re a Pro user. I’ll extend right away your license period as an apology ?? As for the problems you’re having, I’ve noticed that the URL that you provided here is no longer valid. I did check, however, the live URL and you have some render-blocking resources there.
I’ve checked the Coverage report in Google Chrome and there’s a file that is not needed and could be unloaded: /wp-content/themes/storefront/assets/css/base/gutenberg-blocks.css?ver=2.8.0
This will reduce the total CSS that is render-blocking. As for the rest of it, one thing you could do is using “Preload (Async)” (from the “Preload it (if kept loaded)” area within the list of CSS files from the “CSS & JS Manager”). However, it should only be used (it’s recommended) only to files that are needed later on in the page, not the ones that have CSS syntax needed above the fold, otherwise, the page will show a flash of unstyled content (a.k.a. FOUC). One good example is the theme’s one: /wp-content/themes/storefront/style.css?ver=2.8.0 which is needed above the fold when the first content of the page renders.
There’s a way to eliminate all render-blocking CSS by using the critical CSS feature. At the moment, it’s not manageable from the Dashboard and it requires a bit of coding: https://assetcleanup.com/docs/critical-css-how-to-implement-it-to-completely-reduce-render-blocking-stylesheets/
PS: I’ve noticed that one of the areas of your website is not loading correctly, most likely due to the fact that you’ve marked a certain CSS/JS file for unloading that should be loaded. It’s related to the wish list. At the moment, when I scroll to the bottom of the website, the area is showing up unstyled below the footer: https://ibb.co/DRkcWy7 – when I append /?wpacu_no_load or &wpacu_no_load to the URL (if you already have query strings there) the problem is gone. This query string is used for debugging purposes and it would prevent Asset CleanUp from loading on that page, so you can check how the page loads & looks like without the plugin making any changes.