Conversion rate
Ecommerce / CROConversion rate is the percentage of visitors who complete a desired action (usually a purchase) divided by total visitors. Median Shopify conversion rate sits around 1.4-2.5% depending on industry.
Why it matters: Small lifts compound: moving conversion from 1.5% to 1.8% is a 20% revenue increase at the same traffic level. Speed, trust signals, and checkout friction are the highest-leverage variables.
CAC (Customer Acquisition Cost)
Ecommerce / CROCAC is the total marketing and sales cost divided by the number of new customers acquired in the same period. A healthy DTC brand typically aims for LTV:CAC ratio of 3:1 or better.
Why it matters: If you're spending $40 to acquire a customer who buys once at $35, you lose money. CAC has to be evaluated against LTV (lifetime value), not first-order revenue.
CRO (Conversion Rate Optimization)
Ecommerce / CROCRO is the discipline of systematically increasing the percentage of visitors who complete desired actions. It combines analytics, user research, A/B testing, and UX improvements.
Why it matters: Real CRO is iterative: hypothesis → test → measure → repeat. Most agencies that promise 'CRO' deliver one-shot redesigns; sustainable lift comes from a testing program with statistical rigor.
Cart abandonment rate
Ecommerce / CROCart abandonment rate is the percentage of shoppers who add items to cart but don't complete checkout. Industry median sits around 70% — meaning most carts never convert.
Why it matters: Top causes: unexpected shipping costs, forced account creation, slow checkout, complicated forms, lack of payment options. Recovery emails recapture 5-10% of abandoned carts.
Checkout funnel
Ecommerce / CROThe checkout funnel is the sequence of steps from cart → information → shipping → payment → confirmation. Each step loses some users; total conversion is the product of step-level conversion rates.
Why it matters: Reducing friction at any single step compounds across the entire funnel. Shop Pay one-click checkout exists because every additional checkout step drops conversion.
Core Web Vitals
Performance & SEOCore Web Vitals (CWV) are Google's three user-experience metrics: Largest Contentful Paint (LCP), Interaction to Next Paint (INP, replaced FID in March 2024), and Cumulative Layout Shift (CLS).
Why it matters: Google uses CWV as a ranking signal via the Page Experience system. Stores failing CWV consistently lose organic traffic to faster competitors. CWV is measured on real-user data via the Chrome User Experience Report (CrUX).
CLS (Cumulative Layout Shift)
Performance & SEOCLS measures how much visible content shifts position during page load. A CLS score under 0.1 is good; over 0.25 is poor. Common causes: images without width/height, ads loading late, web fonts swapping in.
Why it matters: Pages with bad CLS frustrate users (you click a button, the page shifts, you click the wrong thing). CLS is also a Google ranking signal. Easy wins: always set image dimensions, use font-display: swap with size-adjust.
Critical CSS
Performance & SEOCritical CSS is the minimum CSS needed to render the above-the-fold content of a page. By inlining critical CSS in the HTML head and deferring the full stylesheet, you eliminate render-blocking CSS and improve LCP.
Why it matters: Render-blocking CSS is one of the most common Lighthouse complaints. Tools like Critical (npm) or Penthouse can extract critical CSS automatically per page template.
CDN (Content Delivery Network)
Performance & SEOA CDN caches static assets (images, CSS, JS) at servers geographically close to users, reducing latency. Shopify uses Fastly as its built-in CDN, and many stores layer Cloudflare on top for additional edge logic.
Why it matters: CDNs are why a Shopify store loads fast for both Tokyo and London visitors. For custom assets outside Shopify (e.g. on a Hydrogen storefront), choosing a CDN with edge presence in your customer regions is essential.