Hello @PeppePro02 , Thanks for sharing the store with us to test and analyze. I have made a complete evaluation of your store, and below are the results generated from it -
Design and First Impression
First impression of your store is very good, as the design structure is clean and simple. As your store is related to the selling of Gadgets, you can try to little more things you can add, like make the color vibrant for your store, or add some background images to make it more attractive.
For the design first thing that came to my mind is the logo, as the text seems very small and is not clear to see. Try to remove the text, only place the symbol in that.
Secondly, the cards you have placed in the customer reviews are not well structured might be you might want to create a new design, but I would recommend placing all those cards in the same line.
Your social media icons are placed in the top above the navigation bar. I would recommend placing it either in the navigation bar or below it because WhatsApp redirect is already at the top, and placing social media redirects just below it is not a good idea.
Speed Analysis
I have tested your site using Google Page Insights Report, and the below are the results.
Your overall performance score is not up to the standards and needs a big improvement to make the changes.
Image Delivery - Try to reduce the download time of images can improve the perceived load time of the page and LCP. Use responsive image design to reduce the download size of the image.
For example -
Use srcset and img_url filters for responsive ![]()
<img
src="{{ product.featured_image | img_url: '480x480' }}"
srcset="
{{ product.featured_image | img_url: '240x240' }} 240w,
{{ product.featured_image | img_url: '480x480' }} 480w,
{{ product.featured_image | img_url: '800x800' }} 800w,
{{ product.featured_image | img_url: '1200x1200' }} 1200w
"
sizes="(max-width: 480px) 240px,
(max-width: 768px) 480px,
(max-width: 1024px) 800px,
1200px"
alt="{{ product.title | escape }}"
loading="lazy"
/>
Document Request Latency
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression. Try to reduce the unnecessary use of third-party scripts and minify the code as much as possible to increase the response time.
Page’s Initial Render
Requests are blocking the page’s initial render, which may delay LCP. Try to defer the non-critical resources from the page to render the resources faster.
For example -
<script src="{{ 'custom.js' | asset_url }}" defer></script>
Alternatively, if you wanted to solve these issues automatically, I recommend to give a try to the website Speedy - an optimization app that handles loading and rendering delays of the site by optimizing images, JS, and CSS.
(Disclaimer: We are the developers of this app and are always ready to solve any problem you may face.)