Google Search Advocate John Mueller highlighted a case study that exposes a critical flaw in how many websites approach Largest Contentful Paint (LCP) optimization. The study, published on web.dev on June 24, details a year-long effort by Brazilian e-commerce platform Nuvemshop. The result: the share of stores with good LCP scores jumped from 57% to 96%. But the real insight is not the improvement—it is the reason previous efforts failed.
The Hidden Problem: Browser LCP Element Selection
Nuvemshop’s team initially suspected image weight or server latency as the main issues. However, analysis revealed that the browser was selecting the wrong element as LCP. On Nuvemshop, merchants can organize homepage sections in any order, leading to carousels, banners, and product grids in varying positions. Carousels were present on 85% of storefronts. CSS transitions on carousels delayed their visibility, causing the browser to identify a banner further down the page as the LCP element. Consequently, all prior optimizations targeted elements that were never the LCP.
This misidentification is not unique to Nuvemshop. Any platform with template-driven or carousel-heavy layouts risks the same issue. The implication is stark: teams may spend months compressing images and reducing server latency without addressing the root cause.
Three Targeted Fixes That Work
Nuvemshop implemented three core changes: removing CSS transitions from top sections, removing loading="lazy" from the first image, and adding fetchpriority="high" on the likely LCP image. These adjustments follow web performance best practices but were applied precisely to the element the browser actually treats as LCP. The team also added edge caching to reduce latency.
The results: overall Core Web Vitals pass rate improved from 48% to 72% over the year. For mobile visitors arriving via Google organic search, Nuvemshop reports an 8.9% increase in conversion rate and an 8.4% rise in cart engagement. These figures are self-reported but align with Deloitte research commissioned by Google, which found that shaving 0.1 seconds off load time can raise retail conversion by 8.4%.
Strategic Implications for E-commerce Platforms
This case study shifts the conversation around Core Web Vitals from a technical SEO checkbox to a direct revenue driver. For e-commerce platforms, speed optimization is no longer just about ranking—it is about conversion. Nuvemshop’s experience demonstrates that targeted LCP fixes can yield measurable business outcomes.
However, the effort required is significant: a full year of dedicated work. Platforms with similar customizable layouts must invest in identifying the true LCP element before applying fixes. The cost of misdiagnosis is wasted engineering resources and missed revenue opportunities.
Competitors that fail to replicate these gains risk losing market share. Speed is becoming a standard competitive differentiator, especially on mobile where organic search traffic drives conversions.
Winners and Losers
Winners: Nuvemshop and its merchants benefit from improved performance and higher conversion rates. Google gains validation that its metrics drive real business outcomes, strengthening the narrative for web performance standards.
Losers: Competing e-commerce platforms with slower performance may lose market share. Websites that over-invest in speed at the expense of content relevance could be misled, as Google emphasizes relevance as more important than speed.
Outlook and Next Steps
Executives should treat this case study as a blueprint. First, audit your LCP element selection process. Use tools like PageSpeed Insights to trace which element the browser identifies as LCP. Second, apply the three fixes—remove CSS transitions on above-fold elements, eliminate lazy loading on the first image, and add fetchpriority="high" to the primary image. Third, monitor conversion metrics alongside Core Web Vitals to quantify the business impact.
Over the next 30 days, expect more platforms to adopt similar strategies. The competitive advantage from speed will narrow as best practices become widespread. Early movers, like Nuvemshop, will capture the most benefit.
Final Take
Speed optimization is not about following a checklist. It is about understanding how the browser perceives your page. Nuvemshop’s success proves that when you optimize the right element, the payoff is real. Ignore this lesson, and your speed team may be working on the wrong problem.
FAQ
Because teams optimize elements the browser does not actually treat as LCP. CSS transitions and lazy loading can cause the browser to select a different element, rendering all subsequent optimizations ineffective.
Remove CSS transitions from top sections, remove lazy loading from the first image, and add fetchpriority='high' to the likely LCP image. Edge caching was also implemented.
Nuvemshop reported an 8.9% increase in conversion rate for mobile organic search visitors after improving LCP scores from 57% to 96%. This aligns with Deloitte research showing a 0.1-second load time reduction can boost retail conversion by 8.4%.




