VARNI STOREFRONTS · QUALITY AUDIT · 2026-07-12

Website-23 — aukera theme

Live site: https://website-23.varnijewels.com · Design reference: aukerajewellery.com

46/100 Not Ready 13 critical · 19 major · 9 medium · 16 minor

Audited across three dimensions: launch readiness (functionality, SEO, performance, security, accessibility, analytics, brand), mobile QA (real device emulation, touch), and desktop QA (1920/1440/1366, hover + keyboard). Report-only — no purchase was completed.

Category scores

Launch-readiness scoring. Infra-only items are marked MANUAL and left unscored.

CategoryScoreVerdictDefects
Core Functionality 65 warn 8
Performance & Core Web Vitals 48 fail 3
Technical SEO 35 fail 7
Security 35 fail 2
Frontend 68 warn 4
Backend / API (mostly MANUAL) manual 2
Analytics & Tracking 78 warn 1
Accessibility 62 warn 3
Brand Consistency 12 fail 4
Marketing Readiness 42 fail 3
Monitoring & Maintenance manual 0

Lighthouse & Core Web Vitals

Lighthouse CLI, mobile emulation defaults.

PageformFactorperformanceaccessibilitybestPracticesseolcpMsfcpMsclsScoretbtMsspeedIndexMsttiMsserverResponseMssourceurlunusedJsSavingsKiBunusedCssSavingsKiBresponsiveImagesSavingsKiB
homemobile6090961006596.34033.70.000639683.56704.6803.6lh-website-23-home.json
pdpmobile55919610017400105000.0023038400174005930w23-lh-pdp.jsonhttps://website-23.varnijewels.com/products/140-ct-ef-vs-lab-grown-diamond-solitaire-engagement-ring-in-10k-white-gold-_-sz0875-103063912334

Launch-readiness findings

37 findings across functionality, SEO, security, performance, accessibility, analytics and brand consistency.

critical Cart quantity 'Increase' button is not clickable by real users (0x0 hit box) Core Functionality

On /checkout/cart, button[aria-label='Increase quantity'] has display:flex/visibility:visible/opacity:1 but getBoundingClientRect() returns width=0, height=0. Playwright's real click times out ('element is not visible'); a raw JS dispatchEvent('click') does successfully increment qty from 1 to 2, proving the app logic works but the button's actual clickable/visible area is collapsed by CSS/layout, so normal pointer users cannot use it.

w23-walk4-results.json step 'qty-increment-fail' (locator timeout); w23-supplement-results.json qtyBtnDiag rect {w:0,h:0}; qtyBefore=1, qtyAfter=2 only via forced dispatch; screenshot w23-shots/cart-after-qty.png shows qty stuck at 1 after a normal click attempt.

Fix: Fix the quantity stepper's CSS/layout so the increase/decrease buttons have a real rendered size and are pointer-clickable, not just DOM-present.

critical PDP is effectively unusable on mobile networks - LCP 17.4s, Speed Index 38.4s Performance & Core Web Vitals

Lighthouse mobile audit of the PDP: Performance score 55/100. LCP=17.4s (target <=2.5s), FCP=10.5s, Speed Index=38.4s, TTI=17.4s. Root-document server-response-time alone is 5.93s.

w23-lh-pdp.json audits: largest-contentful-paint, first-contentful-paint, speed-index, server-response-time

Fix: Profile and fix PDP server-side render/data-fetch latency first (it dominates the timeline before any client JS/CSS optimization matters).

critical Reference brand name 'Jewelwesell' leaks into og:site_name on every page Technical SEO

<meta property="og:site_name" content="Jewelwesell"/> present on both home and PDP - the internal reference-brand identity is exposed in Open Graph metadata site-wide (visible in every social-share link preview).

curl of https://website-23.varnijewels.com/ and the PDP URL, raw HTML grep for og:site_name

Fix: Set og:site_name from themeContent.brandName, never the reference/API default.

critical PDP <title> tag ends with '| Jewelwesell' Technical SEO

Page title: '1.40 ct EF VS Lab Grown Diamond Solitaire Engagement Ring in 10k White Gold _ Sz0875 103063 | Jewelwesell' - shown in the browser tab, bookmarks, and search-engine result snippets.

curl PDP HTML <title>

Fix: Fix the PDP title template to append the store's own brand, not the reference brand.

critical Product structured data (schema.org) brand.name = 'Jewelwesell' Technical SEO

The Product JSON-LD block's brand object resolves to {"@type":"Brand","name":"Jewelwesell"} - Google Rich Results / Merchant Center would show the wrong brand for every product.

curl PDP HTML, extracted <script type=application/ld+json> Product block

Fix: Populate brand.name from the store's own theme brand, not an upstream/reference value.

critical PDP og:image hotlinks the reference brand's own CDN/watermarked asset Technical SEO

<meta property="og:image" content="https://media.jewelwesell.com/New_JWS/001Rings/103063_WW_JWS.jpg"/> - social-share previews pull an image from a third-party 'jewelwesell.com' domain rather than this store's own asset host.

curl PDP HTML og:image

Fix: Serve product images from this store's own CDN/asset pipeline; remove all jewelwesell.com references.

critical XML sitemap referenced in robots.txt returns HTTP 404 / S3 bucket error Technical SEO

robots.txt points to Sitemap: https://website-23.varnijewels.com/sitemaps/website-23.varnijewels.com-sitemaps/sitemap_index.xml which returns HTTP 404 with body '<Error><Code>NoSuchBucket</Code>...<BucketName>varnijewels</BucketName>...'. Search engines cannot discover the site's URL list via sitemap.

curl -o /dev/null -w '%{http_code}' -> 404; response body shows S3 NoSuchBucket error

Fix: Fix the sitemap generation/hosting pipeline (wrong/missing S3 bucket) so the sitemap index actually resolves.

critical Reference brand 'JewelWeSell' identity leaks directly into the live mobile navigation drawer Brand Consistency

The mobile hamburger sidenav shows the script-style 'JewelWeSell' logo wordmark (not this store's 'WEBSITE-23'/'Aukera' identity) and a 'SUPPORT CONTACT' block listing [email protected] and +(646) 598-7516 - the internal reference-storefront's own support contact, shown to real shoppers of website-23.

screenshot w23-shots/03-mobile-sidenav.png; w23-walk-results.json step 'sidenav-opened' sidenavSnippet

Fix: Fix the sidenav's brand/contact source: it must derive brandName and support contact from themeContent, never the reference/API defaults. This is the exact 'wordmark parity' anti-pattern - sidenav should read `themeContent.brandName || storeData?.name`, not the reverse, and support contact must come from this store's own theme content.

critical Same 'Jewelwesell' identity also leaks into every page's OG metadata, PDP title, and Product schema Brand Consistency

See Technical SEO findings: og:site_name, PDP <title> suffix, and Product JSON-LD brand.name all resolve to 'Jewelwesell' on this live store.

curl of home + PDP raw HTML (og:site_name, <title>, ld+json brand.name)

Fix: Same root-cause fix as above, applied to the SSR meta/schema templates, not just the client-rendered sidenav.

major 'Error fetching menu' console error fires on nearly every route Core Functionality

Console error 'Error fetching menu: {message: Please check your internet connection and try again}' logged on /store-locator, /rings, /earrings, /bracelets, /necklaces, /pendants, /bestsellers, /solitaire, /new-arrivals.

w23-walk2-results.json consoleErrors[]

Fix: Investigate the header/megamenu API call for intermittent failures/timeouts server-side; the generic 'check your internet connection' client message masks the real cause.

major Site search errors out on most category pages Core Functionality

'Search error: {message: Please check your internet connection and try again}' logged on /rings, /earrings, /bracelets, /necklaces, /bestsellers, /solitaire, /new-arrivals, /store-locator.

w23-walk2-results.json consoleErrors[]

Fix: Check the Meilisearch/search API endpoint health and error handling on category-page load.

major Home page LCP/FCP also fail Core Web Vitals thresholds on mobile Performance & Core Web Vitals

Lighthouse mobile audit of home: Performance 60/100. LCP=6.6s, FCP=4.0s, Speed Index=9.7s, TTI=6.7s. TBT=3ms and CLS=0.0006 are both good.

lh-website-23-home.json audits

Fix: Optimize hero image/critical CSS delivery and reduce root-document response time (803ms TTFB is already borderline).

major Product JSON-LD is missing required fields for Rich Results Technical SEO

The Product schema block only contains brand, aggregateRating, and offers.priceValidUntil - it is missing name, image, sku/description, and offers.price/priceCurrency/availability, all required/recommended by Google's Product structured-data spec.

curl PDP HTML ld+json Product block

Fix: Populate the full Product schema (name, image, sku, description, offers.price, priceCurrency, availability, url).

major BreadcrumbList structured data has malformed item URLs Technical SEO

JSON-LD BreadcrumbList item URLs are malformed, e.g. "item": "https://https://website-23.varnijewels.comEngagement" - doubled protocol, no path separator, breadcrumb text appended directly onto the domain with no slug.

curl PDP HTML ld+json BreadcrumbList block

Fix: Fix breadcrumb URL construction (likely a string-concatenation bug prefixing an already-absolute URL with the origin again).

major No security response headers present Security

curl -I on https://website-23.varnijewels.com/ shows no Content-Security-Policy, X-Frame-Options, X-Content-Type-Options, Referrer-Policy, Permissions-Policy, or Strict-Transport-Security (HSTS) headers. Only Cloudflare/NEL/report-to, content-type, cache and cookie headers are present.

curl -sS -D - -o /dev/null https://website-23.varnijewels.com/ (full header dump captured)

Fix: Add CSP, X-Frame-Options (or frame-ancestors in CSP), X-Content-Type-Options: nosniff, Referrer-Policy, Permissions-Policy, and HSTS at the app/edge layer.

major Cart quantity stepper button has a zero-size clickable area (cross-ref Functionality) Frontend

See Core Functionality finding - same defect, flagged here as a CSS/layout bug.

w23-supplement-results.json qtyBtnDiag

Fix: See Core Functionality recommendation.

major Touch targets too small/tightly spaced on PDP (Lighthouse target-size) Frontend

Lighthouse a11y audit 'target-size' fails on the PDP - some interactive elements do not meet the 24x24px+ spacing guidance for touch.

w23-lh-pdp.json audits.target-size score=0

Fix: Increase hit-area/spacing on small PDP controls (ring-size chips, qty stepper, etc.).

major PDP root-document server response time ~5.9s under Lighthouse mobile simulation Backend / API (mostly MANUAL)

server-response-time audit shows the PDP HTML document itself took 5,930ms to arrive, versus 803ms for home - the SSR/data-fetch path for product-detail is a major bottleneck (see Performance category).

w23-lh-pdp.json audits.server-response-time

Fix: Ops: profile PDP server-side rendering / backend product+variant API calls for slow queries, N+1 fetches, or missing caching.

major Recurring 'menu' and 'search' API failures across nearly all routes Backend / API (mostly MANUAL)

See Core Functionality findings - client-visible errors suggest an intermittent/rate-limited backend rather than genuine client network loss.

w23-walk2-results.json consoleErrors[]

Fix: Ops: check API logs/error rates for the menu and search endpoints around the audit window.

major Insufficient color contrast on both home and PDP Accessibility

Lighthouse 'color-contrast' audit fails on both pages (score 0) - some text/background combinations do not meet WCAG AA contrast ratios.

lh-website-23-home.json and w23-lh-pdp.json audits.color-contrast

Fix: Run a full contrast pass on theme tokens (especially any light-on-light or muted-gray text).

major Three different brand identities appear across the store's own pages Brand Consistency

Header/hero/footer/page-title/copyright all show the generic placeholder 'WEBSITE-23' (e.g. hero headline literally reads 'Website-23', footer copyright '© 2026 Website-23. All Rights Reserved.'); the theme's actual intended brand 'Aukera' only surfaces indirectly (og:image path '/aukera/hero-1.svg', homepage tagline 'Find your Aukera'); and 'Jewelwesell' leaks in via sidenav/meta/schema as above. No single, finished brand name is applied consistently.

screenshots w23-shots/01-home.png (hero says 'Website-23'), w23-walk-results.json footer-text ('© 2026 Website-23'), w23-walk-results.json sidenavSnippet ('Find your Aukera' tagline)

Fix: Decide the final brand name for this store and apply it consistently to themeContent.brandName, header, footer, hero, page titles, and meta/schema - do not launch with a placeholder 'Website-NN' name.

major Support/contact identity inconsistent and partly leaks reference brand Marketing Readiness

Cross-reference Brand Consistency findings - a shopper who opens the mobile menu for help is shown JewelWeSell's contact info, not this store's.

w23-shots/03-mobile-sidenav.png

Fix: See Brand Consistency recommendation.

major Footer social icons are dead placeholder links Marketing Readiness

5 social-icon links in the footer resolve to '/#' with no destination - not real Instagram/Facebook/etc. profile links.

w23-walk-results.json footer-links[] trailing 5 '#' entries

Fix: Link to real social profiles or remove the icons until profiles exist.

medium litekart_store_id cookie set without visible Secure/HttpOnly/SameSite attributes Security

Set-Cookie: litekart_store_id=store_01JNKD4PGSR8E3QZSGXYEE0PRV; Max-Age=31536000; Path=/ - no Secure, HttpOnly, or SameSite attribute shown.

curl -I response headers

Fix: Add Secure; HttpOnly (if not needed client-side); SameSite=Lax/Strict to the cookie.

medium Prohibited ARIA attributes on home page Accessibility

Lighthouse 'aria-prohibited-attr' fails on home - one or more elements use ARIA attributes not allowed for their role.

lh-website-23-home.json audits.aria-prohibited-attr score=0

Fix: Audit ARIA usage against each element's implicit role.

medium Browser console errors present on both pages (errors-in-console) Accessibility

Lighthouse flags 'errors-in-console' on home and PDP - corroborated by the wishlist 422/menu/search errors captured in walkthrough runs.

lh-website-23-home.json / w23-lh-pdp.json audits.errors-in-console

Fix: Clean up console errors; at minimum silence the expected guest-wishlist 422 from the console.

minor Several footer links point to the wrong destination Core Functionality

Footer 'Gifting' links to /products (not a gifting collection); 'About Website-23', 'Our Materials', and 'Boutiques' all link to /contact-us instead of dedicated pages.

w23-walk-results.json footer-links[]

Fix: Wire footer links to their intended pages or remove links that have no corresponding page yet.

minor 5 dead social-icon placeholder links in footer Core Functionality

Five footer link entries resolve to href="https://website-23.varnijewels.com/#" with no text - unwired social icon placeholders.

w23-walk-results.json footer-links[] (trailing 5 entries with href '#')

Fix: Point social icons to real profile URLs or hide them until profiles exist.

minor No 'Recently Viewed' section detected on PDP Core Functionality

Automated text check for 'recently viewed' on the PDP returned false.

w23-supplement-results.json hasRecentlyViewed:false

Fix: Add a recently-viewed products rail if the design calls for one (checklist item).

minor Moderate unused JS/CSS and non-optimal responsive images on PDP Performance & Core Web Vitals

unused-javascript: ~91 KiB est. savings; unused-css-rules: ~23 KiB; uses-responsive-images: ~34 KiB savings.

w23-lh-pdp.json audits

Fix: Secondary optimization once server-response-time is fixed; code-split/tree-shake PDP bundle and serve responsively-sized images.

minor Heading order not sequentially descending on PDP Frontend

Lighthouse 'heading-order' audit fails on PDP.

w23-lh-pdp.json audits.heading-order score=0

Fix: Audit and correct h1->h2->h3 nesting on the PDP template.

minor Redundant alt text on some home page images Frontend

Lighthouse 'image-redundant-alt' fails on home - alt text duplicates adjacent visible text.

lh-website-23-home.json audits.image-redundant-alt score=0

Fix: Trim alt text to avoid duplicating visible captions/labels.

minor Footer contact details are unfinished placeholders Brand Consistency

Footer shows phone '+91 90000 00000' (obviously fake), email '[email protected]' (reserved .example TLD, not a real deliverable address), and a generic Mumbai/BKC address.

w23-walk-results.json footer-text

Fix: Replace with real, monitored contact details before launch.

minor No visible newsletter/email-capture block captured on this store's footer Marketing Readiness

The captured footer text/structure for website-23 shows no email-capture field (a sibling store's footer, by contrast, has a visible 'Enter your email address' + Subscribe block).

w23-walk-results.json footer-text (no email input field text present)

Fix: Confirm whether a newsletter capture component exists on this theme/store and is simply below the fold, or is genuinely missing.

info Guest wishlist 422 on every page load Core Functionality

GET /api/wishlists/me returns 422 'Invalid credentials' for guest sessions on virtually every route. Per known project status this is expected behavior for guests, not a bug.

w23-walk*-results.json networkErrors[]

Fix: No action required; confirm this is still the intended contract.

info PLP category facet list looks like unfiltered platform taxonomy, not curated jewelry categories Core Functionality

The /products filter panel's CATEGORIES facet shows entries like 'Charms Cluster Pendants', 'Charms Emoji And Symboli...' (+64 more) which read as a raw platform category dump rather than a curated list relevant to this store's assortment.

w23-plp-after-filter.png; w23-walk2-results.json plp-loaded bodySnippet

Fix: Review/curate the category facet list shown to shoppers.

info Enhanced Ecommerce event firing and consent-mode/cookie-banner not confirmed Analytics & Tracking

GA4 and GTM containers are both loaded, but the on-disk artifacts from the prior (killed) run do not include a captured dataLayer/network trace proving add_to_cart, view_item, begin_checkout, or purchase events actually fire with correct payloads, nor evidence of a cookie-consent banner.

No dataLayer capture found among w23-* artifacts

Fix: Follow up with a GTM Preview / dataLayer inspection pass to confirm Enhanced Ecommerce events and consent mode.

Mobile QA

Real mobile emulation (iPhone 13 (390x844 CSS, DPR 3, touch, mobile Safari UA, Chromium engine), Pixel 7 (412x915 CSS, DPR 2.625, touch, mobile Chrome UA), 360x780 narrow-Android cross-check, 428px width cross-check, Landscape spot-check: home (844x390 / 839x412) and PDP (844x390)), touch interaction, thumb-driven journey.

critical PDP is unusable-slow on mobile: LCP 17.4s, Speed Index 38.4s (Lighthouse mobile, formFactor=mobile 412x823) PDP / Performance

Lighthouse mobile audit (w23-lh-pdp.json) scores PDP performance 0.55/1.0 with Largest Contentful Paint 17.4s and Speed Index 38.4s (both score 0/1). Manual Playwright screenshots at +3s/+9s/+18s after domcontentloaded confirm the hero product image is not visually complete until roughly 15-18s post-navigation on a throttled mobile profile. A real thumb-driven shopper on cellular data would stare at a mostly blank/skeleton PDP for the better part of 20 seconds before the product photo they came to see actually renders.

w23-lh-pdp.json (categories.performance=0.55, audits['largest-contentful-paint']=17.4s, audits['speed-index']=38.4s),shots/w23m-p3-02-pdp-3s.png,shots/w23m-p3-03-pdp-18s.png,shots/w23m-06-pdp-9s.png,shots/w23m-07-pdp-18s.png

Fix: Investigate what is blocking LCP on this route (likely unoptimized/oversized hero image, render-blocking JS/CSS, or slow client-side data fetch before the gallery paints). Preload/priority-hint the primary product image, serve a properly sized responsive image, and get LCP under ~2.5s and Speed Index under ~5s for mobile.

major Hamburger menu and cart-toggle icons are far below minimum tap target size (18x18px and 34x18px) Header / Nav

The mobile hamburger ('Toggle menu') button measures 18x18 CSS px, and the header 'Toggle Cart' icon buttons measure 34x18 CSS px, on both iPhone 13 (390px) and Pixel 7 (412px) profiles -- confirmed independently three separate times in this session. Apple HIG / Material guidance recommend a minimum 44x44pt comfortable touch target; WCAG 2.5.8 requires at least 24x24 CSS px. The hamburger fails both; the cart toggle fails the 44px guidance and is borderline on the WCAG floor. This is the very first tap most mobile visitors make on the site.

w23m-iphone-results.json (hamburger-box: 18x18),w23m-pixel7-results.json (hamburger-box: 18x18, meets44:false),shots/w23m-01-home.png,shots/w23m-px-01-home.png

Fix: Increase the tappable hit area of the hamburger and header cart icon to at least 44x44px (padding the button, not just the icon glyph), independent of the visual icon size.

major Mobile drawer does not trap background scroll (scroll bleed-through) Header / Nav

With the hamburger drawer open, scrolling the screen scrolls the underlying homepage content behind/along with the drawer (window.scrollY moved from 0 to 600px while the drawer was open). Real users expect an open drawer/modal to lock body scroll; instead the page repositions behind the drawer, which is disorienting and can leave the page scrolled to an unexpected spot once the drawer closes.

w23m-iphone-results.json (drawer-scroll-trap: scrollBefore 0 -> scrollAfter 600, trapped:false)

Fix: Lock body scroll (e.g. overflow:hidden on <body> or a scroll-lock utility) while the drawer/any modal sheet is open.

major Category links in the mobile drawer give zero loading feedback for ~2.5s before the route actually changes Nav / SPA routing feedback

Tapping a category link (e.g. 'Rings') inside the mobile drawer closes the drawer instantly, but the client-side route change does not actually complete for roughly 2.5 seconds afterward -- and there is no spinner, skeleton, or any other visual indicator during that gap. Screenshots taken at 0.5s/1s/1.5s/2s post-tap all show the same static homepage. Verified reproducibly across two independent test sessions and multiple runs (navigation consistently lands around t=2.5-2.6s). A real user has no reason to believe their tap registered and is very likely to tap again, tap something else, or leave.

ad-hoc timing script this session (navigated at ms:2562),shots/w23m-nav-t1s.png (drawer closed, still on homepage, no loading indicator),w23-walk-results.json / w23-walk3-results.json from prior attempt (same symptom, shorter wait window)

Fix: Show immediate feedback on nav-link tap: close the drawer only after navigation starts, or show a top-of-page progress bar / skeleton PLP shell instantly, so the ~2.5s gap doesn't read as unresponsive.

medium PLP 'Filters' sheet is an unadapted two-column desktop layout at phone width; category labels are truncated mid-word PLP / Filters

At 390px width, the Filters sheet renders a left-hand vertical tab rail (CATEGORIES / TAGS / PRICE / CENTER STONE CTW / ... ) so narrow that several labels are cut off before the last letter, e.g. 'CENTER STONE CTW' displays as 'CENTER STONE CTV', 'CENTER STONE SETTING' as 'CENTER STONE SET', 'SIDE STONE SETTING' as 'SIDE STONE SETTIN', 'SIDE STONE SHAPE' as 'SIDE STONE SHAPE' (clipped). This two-panel layout appears to be the same one used on desktop, simply squeezed into the phone viewport rather than converted to a full-width single-column/accordion mobile filter pattern.

shots/w23m-p2-02-filter-open.png

Fix: Redesign the mobile filter sheet as a single full-width column (accordion sections) instead of reusing the two-column desktop tab layout, or widen the left rail and wrap/reduce label text so nothing is clipped.

medium Lighthouse mobile target-size audit fails on the 'Lab Grown Diamond' tag chip and 'Check Availability' link PDP / Touch targets

Lighthouse's mobile target-size audit (score 0/1) flags: (1) the 'Lab Grown Diamond' chip (164x36px) has less than 24px of safe clickable space to its neighbor (the Add To Bag button) -- effective safe diameter only 20.8px; (2) 'Check Availability' is only 115x20px, under the 24px minimum height/width floor.

w23-lh-pdp.json (audits['target-size'].details.items)

Fix: Add spacing/margin between the material-tag chip row and the Add To Bag button, and enlarge the 'Check Availability' tappable area to at least 24x24px (ideally 44x44).

medium Cart quantity +/- stepper buttons are 28x28px, below the 44x44 comfortable thumb-target guidance (corrects/narrows a prior desktop-only '0x0' claim) Cart

On the /checkout/cart page, the 'Increase quantity' / 'Decrease quantity' buttons measure 28x28 CSS px inside a cramped 106x38px pill, confirmed consistently at 390px, 412px and 428px real mobile widths this session -- they clear the strict WCAG 24x24 floor but sit well under the 44x44 comfortable-thumb guidance used for commerce controls, with minus/plus/qty-readout packed tightly together (real mis-tap risk). IMPORTANT CORRECTION: the previously-reported '0x0 hit-box, cannot be tapped at all' finding was re-traced this session to scripts that ran the diagnostic at viewport 1440x900 (desktop), not mobile (see w23-supplement.js / w23-qty-retry.js, both `viewport: {width:1440,height:900}`). On real mobile viewports (390/412/428px, touch enabled, both iPhone-class and Android-class UAs), the button is present at 28x28px and a genuine Playwright `.tap()` (not a forced/synthetic click) succeeds without error and increments quantity. The undersized-but-tappable state is what should be tracked as the mobile-specific defect; the '0x0/completely unreachable' severity does not reproduce on any mobile width tested.

w23m-qty-width-compare.cjs output this session (28x28 at widths 390/412/428),w23m-pixel7-results.json (cart-qty-hitbox-android: 28x28, real tap succeeded),shots/w23m-px-06-cart.png,prior-session w23-supplement-results.json / w23-qty-retry.js (both explicitly viewport 1440x900 = desktop, not mobile)

Fix: Enlarge the qty stepper buttons to at least 44x44px tappable area (can keep a smaller visual glyph with generous padding) and add more separation from the adjacent button/readout.

minor Landscape PDP has an 8px horizontal scroll overflow PDP / Landscape

At 844x390 landscape, document.documentElement.scrollWidth (852px) exceeds clientWidth (844px) by 8px, producing a very slight horizontal scroll on the PDP in landscape only. Portrait PDP/home/PLP at 360/390/412/428px all show no horizontal scroll.

w23m-iphone-part3-results.json (landscape-pdp: sw 852 vs cw 844, hasHorizScroll:true),shots/w23m-p3-09-landscape-pdp.png

Fix: Find and constrain the element causing the 8px landscape overflow (likely a fixed-width element or the gallery reaching full-bleed without accounting for scrollbar/safe-area at that breakpoint).

minor Mini-cart confirmation drawer auto-dismisses quickly after Add to Bag PDP / Add to cart feedback

Tapping the sticky 'Add To Bag' button correctly opens an immediate 'Your Cart (1)' drawer with the item, image, price, an inline qty stepper and a Checkout button -- good instant feedback overall -- but it auto-closes within roughly 1-2 seconds, which may not give a user enough time to adjust quantity right there before it vanishes (they can still do so on the full cart page).

shots/w23m-fix-after-add.png (drawer open),follow-up screenshot 1.2s later shows drawer already closed

Fix: Consider a slightly longer auto-dismiss window or a manual-dismiss-only pattern (X button / tap-outside) for the mini-cart confirmation.

Desktop QA

Desktop viewports (1920x1080, 1440x900, 1366x768), hover states, keyboard navigation, layout integrity.

critical Header navigation is completely empty at all desktop widths — no way to browse categories from the header Nav / Megamenu

The header's <nav aria-label="Main navigation"> element renders with 0 children (verified via DOM: childElementCount=0, textContent='') at 1920x1080, 1440x900, and 1366x768. Network capture shows the root cause: GET https://website-23.varnijewels.com/api/categories/megamenu returns net::ERR_ABORTED. Category taxonomy clearly exists (PDP breadcrumbs show Home > Pendants > Everyday Pendants > Shapes & Symbols > Cartoon, and homepage tiles link to /bracelets, /necklaces, /pendants, /bestsellers, /9kt-collection) but none of it is exposed via the header nav/megamenu a desktop shopper would normally hover.

Load https://website-23.varnijewels.com/ at any desktop width, inspect <header><nav>. It is empty; hovering the header produces no megamenu panel. Network tab shows /api/categories/megamenu aborting.

Fix: Fix/retry the megamenu category API call (per fleet rule: header nav must come from backend API menu). Add error handling so a transient failure doesn't leave the nav silently empty, and add a retry or fallback to homepage category taxonomy.

critical Brand wordmark shows internal placeholder "Website-23" everywhere instead of a real store brand name Home / Branding

Header logo text, hero H1, page <title> ('Website-23 — Fine Lab Grown Diamond Jewelry'), and aria-label='Website-23 home' all show the generic internal site-id placeholder. The homepage subhead itself says 'Find your Aukera' and the theme is literally named 'aukera', implying the intended brand name was never wired in — the site is customer-facing with its internal placeholder name.

Load https://website-23.varnijewels.com/ — header logo, hero title, and browser tab title all read 'Website-23'.

Fix: Set the real store/theme brand name (e.g. 'Aukera') in theme content / store settings so it wins over the placeholder everywhere (header, hero, <title>, aria-labels), per brand-wordmark-parity rule.

critical Homepage feature-card section has overlapping / clipped text at desktop widths Home

In the 'The diamond. The craft. The design.' three-card section, each card's large heading text overlaps directly on top of its eyebrow label and caption instead of stacking in sequence, and the heading text is clipped at the card's left edge (e.g. 'Everyday Brilliance' renders as '...ryday Brilliance', 'Statement/Tennis Bracelets' renders as '...nis Bracelets'). Reproduced consistently at 1920x1080 on two separate loads/scroll timings (not a scroll-jump artifact).

Load home at 1920x1080, scroll to the 'EVERY DETAIL MATTERS' section (~850px down). All three cards show illegible overlapping text.

Fix: Fix the card's text-layer CSS (likely an absolutely-positioned heading with no clearance from the eyebrow/caption block below it, and container overflow clipping the heading on the left). Verify vertical stacking order and left padding/margin match the source design contract.

major Product photography carries a visible competitor watermark ('JewelWeSell' + diamond logo) across nearly all listing and PDP images PLP / PDP imagery

Zoomed inspection of the PDP hero image and PLP thumbnails shows a small tiled watermark (stylized diamond icon + 'JewelWeSell' cursive wordmark) baked into the photography itself, visible on essentially every product photo across the catalog (confirmed on PLP grid and PDP main image at 1920x1080).

Open any PLP grid at desktop width or any PDP hero image and zoom in on the lower third of the photo — the competitor watermark is visible.

Fix: Re-source product photography without the competitor watermark, or crop/clean the images before serving. Using another company's watermarked stock photography live on a customer-facing storefront is a trust and originality risk per the reskin no-plagiarism rule.

major Add to Bag can silently fail after switching a variant option — no error shown to the shopper (observed once, not consistently reproduced) PDP / Cart

At 1920x1080, after clicking the '10k Gold' metal-type chip on PDP then clicking 'Add to Bag', the button rendered in a muted/grey state, no toast or status element appeared, and the backend returned 400 on POST /api/carts/{id}/line-items followed by 404 on GET /api/carts/{id}. The cart page then showed 'YOUR BAG IS EMPTY'. On a later isolated retest with the default (unmodified) variant, Add to Bag worked correctly with no errors. On the 1366x768 pass, add-to-bag after the same '10k Gold' click succeeded (cart had 1 item, qty stepper worked). The failure did not reproduce consistently, suggesting either a transient backend issue or a specific variant/SKU combination gap.

PDP https://website-23.varnijewels.com/products/400-ct-ef-vs-lab-grown-diamond-cartoon-pendant-in-14k-white-gold-232635 → click '10k Gold' metal type chip → click 'Add to Bag' → check /checkout/cart and Network tab for POST .../line-items.

Fix: Investigate whether the 10k-Gold/White-Gold/EF-VS/Lab-Grown-Diamond combination has a valid SKU. Regardless of root cause, the UI must surface a visible error toast/message on any add-to-cart failure instead of failing silently with a merely-greyed button.

medium "Shop by Category" tiles show generic placeholder icons instead of real category photography Home

All 7 category tiles (Rings, Earrings, Bracelets, Necklaces, Pendants, Bestsellers, 9KT Edit) render an identical grey circle with a generic diamond-outline icon rather than distinct product photography per category, at all desktop widths tested.

Load home at any desktop width, view the 'Find your Aukera' / 'Shop by Category' row.

Fix: Wire real category thumbnail images (from theme content or API category data) into these tiles instead of the shared placeholder icon.

medium PDP og:image points to an unrelated CDN (media.jewelwesell.com) and is blocked in-browser PDP / SEO

meta[property=og:image] = https://media.jewelwesell.com/New_JWS/003Pendants/232635_WW_JWS.jpg. A network request to a related media.jewelwesell.com asset was observed failing with net::ERR_BLOCKED_BY_ORB. This breaks social-share link previews. Note: the actual on-page PDP hero <img> is NOT broken — it loads fine (naturalWidth 2076px) from static.varnijewels.com, so the customer-visible gallery works; only the meta og:image / share-preview path is affected.

curl -s https://website-23.varnijewels.com/products/400-ct-ef-vs-lab-grown-diamond-cartoon-pendant-in-14k-white-gold-232635 | grep og:image

Fix: Point og:image at the store's own static.varnijewels.com asset instead of media.jewelwesell.com.

medium WCAG contrast failure on checkout step labels ("Address", "Payment") Checkout / Accessibility

Computed style: color rgb(156,163,175) (Tailwind gray-400) on white background, 12px text. Measured contrast ratio ≈ 2.54:1, below the WCAG 2 AA minimum of 4.5:1 for normal-size text.

Open /checkout/cart at any desktop width, inspect the '2 Address' / '3 Payment' stepper labels with a contrast checker.

Fix: Darken the inactive step label color (e.g. to gray-600/700) to meet 4.5:1 contrast while keeping the visual 'inactive' distinction from the active step.

minor Fixed 3-column product grid does not add a 4th column at very wide desktop (1920px) PLP

The PLP grid uses identical fixed card widths (~353px at 1920 and 1440, ~342px at 1366) via `grid-cols-2 lg:grid-cols-3`, so it stays at 3 columns even at 1920x1080. This is within the acceptable 3–4 column range and the layout is well-filled with no dead whitespace, but a 4th column at ≥1920 would make fuller use of large screens.

Load /products at 1920x1080 vs 1440x900 — column count and card widths look the same, sidebar + 3 cards leave a modest right-side margin.

Fix: Optional: add an xl:grid-cols-4 breakpoint for ≥1920px viewports. Not a blocker.

minor Previously-reported qty-stepper 0x0 hit-box NOT reproduced in this desktop pass Cart

At 1366x768, the visible 'Increase quantity' button measured a real 28x28px hit box and a plain mouse click correctly incremented quantity from 1 to 2. At 1920x1080 the cart was empty (see the Add-to-Bag 400 defect above) so the stepper could not be exercised there. The launch-readiness-reported 0x0 hit-box defect could not be confirmed on this pass; recommend re-verification once the add-to-cart issue above is resolved so the stepper can be tested at all three widths with an item actually in the cart.

N/A — not reproduced this run.

Fix: Re-test the qty stepper at 1920x1080 and 1440x900 once a cart item can reliably be added, to confirm whether the earlier hit-box defect still exists.

minor Guest wishlist 422 on every page load General

Console shows repeated 'Failed to load resource: 422' / 'While fetching wishlist {message: Invalid credentials.}' on every page. This matches the known fleet baseline: guest 422 on wishlist is expected, not a bug.

Any page load, guest session — see console.

Fix: No action needed; documented as expected per fleet knowledge.

Cross-check notes

The three dimensions were run independently, so some findings were corrected or contradicted by a later pass. Those disagreements are recorded here rather than silently resolved — a claim below is not firm until re-verified.

Retracted Cart increase-quantity button has a 0x0 hit-box; real clicks time out

The diagnostic that produced this ran at a 1440x900 desktop viewport. Mobile QA (390/412/428px) found the button present and a real tap succeeds. Desktop QA at 1366x768 measured a 28x28px box and a real click incremented the quantity. Not reproduced by either QA pass.

Action: None — treat as a false finding. The genuine issue is that 28x28px is under the 44px touch-target minimum.

← All storefronts