Quickstart

A step-by-step guide to help you scrape data quickly using MrScraper.

This guide walks you through the essential steps to get started with MrScraper. Whether you’re new to web scraping or already experienced, you’ll learn how to create and run your first scraper in just a few minutes.

Scenario

Imagine you want to collect data on the top-selling laptops on Amazon to analyze market trends or compare pricing. For this example, you’ll scrape data from the following category page:

https://www.walmart.com/search?q=laptop&typeahead=laptop

Using General Agent, your goal is to extract:

  • Product name
  • Price
  • Rating
  • Number of reviews
  • Product link

This example shows how you can gather structured e-commerce data using AI Scraper — no coding required.

How to Scrape

Step 1: Create a New Scraper

  1. Log in to MrScraper, then click Scraper in the left sidebar.
  2. Click New Scraper + at the top to create a new scraper.
  3. Select General Agent and enter the following URL to scrape:

Note

We offer three AI Scraper agents. For details and a full comparison of each agents, see here.

https://www.walmart.com/search?q=laptop&typeahead=laptop
  1. Set the scraper type to Super for higher accuracy, faster scraping time and richer results.

Note

For a detailed comparison between Cheap and Super scraper types, see here.

  1. Click Submit to begin.
  2. In the prompt box, enter the following instruction:

Scrape the top 3 laptop products on this page and return the following information in JSON format:

  • product_name
  • price
  • rating
  • number_of_reviews
  • product_link

Step 2: Check the Result

The AI Scraper supports four output formats. In this example, we select the JSON format, which returns results like the sample below:

{
  "top_laptops": [
    {
      "price": "$178.00",
      "rating": "594 out of 5 Stars",
      "product_link": "https://www.walmart.com/ip/Restored-Dell-Latitude-3190-11-6-Touchscreen-Laptop-PC-Intel-Core-Pentium-Silver-N5030-1-1-GHz-8GB-RAM-128GB-SSD-Windows-11-Pro-Refurbished/15377670482?conditionGroupCode=2&classType=REGULAR",
      "product_name": "Restored Dell Latitude 3190 | 11.6\" Touchscreen Laptop PC | Intel Core Pentium Silver N5030 (1.1 GHz) | 8GB RAM | 128GB SSD | Windows 11 Pro",
      "number_of_reviews": "59 reviews"
    },
    {
      "price": "$499.00",
      "rating": "174 out of 5 Stars",
      "product_link": "https://www.walmart.com/ip/Dell-14-laptop-AMD-Ryzen-AI-5-AMD-Radeon-Graphics-16-GB-DDR5-512GB-SSD-Windows-11-Home/17501360849?classType=REGULAR",
      "product_name": "Dell 14\" laptop, AMD Ryzen AI 5, AMD Radeon Graphics, 16 GB, DDR5, 512GB SSD, Windows 11 Home",
      "number_of_reviews": "17 reviews"
    },
    {
      "price": "$699.00",
      "rating": "2584.3 out of 5 Stars",
      "product_link": "https://www.walmart.com/ip/HP-17-3-Touchscreen-Laptop-AMD-Ryzen-5-7430U-16GB-RAM-1TB-SSD-Backlit-Fingerprint-Win11-Home/17586673039?classType=VARIANT",
      "product_name": "HP 17.3\" Touchscreen Laptop, AMD Ryzen 5 7430U, 16GB RAM, 1TB SSD, Backlit, Fingerprint, Win11 Home",
      "number_of_reviews": "258 reviews"
    }
  ]
}

Note

The actual results may vary depending on the current Walmart listings.

Step 3: Rerun the Scraper Using the API

You can also trigger a rerun of the scraper you’ve created using the API with a new URL to scrape.

  1. Ensure that you’ve generated an API Token. If not, follow the steps here.
  2. Go to Settings → Enable AI Scraper API Access.
  3. Call the following endpoint using Postman or via our API Reference:

Note

In this example, we change the URL to: https://www.amazon.com/s?k=laptops.

curl -X POST "https://api.app.mrscraper.com/api/v1/scrapers-ai-rerun" \
  -H "accept: application/json" \
  -H "x-api-token: {YOUR_API_TOKEN}" \
  -H "content-type: application/json" \
  -d '{
  "scraperId": "{SCRAPER_ID}",
  "url": "https://www.walmart.com/search?q=laptop&typeahead=laptop",
  "maxRetry": 3
}' \
  -k
  1. The endpoint returns a JSON response similar to the example below:

Note

Each AI Scraper agent returns a unique response format. For details, see here.

{
  "message": "Successful operation!",
  "data": {
    "id": "7cb7761e-a0a2-47d6-915c-86adb2802f8a",
    "createdAt": "2026-03-06T05:16:07.224Z",
    "createdById": null,
    "updatedAt": "2026-03-06T05:17:38.487Z",
    "updatedById": null,
    "deletedAt": null,
    "deletedById": null,
    "userId": "ec789a5e-dd52-4e74-8cd8-df89f9d2ebbe",
    "scraperId": "6cd3d44e-bd20-4735-9f92-dacf9b7e0f35",
    "type": "Rerun-AI",
    "url": "https://www.walmart.com/search?q=laptop&typeahead=laptop",
    "status": "Finished",
    "error": "",
    "tokenUsage": 100,
    "runtime": null,
    "data": {
      "1": {
        "id": 1,
        "name": "Laptops",
        "rows": [
          {
            "link": "https://www.walmart.com/ip/ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver/13566207291",
            "name": "ASUS Vivobook 15.6” FHD Laptop with Intel i5-1334U, Intel UHD Graphics, 8GB RAM, 512GB SSD, Cool Silver",
            "price": "$399.00",
            "rating": "1884.1 out of 5 Stars",
            "reviews": "188 reviews"
          },
          {
            "link": "https://www.walmart.com/ip/ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i9-13900H-16GB-RAM-1TB-NVMe-SSD-Cool-Silver/13736423867",
            "name": "ASUS Vivobook 16 Laptop, Intel® Core™ i9-13900H, 16GB, 1TB, Windows 11 Home, Cool Silver, F1605VA-WS96",
            "price": "$719.00",
            "rating": "1104.6 out of 5 Stars",
            "reviews": "110 reviews",
            "previous_price": "$849.99"
          },
          {
            "link": "https://www.walmart.com/ip/ASUS-Zenbook-14-14-WUXGA-OLED-Touch-Laptop-Copilot-PC-with-AMD-Ryzen-AI-7-350-AMD-Radeon-Graphics-32GB-RAM-1TB-NVMe-SSD-Jade-Black/13509901545",
            "name": "ASUS Zenbook 14 inch OLED WUXGA Touch Windows Laptop AMD Ryzen AI7 32GB RAM 1TB SSD Jade Black",
            "price": "$979.00",
            "rating": "2514.2 out of 5 Stars",
            "reviews": "251 reviews"
          }
        ],
        "source": "product_list"
      }
    },
    "htmlPath": "results/57c66993-accf-41ae-b631-394e7360e076/rerun/17c76373-7b9a-4097-85f2-7e126a4af49a/page.html",
    "recordingPath": null,
    "screenshotPath": "https://mrscraper-web-v3.s3.us-west-2.amazonaws.com/results/57c66993-accf-41ae-b631-394e7360e076/rerun/17c76373-7b9a-4097-85f2-7e126a4af49a/page.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIAZI2LGOGSZO6TIBC7%2F20260306%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20260306T051738Z&X-Amz-Expires=1800&X-Amz-Signature=a1d58c7696fe1233e3608eff0787b1c0f044af420e96aa9a1e4b3b5f11f88244&X-Amz-SignedHeaders=host&response-content-disposition=inline&response-content-type=image%2Fjpeg&x-amz-checksum-mode=ENABLED&x-id=GetObject",
    "dataPath": null,
    "htmlContent": "<!DOCTYPE html><html lang=\"en-US\"><head><meta charset=\"utf-8\"><meta property=\"fb:app_id\" content=\"105223049547814\"><meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, minimum-scale=1, interactive-widget=resizes-content\"><meta name=\"pageContext\" content=\"searchResults\"><link rel=\"dns-prefetch\" href=\"https://tap.walmart.com \" data-dca-id=\"L:29676E23A5\"><title>laptop - Walmart.com</title><meta property=\"og:title\" content=\"laptop - Walmart.com\"><meta name=\"description\" property=\"og:description\" content=\"laptop - Walmart.com\"><meta property=\"og:image\" content=\"https://i5.walmartimages.com/seo/Restored-Dell-Latitude-3190-11-6-Touchscreen-Laptop-PC-Intel-Core-Pentium-Silver-N5030-1-1-GHz-8GB-RAM-128GB-SSD-Windows-11-Pro-Refurbished_1b35f0df-acf8-43f3-a0bd-637fb3963ff3.141425f5c3b1f1e1c39d74faa1e81d3f.jpeg\"><meta name=\"next-head-count\" content=\"9\"><meta http-equiv=\"Content-Security-Policy\" content=\"child-src 'self' blob:; connect-src 'self' *.1worldsync.com *.accenture.com *.akamaihd.net *.babylist.com *.buywith.com *.cloudinary.com *.cnetcontent.com *.digital-cloud.medallia.com *.doubleclick.net *.flix360.com *.flix360.io *.fullstory.com *.kampyle.co *.kampyle.com *.ksckreate.net *.perimeterx.net *.purpleportal.net *.px-cdn.net *.px-cloud.net *.pxchk.net *.quantummetric.com *.richcontext.com *.salsify.com *.sspinc.io *.stylitics.com *.syndigo.cloud *.syndigo.com *.talkshop.live *.thestable.com *.wal.co *.walmart-customcards.com *.walmart.com:* *.walmart.net *.walmartimages.com *.zeekit.www.walmart.com 649d7f7fe2stg.blob.core.windows.net ads01.groovinads.com api.bazaarvoice.com api.inhome.walmart.com aroptical-scan.wal-mart.com assets-jpcust.jwpsrv.com assets.optiwise.ai azmatch.adsrvr.org b.affil.walmart.com b.affiliates.walmart.com b.identity.walmart.com b.native-checkout.prod.affiliates.walmart.com b.photos3.walmart.com b.www.walmart.com beacon.walmart.com blob: bp.www.walmart.com c.bing.com cdn-assets.affirm.com cdn.jwplayer.com content.etilize.com content.jwplatform.com df6ba499bbstg.blob.core.windows.net directline.botframework.com drfdisvc.walmart.com dw.wmt.co gum.criteo.com i.liadm.com i6.liadm.com ib.adnxs.com idsync.rlcdn.com ls.chatid.com maps.googleapis.com maps.gstatic.com media.flixcar.com media.flixfacts.com media.sku.ninja mmwm-scan-prod.centralus.cloudapp.azure.com photorankstatics-a.akamaihd.net rackcdn.com s.xlgmedia.com secure.adnxs.com ssl.p.jwpcdn.com stats.g.doubleclick.net sync.mathtag.com t.myvisualiq.net tap.walmart.com tps.doubleverify.com us.creativecdn.com videos-cloudfront.jwpsrv.com wss://api.talkshop.live wss://directline.botframework.com wss://us.server.buywith.com wss://www-perf.walmart.com wss://www.walmart.com www.facebook.com www.google.com www.gstatic.com zeekit.www.walmart.com; default-src 'self' 'unsafe-eval' 'unsafe-inline' *.quantummetric.com *.wal.co *.walmart-customcards.com *.walmart.com:* *.walmart.net *.walmartimages.com; font-src 'self' *.1worldsync.com *.accenture.com *.buywith.com *.cloudfront.net *.cloudinary.com *.cnetcontent.com *.flix360.com *.flix360.io *.ksckreate.net *.richcontext.com *.salsify.com *.syndigo.cloud *.syndigo.com *.thestable.com *.wal.co *.walmart-customcards.com *.walmart.com:* *.walmart.net *.walmartimages.com assets-jpcust.jwpsrv.com assets.optiwise.ai cc.cs.1worldsync.com ccsprodus1.blob.core.windows.net cdn.cs.1worldsync.com cdn.jwplayer.com content.etilize.com content.jwplatform.com d3nkfb7815bs43.cloudfront.net d3np41mctoibfu.cloudfront.net fonts.googleapis.com fonts.gstatic.com ls.chatid.com media.flixcar.com media.flixfacts.com media.sku.ninja photorankstatics-a.akamaihd.net rackcdn.com salsify-ecdn.com ssl.p.jwpcdn.com videos-cloudfront.jwpsrv.com ws.cnetcontent.com www.ezdia.com; frame-src 'self' *.1worldsync.com *.accenture.com *.affirm.com *.alldata.cashedge.com *.babylist.com *.buywith.com *.cloudinary.com *.cnetcontent.com *.countr.one *.crcldu.com *.digital-cloud.medallia.com *.eko.com *.fiservapps.com *.flix360.com *.flix360.io *.kampyle.co *.kampyle.com *.ksckreate.net *.one.app *.onefinance.com *.onepay.com *.online-metrix.net *.quantummetric.com *.richcontext.com *.salsify.com *.shopstylecollective.com *.syndigo.cloud *.syndigo.com *.talkshop.live *.thestable.com *.vantivcnp.com *.vimeo.com *.wal.co *.walmart-customcards.com *.walmart.com:* *.walmart.net *.walmartimages.com adclick.g.doubleclick.net app.collectivevoice.com assets-jpcust.jwpsrv.com assets.optiwise.ai ccsprodus1.blob.core.windows.net cdn.jwplayer.com content.etilize.com content.jwplatform.com crcldu.com drfdisvc.walmart.com ln-rules.rewardstyle.com ls.chatid.com media.flixcar.com media.flixfacts.com media.sku.ninja mmwmpdscanoprod.z19.web.core.windows.net one-web.app.link one.app.link photorankstatics-a.akamaihd.net pinpad.paysecure.acculynk.net rackcdn.com s.xlgmedia.com salsify-ecdn.com ssl.p.jwpcdn.com tpc.googlesyndication.com videos-cloudfront.jwpsrv.com ws.cnetcontent.com wss://api.talkshop.live www.ezdia.com www.facebook.com www.google.com www.recaptcha.net www.youtube-nocookie.com www.youtube.com youtu.be; img-src 'self' *.1worldsync.com *.accenture.com *.adsafeprotected.com *.akamaihd.net *.buywith.com *.cloudfront.net *.cloudinary.com *.cnetcontent.com *.digital-cloud.medallia.com *.doubleclick.net *.doubleverify.com *.edge.walmart.com *.flix360.com *.flix360.io *.geekseller.com *.googleapis.com *.imrworldwide.com *.kampyle.co *.kampyle.com *.ksckreate.net *.online-metrix.net *.paypal.com *.px-cdn.net *.px-cloud.net *.rackcdn.com *.richcontext.com *.salsify.com *.ssl.cf1.rackcdn.com *.stylitics.com *.syndigo.cloud *.syndigo.com *.talkshop.live *.thestable.com *.wal.co *.walmart-customcards.com *.walmart.com:* *.walmart.net *.walmartimages.com *.zeekit.www.walmart.com a.sellpoint.net ad.doubleclick.net ads01.groovinads.com akamai.ksckreate.net aroptical-scan.wal-mart.com aroptical-wasm.walmart.com assets-jpcust.jwpsrv.com assets.eko.com assets.optiwise.ai azmatch.adsrvr.org b.affil.walmart.com b.affiliates.walmart.com b.identity.walmart.com b.native-checkout.prod.affiliates.walmart.com b.photos3.walmart.com b.www.walmart.com beacon.walmart.com blob: bp.www.walmart.com braze-images.com c.bing.com ccsprodus1.blob.core.windows.net cdn-assets.affirm.com cdn.jwplayer.com content.etilize.com content.jwplatform.com content.syndigo.com crtormassetmguseprod.blob.core.windows.net cyborg-wm-auth-service-v2.jet.com d3nkfb7815bs43.cloudfront.net d3np41mctoibfu.cloudfront.net data: drfdisvc.walmart.com dw.wmt.co gum.criteo.com i.liadm.com i6.liadm.com ib.adnxs.com idsync.rlcdn.com img.youtube.com ir.surveywall-api.survata.com ls.chatid.com maps.googleapis.com maps.gstatic.com media.flixcar.com media.flixfacts.com media.sku.ninja mmwm-scan-prod.centralus.cloudapp.azure.com photorankstatics-a.akamaihd.net play.eko.com player.cloudinary.com rackcdn.com res.cloudinary.com s.xlgmedia.com s0.2mdn.net salsify-ecdn.com secure.adnxs.com securepubads.g.doubleclick.net smedia.webcollage.net ssl.p.jwpcdn.com stats.g.doubleclick.net sync.mathtag.com t.myvisualiq.net tap.walmart.com tpc.googlesyndication.com us.creativecdn.com videos-cloudfront.jwpsrv.com walmart.ugc.bazaarvoice.com wss://api.talkshop.live www.ezdia.com www.facebook.com www.gstatic.com; media-src *.1worldsync.com *.accenture.com *.akamaized.net *.buywith.com *.cloudfront.net *.cloudinary.com *.cnetcontent.com *.flix360.com *.flix360.io *.ksckreate.net *.richcontext.com *.salsify.com *.syndigo.cloud *.syndigo.com *.thestable.com *.vimeo.com *.vimeocdn.com *.wal.co *.walmart-customcards.com *.walmart.com:* *.walmart.net *.walmartimages.com 1d81e75c4337a6e2e3c2-4a69748413de5fcbd7a7a944817c2356.ssl.cf1.rackcdn.com a.sellpoint.net advertising.staging.walmart.com akamai.ksckreate.net api.inhome.walmart.com assets-jpcust.jwpsrv.com assets.optiwise.ai blob: ca-media.contentanalyticsinc.com cc.cnetcontent.com cc.cs.1worldsync.com ccsprodus1.blob.core.windows.net cdn-azure.kwikee.com cdn.cnetcontent.com cdn.cs.1worldsync.com cdn.jwplayer.com content.etilize.com content.jwplatform.com content.syndigo.com cyborg-wm-auth-service-v2.jet.com d3nkfb7815bs43.cloudfront.net d3np41mctoibfu.cloudfront.net images.salsify.com ls.chatid.com media.flixcar.com media.flixfacts.com media.sku.ninja photorankstatics-a.akamaihd.net rackcdn.com salsify-ecdn.com ssl.p.jwpcdn.com videos-cloudfront.jwpsrv.com vimeo.com ws.cnetcontent.com www.ezdia.com; object-src *.wal.co *.walmart-customcards.com *.walmart.com:* *.walmart.net *.walmartimages.com drfdisvc.walmart.com; script-src 'self' 'strict-dynamic' 'wasm-unsafe-eval' *.1worldsync.com *.accenture.com *.babylist.com *.buywith.com *.cloudfront.net *.cloudinary.com *.cnetcontent.com *.digital-cloud.medallia.com *.flix360.com *.flix360.io *.fullstory.com *.kampyle.co *.kampyle.com *.ksckreate.net *.px-cloud.net *.quantummetric.com *.richcontext.com *.salsify.com *.syndigo.cloud *.syndigo.com *.talkshop.live *.thestable.com *.wal.co *.walmart-customcards.com *.walmart.com:* *.walmart.net *.walmartimages.com *.zeekit.www.walmart.com aroptical-scan.wal-mart.com aroptical-wasm.walmart.com assets-jpcust.jwpsrv.com assets.optiwise.ai b.affil.walmart.com b.affiliates.walmart.com b.identity.walmart.com b.native-checkout.prod.affiliates.walmart.com b.photos3.walmart.com b.www.walmart.com beacon.walmart.com bp.www.walmart.com ccsprodus1.blob.core.windows.net cdn.jwplayer.com connect.facebook.net content.etilize.com content.jwplatform.com d3nkfb7815bs43.cloudfront.net d3np41mctoibfu.cloudfront.net drfdisvc.walmart.com ls.chatid.com maps.googleapis.com media.flixcar.com media.flixfacts.com media.sku.ninja mmwm-scan-prod.centralus.cloudapp.azure.com photorankstatics-a.akamaihd.net rackcdn.com s.xlgmedia.com salsify-ecdn.com ssl.p.jwpcdn.com videos-cloudfront.jwpsrv.com ws.cnetcontent.com wss://api.talkshop.live www.ezdia.com www.recaptcha.net 'nonce-nF9_pq1haH6UBl_d'; style-src 'self' 'unsafe-inline' *.1worldsync.com *.accenture.com *.buywith.com *.cloudfront.net *.cloudinary.com *.cnetcontent.com *.cs.1worldsync.com *.flix360.com *.flix360.io *.kampyle.com *.ksckreate.net *.quantummetric.com *.richcontext.com *.salsify.com *.sspinc.io *.stylitics.com *.syndigo.cloud *.syndigo.com *.thestable.com *.wal.co *.walmart-customcards.com *.walmart.com:* *.walmart.net *.walmartimages.com assets-jpcust.jwpsrv.com assets.optiwise.ai ccsprodus1.blob.core.windows.net cdn.jwplayer.com content.etilize.com content.jwplatform.com d3nkfb7815bs43.cloudfront.net d3np41mctoibfu.cloudfront.net fonts.googleapis.com ls.chatid.com media.flixcar.com media.flixfacts.com media.sku.ninja photorankstatics-a.akamaihd.net rackcdn.com salsify-ecdn.com ssl.p.jwpcdn.com videos-cloudfront.jwpsrv.com ws.cnetcontent.com www.ezdia.com; worker-src 'self' blob:\"><script nonce=\"\">(()=>{\n    const lang = document.documentElement.lang;\n    Object.defineProperty(document.documentElement, \"lang\", {\n        get () {\n            return lang;\n        },\n        set () {}\n    });\n})()</script><link rel=\"preconnect\" href=\"https://i5.walmartimages.com\"><script nonce=\"\">window._pxAppId='PXu6b0qd2S'</script><script src=\"/px/PXu6b0qd2S/init.js\" nonce=\"\" async=\"\"></script><link nonce=\"\" rel=\"preload\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/css/d9549b02150302f2.css\" as=\"style\"><link nonce=\"\" rel=\"stylesheet\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/css/d9549b02150302f2.css\" data-n-g=\"\"><noscript data-n-css=\"nF9_pq1haH6UBl_d\"></noscript><script defer=\"\" nonce=\"\" nomodule=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_item-queue_banner_queue-banner-976b34a7240aa5aa.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_event-timer_queue-timer.49c49115899e1001.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/tempo-shared-modules_ad-wrapper.f07c0afa1d8922e1.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_ui_skyline-6d4e179e9b965302.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_ui_marquee_marquee-safeframe-ui.28b7ba5e182ff4f2.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_ui_gallery.2ecc306904c342de.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_ui_btf_ads-btf-cmp.8455e07872223006.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_core_hooks_use-platform.b799b2ee097cb721.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/search_facets_filter-bar_sort-and-filter-bar.20b8186d24699364.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/search_facets_helpers_get-filter-pill-click-beacon.3663b3d00e641a22.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/search_facets_filter-container_filter-popover.cf7ba9e41fd87c64.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/search_facets_filter-bar_sort-by-dropdown.5a7e8f46d55630b8.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/tempo-shared-modules_pills-module.7815ea92a1f8c700.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/search_facets_common-components_facet-expander.cd5b13b8cf29586f.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/search_facets_all-filters-panel_panel-facets.7acec5286a90d3e4.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/search_facets.11d01a9f1b9ef99e.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_add-to-cart_drone_drone-error-utils.9b38efad1b36e93d.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_add-to-cart.09db787d087e6c01.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_core_hooks_get-is-adblocked-e9d19cf09e2ad818.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_ui_locale-text-sponsored.90ae9dca92d6db78.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_sponsored-products-tracking_common-utils-77ee6ec517198a85.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_ui_feedback.9d0ca46206594d34.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/search_item-stack_shop-similar_shop-similar-list-variant.02792a3a7881a109.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/search_item-stack_shop-similar_shop-similar-grid-variant.088156cf66aa8c99.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_core_hooks_use-platform.669c9ea05d172115.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_mp-pickup-bottomsheet.b83baf7242f991e1.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_common-components_drone-bottomsheet_drone-error-bottomsheet.f40418b689e36709.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_common-components_drone-bottomsheet_drone-confirm-bottomsheet.7806f6fe33a33994.js\" nonce=\"\"></script><script defer=\"\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_common-components_hook_use-reservation-snackbar.de5d1f114eade250.js\" nonce=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/webpack-534de8af1a1ba1d5.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/framework-576a33353c25a137.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/main-f012d3476076b599.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/pages/_app-f044e18be1db8481.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/node_modules_.pnpm_@walmart+use-safeframe@1.3.3_react@18.2_node_modules_@walmart_use-safeframe_lib_index-6acc172804e8a1ab.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/node_modules_.pnpm_react-google-places-autocomplete@3.4.0_@types+react@18.2_node_modules_react-google-places-autocomplete_build_index.es-6ba899ef8e7fc770.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/node_modules_.pnpm_react-device-detect@2.2.3_react-dom@18.2.0_react@18.2.0__react@18.2_node_modules_react-device-detect_dist_lib-5ca9a4c93dbea6cd.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/node_modules_.pnpm_@livingdesign+react@1.12.1_@babel+runtime@7.26.0_@types+react-dom@18.2.0_@types+react@18.2_node_modules_@livingdesign_react_dist_regular_esm_Button_Button-a7dcd84d93fdd2d0.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_product-tile_locale_messages-17fc889a5c4bf546.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_quantity-stepper_quantity-stepper-5773ec4d293f156c.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/payments_context_hooks_use-purchase-contract-3461c5d559080eea.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_intl-fees-dialog_intl-fees-dialog-7ac6a083b853a8be.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_pos_fee-utils-0906d53930bcf9df.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_page-view-checkout-beacon_page-view-beacon-fd1c4de899ebce3a.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_add-to-cart_add-to-cart-30da4ed8383a7161.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_text-area_text-area-e61acfbebe7bb6e7.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_cxo-cart-shared_utils_helpers-a22b29198061786a.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/vision-center_lens-selection_helpers_utils-ed0a057bf674830d.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_product-tile_vertical_product-reward-d05a87d8013a37bb.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_product-badge_product-badge-222c1b018789a826.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_product-tile_hooks_use-on-product-8eb890ffa7394063.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_review_locale_messages-2fe91356a339528d.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_product-tile_product-unified-badges-51d7c34950beeb0c.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_product-tile_vertical_product-promo-discount-845899c0b9bf3180.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_product-tile_vertical-d542a43234b7c5b9.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_core_hooks_use-is-tracking-enabled-d1acbd3c7d3af3a4.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/wallet_data-access_locale_messages-c54e4c78169321bf.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_product-tile_vertical_product-image-responsive-vertical-0156a25116b2d5db.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_global-product-tile_global-product-tile-1779da9d807d94da.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/wallet_payment-card-tile_locale_messages-1476028468346d73.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_ui_video_video-player-ad8266e05a09f06a.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_product-carousel_product-carousel-1a93555f757b7ee4.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/wplus_data-access_hooks_use-get-pause-membership-data-e9a20ac36958cb5a.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/wplus_pause-membership-utility_pause-membership-context-2aab5c9e4e6eaae3.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/lists_common-components_locale_messages-8033b6ea44d178ec.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_early-access-deals_helper-4abb207bdb3227f5.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_core_hooks_use-should-not-render-a1fd090f5ea75e4c.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/tempo-shared-modules_data-access_transformFulfillmentBadge_export-sla-message-b9f0d09c6d764b33.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_sponsored-products-tracking_ad-click-beacon-f89ee23ebfcfdac1.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_bookslot-fulfillment-details_utils-bed24a4006791cc0.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/intl-ads_sponsored-products-tracking_use-sponsored-product-atc-86911219c95c0a02.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_ui_feedback_disclaimer-with-link-6a15beccfc7603d7.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/intl-ads_video_video-player-a33674a534b5a527.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/intl-ads_ui_btf-3286fd75102c914f.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/intl-ads_ad-routing_hooks_useAdOptions-74301fdef1cdc218.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_core_hooks_use-load-ivt-aa43152391733a0d.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/lists_notify-list_notify-list-c8440601aa72cd30.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_atc-error-modal_locale_messages-7956b760fb4c83b7.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/marketplace_product-seller-info_product-seller-info-fd124fd7f5f4bfaf.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/search_data-access_search-filters_helper-0457acb0bfbefc92.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_ui_btf_ad-request-beacon-payload-7db9f4f47ade1990.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_product-tile-container_locale_messages-009c347ea218904d.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_free-trial_free-trial-ui-a04a2d7dc560e355.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_data-access_hooks_cca-86d83601eea26a8e.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/marketplace_import-fees_import-fees-ee5e79141cd9917c.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/marketplace_special-instructions_item-special-instructions-064b46666d1fcf68.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_product-tile-container_cart-product-tile-17ac3a6e5f1588ef.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_store-chooser_store-selector_near-by-nodes-tile-793deea5e790a0ba.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/marketplace_contact-seller-modal_contact-seller-modal-5f8a242cf01beef2.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_icon-info_icon-info-ca5355d18311597f.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/extended-reality_experiences_locale_messages-35bdc7c9c0e37e6f.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_store-chooser_store-selector-3212d6b7dd2aa2ea.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_add-on-services_util-a33f1e741a9a0dd5.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/design-components_wcp-breadcrumb_wcp-breadcrumb-item-609ac1061df3686b.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_core_components_display-ad-wrapper-02056d7cbd824200.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/design-components_wcp-card_wcp-card-content-5aecf7d21b961556.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_common-components_helpers_rxpd-util-f9ebe4d50d868301.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_core_fire-pixel-b334e75aa7068018.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_expand-collapse-panel_expand-collapse-panel-a06e51f7ee50f2d5.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_core_components_remount-wrapper-bf2f3ff935b4c40e.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_item-updates-container_oos-product-tile-container-50f6d45277ec5d22.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/tempo-shared-modules_data-access_transforms_transform-product-info-731598d11036ba95.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_generic-utils_use-dom-element-event-94455cd0f250bdfc.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/design-components_wcp-collapse_wcp-collapse-7595f11112e3730d.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/tempo-shared-modules_data-access_utils_is-enhanced-tile-image-enabled-afba7d2f20489e8a.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_store-chooser_store-selection-modal-15cb4f1e5eebfcce.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_item-updates-container_item-updates-container-69fa49ce20f7dece.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/search_item-stack_locale_messages-a48666eaa03c7daf.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/marketplace_mqd-products-modal_locale_messages-a4fc514fd1bcc818.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_sponsored-products-tracking_use-sponsored-item-762abd30894855b6.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/tempo-shared-modules_pills-module_pills-module-fce3f504c56a9014.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/search_data-access_transforms_common-query-to-props-01e981cfe423042c.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_product-accordion-carousel_product-accordion-carousel-f7502889bce845b4.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_core_hooks_use-track-items-ece92f8adff2eea6.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/node_modules_.pnpm_@livingdesign+react@1.12.1_@babel+runtime@7.26.0_@types+react-dom@18.2.0_@types+react@18.2_node_modules_@livingdesign_react_dist_regular_esm_Card_Card-8427f92b0005033b.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/amends_data-access_hooks_use-amendable-order-query-4383be3463ca2f8e.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_sponsored-products-tracking_handle-sp-video-event-a0c8659784e61dec.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_generic-utils_get-gic-intent-aba5ccd595370420.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/node_modules_.pnpm_@livingdesign+icons-indigo@1.4.0_@babel+runtime@7.26.0_classnames@2.5.1_prop-types@15.8.1_react@18.2_node_modules_@livingdesign_icons-indigo_dist_react_StarFill.esm-9daf8b9e489e6503.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/tempo-shared-modules_sort-and-filter_filter-bar_facet-item-name-e5cb5ce3151d94f7.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_fitment_shared_fitment-tire-atc-dialog-1257666b80449aa5.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/search_facets_filter-bar_toggle-pill-fdce7bedcb97b58c.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/amends_add-to-order-fab-cf356023ef991c10.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/search_results-page_search_results-page-a0a028be99174423.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/pages/search-4fd030e167467267.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/production_20260303T030319753Z-en-US/_buildManifest.js\" nonce=\"\" defer=\"\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/production_20260303T030319753Z-en-US/_ssgManifest.js\" nonce=\"\" defer=\"\"></script><script>bazadebezolkohpepadr=\"2032825681\"</script><script type=\"text/javascript\" src=\"https://www.walmart.com/akam/13/792a74bd\" defer=\"\"></script><script type=\"text/javascript\" src=\"https://b.www.walmart.com/rum.js?bh=beacon.lightest.walmart.com\" async=\"\"></script><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/node_modules_.pnpm_@walmart+use-safeframe@1.3.3_react@18.2_node_modules_@walmart_use-safeframe_lib_index-6acc172804e8a1ab.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_product-tile_locale_messages-17fc889a5c4bf546.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/payments_context_hooks_use-purchase-contract-3461c5d559080eea.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_intl-fees-dialog_intl-fees-dialog-7ac6a083b853a8be.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_pos_fee-utils-0906d53930bcf9df.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_page-view-checkout-beacon_page-view-beacon-fd1c4de899ebce3a.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_cxo-cart-shared_utils_helpers-a22b29198061786a.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/vision-center_lens-selection_helpers_utils-ed0a057bf674830d.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/wplus_ui_locale_messages-b67a2b3f05dd121d.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_review-order-data-access_hooks_review-order-component-context-69f7cc7a38cee21c.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_product-tile_horizontal_product-price-919f91f2cfb6a4ac.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_bookslot-fulfillment-details_utils-bed24a4006791cc0.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_bookslot-data-access_bookslot-tenant-context-f53ee7d9083ebb5e.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/payments_context_locale_messages-cf1e67823f55cf2c.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_collapsed-item-list_collapsed-item-list-ec6a04c267519e41.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_data-access_transforms-049213ce0eab71b9.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/payments_context_hooks_use-wallet-post-messaging-12178c254e9424df.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/payments_lazy-modules_temp-hold-209cc01bfbd3f90a.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/payments_analytics_use-analytics-utils-57d542a7f5db0eba.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/wplus_ui_fed-opt-in.4f797b054d086424.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_pos_subtotal-9b05da7190bb701c.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_common-components_cart-bookslot-wplus-banner-065116c954ce5fd2.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_core_hooks_use-intersection-observable-7f9ef32ecb6c5335.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/account_data-access_address-queries-2b5645025338a8ab.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_shared_locale_messages-d964d40b951bf5fa.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/amends_edit-address_edit-store-address_edit-store-address-confirm-button.fa80e5e2ac009c94.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_bookslot-data-access_hooks_use-lazy-cart-id-db3bb93c58097d9a.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_bookslot-shared_dynamic-bookslot-skeleton.532d58906cfaa235.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_core_hooks_use-on-mount.b04cb4c519dfbe1c.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart-bookslot-panel.b8f028a9ef0a4421.js\"><link rel=\"prefetch\" as=\"script\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_global-header_component_prefetch-cart.31b76e3f908f28be.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_navigational-modal_navigational-modal-e6838f3de1945c52.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/lists_common-data-access_helpers_log-error-extractor-1f1485ec633e7dd0.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/amends_data-access_hooks_use-is-amendable-d3fe1dce052d8570.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_common-components_cart-special-message-alerts-fc4a7780e0c6b818.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_core_utils_get-viewport-f9310c03200fd352.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/lists_common-data-access_locale_messages-a55dd0585e525366.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/pages/cart-10e808b4ae0012b2.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/node_modules_.pnpm_@livingdesign+icons-indigo@1.4.0_@babel+runtime@7.26.0_classnames@2.5.1_prop-types@15.8.1_react@18.2_node_modules_@livingdesign_icons-indigo_dist_react_StarFill.esm-89286dc3d5632899.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/intl-ads_ad-routing_intl-ad-routing-2aef8f7527e36524.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_reviews_locale_messages-6fda71cbab9fcf58.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/subscription_shared-components_frequency-tile_frequency-tile-group-cad70407c60a9e85.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_shared_locale_messages-a1585c3536c18294.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_review-order-data-access_helpers_fulfillment-groups-179eb40c0f3f6d65.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/help-redesign_utility_utils_helphook-b432e4c817881332.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/lists_add-items_locale_messages-35dc26575454b371.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_buy-now_buy-now-button-27044744855ad4f0.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/registry_common-components_registry-type-selector_registry-type-option-info-fcde11f9ccce5048.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/lists_add-items_add-to-registry-v2-90ad5bd19887c8aa.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/marketplace_return-policy_return-policy-modal-fbd98a358f171578.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_data-access_helpers_product-transformation-1e6f403ae371f770.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_buy-box_add-to-cart-section_atc-buynow-7b019f1bd970d178.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_buy-box_lens-customization-buy-box_vision-non-sunglasses-options-295b7d353bd62d1b.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_store-chooser_hooks_use-cart-store-chooser-ec459c5109a0af93.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_tempo_locale_messages-2406295b0470e44b.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_reviews_ui-components_reviews-summary-c47ab2f96f35858b.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_provider_ads-context-provider-c8b31f7fd6f202eb.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_complete-the-look_in-this-look-carousel-c236cf56c08440b6.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_page-context_completed-error-ssr-retry-gate-532378ac87f56c85.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/account_data-access_types-a4ff435f48762545.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_buy-box_lens-customization-buy-box_vision-options-642a9742479b97c0.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/lists_common-data-access_locale_messages-7640706e2d2b8618.js\"><link as=\"script\" rel=\"prefetch\" href=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/pages/ip/%5B...itemParams%5D-4e56a4cc444c8898.js\"><script type=\"text/javascript\" src=\"https://b.wal.co/rum-mappings.js;nDC703HYidE8p6Yx_1yXOY3VCgA=?bh=beacon.lightest.walmart.com\" async=\"\"></script><script charset=\"utf-8\" data-webpack=\"_N_E:chunk-98614\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/digital-finance_one-credit-card_components_one-credit-card-application-modal-d1f5d01a86e02da1.js\"></script><script charset=\"utf-8\" data-webpack=\"_N_E:chunk-44029\" src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/digital-finance_one-credit-card_components.4444fbba5aedb361.js\"></script></head><body><div id=\"__next\"><div data-testid=\"layout-container\" class=\"flex flex-column min-vh-100 shadow-2\" style=\"transform:none;transition:transform .2s\"><span data-testid=\"global-header\" class=\"bg-secondary w-100 top-0 z-1 sticky\" style=\"transition:top 0.65s\" data-dca-id=\"M:3E76E52F7C\" data-dca-type=\"module\" data-dca-name=\"__DCA_NAME_TBD__\"><a link-identifier=\"Generic Name\" class=\"o-0 absolute\" tabindex=\"-1\" data-dca-id=\"L:CDF8623A25\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"></a><header class=\"flex items-center justify-center pa3 center-hdkp ph4-hdkp pv3-hdkp\" data-testid=\"responsiveHeader\" data-dca-id=\"M:1641D227CE\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><a link-identifier=\"Generic Name\" class=\"slider skip-main bg-white-90\" data-dca-id=\"L:E76549B6E8\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" href=\"#maincontent\">Skip to Main Content</a><div class=\"flex items-center justify-center dn-hdkp\" style=\"transition:opacity .3s\"><span class=\"dib relative w_5_HD br3\" style=\"display: inline;\"><div data-testid=\"language-selection-callout-mweb\" aria-labelledby=\"react-aria6934499459-:r1: react-aria6934499459-:r0:\" id=\"react-aria6934499459-:r1:\"><button type=\"button\" class=\"flex items-center b--none bg-transparent mr3 pa0 pointer h3 w3 no-underline white\" aria-hidden=\"false\" aria-label=\"Menu\" aria-expanded=\"false\" data-testid=\"Menu\" data-dca-id=\"B:D3C7C43B13\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-Menu\" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 24px; height: 24px; box-sizing: content-box;\"></i></button></div><div class=\"absolute top-0 left-0 zIndex w_HSo4\" style=\"transform: translate3d(-24px, 0px, 0px);\"><div class=\"br2 relative w-auto w_J0V7 w_KGXt\" style=\"box-shadow: rgba(0, 0, 0, 0.15) 0px 0.1875rem 0.3125rem 0.125rem, rgba(0, 0, 0, 0.1) 0px -0.0625rem 0.1875rem 0px;\"><div class=\"relative flex flex-end items-center br2 pv2\" style=\"background: var(--color-core-blue-160); padding-left: 11px; padding-right: 11px;\"><div class=\"flex flex-row items-center\"><div class=\"white f6 b lh-solid pt0\" style=\"padding: 0px;\"><span class=\"ld_Ej\">Spanish / Español now available!</span><span id=\"react-aria6934499459-:r0:\"><div class=\"flex items-center\"><i class=\"ld ld-Globe mr3\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><div class=\"pr5 dib\"><div class=\"lh-title nowrap\">Spanish / Español</div><div class=\"lh-title nowrap\">now available!</div></div></div></span></div></div><div class=\"flex flex-end\"><button class=\"b--none white f6 pv0 pl0 pr2 no-underline pointer\" type=\"button\" aria-label=\"Close Spanish / Español now available!\" data-dca-id=\"B:CFC44EB526\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" style=\"background: none;\"><i class=\"ld ld-Close absolute\" style=\"font-size: 1rem; vertical-align: -0.175em; top: 8px; right: 8px; width: 1rem; height: 1rem; box-sizing: content-box;\"></i></button></div></div></div></div></span><a link-identifier=\"walmartLogoMobile\" class=\"gold h3 w3 dn-hdkp\" aria-hidden=\"false\" aria-label=\"Walmart Homepage\" data-automation-id=\"header-link-walmartLogo\" data-dca-id=\"L:C4B50305B1\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" href=\"/\"><i class=\"ld ld-Spark\" style=\"font-size:2rem;vertical-align:-0.325em;width:2rem;height:2rem;box-sizing:content-box\" aria-hidden=\"true\"></i></a></div><a link-identifier=\"walmartLogoDesktop\" class=\"header-navigation flex-hdkp items-center no-underline justify-center mr3 pa3 hover-bg-dark-primary hover-bg-navy\" style=\"border-radius:37px;transition:all 100ms cubic-bezier(0.77, 0, 0.175, 1);height:52px;padding:0.5rem;width:52px;margin-right:12px\" aria-label=\"Walmart Homepage\" data-dca-id=\"L:B3A89AD3F3\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" href=\"/\"><img loading=\"lazy\" alt=\"Walmart\" class=\"db\" src=\"//i5.walmartimages.com/dfw/63fd9f59-14e2/9d304ce6-96de-4331-b8ec-c5191226d378/v1/spark-icon.svg\" data-automation-id=\"header-walmartLogo\" width=\"36\" height=\"auto\"></a><section class=\"pr3 dn db-hdkp bg-dark-blue hover-bg-navy white\" style=\"width:314px;height:52px;border-radius:32px;padding-left:10px;padding-right:12px\"><div class=\"white sticky z-3 gic-wrapper gic-wrapper-redesign-top\" id=\"gic-wrapper\" data-testid=\"gic-wrapper\" style=\"min-height:41px\"><hr aria-hidden=\"true\" class=\"ld_Bl banner-divider redesign\"><div data-testid=\"global-intent-center\" data-dca-id=\"M:2010068B60\" data-dca-type=\"module\" data-dca-name=\"__DCA_NAME_TBD__\"><div class=\"flex center items-center f6\" id=\"intent-banner-section\" style=\"height: 52px;\"><button class=\"w_hhLG w_DZvO w_0_LY pa0 no-underline w-100 white hover-white\" type=\"button\" data-automation-id=\"fulfillment-banner\" tabindex=\"0\" aria-expanded=\"false\" data-dca-id=\"B:0BFAF6B377\" data-dca-intent=\"open\" data-dca-event=\"__DCA_EVENT_TBD__\"><div class=\"flex items-center justify-between w-100\"><img loading=\"lazy\" alt=\"\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-ad46/k2-_0a671c38-d307-447c-835e-7904ab143c26.v1.png\" width=\"32\" height=\"32\" class=\"br-100 v-btm\" style=\"margin-right: 12px;\"><div class=\"items-center content-start items-start flex-auto flex-none-m tl\" style=\"width: 232px;\"><span><span class=\"lh-copy-ns pointer lh-copy fw7 f5\"><span class=\"dn\">Pickup or delivery?</span><span class=\"\">Pickup or delivery?</span></span></span><div class=\"lh-title fw4\"><div class=\"items-center fl\"><div class=\"dn dn-m db\">95829</div><div class=\"db-m dn db-m\"><div class=\"flex items-center\"><span data-sensitivity=\"medium\" class=\"mw-none-m\" data-qm-mask=\"true\">Sacramento, 95829</span></div></div></div><div class=\"items-center\"><div class=\"dn dn-m db\">95829</div><div class=\"db-m dn db-m\"><div class=\"flex items-center\"><span class=\"ph1\">•</span><span data-sensitivity=\"medium\" class=\"mw-none-m truncate\">Sacramento Supercenter</span></div></div></div></div></div><div class=\"\" style=\"width: 28px; height: 28px; border-color: rgb(230, 241, 252); border-radius: 24px; padding-top: 2px;\"><i class=\"ld ld-ChevronDown\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 16px; height: 16px; padding: 3px 0px; color: rgb(230, 241, 252); box-sizing: content-box;\"></i></div></div></button></div><div class=\"\" style=\"left: -32px; top: 16px;\"><span class=\"ld_Ej\"></span><section data-testid=\"global-intent-center-banner\" data-dca-id=\"M:00FF97383D\" data-dca-type=\"module\" data-dca-name=\"__DCA_NAME_TBD__\"><div class=\"br3 br--bottom bg-primary dn pb3 pt4 pt4 ph4\" role=\"dialog\" aria-label=\"Pickup or delivery?\" style=\"line-height: normal;\"><div data-no-autofocus=\"false\"><ul class=\"flex justify-between bg-primary list ph6 mt0 mb3\" style=\"gap: 20px;\"><li class=\"relative\" style=\"flex: 1 1 0%;\"><button type=\"button\" class=\"flex flex-column items-center sans-serif bg-primary b--none pointer ph0 white\" data-dca-type=\"component\" id=\"intent-id0\" aria-pressed=\"false\" aria-label=\"Shipping\" data-dca-id=\"B:CE7A443EFE\" data-dca-intent=\"select\" data-dca-event=\"__DCA_EVENT_TBD__\"><div class=\"pa1\"><img loading=\"lazy\" alt=\" \" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-486e/k2-_4be6f532-b0b2-4480-bb65-d53586e87193.v1.png\" width=\"50\" height=\"50\" class=\"v-btm\" aria-hidden=\"true\"></div><div class=\"f6 mt2 b\">Shipping</div></button></li><li class=\"relative\" style=\"flex: 1 1 0%;\"><button type=\"button\" class=\"flex flex-column items-center sans-serif bg-primary b--none pointer ph0 white\" data-dca-type=\"component\" id=\"intent-id1\" aria-pressed=\"false\" aria-label=\"Pickup\" data-dca-id=\"B:CE7A443EFE\" data-dca-intent=\"select\" data-dca-event=\"__DCA_EVENT_TBD__\"><div class=\"pa1\"><img loading=\"lazy\" alt=\" \" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-944a/k2-_333618e2-7327-4081-990e-7870dd062248.v1.png\" width=\"50\" height=\"50\" class=\"v-btm\" aria-hidden=\"true\"></div><div class=\"f6 mt2 b\">Pickup</div></button></li><li class=\"relative\" style=\"flex: 1 1 0%;\"><button type=\"button\" class=\"flex flex-column items-center sans-serif bg-primary b--none pointer ph0 white\" data-dca-type=\"component\" id=\"intent-id2\" aria-pressed=\"false\" aria-label=\"Delivery\" data-dca-id=\"B:CE7A443EFE\" data-dca-intent=\"select\" data-dca-event=\"__DCA_EVENT_TBD__\"><div class=\"pa1\"><img loading=\"lazy\" alt=\" \" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-4637/k2-_c8d39665-dac4-474a-9fb7-ab5feeb647b5.v1.png\" width=\"50\" height=\"50\" class=\"v-btm\" aria-hidden=\"true\"></div><div class=\"f6 mt2 b\">Delivery</div></button></li></ul><div class=\"\"><div class=\"\"><div class=\"shadow-1 br3\"><div class=\"bg-white black br3 pa3 mb2\"><div class=\"flex flex-column items-stretch\" data-automation-id=\"fulfillment-address\"><div class=\"bw0 dark-gray sans-serif flex flex-row justify-center items-stretch flex-auto tl ph0\"><div class=\"flex flex-column flex-auto justify-center\"><div class=\"flex\"><div class=\"flex-none\"><div class=\"flex items-center\"><img loading=\"lazy\" alt=\"\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-5249/k2-_71d3c250-050a-40b0-8fd7-c84c1df83204.v1.png\" width=\"16\" height=\"16\"></div></div><div class=\"flex items-start justify-center flex-column ml2\" data-qm-mask=\"true\" data-sensitivity=\"medium\"><div class=\"w_kV33 w_LD4J w_mvVb db lh-title mb1\"><div class=\"f7\">Add an address for shipping and delivery</div></div><div class=\"w_U9_0 w_U0S3 w_QcqU db lh-title\"><div class=\"f7\" data-qm-mask=\"true\"> Sacramento, CA 95829</div></div></div></div><div class=\"f7 flex items-center\"><button class=\"w_hhLG w_8nsR w_0_LY pa1 w-100 mt2\" type=\"button\" data-dca-id=\"B:030820B1EB\" data-dca-intent=\"select\" data-dca-event=\"__DCA_EVENT_TBD__\">Add address</button></div></div></div></div></div></div><div class=\"shadow-1 br3\"><div class=\"bg-white black br3 pa3 mb2\"><div class=\"flex flex-column items-stretch\" data-automation-id=\"fulfillment-address\"><button class=\"bw0 dark-gray sans-serif flex flex-row justify-center items-stretch flex-auto tl ph0 pointer bg-white-90\"><div class=\"flex flex-column flex-auto justify-center\"><div class=\"flex\"><div class=\"flex-none\"><div class=\"flex items-center\"><img loading=\"lazy\" alt=\"\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-14f0/k2-_8ce34043-6050-4f39-afb2-3e76a554f8a3.v1.png\" width=\"16\" height=\"16\"></div></div><div class=\"flex items-start justify-center flex-column ml2\" data-qm-mask=\"true\" data-sensitivity=\"medium\"><div class=\"w_kV33 w_LD4J w_mvVb db lh-title mb1\"><div class=\"f7\">Sacramento Supercenter</div></div><div class=\"w_U9_0 w_U0S3 w_QcqU db lh-title\"><div class=\"f7\">8915 GERBER ROAD, Sacramento, CA 95829</div></div></div></div><div class=\"f7 flex items-center\"></div></div><div class=\"flex items-center\"><i class=\"ld ld-ChevronRight\" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></div></button></div></div></div></div></div><button type=\"button\" class=\"slider skip-main bg-primary bg-transparent bn lh-solid pa0 tc underline inline-button pointer right-0 skip-btn\" aria-label=\"Close, pickup or delivery?\" data-dca-id=\"B:5B3CDC0E6F\" data-dca-intent=\"close\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-CloseCircleFill white\" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button><hr aria-hidden=\"true\" class=\"ld_Bl br4 dn-m mt4 mb2 bg-white\" style=\"width: 135px; height: 4px; margin-left: auto; margin-right: auto;\"><div class=\"dn\"></div></div></div></section></div><span class=\"ld_Ej\" aria-hidden=\"true\"><div class=\"flex items-center\"><span data-sensitivity=\"medium\" class=\"mw-none-m\" data-qm-mask=\"true\">Sacramento, 95829</span></div><div class=\"flex items-center\"><span class=\"ph1\">•</span><span data-sensitivity=\"medium\" class=\"mw-none-m truncate\">Sacramento Supercenter</span></div></span><div class=\"dn\" data-testid=\"gic-dim-body\" style=\"top: 84px;\"></div></div></div></section><form action=\"/search\" autocomplete=\"off\" aria-label=\"Walmart Site-Wide\" role=\"search\" class=\"flex flex-auto items-center justify-center pl3 justify-start-hdkp pa0-hdkp ml4-hdkp static\" data-testid=\"search-form\"><div class=\"flex flex-auto items-center relative\"><input aria-label=\"Search\" aria-activedescendant=\"\" class=\"flex-auto lh-solid sans-serif search-bar br-pill f5 search-input-field-v2 b--none search-bar-redesigned-v2\" name=\"q\" placeholder=\"Search everything at Walmart online and in store\" style=\"padding-left:1.5rem;padding-right:2.5rem\" type=\"search\" aria-autocomplete=\"list\" aria-haspopup=\"listbox\" autocomplete=\"off\" data-automation-id=\"header-input-search\" value=\"laptop\"><button aria-label=\"Clear search field text\" class=\"absolute bn bg-transparent h-100 right-2\" style=\"padding:0 0.75rem;cursor:pointer;opacity:0;right:3rem\" type=\"reset\" tabindex=\"-1\" aria-hidden=\"true\" data-dca-id=\"B:5B6A96A8C6\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-Close\" style=\"font-size:1.5rem;vertical-align:-0.25em;width:1.5rem;height:1.5rem;box-sizing:content-box\"></i></button><button aria-label=\"Search\" class=\"absolute bn br-100 hover-bg-navy search-icon-redesigned-v2\" style=\"cursor:pointer\" data-dca-id=\"B:961A365941\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-Search absolute\" style=\"font-size:1rem;vertical-align:-0.175em;top:50%;left:50%;transform:translate(-50%, -50%);width:1rem;height:1rem;box-sizing:content-box\" data-automation-id=\"search-icon\" aria-hidden=\"true\"></i></button></div><button aria-hidden=\"true\" aria-label=\"Cancel\" class=\"bn bg-transparent mh1 ph2 pv2 pointer sans-serif underline z-1 dn-hdkp clip o-0 white\" style=\"transition:opacity .3s\" tabindex=\"-1\" type=\"button\" data-dca-id=\"B:6A036699B1\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\">Cancel</button></form><nav aria-label=\"Account and Cart\"><ul class=\"flex ma0 pa0 list\" style=\"height:52px\"><li class=\"dn db-hdkp ml3 relative\"><a link-identifier=\"Reorder my items\" class=\"flex items-center no-underline desktop-header-trigger lh-title lh-solid redesign-nav-v2 white hover-bg-navy\" style=\"border-radius:32px;height:52px;transition:all 100ms cubic-bezier(0.77, 0, 0.175, 1)\" aria-haspopup=\"true\" aria-expanded=\"false\" data-dca-name=\"Reorder my items\" role=\"button\" data-dca-id=\"L:87A208F9E9\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" href=\"/my-items\"><i class=\"ld ld-Heart pr2\" style=\"font-size:1rem;vertical-align:-0.175em;width:16px;height:1rem;box-sizing:content-box\" aria-hidden=\"true\"></i><div class=\"nowrap\"><div class=\"lh-title f6\" style=\"height:20px\">Reorder</div><div class=\"b f5 lh-copy\" style=\"margin-top:-4px\">My Items</div></div></a><div class=\"absolute bg-white br3 br--bottom left-0 lh-copy mt3 shadow-1 z-1 dn\" data-testid=\"my-items-flyout\" style=\"margin-top:16px;left:50%;transform:translateX(-50%)\"><div class=\"ph4 pt4 pb2\" data-automation-id=\"walmart-myitems\"><a link-identifier=\"Reorder\" class=\"dark-gray db f6 no-underline nowrap desktop-header-flyout-link mb3\" data-automation-id=\"walmart-reorder\" data-dca-id=\"L:7653D2EA57\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" href=\"/my-items\"><i class=\"ld ld-Reorder mr2\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\"></i>Reorder</a><a link-identifier=\"Lists\" class=\"dark-gray db f6 no-underline nowrap desktop-header-flyout-link mb3\" data-automation-id=\"walmart-list\" data-dca-id=\"L:B07B7ACD2B\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" href=\"/lists\"><i class=\"ld ld-Heart mr2\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\"></i>Lists</a><a link-identifier=\"Registries\" class=\"dark-gray db f6 no-underline nowrap desktop-header-flyout-link mb3\" data-dca-id=\"L:EA8D9512A2\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" href=\"/my-registries\"><i class=\"ld ld-Gift mr2\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\"></i>Registries</a></div></div></li><li class=\"dn db-hdkp ml2 relative\"><span class=\"dib relative w_cWnn br3\" style=\"display: inline;\"><div data-testid=\"language-selection-callout-dweb\" aria-labelledby=\"react-aria6934499459-:r3: react-aria6934499459-:r2:\" id=\"react-aria6934499459-:r3:\"><a link-identifier=\"Account\" class=\"flex items-center no-underline desktop-header-trigger lh-title lh-solid redesign-nav-v2 white hover-bg-navy\" aria-haspopup=\"true\" aria-expanded=\"false\" data-dca-name=\"Account\" role=\"button\" data-dca-id=\"L:87A208F9E9\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" href=\"https://identity.walmart.com/account/login?client_id=5f3fb121-076a-45f6-9587-249f0bc160ff&amp;redirect_uri=https%3A%2F%2Fwww.walmart.com%2Faccount%2FverifyToken&amp;scope=openid+email+offline_access&amp;tenant_id=elh9ie&amp;state=%2Fsearch%3Fq%3Dlaptop%26typeahead%3Dlaptop&amp;code_challenge=-_HxJ9ZB_uooT1NGpd99bC5vmFVL7nFY4WyCo4iTrDc\" style=\"border-radius: 32px; height: 52px; transition: 100ms cubic-bezier(0.77, 0, 0.175, 1);\"><i class=\"ld ld-User\" aria-hidden=\"true\" style=\"font-size: 16px; vertical-align: -0.175em; width: 16px; height: 16px; box-sizing: content-box;\"></i><div class=\"ml2 nowrap\" data-automation-id=\"headerSignIn\"><div class=\"mw3 mw4-hdkp truncate lh-copy f6\" style=\"height: 20px;\">Sign In</div><div class=\"b lh-copy h2 f5\" style=\"margin-top: -4px;\">Account</div></div></a><div class=\"absolute bg-white br3 br--bottom left-0 lh-copy mt3 shadow-1 z-1 dn\" data-testid=\"account-flyout\" style=\"margin-top: 16px; left: 50%; transform: translateX(-50%);\"><div class=\"flex flex-row-reverse\"><div class=\"pa4\"><a class=\"w_hhLG w_8nsR w_0_LY flex mb3 w-100\" href=\"https://identity.walmart.com/account/login?client_id=5f3fb121-076a-45f6-9587-249f0bc160ff&amp;redirect_uri=https%3A%2F%2Fwww.walmart.com%2Faccount%2FverifyToken&amp;scope=openid+email+offline_access&amp;tenant_id=elh9ie&amp;state=%2Fsearch%3Fq%3Dlaptop%26typeahead%3Dlaptop&amp;code_challenge=-_HxJ9ZB_uooT1NGpd99bC5vmFVL7nFY4WyCo4iTrDc\" data-testid=\"sign-in\" data-dca-id=\"B:B6D98B5323\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\">Sign in or create account</a><div class=\"mb3\"><hr aria-hidden=\"true\" class=\"ld_Bl\"></div><a link-identifier=\"Purchase History\" class=\"dark-gray db f6 no-underline nowrap desktop-header-flyout-link\" data-automation-id=\"headerPurchaseHistory\" data-dca-id=\"L:4D91898AF8\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" href=\"/orders\"><i class=\"ld ld-Receipt mr2\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i>Purchase History</a><a link-identifier=\"Walmart Plus\" class=\"dark-gray db f6 no-underline nowrap desktop-header-flyout-link mt3\" data-dca-id=\"L:8CAA26697E\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" href=\"/plus\"><img loading=\"lazy\" class=\"mr2 f5\" src=\"//i5.walmartimages.com/dfw/63fd9f59-30b3/629cc93a-dae2-4b74-afd7-faecce345c85/v1/wplus-indigo-rebrand-bug.svg\" alt=\"Walmart+\" height=\"16\" width=\"16\" style=\"vertical-align: -0.175em; object-fit: contain;\">Walmart+</a><a link-identifier=\"Subscription\" class=\"dark-gray db f6 no-underline nowrap desktop-header-flyout-link mt3\" data-automation-id=\"subscription\" data-dca-id=\"L:B09B7C822E\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" href=\"/cp/subscriptions/4191733\"><i class=\"ld ld-Subscription mr2\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i>Subscriptions</a><div class=\"mt3 mb1\"><hr aria-hidden=\"true\" class=\"ld_Bl\"></div><button type=\"button\" class=\"h4 b--none bn bg-transparent lh-copy mid-gray relative sans-serif tl w-100 pa0 f6 dark-gray db no-underline nowrap nb3\" aria-expanded=\"false\" data-dca-id=\"B:0E4D1F1C3D\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-Globe mr2\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i>Language | English</button></div></div></div></div><div class=\"absolute top-0 left-0 zIndex w_HSo4\" style=\"transform: translate3d(-125.398px, 52px, 0px);\"><div class=\"br2 relative w-auto w_J0V7 w_glti\" style=\"box-shadow: rgba(0, 0, 0, 0.15) 0px 0.1875rem 0.3125rem 0.125rem, rgba(0, 0, 0, 0.1) 0px -0.0625rem 0.1875rem 0px;\"><div class=\"relative flex flex-end items-center br2 pv2\" style=\"background: var(--color-core-blue-160); padding-left: 11px; padding-right: 11px;\"><div class=\"flex flex-row items-center\"><div class=\"white f6 b lh-solid pt0\" style=\"padding: 0px;\"><span class=\"ld_Ej\">Spanish / Español now available!</span><span id=\"react-aria6934499459-:r2:\"><div class=\"flex items-center\"><i class=\"ld ld-Globe mr3\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><div class=\"pr5 dib\"><div class=\"lh-title nowrap\">Spanish / Español</div><div class=\"lh-title nowrap\">now available!</div></div></div></span></div></div><div class=\"flex flex-end\"><button class=\"b--none white f6 pv0 pl0 pr2 no-underline pointer\" type=\"button\" aria-label=\"Close Spanish / Español now available!\" data-dca-id=\"B:CFC44EB526\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" style=\"background: none;\"><i class=\"ld ld-Close absolute\" style=\"font-size: 1rem; vertical-align: -0.175em; top: 8px; right: 8px; width: 1rem; height: 1rem; box-sizing: content-box;\"></i></button></div></div></div></div></span></li><li aria-hidden=\"false\" class=\"undefined\" style=\"transition:opacity .3s\"><div class=\"relative\"><div class=\"cart-button cart-button-wrapper-redesigned ml2 flex justify-center db-hdkp justify-start-hdkp h-auto-hdkp ml2-hdkp flex-column\"><button type=\"button\" class=\"bn bg-transparent br2 flex flex-column items-center pa0 pointer relative sans-serif white hover-bg-dark-primary hover-bg-navy cart-button-redesigned\" style=\"border-radius:32px;transition:all 100ms cubic-bezier(0.77, 0, 0.175, 1);height:52px;padding:2px 12px\" id=\"cart-button-header\" data-automation-id=\"cart-button-header\" aria-label=\"Cart contains 0 items Total Amount $0.00\" data-dca-id=\"B:15DCD02430\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-Cart mr1 white mb1\" style=\"font-size:1.5rem;vertical-align:-0.25em;width:24px;height:24px;box-sizing:content-box\"></i><span class=\"w_nHwa w_r_kp w_Vhrw w_uS24 absolute cart-badge-redesigned\" id=\"cart-badge\" style=\"padding: 0px 4px;\">0</span><span class=\"db nowrap cart-total redesigned-cart-total\">$0.00</span></button></div></div></li></ul></nav></header><div class=\"flex items-center justify-between header-navigation ph4\" style=\"height:48px;background-color:var(--color-core-blue-10)\" data-testid=\"hearder-navigation\" data-dca-id=\"M:13BCE16CC0\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><div class=\"flex items-center w-100\"><nav aria-label=\"Primary\" class=\"flex\"><ul class=\"flex flex-row pa0 ma0 list\"><li data-dca-id=\"fc3bfaae-f787-40e2-431b-c75e8963bb16\"><section class=\"dn db-hdkp br-pill no-underline f6 bg-white\" data-dca-id=\"M:D011F08D22\" data-dca-type=\"module\" data-dca-name=\"__DCA_NAME_TBD__\"><div> <div class=\"relative\"><button type=\"button\" class=\"flex items-center no-underline desktop-header-trigger lh-title b navy secondary-nav-flyout-trigger redesign-secondary-nav-flyout-button-v2 pointer sans-serif bg-transparent b--none \" style=\"border-radius:100px;height:32px;transition:all 100ms cubic-bezier(0.77, 0, 0.175, 1)\" aria-haspopup=\"true\" aria-expanded=\"false\" data-dca-name=\"Departments\" data-dca-id=\"B:B9F3C9A8A7\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\">Departments<i class=\"ld ld-ChevronDown pl2\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\"></i></button><div class=\"absolute bg-white br3 br--bottom left-0 lh-copy mt3 shadow-1 z-1 dn\" data-testid=\"departments-flyout\" style=\"margin-top: 8px; left: 0px; transform: none; margin-left: 0px; max-height: 643px;\"><div></div></div></div> </div></section></li><li data-dca-id=\"ef1c4b45-f2ed-7632-83f8-de890730defb\"><section class=\"dn db-hdkp br-pill no-underline f6 bg-white mh2\" data-dca-id=\"M:D011F08D22\" data-dca-type=\"module\" data-dca-name=\"__DCA_NAME_TBD__\"><div> <div class=\"relative\"><button type=\"button\" class=\"flex items-center no-underline desktop-header-trigger lh-title b navy secondary-nav-flyout-trigger redesign-secondary-nav-flyout-button-v2 pointer sans-serif bg-transparent b--none \" style=\"border-radius:100px;height:32px;transition:all 100ms cubic-bezier(0.77, 0, 0.175, 1)\" aria-haspopup=\"true\" aria-expanded=\"false\" data-dca-name=\"Services\" data-dca-id=\"B:B9F3C9A8A7\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\">Services<i class=\"ld ld-ChevronDown pl2\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\"></i></button><div class=\"absolute bg-white br3 br--bottom left-0 lh-copy mt3 shadow-1 z-1 dn\" data-testid=\"services-flyout\" style=\"margin-top: 8px; left: 0px; transform: none; margin-left: 0px; max-height: 643px;\"><div></div></div></div> </div></section></li></ul></nav><section class=\"flex-auto dn db-m\" data-testid=\"sub-nav-links-container\" data-dca-guid=\"9d2b5930-6480-2bd1-8fe7-34ef34e25139\" data-dca-id=\"M:598B42A7DF\" data-dca-type=\"module\"><nav aria-label=\"Secondary\"><ul class=\"sub-nav-link-container flex-auto list pa0 ma0 f6 flex-wrap cg-2\"><li><section data-dca-id=\"M:2CBCC687F1\" data-dca-type=\"module\"><a link-identifier=\"Get it Fast\" class=\"br-pill no-underline bg-white navy h3 dib\" data-dca-name=\"getItFast\" data-dca-id=\"L:7373CF4511\" href=\"https://www.walmart.com/cp/get-it-fast/6545138\" style=\"padding: 6px 12px;\">Get it Fast</a></section></li><li><section data-dca-id=\"M:2CBCC687F1\" data-dca-type=\"module\"><a link-identifier=\"Rollbacks &amp; More\" class=\"br-pill no-underline bg-white navy h3 dib\" data-dca-name=\"rollbacksMore\" data-dca-id=\"L:7373CF4511\" href=\"https://www.walmart.com/shop/savings\" style=\"padding: 6px 12px;\">Rollbacks &amp; More</a></section></li><li><section data-dca-id=\"M:2CBCC687F1\" data-dca-type=\"module\"><a link-identifier=\"Easter\" class=\"br-pill no-underline bg-white navy h3 dib\" data-dca-name=\"easter\" data-dca-id=\"L:7373CF4511\" href=\"https://www.walmart.com/cp/easter/1102349\" style=\"padding: 6px 12px;\">Easter</a></section></li><li><section data-dca-id=\"M:2CBCC687F1\" data-dca-type=\"module\"><a link-identifier=\"Pharmacy\" class=\"br-pill no-underline bg-white navy h3 dib\" data-dca-name=\"pharmacy\" data-dca-id=\"L:7373CF4511\" href=\"https://www.walmart.com/cp/pharmacy/5431\" style=\"padding: 6px 12px;\">Pharmacy</a></section></li><li><section data-dca-id=\"M:2CBCC687F1\" data-dca-type=\"module\"><a link-identifier=\"New Arrivals\" class=\"br-pill no-underline bg-white navy h3 dib\" data-dca-name=\"newArrivals\" data-dca-id=\"L:7373CF4511\" href=\"https://www.walmart.com/cp/new-arrivals/2593086\" style=\"padding: 6px 12px;\">New Arrivals</a></section></li><li><section data-dca-id=\"M:2CBCC687F1\" data-dca-type=\"module\"><a link-identifier=\"Spring Cleaning\" class=\"br-pill no-underline bg-white navy h3 dib\" data-dca-name=\"springCleaning\" data-dca-id=\"L:7373CF4511\" href=\"https://www.walmart.com/cp/spring-cleaning/9962745\" style=\"padding: 6px 12px;\">Spring Cleaning</a></section></li><li><section data-dca-id=\"M:2CBCC687F1\" data-dca-type=\"module\"><a link-identifier=\"The Baby Event\" class=\"br-pill no-underline bg-white navy h3 dib\" data-dca-name=\"theBabyEvent\" data-dca-id=\"L:7373CF4511\" href=\"https://www.walmart.com/cp/baby-event/1806647\" style=\"padding: 6px 12px;\">The Baby Event</a></section></li><li><section data-dca-id=\"M:2CBCC687F1\" data-dca-type=\"module\"><a link-identifier=\"Dinner Made Easy\" class=\"br-pill no-underline bg-white navy h3 dib\" data-dca-name=\"dinnerMadeEasy\" data-dca-id=\"L:7373CF4511\" href=\"https://www.walmart.com/cp/dinner-tonight/5681029\" style=\"padding: 6px 12px;\">Dinner Made Easy</a></section></li><li><section data-dca-id=\"M:2CBCC687F1\" data-dca-type=\"module\"><a link-identifier=\"My Items\" class=\"br-pill no-underline bg-white navy h3 dib\" data-dca-name=\"myItems\" data-dca-id=\"L:7373CF4511\" href=\"https://www.walmart.com/my-items\" style=\"padding: 6px 12px;\">My Items</a></section></li><li><section data-dca-id=\"M:2CBCC687F1\" data-dca-type=\"module\"><a link-identifier=\"Only at Walmart\" class=\"br-pill no-underline bg-white navy h3 dib\" data-dca-name=\"onlyAtWalmart\" data-dca-id=\"L:7373CF4511\" href=\"https://www.walmart.com/cp/only-at-walmart/2119250\" style=\"padding: 6px 12px;\">Only at Walmart</a></section></li><li><section data-dca-id=\"M:2CBCC687F1\" data-dca-type=\"module\"><a link-identifier=\"Credit Card\" class=\"br-pill no-underline bg-white navy h3 dib\" data-dca-name=\"creditCard\" data-dca-id=\"L:7373CF4511\" href=\"https://www.walmart.com/cp/9435689?utm_content=WMD-CRD-HPGN\" style=\"padding: 6px 12px;\">Credit Card</a></section></li><li><section data-dca-id=\"M:2CBCC687F1\" data-dca-type=\"module\"><a link-identifier=\"Walmart+\" class=\"br-pill no-underline bg-white navy h3 dib\" data-dca-name=\"walmart\" data-dca-id=\"L:7373CF4511\" href=\"https://www.walmart.com/plus\" style=\"padding: 6px 12px;\">Walmart+</a></section></li></ul></nav></section></div></div></span><div class=\"flex flex-column flex-auto relative z-0\" aria-hidden=\"false\"><div class=\"white sticky z-3 gic-wrapper gic-wrapper-redesign-top layout-gic-wrapper\" id=\"gic-wrapper\" data-testid=\"gic-wrapper\" style=\"min-height:41px;transition:top 0.65s\"><hr aria-hidden=\"true\" class=\"ld_Bl banner-divider redesign\"><div class=\"items-center flex flex-auto ph3 ph4-m pv1 gic-container redesignv2\"><div class=\"flex items-center h3\"><img loading=\"lazy\" alt=\"Banner title icon\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-ad46/k2-_0a671c38-d307-447c-835e-7904ab143c26.v1.png\" width=\"32\" height=\"32\" class=\"mr2 br-100 v-btm\"><span class=\"b f5\">Pickup or delivery?</span></div></div></div><div class=\"flex-auto relative z-1\" data-testid=\"main-content-container\"><div class=\"main-content mw1600 center\" id=\"maincontent\" data-testid=\"maincontent\" data-dca-type=\"page\"><main data-sis-url=\"http://preso-usgm-prod.wmt/v2/search?query=laptop&amp;facet=&amp;stores=3081&amp;cat_id=&amp;sort=best_match&amp;page=1&amp;min_price=&amp;max_price=&amp;spelling=true&amp;ptss=&amp;trsp=&amp;isMoreOptionsTileEnabled=true&amp;autoOptIn=false&amp;multiStoreIds=&amp;prg=desktop&amp;storeSlotBooked=&amp;stateOrProvinceCode=CA&amp;ps=40&amp;zipcode=95829&amp;recall_set=&amp;pageType=SearchPage&amp;inCatchment=true&amp;extended_zipcode=95829&amp;addressId=&amp;customerContext=%7B%22customerId%22%3Anull%2C%22isPaidMember%22%3Afalse%2C%22isActiveMember%22%3Afalse%2C%22purseTags%22%3A%5B%5D%2C%22paymentMethodMetaData%22%3A%5B%5D%7D&amp;pickupStore=3081&amp;deliveryStore=3081&amp;subIntentSource=LS&amp;isMsEnabled=true&amp;allowedWICAgencies=CA&amp;pickupWICAgencies=CA&amp;deliveryWICAgencies=CA&amp;isDefaulted=true&amp;ffAwareSearchOptOut=false&amp;isGenAiEnabled=true&amp;nudge_context=&amp;isModuleArrayReq=false&amp;pickupStoreStateOrProvinceCode=CA\" data-ads-url=\"http://swag-wmt.prod.walmart.com/fs?storeSlotBooked=&amp;prg=desktop&amp;limit=40&amp;query=laptop&amp;cat_id=&amp;facet=&amp;page=1&amp;ps=16&amp;min_price=&amp;max_price=&amp;sort=best_match&amp;spelling=true&amp;recall_set=&amp;ptss=&amp;pageType=SearchPage&amp;trsp=&amp;ffAwareSearchOptOut=false&amp;enableSlaBadgeV2=false&amp;zipcode=95829&amp;stores=3081&amp;stateOrProvinceCode=CA&amp;extended_zipcode=95829&amp;addressId=&amp;inCatchment=true&amp;multiStoreIds=&amp;autoOptIn=false&amp;isMoreOptionsTileEnabled=true&amp;isGenAiEnabled=true&amp;rootDimension=&amp;altQuery=&amp;selectedFilter=&amp;neuralSearchSeeAll=false&amp;isModuleArrayReq=false&amp;isLMPBrowsePage=false&amp;isDefaulted=true&amp;pickupStoreStateOrProvinceCode=CA&amp;allowedWICAgencies=CA&amp;pickupWICAgencies=CA&amp;deliveryWICAgencies=CA&amp;isMsEnabled=true&amp;customerContext=%7B%22customerId%22%3Anull%2C%22isPaidMember%22%3Afalse%2C%22isActiveMember%22%3Afalse%2C%22purseTags%22%3A%5B%5D%2C%22paymentMethodMetaData%22%3A%5B%5D%7D&amp;pickupStore=3081&amp;deliveryStore=3081&amp;subIntentSource=LS&amp;nudge_context=&amp;msOn=true&amp;isMosaic=false\"><div data-testid=\"flex-container\" class=\"flex flex-column h-100\"><div class=\"h-100 relative\"><div data-testid=\"flex-container\" class=\"flex flex-column h-100\"><div class=\"h-100 relative\"><div data-testid=\"skyline-ad\" style=\"height:55px;margin:0;overflow:hidden\"><div class=\"w_3jM4 pa0\" id=\"SEARCH-SkylineDisplayAd-top-laptop-\"><span data-testid=\"UnfilledAd\"></span></div></div> <section data-dca-type=\"module\" data-dca-id=\"M:2D7B4700FA\" data-dca-name=\"__DCA_NAME_TBD__\"><span><div class=\"mw-xl pa4-l pa3\"><div class=\"ld_BR\"><div data-testid=\"sba-container\" class=\"\" style=\"display:flex;--noop:noop\"><div class=\"flex  pl3 pv3 pl4-m w-50 flex-column w-30-l\"><div class=\"relative flex flex-column flex-grow-1  w-85 w-65-l\"><a link-identifier=\"Generic Name\" style=\"height:90px\" data-dca-id=\"L:5F4DDD9FC8\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sb-search-top~desktop~&amp;pos=1&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fbrowse%2Fwindows-11%2F0%3F_refineresult%3Dtrue%26_be_shelf_id%3D8168629%26search_sort%3D100%26facet%3Dshelf_id%253A8168629%257C%257Cretailer_type%253AWalmart%26adsRedirect%3Dtrue&amp;adUid=567fa63e-8e48-4a23-9bd5-1e563d6313ad&amp;mloc=sb-search-top&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=B-0ORuQ6BMVYu5ErviP0wtvLNeZ7zCQrsRq11qyo3B7qj4DCOTc4BRXtwMG4wY2qwca2aGn6I3vdZLCuF3Ka4mSJM_Nw7vFdGcq_Yd8rHL_rSaukVFCHigTX5chSdBRKEr61fpnu3xguuDezpqCR_tbZVQcA1cUiOLoKzOCRwmX4o0sq8PCQs5mxfTJ1ZwXLvQVqmXSsXMuO5BhMYWDGfhJYQopp8oJZLPpywhQUiKA&amp;storeId=3081&amp;bkt=ace1_13644%7Cace2_default%7Cace3_default&amp;addlInfo=~sbaItems%7C13566207291%7C13736423867%7C13509901545~\"><div class=\"\"><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/dfw/f4368c8c-a7e5/k2-_f4fb10ee-1b1d-41e6-8ca9-f3a80522deca.v1.png?odnHeight=90&amp;odnWidth=150&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/dfw/f4368c8c-a7e5/k2-_f4fb10ee-1b1d-41e6-8ca9-f3a80522deca.v1.png?odnHeight=180&amp;odnWidth=300&amp;odnBg=FFFFFF 2x\" alt=\"Windows 11\" class=\"mw-none mb2\" src=\"https://i5.walmartimages.com/dfw/f4368c8c-a7e5/k2-_f4fb10ee-1b1d-41e6-8ca9-f3a80522deca.v1.png?odnHeight=90&amp;odnWidth=150&amp;odnBg=FFFFFF\" width=\"150\" height=\"90\"></div></a><div class=\"h-100\"><a link-identifier=\"Generic Name\" class=\"no-underline\" data-dca-id=\"L:D190B0746A\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sb-search-top~desktop~&amp;pos=1&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fbrowse%2Fwindows-11%2F0%3F_refineresult%3Dtrue%26_be_shelf_id%3D8168629%26search_sort%3D100%26facet%3Dshelf_id%253A8168629%257C%257Cretailer_type%253AWalmart%26adsRedirect%3Dtrue&amp;adUid=567fa63e-8e48-4a23-9bd5-1e563d6313ad&amp;mloc=sb-search-top&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=B-0ORuQ6BMVYu5ErviP0wtvLNeZ7zCQrsRq11qyo3B7qj4DCOTc4BRXtwMG4wY2qwca2aGn6I3vdZLCuF3Ka4mSJM_Nw7vFdGcq_Yd8rHL_rSaukVFCHigTX5chSdBRKEr61fpnu3xguuDezpqCR_tbZVQcA1cUiOLoKzOCRwmX4o0sq8PCQs5mxfTJ1ZwXLvQVqmXSsXMuO5BhMYWDGfhJYQopp8oJZLPpywhQUiKA&amp;storeId=3081&amp;bkt=ace1_13644%7Cace2_default%7Cace3_default&amp;addlInfo=~sbaItems%7C13566207291%7C13736423867%7C13509901545~\"><div class=\"flex flex-column word-break\"><span class=\"dark-gray f3-m f6 word-normal fw7 mt0 lh-copy\"><span class=\"ld_B4\" style=\"-webkit-line-clamp:3;padding-bottom:0em;margin-bottom:-0em\">Discover to latest from Windows</span></span><span class=\"gray normal f5-m f7 mb2-xl lh-copy\"><span class=\"ld_B4\" style=\"-webkit-line-clamp:2;padding-bottom:0em;margin-bottom:-0em\">Sponsored by Windows 11</span></span></div></a><div class=\"bottom-0 z-2 dn db-m left-0\"><a link-identifier=\"Generic Name\" data-dca-id=\"L:CE29C58783\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sb-search-top~desktop~&amp;pos=1&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fbrowse%2Fwindows-11%2F0%3F_refineresult%3Dtrue%26_be_shelf_id%3D8168629%26search_sort%3D100%26facet%3Dshelf_id%253A8168629%257C%257Cretailer_type%253AWalmart%26adsRedirect%3Dtrue&amp;adUid=567fa63e-8e48-4a23-9bd5-1e563d6313ad&amp;mloc=sb-search-top&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=B-0ORuQ6BMVYu5ErviP0wtvLNeZ7zCQrsRq11qyo3B7qj4DCOTc4BRXtwMG4wY2qwca2aGn6I3vdZLCuF3Ka4mSJM_Nw7vFdGcq_Yd8rHL_rSaukVFCHigTX5chSdBRKEr61fpnu3xguuDezpqCR_tbZVQcA1cUiOLoKzOCRwmX4o0sq8PCQs5mxfTJ1ZwXLvQVqmXSsXMuO5BhMYWDGfhJYQopp8oJZLPpywhQUiKA&amp;storeId=3081&amp;bkt=ace1_13644%7Cace2_default%7Cace3_default&amp;addlInfo=~sbaItems%7C13566207291%7C13736423867%7C13509901545~\"><button class=\"w_hhLG w_XK4d w_0_LY\" type=\"button\" data-dca-id=\"B:39C0D3AAC8\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\">Shop now</button></a></div></div></div></div><div class=\"overflow-x-auto w-100 w-90-m w-80 w-50-m\" style=\"padding-top:16px;padding-bottom:16px\"><div class=\"flex flex-row\" data-testid=\"products\"><div class=\"flex-grow-1 pr3 w-20-l w-50-m w-35\"><div role=\"group\" data-item-id=\"13566207291\" data-dca-guid=\"13566207291\" data-dca-id=\"13566207291\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 \" data-test-id=\"gpt-main\"><a link-identifier=\"13566207291\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sb-search-top~desktop~&amp;pos=2&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver%2F13566207291%3FadsRedirect%3Dtrue&amp;adUid=567fa63e-8e48-4a23-9bd5-1e563d6313ad&amp;mloc=sb-search-top&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=EqUAAe56SwyHso94Uj7FEV2wH2jGVkQgIXSSlOq8yGK-e4xiXpJTM-magQE5DBHCxQBCXQ5xBon5e6yc1QUnASTgpKbS2GXZISXpA8yB62MAPSmgq94Vcnz4N3hoqxg1CKS6rrQ-mufZoxaRMS9QRBQmjr0xbf_D85st4e5BQiQRwLrNik0EN6YEN2MUGpESxHj4PqRhI5BiyHHtrMt-3zWnCrxMvenaM866OtIfCsk&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_13644%7Cace2_default%7Cace3_default&amp;/ip/ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver/13566207291\"><span class=\"ld_Ej\"><h3>ASUS Vivobook 15.6” FHD Laptop with Intel i5-1334U, Intel UHD Graphics, 8GB RAM, 512GB SSD, Cool Silver $399.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"relative overflow-hidden\" style=\"max-width:144px;height:auto;padding-bottom:min(144px, 100%);align-self:center;width:144px;justify-self:center\"><img loading=\"eager\" src=\"https://i5.walmartimages.com/seo/ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver_ec382747-3630-476f-b757-27850fd5268d.1cb2e27459fdb9f8d341c4c0b104c191.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"ASUS Vivobook 15.6” FHD Laptop with Intel i5-1334U, Intel UHD Graphics, 8GB RAM, 512GB SSD, Cool Silver\" style=\"object-fit:contain\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative dib flex-row-reverse\" data-id=\"13566207291\"><button class=\"w_hhLG w_8nsR w_0_LY pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add - ASUS Vivobook 15.6” FHD Laptop with Intel i5-1334U, Intel UHD Graphics, 8GB RAM, 512GB SSD, Cool Silver\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" style=\"font-size:1.5rem;vertical-align:-0.25em;width:1.5rem;height:1.5rem;box-sizing:content-box\" title=\"add to cart\"></i><span class=\"mr2\">Add</span></button></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align:0.65ex;margin-right:2px\">$</span><span class=\"f2\">399</span><span class=\"f6 f5-l\" style=\"vertical-align:0.75ex\">00</span></div><span class=\"ld_Ej\">current price $399.00</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 2; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">ASUS Vivobook 15.6” FHD Laptop with Intel i5-1334U, Intel UHD Graphics, 8GB RAM, 512GB SSD, Cool Silver</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"188\">188</span><span class=\"ld_Ej\">4.1 out of 5 Stars. 188 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"></div></div></div></div></div></div><div class=\"flex-grow-1 pr3 w-20-l w-50-m w-35\"><div role=\"group\" data-item-id=\"13736423867\" data-dca-guid=\"13736423867\" data-dca-id=\"13736423867\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 \" data-test-id=\"gpt-main\"><a link-identifier=\"13736423867\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sb-search-top~desktop~&amp;pos=3&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i9-13900H-16GB-RAM-1TB-NVMe-SSD-Cool-Silver%2F13736423867%3FadsRedirect%3Dtrue&amp;adUid=567fa63e-8e48-4a23-9bd5-1e563d6313ad&amp;mloc=sb-search-top&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=mUqqChUvHrigGvsjKHjXcJxxOMHMrqSzi0sgrNxa0Fi-e4xiXpJTM-magQE5DBHCxQBCXQ5xBon5e6yc1QUnASTgpKbS2GXZISXpA8yB62MAPSmgq94Vcnz4N3hoqxg1CKS6rrQ-mufZoxaRMS9QRBQmjr0xbf_D85st4e5BQiQRwLrNik0EN6YEN2MUGpESxHj4PqRhI5BiyHHtrMt-3zWnCrxMvenaM866OtIfCsk&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_13644%7Cace2_default%7Cace3_default&amp;/ip/ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i9-13900H-16GB-RAM-1TB-NVMe-SSD-Cool-Silver/13736423867\"><span class=\"ld_Ej\"><h3>Rollback ASUS Vivobook 16 Laptop, Intel® Core™ i9-13900H, 16GB, 1TB, Windows 11 Home, Cool Silver, F1605VA-WS96 $719.00 Was $849.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap:8px\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" style=\"background:#DE1C24;margin-top:0px;padding:4px 8px 4px 4px;display:flex;align-items:flex-start;flex-direction:column;border-radius:4px\" role=\"group\" data-testid=\"badgeTagComponent\"><span class=\"flex truncate w-100 items-center\"><i class=\"ld ld-Rollback flex items-center justify-center\" style=\"font-size:1rem;vertical-align:-0.175em;width:14px;height:12px;padding:2px 1px;margin-right:4px;box-sizing:content-box\" aria-label=\"\" role=\"img\" aria-hidden=\"true\"></i><span class=\"w_yTSq f6-m f7 dib w_0aYG w_MwbK\" style=\"color:#FFFFFF;line-height:16px;font-weight:700;white-space:pre;margin-right:4px;vertical-align:middle\">Rollback</span></span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width:144px;height:auto;padding-bottom:min(144px, 100%);align-self:center;width:144px;justify-self:center\"><img loading=\"eager\" src=\"https://i5.walmartimages.com/seo/ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i9-13900H-16GB-RAM-1TB-NVMe-SSD-Cool-Silver_95b455b3-cf70-4603-8ef0-529c8eb322fd.80b7caac4a8472d8fd43dbd3b5a4d5e4.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"ASUS Vivobook 16 Laptop, Intel® Core™ i9-13900H, 16GB, 1TB, Windows 11 Home, Cool Silver, F1605VA-WS96\" style=\"object-fit:contain\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative dib flex-row-reverse\" data-id=\"13736423867\"><button class=\"w_hhLG w_8nsR w_0_LY pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add - ASUS Vivobook 16 Laptop, Intel® Core™ i9-13900H, 16GB, 1TB, Windows 11 Home, Cool Silver, F1605VA-WS96\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" style=\"font-size:1.5rem;vertical-align:-0.25em;width:1.5rem;height:1.5rem;box-sizing:content-box\" title=\"add to cart\"></i><span class=\"mr2\">Add</span></button></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align:0.65ex;margin-right:2px\">$</span><span class=\"f2\">719</span><span class=\"f6 f5-l\" style=\"vertical-align:0.75ex\">00</span></div><span class=\"ld_Ej\">current price Now $719.00, Was $849.99</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$849.99</span></div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 2; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">ASUS Vivobook 16 Laptop, Intel® Core™ i9-13900H, 16GB, 1TB, Windows 11 Home, Cool Silver, F1605VA-WS96</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"110\">110</span><span class=\"ld_Ej\">4.6 out of 5 Stars. 110 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"></div></div></div></div></div></div><div class=\"flex-grow-1 pr3 w-20-l w-50-m w-35\"><div role=\"group\" data-item-id=\"13509901545\" data-dca-guid=\"13509901545\" data-dca-id=\"13509901545\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 \" data-test-id=\"gpt-main\"><a link-identifier=\"13509901545\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sb-search-top~desktop~&amp;pos=4&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FASUS-Zenbook-14-14-WUXGA-OLED-Touch-Laptop-Copilot-PC-with-AMD-Ryzen-AI-7-350-AMD-Radeon-Graphics-32GB-RAM-1TB-NVMe-SSD-Jade-Black%2F13509901545%3FadsRedirect%3Dtrue&amp;adUid=567fa63e-8e48-4a23-9bd5-1e563d6313ad&amp;mloc=sb-search-top&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=q8cJDqNIMRrVbfEJl3gTSkt9Tln4CxCOOxRR9Cg8_vq-e4xiXpJTM-magQE5DBHCxQBCXQ5xBon5e6yc1QUnASTgpKbS2GXZISXpA8yB62MAPSmgq94Vcnz4N3hoqxg1CKS6rrQ-mufZoxaRMS9QRBQmjr0xbf_D85st4e5BQiQRwLrNik0EN6YEN2MUGpESxHj4PqRhI5BiyHHtrMt-3zWnCrxMvenaM866OtIfCsk&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_13644%7Cace2_default%7Cace3_default&amp;/ip/ASUS-Zenbook-14-14-WUXGA-OLED-Touch-Laptop-Copilot-PC-with-AMD-Ryzen-AI-7-350-AMD-Radeon-Graphics-32GB-RAM-1TB-NVMe-SSD-Jade-Black/13509901545\"><span class=\"ld_Ej\"><h3>ASUS Zenbook 14 inch OLED WUXGA Touch Windows Laptop AMD Ryzen AI7 32GB RAM 1TB SSD Jade Black $979.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"relative overflow-hidden\" style=\"max-width:144px;height:auto;padding-bottom:min(144px, 100%);align-self:center;width:144px;justify-self:center\"><img loading=\"eager\" src=\"https://i5.walmartimages.com/seo/ASUS-Zenbook-14-14-WUXGA-OLED-Touch-Laptop-Copilot-PC-with-AMD-Ryzen-AI-7-350-AMD-Radeon-Graphics-32GB-RAM-1TB-NVMe-SSD-Jade-Black_85116be3-1e71-4878-8086-2c9cb82e07d7.c019b15a0da057e6b80e2da3f2b1d08a.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"ASUS Zenbook 14 inch OLED WUXGA Touch Windows Laptop AMD Ryzen AI7 32GB RAM 1TB SSD Jade Black\" style=\"object-fit:contain\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative dib flex-row-reverse\" data-id=\"13509901545\"><button class=\"w_hhLG w_8nsR w_0_LY pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add - ASUS Zenbook 14 inch OLED WUXGA Touch Windows Laptop AMD Ryzen AI7 32GB RAM 1TB SSD Jade Black\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" style=\"font-size:1.5rem;vertical-align:-0.25em;width:1.5rem;height:1.5rem;box-sizing:content-box\" title=\"add to cart\"></i><span class=\"mr2\">Add</span></button></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align:0.65ex;margin-right:2px\">$</span><span class=\"f2\">979</span><span class=\"f6 f5-l\" style=\"vertical-align:0.75ex\">00</span></div><span class=\"ld_Ej\">current price $979.00</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 2; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">ASUS Zenbook 14 inch OLED WUXGA Touch Windows Laptop AMD Ryzen AI7 32GB RAM 1TB SSD Jade Black</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"251\">251</span><span class=\"ld_Ej\">4.2 out of 5 Stars. 251 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"></div></div></div></div></div></div></div></div></div></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></span></section> <div data-testid=\"fixed-wrapper-placeholder\" style=\"min-height:64px\"><div class=\"bg-white\" data-testid=\"fixed-wrapper\" style=\"top: 132px; min-height: 64px;\"><div class=\"\"><section data-dca-type=\"module\" data-dca-id=\"M:AE97226607\" data-dca-name=\"__DCA_NAME_TBD__\"><section aria-label=\"Sort and Filter section\" class=\"w-100 flex flex-shrink-0 hidesb hidesb-wk pl3 ph4-xl relative z-10 bg-white pv3\" style=\"min-height:64px;overflow-x:auto\"><div class=\"w_J9Nk flex-shrink-0 facet-popover\"><div class=\"flex flex-row flex-shrink-0 items-center br-pill mr2\" data-testid=\"filter_chip_fulfillment_method_in_store\"><button type=\"button\" class=\"f6 pv2 br-pill normal sans-serif flex  hover-bg-washed-blue ba b--gray bg-white bg-near-white dark-gray pointer\" aria-label=\"Filter by In-store\" role=\"switch\" aria-checked=\"false\" data-dca-intent=\"deselect\" data-dca-id=\"B:BD1E669580\" data-dca-event=\"__DCA_EVENT_TBD__\"><span class=\"flex ph2\"><i class=\"ld ld-Store\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" data-testid=\"Store-icon\"></i></span><span class=\"flex pointer pr3\" aria-hidden=\"true\">In-store</span></button></div><div id=\"react-aria-:Rr5aqr8n5aqaljud6:\"></div></div><div class=\"w_J9Nk flex-shrink-0 facet-popover\"><div class=\"flex flex-row flex-shrink-0 items-center br-pill mr2\" data-testid=\"filter_chip_fulfillment_speed\"><button type=\"button\" class=\"f6 pv2 br-pill normal sans-serif flex  hover-bg-washed-blue ba b--gray bg-white bg-near-white dark-gray pointer\" aria-label=\"Filter by Get it fast\" role=\"switch\" aria-checked=\"false\" data-dca-intent=\"deselect\" data-dca-id=\"B:BD1E669580\" data-dca-event=\"__DCA_EVENT_TBD__\"><span class=\"flex ph2\"><i class=\"ld ld-FlashFill\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" data-testid=\"FlashFill-icon\"></i></span><span class=\"flex pointer pr3\" aria-hidden=\"true\">Get it fast</span></button></div><div id=\"react-aria-:R1b5aqr8n5aqaljud6:\"></div></div><div class=\"w_J9Nk flex-shrink-0 facet-popover\"><div class=\"flex flex-row flex-shrink-0 items-center br-pill mr2\" data-testid=\"filter_chip_all_deals\"><button type=\"button\" class=\"f6 pv2 br-pill normal sans-serif flex  hover-bg-washed-blue ba b--gray bg-white bg-near-white dark-gray pointer\" aria-label=\"Filter by All deals\" role=\"switch\" aria-checked=\"false\" data-dca-intent=\"deselect\" data-dca-id=\"B:BD1E669580\" data-dca-event=\"__DCA_EVENT_TBD__\"><span class=\"flex ph2 dark-green\"><i class=\"ld ld-TagFill\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" data-testid=\"TagFill-icon\"></i></span><span class=\"flex pointer pr3\" aria-hidden=\"true\">All deals</span></button></div><div id=\"react-aria-:R1r5aqr8n5aqaljud6:\"></div></div><div class=\"w_J9Nk flex-shrink-0 facet-popover\"><div class=\"flex flex-row flex-shrink-0 items-center br-pill mr2\" data-testid=\"filter_chip_price\"><button type=\"button\" class=\"f6 pv2 br-pill normal sans-serif flex  hover-bg-washed-blue ba b--gray bg-white bg-near-white dark-gray pointer\" aria-label=\"Filter by Price not applied, activate to change\" aria-expanded=\"false\" data-dca-intent=\"deselect\" data-dca-id=\"B:BD1E669580\" data-dca-event=\"__DCA_EVENT_TBD__\"><span class=\"flex ph2\"><i class=\"ld ld-MoneyCircle\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" data-testid=\"MoneyCircle-icon\"></i></span><span class=\"flex pointer\" aria-hidden=\"true\">Price</span><i class=\"ld ld-ChevronDown mh2\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\"></i></button></div><div id=\"react-aria-:R2b5aqr8n5aqaljud6:\"></div></div><div class=\"w_J9Nk flex-shrink-0 facet-popover\"><div class=\"flex flex-row flex-shrink-0 items-center br-pill mr2\" data-testid=\"filter_chip_brand\"><button type=\"button\" class=\"f6 pv2 br-pill normal sans-serif flex  hover-bg-washed-blue ba b--gray bg-white bg-near-white dark-gray pointer\" aria-label=\"Filter by Brand not applied, activate to change\" aria-expanded=\"false\" data-dca-intent=\"deselect\" data-dca-id=\"B:BD1E669580\" data-dca-event=\"__DCA_EVENT_TBD__\"><span class=\"flex pointer pl3\" aria-hidden=\"true\">Brand</span><i class=\"ld ld-ChevronDown mh2\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\"></i></button></div><div id=\"react-aria-:R2r5aqr8n5aqaljud6:\"></div></div><div class=\"flex flex-row items-center ml-auto flex-shrink-0 dark-grey\"><span class=\"b mh2\">Sort by</span>|<div class=\"w_J9Nk flex-shrink-0\"><button type=\"button\" class=\"bw0 bg-white sans-serif pointer pa1\" aria-label=\"Sort by Best Match\" aria-expanded=\"false\" data-dca-intent=\"deselect\" data-dca-id=\"B:631239C07B\" data-dca-event=\"unknown\" aria-controls=\"react-aria-:R1v5aqr8n5aqaljud6:\">Best Match<i class=\"ld ld-ChevronDown pa0 ml6\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\"></i></button><div id=\"react-aria-:R1v5aqr8n5aqaljud6:\"></div></div></div></section></section></div></div></div><hr aria-hidden=\"true\" class=\"w_8Gn9\"> <section class=\"pv3\" aria-label=\"Quick refinements\"><div class=\"flex flex-column justify-center relative\" data-testid=\"horizontal-scroller-chipModuleWithImages\" data-dca-id=\"d80c120b-3158-42ac-9525-9b22e6c4fbac\" data-dca-name=\"ui_horizontal_scroller:chipModuleWithImages\" data-dca-type=\"module\"><a link-identifier=\"horizontalScrollerPrevious\" class=\"absolute dn z-5 bg-white br-100 pa0 pointer br-100 nav-control left-1\" aria-label=\"Previous slide for chipModuleWithImages list\" aria-disabled=\"true\" data-testid=\"horizontal-scroller-previous\" data-dca-intent=\"swipeRight\" tabindex=\"0\" role=\"button\" data-dca-id=\"L:725BAF5955\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-ChevronLeft\" style=\"font-size:1.5rem;vertical-align:-0.25em;padding:12px;width:1.5rem;height:1.5rem;box-sizing:content-box\"></i></a><ul data-testid=\"carousel-container\" style=\"display:flex;grid-auto-flow:column;max-height:fit-content\" class=\"list ma0 pl0 overflow-x-scroll hidesb hidesb-wk relative overflow-y-hidden pl3 spl3 pl4-xl\" data-dca-id=\"M:E7C153FCB8\" data-dca-type=\"module\" data-dca-name=\"__DCA_NAME_TBD__\"><li class=\"flex flex-column items-center\" data-slide=\"0\" style=\"scroll-snap-align: start;\"><a link-identifier=\"Laptop Savings click\" class=\"w5 pointer tc linkClass link\" style=\"width:104px\" role=\"link\" aria-current=\"false\" data-dca-id=\"L:0AB651A83D\" href=\"/shop/savings/electronics/computers?cat_id=3944_1089430_3951_132960&amp;povid=ETS_D72_Computing_NA_VF_SAV_SB-AllLaptopComputers_ComputerSavings\"><div class=\"overflow-hidden relative tc mh3\" style=\"height:72px\" data-testid=\"image-chip-container\"><img loading=\"lazy\" class=\"left-0 bottom-0 absolute mw-100\" style=\"object-fit:contain\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-efeb/k2-_dbf1a207-8dac-4862-982e-f7ed93e55bc2.v1.jpg\" alt=\"\" height=\"100%\" width=\"100%\"></div><div class=\"black mt2 mb1 lh-solid ph1\" style=\"color:#000000\">Laptop Savings</div></a></li><li class=\"flex flex-column items-center\" data-slide=\"1\"><a link-identifier=\"Get it Today click\" class=\"w5 pointer tc linkClass link\" style=\"width:104px\" role=\"link\" aria-current=\"false\" data-dca-id=\"L:0AB651A83D\" href=\"/browse/electronics/all-laptop-computers/3944_1089430_3951_132960?facet=fulfillment_speed%3AToday&amp;povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_GetitTodayLaptops\"><div class=\"overflow-hidden relative tc mh3\" style=\"height:72px\" data-testid=\"image-chip-container\"><img loading=\"lazy\" class=\"left-0 bottom-0 absolute mw-100\" style=\"object-fit:contain\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-4ad6/k2-_cafd4fcd-05a4-4639-950f-e5dd6ce46be3.v1.png\" alt=\"\" height=\"100%\" width=\"100%\"></div><div class=\"black mt2 mb1 lh-solid ph1\" style=\"color:#000000\">Get it Today</div></a></li><li class=\"flex flex-column items-center\" data-slide=\"2\"><a link-identifier=\"Laptop Editors' Picks click\" class=\"w5 pointer tc linkClass link\" style=\"width:104px\" role=\"link\" aria-current=\"false\" data-dca-id=\"L:0AB651A83D\" href=\"/shop/tech/editors-picks?catId=3944_1089430_132960&amp;povid=ETS_computing_facet_searchbrowse_editorspicks\"><div class=\"overflow-hidden relative tc mh3\" style=\"height:72px\" data-testid=\"image-chip-container\"><img loading=\"lazy\" class=\"left-0 bottom-0 absolute mw-100\" style=\"object-fit:contain\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-c2f3/k2-_ab7bf06f-b9f6-4977-9d78-0f0dc9e00c78.v1.jpg\" alt=\"\" height=\"100%\" width=\"100%\"></div><div class=\"black mt2 mb1 lh-solid ph1\" style=\"color:#000000\">Laptop Editors' Picks</div></a></li><li class=\"flex flex-column items-center\" data-slide=\"3\"><a link-identifier=\"Windows Laptops click\" class=\"w5 pointer tc linkClass link\" style=\"width:104px\" role=\"link\" aria-current=\"false\" data-dca-id=\"L:0AB651A83D\" href=\"/browse/electronics/windows-os-laptops/3944_1089430_3951_8835131_1737838?povid=ETS_computing_facet_searchbrowse_windowslaptops\"><div class=\"overflow-hidden relative tc mh3\" style=\"height:72px\" data-testid=\"image-chip-container\"><img loading=\"lazy\" class=\"left-0 bottom-0 absolute mw-100\" style=\"object-fit:contain\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-b87b/k2-_73247cc3-8ae2-49d6-a711-ac9602e450ea.v1.jpg\" alt=\"\" height=\"100%\" width=\"100%\"></div><div class=\"black mt2 mb1 lh-solid ph1\" style=\"color:#000000\">Windows Laptops</div></a></li><li class=\"flex flex-column items-center\" data-slide=\"4\"><a link-identifier=\"Gaming Laptops click\" class=\"w5 pointer tc linkClass link\" style=\"width:104px\" role=\"link\" aria-current=\"false\" data-dca-id=\"L:0AB651A83D\" href=\"/browse/electronics/gaming-laptops/3944_1089430_3951_1230091_1094888?povid=ETS_computing_facet_searchbrowse_gaminglaptops\"><div class=\"overflow-hidden relative tc mh3\" style=\"height:72px\" data-testid=\"image-chip-container\"><img loading=\"lazy\" class=\"left-0 bottom-0 absolute mw-100\" style=\"object-fit:contain\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-200a/k2-_58a9cea1-5629-4b47-807b-d4974b1c761d.v1.jpg\" alt=\"\" height=\"100%\" width=\"100%\"></div><div class=\"black mt2 mb1 lh-solid ph1\" style=\"color:#000000\">Gaming Laptops</div></a></li><li class=\"flex flex-column items-center\" data-slide=\"5\"><a link-identifier=\"Chromebooks click\" class=\"w5 pointer tc linkClass link\" style=\"width:104px\" role=\"link\" aria-current=\"false\" data-dca-id=\"L:0AB651A83D\" href=\"/browse/electronics/google-chromebooks/3944_1089430_3951_1230091_1103213?povid=ETS_computing_facet_searchbrowse_chromebooks\"><div class=\"overflow-hidden relative tc mh3\" style=\"height:72px\" data-testid=\"image-chip-container\"><img loading=\"lazy\" class=\"left-0 bottom-0 absolute mw-100\" style=\"object-fit:contain\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-aea4/k2-_95a85f70-32c6-49c2-aeff-c5680998e52e.v1.jpg\" alt=\"\" height=\"100%\" width=\"100%\"></div><div class=\"black mt2 mb1 lh-solid ph1\" style=\"color:#000000\">Chromebooks</div></a></li><li class=\"flex flex-column items-center\" data-slide=\"6\"><a link-identifier=\"MacBooks click\" class=\"w5 pointer tc linkClass link\" style=\"width:104px\" role=\"link\" aria-current=\"false\" data-dca-id=\"L:0AB651A83D\" href=\"/browse/electronics/all-apple-macbook/3944_1089430_3951_8945805_4431341?povid=ETS_computing_facet_searchbrowse_macbooks\"><div class=\"overflow-hidden relative tc mh3\" style=\"height:72px\" data-testid=\"image-chip-container\"><img loading=\"lazy\" class=\"left-0 bottom-0 absolute mw-100\" style=\"object-fit:contain\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-9f4a/k2-_f7789819-f2ee-4af4-9ac6-94dc41d29727.v1.png\" alt=\"\" height=\"100%\" width=\"100%\"></div><div class=\"black mt2 mb1 lh-solid ph1\" style=\"color:#000000\">MacBooks</div></a></li><li class=\"flex flex-column items-center\" data-slide=\"7\"><a link-identifier=\"Touchscreen Laptops click\" class=\"w5 pointer tc linkClass link\" style=\"width:104px\" role=\"link\" aria-current=\"false\" data-dca-id=\"L:0AB651A83D\" href=\"/browse/electronics/touchscreen-laptops/3944_1089430_3951_1230091_1101633?povid=ETS_computing_facet_searchbrowse_touchscreenlaptops\"><div class=\"overflow-hidden relative tc mh3\" style=\"height:72px\" data-testid=\"image-chip-container\"><img loading=\"lazy\" class=\"left-0 bottom-0 absolute mw-100\" style=\"object-fit:contain\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-3b2a/k2-_47328139-c08e-43fa-add1-6b870ff06d41.v1.jpg\" alt=\"\" height=\"100%\" width=\"100%\"></div><div class=\"black mt2 mb1 lh-solid ph1\" style=\"color:#000000\">Touchscreen Laptops</div></a></li><li class=\"flex flex-column items-center\" data-slide=\"8\"><a link-identifier=\"Everyday Laptops click\" class=\"w5 pointer tc linkClass link\" style=\"width:104px\" role=\"link\" aria-current=\"false\" data-dca-id=\"L:0AB651A83D\" href=\"/browse/electronics/essential-laptops/3944_1089430_3951_1427621?povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_EssentialLaptops\"><div class=\"overflow-hidden relative tc mh3\" style=\"height:72px\" data-testid=\"image-chip-container\"><img loading=\"lazy\" class=\"left-0 bottom-0 absolute mw-100\" style=\"object-fit:contain\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-7757/k2-_db8a7f1d-ffdb-4062-88ca-62e40c89fb5c.v1.jpg\" alt=\"\" height=\"100%\" width=\"100%\"></div><div class=\"black mt2 mb1 lh-solid ph1\" style=\"color:#000000\">Everyday Laptops</div></a></li><li class=\"flex flex-column items-center\" data-slide=\"9\"><a link-identifier=\"Student Laptops click\" class=\"w5 pointer tc linkClass link\" style=\"width:104px\" role=\"link\" aria-current=\"false\" data-dca-id=\"L:0AB651A83D\" href=\"/browse/electronics/laptops-for-students/3944_1089430_3951_1230091_1155872_5825707?povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_StudentLaptops\"><div class=\"overflow-hidden relative tc mh3\" style=\"height:72px\" data-testid=\"image-chip-container\"><img loading=\"lazy\" class=\"left-0 bottom-0 absolute mw-100\" style=\"object-fit:contain\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-a6a1/k2-_e616ea26-66ef-4f4f-8d67-f27cab40e1b1.v1.jpg\" alt=\"\" height=\"100%\" width=\"100%\"></div><div class=\"black mt2 mb1 lh-solid ph1\" style=\"color:#000000\">Student Laptops</div></a></li><li class=\"flex flex-column items-center\" data-slide=\"10\"><a link-identifier=\"Work &amp; Business Laptops click\" class=\"w5 pointer tc linkClass link\" style=\"width:104px\" role=\"link\" aria-current=\"false\" data-dca-id=\"L:0AB651A83D\" href=\"/browse/electronics/work-business-laptops/3944_1089430_3951_4426560?povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_WorkBusinessLaptops\"><div class=\"overflow-hidden relative tc mh3\" style=\"height:72px\" data-testid=\"image-chip-container\"><img loading=\"lazy\" class=\"left-0 bottom-0 absolute mw-100\" style=\"object-fit:contain\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-9983/k2-_0db497f5-2a8b-4f75-a96c-555689560cbb.v1.jpg\" alt=\"\" height=\"100%\" width=\"100%\"></div><div class=\"black mt2 mb1 lh-solid ph1\" style=\"color:#000000\">Work &amp; Business Laptops</div></a></li><li class=\"flex flex-column items-center\" data-slide=\"11\"><a link-identifier=\"AI Laptops click\" class=\"w5 pointer tc linkClass link\" style=\"width:104px\" role=\"link\" aria-current=\"false\" data-dca-id=\"L:0AB651A83D\" href=\"/browse/electronics/ai-laptop/3944_1089430_3951_1230091_2871426?seo=electronics&amp;seo=ai-laptop&amp;seo=3944_1089430_3951_1230091_2871426&amp;page=1&amp;affinityOverride=default&amp;povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_AILaptopsNUp\"><div class=\"overflow-hidden relative tc mh3\" style=\"height:72px\" data-testid=\"image-chip-container\"><img loading=\"lazy\" class=\"left-0 bottom-0 absolute mw-100\" style=\"object-fit:contain\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-9d77/k2-_36367a27-e824-47be-bb09-40681249b476.v1.jpg\" alt=\"\" height=\"100%\" width=\"100%\"></div><div class=\"black mt2 mb1 lh-solid ph1\" style=\"color:#000000\">AI Laptops</div></a></li><li class=\"flex flex-column items-center\" data-slide=\"12\"><a link-identifier=\"Resold Laptops click\" class=\"w5 pointer tc linkClass link\" style=\"width:104px\" role=\"link\" aria-current=\"false\" data-dca-id=\"L:0AB651A83D\" href=\"/browse/electronics/walmart-restored-laptops/3944_9332706_7782955_2916436_5359799?povid=ETS_computing_facet_searchbrowse_resoldlaptops\"><div class=\"overflow-hidden relative tc mh3\" style=\"height:72px\" data-testid=\"image-chip-container\"><img loading=\"lazy\" class=\"left-0 bottom-0 absolute mw-100\" style=\"object-fit:contain\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-7b75/k2-_b9f95189-cee8-41a3-a766-8e329968e931.v1.jpg\" alt=\"\" height=\"100%\" width=\"100%\"></div><div class=\"black mt2 mb1 lh-solid ph1\" style=\"color:#000000\">Resold Laptops</div></a></li><li class=\"flex flex-column items-center\" data-slide=\"13\"><a link-identifier=\"All Computers click\" class=\"w5 pointer tc linkClass link\" style=\"width:104px\" role=\"link\" aria-current=\"false\" data-dca-id=\"L:0AB651A83D\" href=\"/search?q=computers&amp;povid=ETS_D72_Computing_NA_VF_EVGN_SB-AllLaptopComputers_AllComputers\"><div class=\"overflow-hidden relative tc mh3\" style=\"height:72px\" data-testid=\"image-chip-container\"><img loading=\"lazy\" class=\"left-0 bottom-0 absolute mw-100\" style=\"object-fit:contain\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-d000/k2-_0290f89f-5e37-4b56-851b-a8bc17dac759.v1.jpg\" alt=\"\" height=\"100%\" width=\"100%\"></div><div class=\"black mt2 mb1 lh-solid ph1\" style=\"color:#000000\">All Computers</div></a></li></ul><a link-identifier=\"horizontalScrollerNext\" class=\"absolute dn z-5 bg-white br-100 pa0 pointer br-100 nav-control right-1\" aria-label=\"Next slide for chipModuleWithImages list\" aria-disabled=\"true\" data-testid=\"horizontal-scroller-next\" data-dca-intent=\"swipeLeft\" tabindex=\"0\" role=\"button\" data-dca-id=\"L:D255F19F56\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-ChevronRight\" style=\"font-size:1.5rem;vertical-align:-0.25em;padding:12px;width:1.5rem;height:1.5rem;box-sizing:content-box\"></i></a></div><div class=\"dn\"><a link-identifier=\"Generic Name\" data-dca-id=\"L:E4218BE206\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/shop/savings/electronics/computers?cat_id=3944_1089430_3951_132960&amp;povid=ETS_D72_Computing_NA_VF_SAV_SB-AllLaptopComputers_ComputerSavings\">Laptop Savings</a><a link-identifier=\"Generic Name\" data-dca-id=\"L:E4218BE206\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/browse/electronics/all-laptop-computers/3944_1089430_3951_132960?facet=fulfillment_speed%3AToday&amp;povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_GetitTodayLaptops\">Get it Today</a><a link-identifier=\"Generic Name\" data-dca-id=\"L:E4218BE206\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/shop/tech/editors-picks?catId=3944_1089430_132960&amp;povid=ETS_computing_facet_searchbrowse_editorspicks\">Laptop Editors' Picks</a><a link-identifier=\"Generic Name\" data-dca-id=\"L:E4218BE206\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/browse/electronics/windows-os-laptops/3944_1089430_3951_8835131_1737838?povid=ETS_computing_facet_searchbrowse_windowslaptops\">Windows Laptops</a><a link-identifier=\"Generic Name\" data-dca-id=\"L:E4218BE206\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/browse/electronics/gaming-laptops/3944_1089430_3951_1230091_1094888?povid=ETS_computing_facet_searchbrowse_gaminglaptops\">Gaming Laptops</a><a link-identifier=\"Generic Name\" data-dca-id=\"L:E4218BE206\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/browse/electronics/google-chromebooks/3944_1089430_3951_1230091_1103213?povid=ETS_computing_facet_searchbrowse_chromebooks\">Chromebooks</a><a link-identifier=\"Generic Name\" data-dca-id=\"L:E4218BE206\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/browse/electronics/all-apple-macbook/3944_1089430_3951_8945805_4431341?povid=ETS_computing_facet_searchbrowse_macbooks\">MacBooks</a><a link-identifier=\"Generic Name\" data-dca-id=\"L:E4218BE206\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/browse/electronics/touchscreen-laptops/3944_1089430_3951_1230091_1101633?povid=ETS_computing_facet_searchbrowse_touchscreenlaptops\">Touchscreen Laptops</a><a link-identifier=\"Generic Name\" data-dca-id=\"L:E4218BE206\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/browse/electronics/essential-laptops/3944_1089430_3951_1427621?povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_EssentialLaptops\">Everyday Laptops</a><a link-identifier=\"Generic Name\" data-dca-id=\"L:E4218BE206\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/browse/electronics/laptops-for-students/3944_1089430_3951_1230091_1155872_5825707?povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_StudentLaptops\">Student Laptops</a><a link-identifier=\"Generic Name\" data-dca-id=\"L:E4218BE206\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/browse/electronics/work-business-laptops/3944_1089430_3951_4426560?povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_WorkBusinessLaptops\">Work &amp; Business Laptops</a><a link-identifier=\"Generic Name\" data-dca-id=\"L:E4218BE206\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/browse/electronics/ai-laptop/3944_1089430_3951_1230091_2871426?seo=electronics&amp;seo=ai-laptop&amp;seo=3944_1089430_3951_1230091_2871426&amp;page=1&amp;affinityOverride=default&amp;povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_AILaptopsNUp\">AI Laptops</a><a link-identifier=\"Generic Name\" data-dca-id=\"L:E4218BE206\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/browse/electronics/walmart-restored-laptops/3944_9332706_7782955_2916436_5359799?povid=ETS_computing_facet_searchbrowse_resoldlaptops\">Resold Laptops</a><a link-identifier=\"Generic Name\" data-dca-id=\"L:E4218BE206\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/search?q=computers&amp;povid=ETS_D72_Computing_NA_VF_EVGN_SB-AllLaptopComputers_AllComputers\">All Computers</a></div></section><hr aria-hidden=\"true\" class=\"w_8Gn9\"> <!-- --> <!-- --> </div></div></div><div class=\"h-100 relative\"><div data-testid=\"flex-container\" class=\"flex flex-column h-100\"><div class=\"h-100 relative\"><div class=\"w-100 relative-m pl4 pr4 flex pt2 search-outer-container bg-white\"><div class=\"fl w-20 dn br b--black-10 flex-grow-0 flex-shrink-0 db-m\" data-testid=\"lhn\"><section class=\"overflow-y-auto overflow-x-hidden\" style=\"position:sticky;top:128px;height:86vh\" data-testid=\"lhn-scroll-container\" data-dca-type=\"module\" data-dca-name=\"__DCA_NAME_TBD__\" data-dca-id=\"M:3CCA9A4867\"><div class=\"pb6 pr3\"><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Price\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Price</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Brand\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Brand</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Item Conditions\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Item Conditions</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Screen Size\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Screen Size</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Processor Type\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Processor Type</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Data Storage\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Data Storage</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Operating System\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Operating System</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Graphics Card\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Graphics Card</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Processor Brand\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Processor Brand</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Features\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Features</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Hard Drive Type\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Hard Drive Type</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Solid State Drive Capacity\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Solid State Drive Capacity</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Color\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Color</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Resolution\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Resolution</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Display Technology\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Display Technology</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-RAM\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">RAM</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Availability\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Availability</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Departments\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Departments</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Deals\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Deals</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Customer Rating\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Customer Rating</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Retailer\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Retailer</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section><section class=\"expand-collapse-section\"><div data-testid=\"expand-section-Gifting\" class=\"nl3 nr3 relative\"><div class=\"ma0 f4\"><button type=\"button\" aria-expanded=\"false\" class=\"bg-white bw0 flex items-center justify-between ph3 pointer sans-serif w-100\" data-dca-intent=\"open\" data-dca-id=\"B:AF07304A65\" data-dca-event=\"unknown\"><span class=\"dib b dark-gray f4 lh-copy tl w-100 pv3\">Gifting</span><i class=\"ld ld-ChevronDown pa0 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" aria-hidden=\"true\" role=\"img\"></i></button></div></div><hr aria-hidden=\"true\" class=\"ld_Bl\"></section></div></section></div><div class=\"relative w-80\"><section data-dca-type=\"module\" data-dca-id=\"M:A7F7551FA2\" data-dca-name=\"__DCA_NAME_TBD__\"><div data-stack-index=\"0\" class=\"flex flex-column justify-center\" id=\"0\" tabindex=\"-1\"><div id=\"results-container\" class=\"flex flex-row flex-shrink-0\"><div class=\"flex flex-column w-100\"><section style=\"flex:1\" data-dca-id=\"M:DF16D9EFF8\" data-dca-type=\"module\" data-dca-name=\"__DCA_NAME_TBD__\"><div><div class=\"\"><div><div class=\"inline-flex mr1 db mt3 ml3 ml4-xl\"><h2 class=\"f4 f3-m lh-title ma0 di\" style=\"color:undefined\" aria-label=\"Results for &quot;laptop&quot; (1000+)\">Results for \"laptop\"<span class=\"f6 f5-m fw3 ml1 mt1-xl gray normal self-center\" aria-hidden=\"true\">(1000+)</span></h2></div></div></div></div></section></div><div></div></div><section data-dca-type=\"module\" data-dca-id=\"M:7E91143CA4\" data-dca-name=\"__DCA_NAME_TBD__\"><div class=\"flex flex-row items-center flex-shrink-0 ml3 ml4-xl mb3\"><span class=\"gray\">Uses item details. Price when purchased online</span><button class=\"w_hhLG w_DZvO w_0_LY bg-white b--none pointer pa0 no-underline h1 ml2\" type=\"button\" aria-label=\"legal information\" data-dca-intent=\"open\" data-dca-id=\"B:F8DEED5BF3\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-InfoCircle dark-gray\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\"></i></button></div></section><div class=\"flex flex-wrap w-100 flex-grow-0 flex-shrink-0 ph0 ph2-m pr0-xl pl4-xl mt0-xl\" data-testid=\"item-stack\"><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size:198px 340px\"><div role=\"group\" data-item-id=\"4C500VY5GG5J\" data-dca-guid=\"4C500VY5GG5J\" data-dca-id=\"15377670482\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"15377670482\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=1&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FRestored-Dell-Latitude-3190-11-6-Touchscreen-Laptop-PC-Intel-Core-Pentium-Silver-N5030-1-1-GHz-8GB-RAM-128GB-SSD-Windows-11-Pro-Refurbished%2F15377670482%3FconditionGroupCode%3D2%26classType%3DREGULAR%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=pG8_TBoSsQovjzaCp3UxSBS21I82TTZP-kzg05Vrf8eHKkgL0tN0s4EVcVl3scR49Z-m5luOM9_scNCRJB0rvgGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMkNc4Ueh8oGRaPEIYL9j1ML1bY8Iwwx40xB-F79oooFXsrcC02vQ_PKAOxB1c1GJEPym0mSHIxr7ZSJqZuhZfJuvIPKznhQcsltOMxFdAULvnhQS3cihoQMn_ZY_QJdKnlU9k8uTobp7ugtICFmhImQ&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;conditionGroupCode=2&amp;classType=REGULAR\"><span class=\"ld_Ej\"><h3>Restored Dell Latitude 3190 | 11.6\" Touchscreen Laptop PC | Intel Core Pentium Silver N5030 (1.1 GHz) | 8GB RAM | 128GB SSD | Windows 11 Pro $178.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width:288px;height:0;padding-bottom:min(288px, 100%);align-self:center;width:min(288px, 100%)\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Restored Dell Latitude 3190 | 11.6&quot; Touchscreen Laptop PC | Intel Core Pentium Silver N5030 (1.1 GHz) | 8GB RAM | 128GB SSD | Windows 11 Pro\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"eager\" src=\"https://i5.walmartimages.com/seo/Restored-Dell-Latitude-3190-11-6-Touchscreen-Laptop-PC-Intel-Core-Pentium-Silver-N5030-1-1-GHz-8GB-RAM-128GB-SSD-Windows-11-Pro-Refurbished_1b35f0df-acf8-43f3-a0bd-637fb3963ff3.141425f5c3b1f1e1c39d74faa1e81d3f.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-0-productImage-0\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Restored Dell Latitude 3190 | 11.6&quot; Touchscreen Laptop PC | Intel Core Pentium Silver N5030 (1.1 GHz) | 8GB RAM | 128GB SSD | Windows 11 Pro\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"4C500VY5GG5J\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - Restored Dell Latitude 3190 | 11.6&quot; Touchscreen Laptop PC | Intel Core Pentium Silver N5030 (1.1 GHz) | 8GB RAM | 128GB SSD | Windows 11 Pro\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" style=\"font-size:1.5rem;vertical-align:-0.25em;width:1.5rem;height:1.5rem;box-sizing:content-box\" title=\"add to cart\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div class=\"h1 mt1\" data-test-id=\"gpt-sponsored-tag-container\"><div class=\"flex items-center lh-title h2-l normal\"><div class=\"flex items-center f7 f6-l\"><div>Sponsored</div><div class=\"z-2\"><button class=\"w_hhLG w_DZvO w_0_LY pointer pl1 no-underline pt3 pb3 \" type=\"button\" style=\"color:gray\" title=\"Ad disclaimer and feedback\" aria-label=\"Ad disclaimer and feedback\" data-dca-id=\"B:9AE6AB358F\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-InfoCircle\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\"></i></button></div></div></div></div><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align:0.65ex;margin-right:2px\">$</span><span class=\"f2\">178</span><span class=\"f6 f5-l\" style=\"vertical-align:0.75ex\">00</span></div><span class=\"ld_Ej\">current price $178.00</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">Restored Dell Latitude 3190 | 11.6\" Touchscreen Laptop PC | Intel Core Pentium Silver N5030 (1.1 GHz) | 8GB RAM | 128GB SSD | Windows 11 Pro</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"59\">59</span><span class=\"ld_Ej\">4 out of 5 Stars. 59 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div><div class=\"flex items-center mt0\" data-testid=\"product-badge-container\"><div class=\"mr1\"><i class=\"ld ld-Recycle\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\"></i></div><span data-testid=\"product-badge-text\" class=\"dark-gray f7 f6-l\" aria-hidden=\"false\">Restored: Like New</span></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size:198px 340px\"><div role=\"group\" data-item-id=\"5170WJHEM8FP\" data-dca-guid=\"5170WJHEM8FP\" data-dca-id=\"17586673039\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"17586673039\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=2&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FHP-17-3-Touchscreen-Laptop-AMD-Ryzen-5-7430U-16GB-RAM-1TB-SSD-Backlit-Fingerprint-Win11-Home%2F17586673039%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=Ke62Has9zBtniHPRaY_xEOhvTaHiP3L2qgKA5k4iQdAd47de2VLKTImdAg1_rRHaZlCd6xH1am9cGft7q6Gb_QGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMokjgkw2jRrXxOgJr2CCetGFOi7ASK44rm3Fz9VNaG4vCv-AoMqR55ETSg0eG2bEH7VGtLGI917B2S7_AxFpDWepyMb0PVFVwDHlCBuFpbyNNVuJ6RdAoEFUFjdiRtuLg21MdHKCsizG5wPNwiCokFg&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\"><span class=\"ld_Ej\"><h3>HP 17.3\" Touchscreen Laptop, AMD Ryzen 5 7430U, 16GB RAM, 1TB SSD, Backlit, Fingerprint, Win11 Home $699.00 Was $849.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width:288px;height:0;padding-bottom:min(288px, 100%);align-self:center;width:min(288px, 100%)\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP 17.3&quot; Touchscreen Laptop, AMD Ryzen 5 7430U, 16GB RAM, 1TB SSD, Backlit, Fingerprint, Win11 Home\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"eager\" src=\"https://i5.walmartimages.com/seo/HP-17-3-Touchscreen-Laptop-AMD-Ryzen-5-7430U-16GB-RAM-1TB-SSD-Backlit-Fingerprint-Win11-Home_9a02ecbb-93a7-4bcb-b839-2a5bc20179fb.9735a65097246ebe2b3a987d26f33e27.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-0-productImage-1\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP 17.3&quot; Touchscreen Laptop, AMD Ryzen 5 7430U, 16GB RAM, 1TB SSD, Backlit, Fingerprint, Win11 Home\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"5170WJHEM8FP\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=2&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FHP-17-3-Touchscreen-Laptop-AMD-Ryzen-5-7430U-16GB-RAM-1TB-SSD-Backlit-Fingerprint-Win11-Home%2F17586673039%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=Ke62Has9zBtniHPRaY_xEOhvTaHiP3L2qgKA5k4iQdAd47de2VLKTImdAg1_rRHaZlCd6xH1am9cGft7q6Gb_QGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMokjgkw2jRrXxOgJr2CCetGFOi7ASK44rm3Fz9VNaG4vCv-AoMqR55ETSg0eG2bEH7VGtLGI917B2S7_AxFpDWepyMb0PVFVwDHlCBuFpbyNNVuJ6RdAoEFUFjdiRtuLg21MdHKCsizG5wPNwiCokFg&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\" aria-label=\"Options - HP 17.3&quot; Touchscreen Laptop, AMD Ryzen 5 7430U, 16GB RAM, 1TB SSD, Backlit, Fingerprint, Win11 Home\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div class=\"h1 mt1\" data-test-id=\"gpt-sponsored-tag-container\"><div class=\"flex items-center lh-title h2-l normal\"><div class=\"flex items-center f7 f6-l\"><div>Sponsored</div><div class=\"z-2\"><button class=\"w_hhLG w_DZvO w_0_LY pointer pl1 no-underline pt3 pb3 \" type=\"button\" style=\"color:gray\" title=\"Ad disclaimer and feedback\" aria-label=\"Ad disclaimer and feedback\" data-dca-id=\"B:9AE6AB358F\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-InfoCircle\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\"></i></button></div></div></div></div><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align:0.65ex;margin-right:2px\">$</span><span class=\"f2\">699</span><span class=\"f6 f5-l\" style=\"vertical-align:0.75ex\">00</span></div><span class=\"ld_Ej\">current price Now $699.00, Was $849.00</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$849.00</span></div><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" style=\"margin-bottom:2px\" data-test-id=\"gpt-price-range-string\">Options from $659.00</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP 17.3\" Touchscreen Laptop, AMD Ryzen 5 7430U, 16GB RAM, 1TB SSD, Backlit, Fingerprint, Win11 Home</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"258\">258</span><span class=\"ld_Ej\">4.3 out of 5 Stars. 258 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size:198px 340px\"><div role=\"group\" data-item-id=\"69RR19L9AR1H\" data-dca-guid=\"69RR19L9AR1H\" data-dca-id=\"5370677533\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"5370677533\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=3&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FRestored-Dell-Latitude-5400-Laptop-Intel-Core-I5-8365u-Processor-Windows-11-Pro-16GB-RAM-256GB-SSD-M2-HDMI-Bluetooth-HD-Webcam-Refurbished%2F5370677533%3FconditionGroupCode%3D2%26classType%3DREGULAR%26athbdg%3DL1900%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=_IheFzrQ2OeTEa1v0NKw1Q6SsN_EXjtHt3En-9s-UQECa02SYU3AlnJsI4lP1ltXOp94F8yj5swGTcSu0rDngD9vGti40ousa1-_x2euLOUmxE3ohQdH22KRu2dWZf3DLqEtpLutr-ctOXscPxKkDFR-f14V05Zv1bCUsdZ_7BlCnzDe9TeztO4FEB2A_RpnPym0mSHIxr7ZSJqZuhZfJuvIPKznhQcsltOMxFdAULvnhQS3cihoQMn_ZY_QJdKnlU9k8uTobp7ugtICFmhImQ&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;conditionGroupCode=2&amp;classType=REGULAR&amp;athbdg=L1900\"><span class=\"ld_Ej\"><h3>Flash Deal Restored Dell Latitude 5400 Laptop Intel Core I5 8365u Processor ( Windows 11 Pro ) 16GB RAM 256GB SSD M2, HDMI, Bluetooth, HD Webcam (Refurbished) $218.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap:8px\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" style=\"background:#FFF9E9;margin-top:0px;padding:4px 8px;display:flex;align-items:flex-start;flex-direction:column;border-radius:4px\" role=\"group\" data-testid=\"badgeTagComponent\"><span class=\"w_yTSq f6-m f7 dib w_0aYG w_MwbK\" style=\"color:#995213;line-height:16px;font-weight:700;white-space:pre;margin-right:4px;vertical-align:middle\">Flash Deal</span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width:288px;height:0;padding-bottom:min(288px, 100%);align-self:center;width:min(288px, 100%)\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Restored Dell Latitude 5400 Laptop Intel Core I5 8365u Processor ( Windows 11 Pro ) 16GB RAM 256GB SSD M2, HDMI, Bluetooth, HD Webcam (Refurbished)\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"eager\" src=\"https://i5.walmartimages.com/seo/Restored-Dell-Latitude-5400-Laptop-Intel-Core-I5-8365u-Processor-Windows-11-Pro-16GB-RAM-256GB-SSD-M2-HDMI-Bluetooth-HD-Webcam-Refurbished_8a2b9f07-39ae-42f5-9b9a-8d0729d3a9b6.45633042da05683903192b68253235b0.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-0-productImage-2\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Restored Dell Latitude 5400 Laptop Intel Core I5 8365u Processor ( Windows 11 Pro ) 16GB RAM 256GB SSD M2, HDMI, Bluetooth, HD Webcam (Refurbished)\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"69RR19L9AR1H\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - Restored Dell Latitude 5400 Laptop Intel Core I5 8365u Processor ( Windows 11 Pro ) 16GB RAM 256GB SSD M2, HDMI, Bluetooth, HD Webcam (Refurbished)\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" style=\"font-size:1.5rem;vertical-align:-0.25em;width:1.5rem;height:1.5rem;box-sizing:content-box\" title=\"add to cart\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div class=\"h1 mt1\" data-test-id=\"gpt-sponsored-tag-container\"><div class=\"flex items-center lh-title h2-l normal\"><div class=\"flex items-center f7 f6-l\"><div>Sponsored</div><div class=\"z-2\"><button class=\"w_hhLG w_DZvO w_0_LY pointer pl1 no-underline pt3 pb3 \" type=\"button\" style=\"color:gray\" title=\"Ad disclaimer and feedback\" aria-label=\"Ad disclaimer and feedback\" data-dca-id=\"B:9AE6AB358F\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-InfoCircle\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\"></i></button></div></div></div></div><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align:0.65ex;margin-right:2px\">$</span><span class=\"f2\">218</span><span class=\"f6 f5-l\" style=\"vertical-align:0.75ex\">00</span></div><span class=\"ld_Ej\">current price $218.00</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">Restored Dell Latitude 5400 Laptop Intel Core I5 8365u Processor ( Windows 11 Pro ) 16GB RAM 256GB SSD M2, HDMI, Bluetooth, HD Webcam (Refurbished)</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"24\">24</span><span class=\"ld_Ej\">3.6 out of 5 Stars. 24 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div><div class=\"flex items-center mt0\" data-testid=\"product-badge-container\"><div class=\"mr1\"><i class=\"ld ld-Recycle\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\"></i></div><span data-testid=\"product-badge-text\" class=\"dark-gray f7 f6-l\" aria-hidden=\"false\">Restored: Like New</span></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size:198px 340px\"><div role=\"group\" data-item-id=\"1DOJRQ47NA3W\" data-dca-guid=\"1DOJRQ47NA3W\" data-dca-id=\"19699754154\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"19699754154\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Citrus/19699754154?classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>Apple MacBook Neo 13-inch Apple A18 Pro chip with 6‑core CPU and 5‑core GPU, 8GB, 256GB SSD, Magic Keyboard - Citrus $599.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width:288px;height:0;padding-bottom:min(288px, 100%);align-self:center;width:min(288px, 100%)\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Apple MacBook Neo 13-inch Apple A18 Pro chip with 6‑core CPU and 5‑core GPU, 8GB, 256GB SSD, Magic Keyboard - Citrus\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"eager\" src=\"https://i5.walmartimages.com/seo/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Citrus_1f65fe6c-8c9e-4f07-9fd8-5977a3929a56.ac87611a1a03138a8be9f0a0bdda5709.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-0-productImage-3\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Apple MacBook Neo 13-inch Apple A18 Pro chip with 6‑core CPU and 5‑core GPU, 8GB, 256GB SSD, Magic Keyboard - Citrus\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-1DOJRQ47NA3W\"><div class=\"flex f6 justify-center items-center lh-title h2-l\" data-test-id=\"gpt-swatch-variants-container\"><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Blush/19652372462?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/63d7346f-1e25-4ebc-a44b-7bccf67f98ac.82fe0657d8a6572396c61175352840d9.png?odnHeight=30&amp;odnWidth=30&amp;odnBg=FFFFFF\" class=\"br-100 v-btm ba b--transparent\" alt=\"Blush, variant on Apple MacBook Neo 13-inch Apple A18 Pro chip with 6‑core CPU and 5‑core GPU, 8GB, 256GB SSD, Magic Keyboard - Citrus\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Citrus/19699754154?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/c54e2dc3-6e31-41fa-accd-9cfd608f0f5a.ebed2c645d6430318c45e9fa51909013.png?odnHeight=30&amp;odnWidth=30&amp;odnBg=FFFFFF\" class=\"br-100 v-btm ba b--transparent\" alt=\"Citrus, variant on Apple MacBook Neo 13-inch Apple A18 Pro chip with 6‑core CPU and 5‑core GPU, 8GB, 256GB SSD, Magic Keyboard - Citrus\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Indigo/19717318352?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/ab7078ca-c0b8-4b45-af8a-ae6caeb13b7f.a7b63cd0f79d55453355ba3e599906c8.png?odnHeight=30&amp;odnWidth=30&amp;odnBg=FFFFFF\" class=\"br-100 v-btm ba b--transparent\" alt=\"Indigo, variant on Apple MacBook Neo 13-inch Apple A18 Pro chip with 6‑core CPU and 5‑core GPU, 8GB, 256GB SSD, Magic Keyboard - Citrus\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"flex items-center justify-center mr0\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Silver/19664769612?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/f42c3c0f-0d97-4f05-bdff-951ba019fd58.237d8ea23822278fdb328c52151b61c5.png?odnHeight=30&amp;odnWidth=30&amp;odnBg=FFFFFF\" class=\"br-100 v-btm ba b--transparent\" alt=\"Silver, variant on Apple MacBook Neo 13-inch Apple A18 Pro chip with 6‑core CPU and 5‑core GPU, 8GB, 256GB SSD, Magic Keyboard - Citrus\" data-test-id=\"gpt-variant-image\"></a></div></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"1DOJRQ47NA3W\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Citrus/19699754154?classType=VARIANT\" aria-label=\"Options - Apple MacBook Neo 13-inch Apple A18 Pro chip with 6‑core CPU and 5‑core GPU, 8GB, 256GB SSD, Magic Keyboard - Citrus\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align:0.65ex;margin-right:2px\">$</span><span class=\"f2\">599</span><span class=\"f6 f5-l\" style=\"vertical-align:0.75ex\">00</span></div><span class=\"ld_Ej\">current price $599.00</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" style=\"margin-bottom:2px\" data-test-id=\"gpt-price-range-string\">Options from $599.00 – $699.00</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">Apple MacBook Neo 13-inch Apple A18 Pro chip with 6‑core CPU and 5‑core GPU, 8GB, 256GB SSD, Magic Keyboard - Citrus</h3></span><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size:198px 340px\"><div role=\"group\" data-item-id=\"52DR8CWD5QRO\" data-dca-guid=\"52DR8CWD5QRO\" data-dca-id=\"13943258180\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"13943258180\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/HP-Omnibook-5-16-inch-Windows-Laptop-AMD-Ryzen-7-AI-PC-16GB-RAM-512GB-SSD-Glacier-Silver/13943258180?classType=REGULAR&amp;athbdg=L1600&amp;from=/search\"><span class=\"ld_Ej\"><h3>Best seller HP Omnibook 5 16 inch Windows 11 Laptop AMD Ryzen 7 AI PC 16GB RAM 512GB SSD Glacier Silver $549.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap:8px\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" style=\"background:#E6F1FC;margin-top:0px;padding:4px 8px;display:flex;align-items:flex-start;flex-direction:column;border-radius:4px\" role=\"group\" data-testid=\"badgeTagComponent\"><span class=\"w_yTSq f6-m f7 dib w_0aYG w_MwbK\" style=\"color:#004F9A;line-height:16px;font-weight:700;white-space:pre;margin-right:4px;vertical-align:middle\">Best seller</span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width:288px;height:0;padding-bottom:min(288px, 100%);align-self:center;width:min(288px, 100%)\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP Omnibook 5 16 inch Windows 11 Laptop AMD Ryzen 7 AI PC 16GB RAM 512GB SSD Glacier Silver\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-Omnibook-5-16-inch-Windows-Laptop-AMD-Ryzen-7-AI-PC-16GB-RAM-512GB-SSD-Glacier-Silver_36bc9dcd-4182-4cfb-a86b-05aed1ae3e64.32b35980d9afba50905479bc112df6f5.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-Omnibook-5-16-inch-Windows-Laptop-AMD-Ryzen-7-AI-PC-16GB-RAM-512GB-SSD-Glacier-Silver_36bc9dcd-4182-4cfb-a86b-05aed1ae3e64.32b35980d9afba50905479bc112df6f5.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-Omnibook-5-16-inch-Windows-Laptop-AMD-Ryzen-7-AI-PC-16GB-RAM-512GB-SSD-Glacier-Silver_36bc9dcd-4182-4cfb-a86b-05aed1ae3e64.32b35980d9afba50905479bc112df6f5.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-0-productImage-4\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP Omnibook 5 16 inch Windows 11 Laptop AMD Ryzen 7 AI PC 16GB RAM 512GB SSD Glacier Silver\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"52DR8CWD5QRO\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - HP Omnibook 5 16 inch Windows 11 Laptop AMD Ryzen 7 AI PC 16GB RAM 512GB SSD Glacier Silver\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" style=\"font-size:1.5rem;vertical-align:-0.25em;width:1.5rem;height:1.5rem;box-sizing:content-box\" title=\"add to cart\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align:0.65ex;margin-right:2px\">$</span><span class=\"f2\">549</span><span class=\"f6 f5-l\" style=\"vertical-align:0.75ex\">00</span></div><span class=\"ld_Ej\">current price $549.00</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP Omnibook 5 16 inch Windows 11 Laptop AMD Ryzen 7 AI PC 16GB RAM 512GB SSD Glacier Silver</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"735\">735</span><span class=\"ld_Ej\">4.2 out of 5 Stars. 735 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div><div class=\"flex items-center mt1\"><img loading=\"lazy\" class=\"mr1\" src=\"//i5.walmartimages.com/dfw/63fd9f59-547b/d4dfa923-2a65-4c3a-b34c-c4db7ee6c035/v1/Apple_TV_iOS.svg\" alt=\"Apple Tv\" height=\"16\" width=\"16\"><span class=\"dark-gray f7 f6-l\">3 free offers from Apple</span></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size:198px 340px\"><div role=\"group\" data-item-id=\"361GDI6DZQUH\" data-dca-guid=\"361GDI6DZQUH\" data-dca-id=\"16884610221\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"16884610221\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=6&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FDell-16-Laptop-DC16251-16-inch-FHD-Touchscreen-Intel-Core-7-150U-16GB-RAM-1TB-SSD-Ice-Blue%2F16884610221%3FclassType%3DREGULAR%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=z1O4TzP72tlMCiDQP_56huDdvuSFO6tKe1jABESvHX_QdGiNdt9GEItj8JEsvgrX-Ra21dgbPqsafsE4a0DOHwGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMsCa_UT3MB08xyY0sXwEN_T_aR0nv2d8gnv54NwN76C4-jlPs42Uv4GpWKlx43vI7vDl_2TfXYrg8NEZh4Jw20-PhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=REGULAR\"><span class=\"ld_Ej\"><h3>Dell 16 Laptop DC16251 - 16-inch FHD+ Touchscreen, Intel Core 7-150U, 16GB RAM, 1TB SSD, Ice Blue $699.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width:288px;height:0;padding-bottom:min(288px, 100%);align-self:center;width:min(288px, 100%)\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Dell 16 Laptop DC16251 - 16-inch FHD+ Touchscreen, Intel Core 7-150U, 16GB RAM, 1TB SSD, Ice Blue\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/Dell-16-Laptop-DC16251-16-inch-FHD-Touchscreen-Intel-Core-7-150U-16GB-RAM-1TB-SSD-Ice-Blue_f9904319-82be-4251-8d9f-4514b62deb86.7ff344787fa2c7461facd6f030f3d676.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/Dell-16-Laptop-DC16251-16-inch-FHD-Touchscreen-Intel-Core-7-150U-16GB-RAM-1TB-SSD-Ice-Blue_f9904319-82be-4251-8d9f-4514b62deb86.7ff344787fa2c7461facd6f030f3d676.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/Dell-16-Laptop-DC16251-16-inch-FHD-Touchscreen-Intel-Core-7-150U-16GB-RAM-1TB-SSD-Ice-Blue_f9904319-82be-4251-8d9f-4514b62deb86.7ff344787fa2c7461facd6f030f3d676.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-0-productImage-5\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Dell 16 Laptop DC16251 - 16-inch FHD+ Touchscreen, Intel Core 7-150U, 16GB RAM, 1TB SSD, Ice Blue\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"361GDI6DZQUH\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - Dell 16 Laptop DC16251 - 16-inch FHD+ Touchscreen, Intel Core 7-150U, 16GB RAM, 1TB SSD, Ice Blue\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" style=\"font-size:1.5rem;vertical-align:-0.25em;width:1.5rem;height:1.5rem;box-sizing:content-box\" title=\"add to cart\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div class=\"h1 mt1\" data-test-id=\"gpt-sponsored-tag-container\"><div class=\"flex items-center lh-title h2-l normal\"><div class=\"flex items-center f7 f6-l\"><div>Sponsored</div><div class=\"z-2\"><button class=\"w_hhLG w_DZvO w_0_LY pointer pl1 no-underline pt3 pb3 \" type=\"button\" style=\"color:gray\" title=\"Ad disclaimer and feedback\" aria-label=\"Ad disclaimer and feedback\" data-dca-id=\"B:9AE6AB358F\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-InfoCircle\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\"></i></button></div></div></div></div><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align:0.65ex;margin-right:2px\">$</span><span class=\"f2\">699</span><span class=\"f6 f5-l\" style=\"vertical-align:0.75ex\">99</span></div><span class=\"ld_Ej\">current price $699.99</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">Dell 16 Laptop DC16251 - 16-inch FHD+ Touchscreen, Intel Core 7-150U, 16GB RAM, 1TB SSD, Ice Blue</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"78\">78</span><span class=\"ld_Ej\">4.6 out of 5 Stars. 78 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">tomorrow</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size:198px 340px\"><div role=\"group\" data-item-id=\"190069F0THYM\" data-dca-guid=\"190069F0THYM\" data-dca-id=\"17066350050\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"17066350050\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=7&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FPryloxen-16-Home-Laptop-Windows-11-Pro-Computer-AMD-Ryzen-7430U-16GB-RAM-512GB-SSD-Backlit-Keyboard-Fingerprint-Unlock%2F17066350050%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=BQ0a30aULMXnORu57d-8rNSmIfsvpq3Ra6loeIDFaSkpqijCgj3lqjMme7pnIb-ESMDu8-zSs_w7xKB6dxahJwGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMKmlpUIK4hjf06ZjP9hyMnybwTZZylJXNlvHu_8IYorg7aJOyZaG_vOQRvxGwuGtjazgczR5GoSTYenS7UBIqeePhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\"><span class=\"ld_Ej\"><h3>Exsurf 16\" Home Laptop, Windows 11 Pro Computer,AMD Ryzen 7430U , 16GB RAM 512GB SSD, Backlit Keyboard, Fingerprint Unlock $369.38</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width:288px;height:0;padding-bottom:min(288px, 100%);align-self:center;width:min(288px, 100%)\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Exsurf 16&quot; Home Laptop, Windows 11 Pro Computer,AMD Ryzen 7430U , 16GB RAM 512GB SSD, Backlit Keyboard, Fingerprint Unlock\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/Pryloxen-16-Home-Laptop-Windows-11-Pro-Computer-AMD-Ryzen-7430U-16GB-RAM-512GB-SSD-Backlit-Keyboard-Fingerprint-Unlock_68763b30-18c7-4911-912f-53825a97728c.c8016b7cc2eb17a20f86a2f37a4a4729.png?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/Pryloxen-16-Home-Laptop-Windows-11-Pro-Computer-AMD-Ryzen-7430U-16GB-RAM-512GB-SSD-Backlit-Keyboard-Fingerprint-Unlock_68763b30-18c7-4911-912f-53825a97728c.c8016b7cc2eb17a20f86a2f37a4a4729.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/Pryloxen-16-Home-Laptop-Windows-11-Pro-Computer-AMD-Ryzen-7430U-16GB-RAM-512GB-SSD-Backlit-Keyboard-Fingerprint-Unlock_68763b30-18c7-4911-912f-53825a97728c.c8016b7cc2eb17a20f86a2f37a4a4729.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-0-productImage-6\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Exsurf 16&quot; Home Laptop, Windows 11 Pro Computer,AMD Ryzen 7430U , 16GB RAM 512GB SSD, Backlit Keyboard, Fingerprint Unlock\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"190069F0THYM\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=7&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FPryloxen-16-Home-Laptop-Windows-11-Pro-Computer-AMD-Ryzen-7430U-16GB-RAM-512GB-SSD-Backlit-Keyboard-Fingerprint-Unlock%2F17066350050%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=BQ0a30aULMXnORu57d-8rNSmIfsvpq3Ra6loeIDFaSkpqijCgj3lqjMme7pnIb-ESMDu8-zSs_w7xKB6dxahJwGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMKmlpUIK4hjf06ZjP9hyMnybwTZZylJXNlvHu_8IYorg7aJOyZaG_vOQRvxGwuGtjazgczR5GoSTYenS7UBIqeePhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\" aria-label=\"Options - Exsurf 16&quot; Home Laptop, Windows 11 Pro Computer,AMD Ryzen 7430U , 16GB RAM 512GB SSD, Backlit Keyboard, Fingerprint Unlock\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div class=\"h1 mt1\" data-test-id=\"gpt-sponsored-tag-container\"><div class=\"flex items-center lh-title h2-l normal\"><div class=\"flex items-center f7 f6-l\"><div>Sponsored</div><div class=\"z-2\"><button class=\"w_hhLG w_DZvO w_0_LY pointer pl1 no-underline pt3 pb3 \" type=\"button\" style=\"color:gray\" title=\"Ad disclaimer and feedback\" aria-label=\"Ad disclaimer and feedback\" data-dca-id=\"B:9AE6AB358F\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-InfoCircle\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\"></i></button></div></div></div></div><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align:0.65ex;margin-right:2px\">$</span><span class=\"f2\">369</span><span class=\"f6 f5-l\" style=\"vertical-align:0.75ex\">38</span></div><span class=\"ld_Ej\">current price $369.38</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">Exsurf 16\" Home Laptop, Windows 11 Pro Computer,AMD Ryzen 7430U , 16GB RAM 512GB SSD, Backlit Keyboard, Fingerprint Unlock</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"13\">13</span><span class=\"ld_Ej\">4.5 out of 5 Stars. 13 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size:198px 340px\"><div role=\"group\" data-item-id=\"28HY55BSXB4X\" data-dca-guid=\"28HY55BSXB4X\" data-dca-id=\"8458658151\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"8458658151\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=8&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2F2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind%2F8458658151%3FclassType%3DREGULAR%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=71j-ydoEywzmn3gCjMfmjH2iTjlNFvTHwFwQru_MfpX5rlhE1ul2CUX_K3aZBtW5htmwVKcRglrK_tOs0uyk7D9vGti40ousa1-_x2euLOUmxE3ohQdH22KRu2dWZf3DILbeD7m7yWW0P2thun1cgUbWihJwfW_1R7KDkRdLnNdRBXCfVBKw21nkbaqGObMc6_-nQSTpPepXcS-ILDFcgHF5uwVZ4G6xBE474abZmWJ8W7Ev4SnWHXqrTDgzVAyL0jEQuiAu3HVQQLPxTd_DwRd5MHVqGNqzIDZPIaa1N1o&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=REGULAR\"><span class=\"ld_Ej\"><h3>2026 Newest Laptop, 15.6-Inch FHD Display Laptop with Intel Quad Core-12th N150(Up to 3.4GHz), 8GB RAM 256GB ROM Business Laptop Computer, Fingerprint, Type C, Windows 11 Home, Pink $349.99 Was $699.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width:288px;height:0;padding-bottom:min(288px, 100%);align-self:center;width:min(288px, 100%)\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, 2026 Newest Laptop, 15.6-Inch FHD Display Laptop with Intel Quad Core-12th N150(Up to 3.4GHz), 8GB RAM 256GB ROM Business Laptop Computer, Fingerprint, Type C, Windows 11 Home, Pink\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind_68012c26-4831-43de-8762-fd9e119182a6.ad7210ba4fddcd7804c24e3a47a59f92.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind_68012c26-4831-43de-8762-fd9e119182a6.ad7210ba4fddcd7804c24e3a47a59f92.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind_68012c26-4831-43de-8762-fd9e119182a6.ad7210ba4fddcd7804c24e3a47a59f92.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-0-productImage-7\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"2026 Newest Laptop, 15.6-Inch FHD Display Laptop with Intel Quad Core-12th N150(Up to 3.4GHz), 8GB RAM 256GB ROM Business Laptop Computer, Fingerprint, Type C, Windows 11 Home, Pink\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"28HY55BSXB4X\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - 2026 Newest Laptop, 15.6-Inch FHD Display Laptop with Intel Quad Core-12th N150(Up to 3.4GHz), 8GB RAM 256GB ROM Business Laptop Computer, Fingerprint, Type C, Windows 11 Home, Pink\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" style=\"font-size:1.5rem;vertical-align:-0.25em;width:1.5rem;height:1.5rem;box-sizing:content-box\" title=\"add to cart\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div class=\"h1 mt1\" data-test-id=\"gpt-sponsored-tag-container\"><div class=\"flex items-center lh-title h2-l normal\"><div class=\"flex items-center f7 f6-l\"><div>Sponsored</div><div class=\"z-2\"><button class=\"w_hhLG w_DZvO w_0_LY pointer pl1 no-underline pt3 pb3 \" type=\"button\" style=\"color:gray\" title=\"Ad disclaimer and feedback\" aria-label=\"Ad disclaimer and feedback\" data-dca-id=\"B:9AE6AB358F\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-InfoCircle\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\"></i></button></div></div></div></div><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align:0.65ex;margin-right:2px\">$</span><span class=\"f2\">349</span><span class=\"f6 f5-l\" style=\"vertical-align:0.75ex\">99</span></div><span class=\"ld_Ej\">current price Now $349.99, Was $699.99</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$699.99</span></div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">2026 Newest Laptop, 15.6-Inch FHD Display Laptop with Intel Quad Core-12th N150(Up to 3.4GHz), 8GB RAM 256GB ROM Business Laptop Computer, Fingerprint, Type C, Windows 11 Home, Pink</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"353\">353</span><span class=\"ld_Ej\">4.3 out of 5 Stars. 353 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"w-100\"><div class=\"w-100 dn-m db-l\"><div class=\"w_3jM4 pa0\" data-testid=\"search-video-in-grid\" style=\"--noop: noop;\"><span data-testid=\"lazy-render\" data-rendered=\"false\"></span></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size:198px 340px\"><div role=\"group\" data-item-id=\"4M0TARY74D8Y\" data-dca-guid=\"4M0TARY74D8Y\" data-dca-id=\"17939462069\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"17939462069\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/HP-15-6-inch-Windows-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-1TB-SSD-Silver/17939462069?classType=VARIANT&amp;athbdg=L1102&amp;from=/search\"><span class=\"ld_Ej\"><h3>2K+ bought since yesterday HP 15.6 inch FHD IPS Touch Windows Laptop AMD Ryzen 5 7520U 8GB 1TB SSD Natural Silver $359.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap:8px\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" style=\"background:#FFFFFF;margin-top:0px;padding:4px 8px;display:flex;align-items:flex-start;flex-direction:column;border-radius:4px;overflow:hidden;border:1px solid #0071DC\" role=\"group\" data-testid=\"badgeTagComponent\"><span class=\"w_yTSq f6-m f7 truncate dib w_0aYG w_MwbK\" style=\"color:#0071DC;line-height:16px;font-weight:700;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:100%;margin-right:4px;vertical-align:middle\">2K+ bought since yesterday</span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width:288px;height:0;padding-bottom:min(288px, 100%);align-self:center;width:min(288px, 100%)\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP 15.6 inch FHD IPS Touch Windows Laptop AMD Ryzen 5 7520U 8GB 1TB SSD Natural Silver\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-15-6-inch-Windows-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-1TB-SSD-Silver_9c886845-9389-4646-809d-1e441ee7196a.d9365ec76e6150ea2a84e15e2da59b6f.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-15-6-inch-Windows-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-1TB-SSD-Silver_9c886845-9389-4646-809d-1e441ee7196a.d9365ec76e6150ea2a84e15e2da59b6f.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-15-6-inch-Windows-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-1TB-SSD-Silver_9c886845-9389-4646-809d-1e441ee7196a.d9365ec76e6150ea2a84e15e2da59b6f.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-0-productImage-9\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP 15.6 inch FHD IPS Touch Windows Laptop AMD Ryzen 5 7520U 8GB 1TB SSD Natural Silver\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"4M0TARY74D8Y\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/HP-15-6-inch-Windows-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-1TB-SSD-Silver/17939462069?classType=VARIANT&amp;athbdg=L1102\" aria-label=\"Options - HP 15.6 inch FHD IPS Touch Windows Laptop AMD Ryzen 5 7520U 8GB 1TB SSD Natural Silver\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align:0.65ex;margin-right:2px\">$</span><span class=\"f2\">359</span><span class=\"f6 f5-l\" style=\"vertical-align:0.75ex\">00</span></div><span class=\"ld_Ej\">current price $359.00</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" style=\"margin-bottom:2px\" data-test-id=\"gpt-price-range-string\">Options from $349.00</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP 15.6 inch FHD IPS Touch Windows Laptop AMD Ryzen 5 7520U 8GB 1TB SSD Natural Silver</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"243\">243</span><span class=\"ld_Ej\">4.6 out of 5 Stars. 243 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">tomorrow</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div><div><div><button type=\"button\" class=\"bg-white tl bw0 nl1 flex pointer sans-serif w-100 pb2\" aria-expanded=\"false\" data-dca-id=\"B:8D3A9ECBE7\" data-dca-intent=\"__DCA_TBD__\"><div class=\"f6 \">Resold offers<!-- --> <span class=\"b\">from $349.00</span></div><i class=\"ld ld-ChevronDown pv0 pb2 ph2 black\" style=\"font-size:1rem;vertical-align:-0.175em;width:1rem;height:1rem;box-sizing:content-box\" role=\"img\" data-testid=\"icon-chevron-down\" aria-hidden=\"true\"></i></button><section></section></div></div></div></div><div data-testid=\"tile-take-over\" class=\"ph1 pa0-xl bb b--near-white w-25\"><div class=\"h-100 pb1-xl pr4-xl pv1 ph1\"><section class=\"h-100 flex flex-column justify-center\" data-dca-id=\"M:B1684FBE4F\" data-dca-type=\"module\" data-dca-name=\"__DCA_NAME_TBD__\"><div class=\"flex center shadow-4 relative pointer black h-100 br3 justify-between flex-column w-100\" style=\"box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 8px 0px;\"><a link-identifier=\"Generic Name\" class=\"absolute h-100 z-1 flex-column w-100\" role=\"link\" aria-label=\"View details for Amazing Mac. Surprising price.\" data-dca-id=\"L:C888812623\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Silver/19664769612?classType=VARIANT&amp;from=/search\"><span class=\"w_iUH7\">View details for Amazing Mac. Surprising price.</span></a><div class=\"relative flex h-100 items-start w-100\" style=\"border-radius: 8px 8px 0px 0px; flex: 0 0 50%;\"><img loading=\"lazy\" alt=\"Hello, Neo tagline. Hand holding a MacBook Neo in citrus.\" height=\"fit-content\" width=\"fit-content\" class=\"relative db\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-8b59/k2-_d6074bbc-c368-4104-b194-d099a7e8c0ed.v1.jpg\" style=\"width: 100%; border-radius: 8px 8px 0px 0px; height: 100%; object-fit: contain;\"></div><div class=\"flex center w-100 h-100\" style=\"max-height: 240px; border-radius: 0px 0px 8px 8px;\"><div class=\"ph3 flex-grow-1 self-start mt4 mb6\"><div class=\"relative\"><div class=\"b mb0 tc f3\">Amazing Mac. Surprising price.</div><div class=\"mb1 mt2 tc f5\">From $599. Fast delivery on 3/11. T&amp;C apply.</div><div class=\"tc\"><div class=\"mt4 db\"><button class=\"w_hhLG w_XK4d w_0_LY br-pill pv2 ph4 pointer bg-white z-2\" type=\"button\" data-dca-id=\"B:19EE485CDA\" data-dca-intent=\"open\" data-dca-event=\"unknown\" style=\"color: black;\">Preorder now</button></div></div></div></div></div></div></section></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"47HGNKQ80V1H\" data-dca-guid=\"47HGNKQ80V1H\" data-dca-id=\"17963105552\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"17963105552\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/DISPLAY-HP-15-R5-8-1-Silver/17963105552?classType=REGULAR&amp;athbdg=L1200&amp;from=/search\"><span class=\"ld_Ej\"><h3>Overall pick HP 14 inch HD Windows Laptop AMD Athlon 7120 4GB RAM 128GB SSD Moonlight Blue $149.00 Was $229.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap: 8px;\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" role=\"group\" data-testid=\"badgeTagComponent\" style=\"background: rgb(0, 45, 88); margin-top: 0px; padding: 4px 8px; display: flex; align-items: flex-start; flex-direction: column; border-radius: 4px;\"><span class=\"w_yTSq f6-m f7 dib w_0aYG w_MwbK\" style=\"color: rgb(255, 255, 255); line-height: 16px; font-weight: 700; white-space: pre; margin-right: 4px; vertical-align: middle;\">Overall pick</span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP 14 inch HD Windows Laptop AMD Athlon 7120 4GB RAM 128GB SSD Moonlight Blue\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/DISPLAY-HP-15-R5-8-1-Silver_81ff506b-6bc4-4c8a-868f-35b97073ad4e.8c278fb9da8199ba946d223ac9580825.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/DISPLAY-HP-15-R5-8-1-Silver_81ff506b-6bc4-4c8a-868f-35b97073ad4e.8c278fb9da8199ba946d223ac9580825.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/DISPLAY-HP-15-R5-8-1-Silver_81ff506b-6bc4-4c8a-868f-35b97073ad4e.8c278fb9da8199ba946d223ac9580825.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-0-productImage-11\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP 14 inch HD Windows Laptop AMD Athlon 7120 4GB RAM 128GB SSD Moonlight Blue\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"47HGNKQ80V1H\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - HP 14 inch HD Windows Laptop AMD Athlon 7120 4GB RAM 128GB SSD Moonlight Blue\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">149</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price Now $149.00, Was $229.00</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$229.00</span></div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP 14 inch HD Windows Laptop AMD Athlon 7120 4GB RAM 128GB SSD Moonlight Blue</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"3478\">3478</span><span class=\"ld_Ej\">4.2 out of 5 Stars. 3478 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">tomorrow</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"5555GZML7Y6S\" data-dca-guid=\"5555GZML7Y6S\" data-dca-id=\"18280852708\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"18280852708\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=12&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FHYYUO-15-6-Windows-11-Laptop-16GB-RAM-512GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-1920x1080-FHD-Display-WiFi5-BT5-0-PC-Computer-Business-Study%2F18280852708%3FclassType%3DREGULAR%26athbdg%3DL1700%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=cdSpjqB9BlRqo-eLd91eYhoIPNmKeDdDjwlTN54uhdGkEAIVGPf3-6V6aTJ7TJjvjNk3sypI8LBOJ3lm1wy9Lj9vGti40ousa1-_x2euLOUmxE3ohQdH22KRu2dWZf3D3F0GiCLnmSkr16kusXPQel7jKrcvMLsbhCc1aPRqvjNhAxZ0griGqHLYM2jcjH6D6yL4hwJeFzfbLoYhcPxRgG9L9ZMsp67bUbOYSIO2QV8VhNYW8YRRxPJuy0yrijQxXYYCjM656y_inA2jBouMCjpYWCu3O7wF62cHVmX9zos&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=REGULAR&amp;athbdg=L1700\"><span class=\"ld_Ej\"><h3>Reduced price HYYUO 15.6\" Windows 11 Laptop, 16GB RAM 512GB SSD, Intel Pentium Gold 6500Y with 2 Cores up to 3.4GHz, 1920x1080 FHD Display, WiFi5 BT5.0, PC Computer for Business, Study, Office $269.99 Was $569.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap: 8px;\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" role=\"group\" data-testid=\"badgeTagComponent\" style=\"background: rgb(255, 255, 255); margin-top: 0px; padding: 4px 8px; display: flex; align-items: flex-start; flex-direction: column; border-radius: 2px; box-shadow: rgb(0, 79, 154) 0px 0px 0px 0.0625rem inset;\"><span class=\"w_yTSq f6-m f7 dib w_0aYG w_MwbK\" style=\"color: rgb(0, 79, 154); line-height: 16px; font-weight: 400; white-space: pre; margin-right: 4px; vertical-align: middle;\">Reduced price</span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HYYUO 15.6&quot; Windows 11 Laptop, 16GB RAM 512GB SSD, Intel Pentium Gold 6500Y with 2 Cores up to 3.4GHz, 1920x1080 FHD Display, WiFi5 BT5.0, PC Computer for Business, Study, Office\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HYYUO-15-6-Windows-11-Laptop-16GB-RAM-512GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-1920x1080-FHD-Display-WiFi5-BT5-0-PC-Computer-Business-Study_a3102ba2-b58a-4f21-9e43-32ac41524d45.d573b1d5047f4eeb313c6ecd1f96c2e2.png?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HYYUO-15-6-Windows-11-Laptop-16GB-RAM-512GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-1920x1080-FHD-Display-WiFi5-BT5-0-PC-Computer-Business-Study_a3102ba2-b58a-4f21-9e43-32ac41524d45.d573b1d5047f4eeb313c6ecd1f96c2e2.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HYYUO-15-6-Windows-11-Laptop-16GB-RAM-512GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-1920x1080-FHD-Display-WiFi5-BT5-0-PC-Computer-Business-Study_a3102ba2-b58a-4f21-9e43-32ac41524d45.d573b1d5047f4eeb313c6ecd1f96c2e2.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-0-productImage-12\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HYYUO 15.6&quot; Windows 11 Laptop, 16GB RAM 512GB SSD, Intel Pentium Gold 6500Y with 2 Cores up to 3.4GHz, 1920x1080 FHD Display, WiFi5 BT5.0, PC Computer for Business, Study, Office\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"5555GZML7Y6S\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - HYYUO 15.6&quot; Windows 11 Laptop, 16GB RAM 512GB SSD, Intel Pentium Gold 6500Y with 2 Cores up to 3.4GHz, 1920x1080 FHD Display, WiFi5 BT5.0, PC Computer for Business, Study, Office\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div class=\"h1 mt1\" data-test-id=\"gpt-sponsored-tag-container\"><div class=\"flex items-center lh-title h2-l normal\"><div class=\"flex items-center f7 f6-l\"><div>Sponsored</div><div class=\"z-2\"><button class=\"w_hhLG w_DZvO w_0_LY pointer pl1 no-underline pt3 pb3 \" type=\"button\" title=\"Ad disclaimer and feedback\" aria-label=\"Ad disclaimer and feedback\" data-dca-id=\"B:9AE6AB358F\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" style=\"color: gray;\"><i class=\"ld ld-InfoCircle\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i></button></div></div></div></div><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">269</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">99</span></div><span class=\"ld_Ej\">current price Now $269.99, Was $569.00</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$569.00</span></div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HYYUO 15.6\" Windows 11 Laptop, 16GB RAM 512GB SSD, Intel Pentium Gold 6500Y with 2 Cores up to 3.4GHz, 1920x1080 FHD Display, WiFi5 BT5.0, PC Computer for Business, Study, Office</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"27\">27</span><span class=\"ld_Ej\">3.6 out of 5 Stars. 27 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"6IGUA8ZSSRZ4\" data-dca-guid=\"6IGUA8ZSSRZ4\" data-dca-id=\"9929511078\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"9929511078\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=13&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FPryloxen-T-Series-T156A-Laptop-15-6-FHD-Display-Intel-N95-32GBRAM-1024GB-PCIe-SSD-Webcam-SD-Card-Reader-HDMI-Wi-Fi-6-Windows-11-Pro-Grey%2F9929511078%3FclassType%3DVARIANT%26athbdg%3DL1700%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=E9t710uDOrbinOI_OyiszJrQ47honJemYLWluNXZJSOy4YpFbuZ6Y1dMB-6FJouDSk77PX6KOaXS1BjnOoJeYT9vGti40ousa1-_x2euLOUmxE3ohQdH22KRu2dWZf3D3CHq70AjOi_7ZN-Jq6evUqR6y2qP1aLmESm-Me-dRG4oyMR5ZWBIajNUbcfvqSNFfTNsJaLFQBnoooXBRK-72-vIPKznhQcsltOMxFdAULvnhQS3cihoQMn_ZY_QJdKnlU9k8uTobp7ugtICFmhImQ&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT&amp;athbdg=L1700\"><span class=\"ld_Ej\"><h3>Reduced price Exsurf 15.6\" Windows 11 Pro Laptop, Intel 3050E CPU, 32GB RAM 1TB SSD,Type-C Port, Pink Home Computer $399.99 Was $599.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap: 8px;\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" role=\"group\" data-testid=\"badgeTagComponent\" style=\"background: rgb(255, 255, 255); margin-top: 0px; padding: 4px 8px; display: flex; align-items: flex-start; flex-direction: column; border-radius: 2px; box-shadow: rgb(0, 79, 154) 0px 0px 0px 0.0625rem inset;\"><span class=\"w_yTSq f6-m f7 dib w_0aYG w_MwbK\" style=\"color: rgb(0, 79, 154); line-height: 16px; font-weight: 400; white-space: pre; margin-right: 4px; vertical-align: middle;\">Reduced price</span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Exsurf 15.6&quot; Windows 11 Pro Laptop, Intel 3050E CPU, 32GB RAM 1TB SSD,Type-C Port, Pink Home Computer\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/Pryloxen-T-Series-T156A-Laptop-15-6-FHD-Display-Intel-N95-32GBRAM-1024GB-PCIe-SSD-Webcam-SD-Card-Reader-HDMI-Wi-Fi-6-Windows-11-Pro-Grey_548a7b91-6074-4de6-97c9-66f86d5dbe8b.70326d9f57e52159159fb6f1ee8f99b7.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/Pryloxen-T-Series-T156A-Laptop-15-6-FHD-Display-Intel-N95-32GBRAM-1024GB-PCIe-SSD-Webcam-SD-Card-Reader-HDMI-Wi-Fi-6-Windows-11-Pro-Grey_548a7b91-6074-4de6-97c9-66f86d5dbe8b.70326d9f57e52159159fb6f1ee8f99b7.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/Pryloxen-T-Series-T156A-Laptop-15-6-FHD-Display-Intel-N95-32GBRAM-1024GB-PCIe-SSD-Webcam-SD-Card-Reader-HDMI-Wi-Fi-6-Windows-11-Pro-Grey_548a7b91-6074-4de6-97c9-66f86d5dbe8b.70326d9f57e52159159fb6f1ee8f99b7.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-0-productImage-13\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Exsurf 15.6&quot; Windows 11 Pro Laptop, Intel 3050E CPU, 32GB RAM 1TB SSD,Type-C Port, Pink Home Computer\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"6IGUA8ZSSRZ4\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=13&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FPryloxen-T-Series-T156A-Laptop-15-6-FHD-Display-Intel-N95-32GBRAM-1024GB-PCIe-SSD-Webcam-SD-Card-Reader-HDMI-Wi-Fi-6-Windows-11-Pro-Grey%2F9929511078%3FclassType%3DVARIANT%26athbdg%3DL1700%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=E9t710uDOrbinOI_OyiszJrQ47honJemYLWluNXZJSOy4YpFbuZ6Y1dMB-6FJouDSk77PX6KOaXS1BjnOoJeYT9vGti40ousa1-_x2euLOUmxE3ohQdH22KRu2dWZf3D3CHq70AjOi_7ZN-Jq6evUqR6y2qP1aLmESm-Me-dRG4oyMR5ZWBIajNUbcfvqSNFfTNsJaLFQBnoooXBRK-72-vIPKznhQcsltOMxFdAULvnhQS3cihoQMn_ZY_QJdKnlU9k8uTobp7ugtICFmhImQ&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT&amp;athbdg=L1700\" aria-label=\"Options - Exsurf 15.6&quot; Windows 11 Pro Laptop, Intel 3050E CPU, 32GB RAM 1TB SSD,Type-C Port, Pink Home Computer\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div class=\"h1 mt1\" data-test-id=\"gpt-sponsored-tag-container\"><div class=\"flex items-center lh-title h2-l normal\"><div class=\"flex items-center f7 f6-l\"><div>Sponsored</div><div class=\"z-2\"><button class=\"w_hhLG w_DZvO w_0_LY pointer pl1 no-underline pt3 pb3 \" type=\"button\" title=\"Ad disclaimer and feedback\" aria-label=\"Ad disclaimer and feedback\" data-dca-id=\"B:9AE6AB358F\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" style=\"color: gray;\"><i class=\"ld ld-InfoCircle\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i></button></div></div></div></div><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">399</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">99</span></div><span class=\"ld_Ej\">current price Now $399.99, Was $599.99</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$599.99</span></div><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $379.99</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">Exsurf 15.6\" Windows 11 Pro Laptop, Intel 3050E CPU, 32GB RAM 1TB SSD,Type-C Port, Pink Home Computer</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"28\">28</span><span class=\"ld_Ej\">4.2 out of 5 Stars. 28 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"5BESRSBMJD9Z\" data-dca-guid=\"5BESRSBMJD9Z\" data-dca-id=\"13968860429\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"13968860429\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/HP-OmniBook-5-16-inch-2K-Touch-Laptop-AI-PC-Intel-Core-Ultra-7-255U-16GB-RAM-1TB-SSD-Glacier-Silver/13968860429?classType=REGULAR&amp;athbdg=L1600&amp;from=/search\"><span class=\"ld_Ej\"><h3>Best seller HP Omnibook 5 16 inch Touch Windows 11 Laptop Intel Core Ultra 7 AI PC 16GB RAM 1TB SSD Silver $629.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap: 8px;\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" role=\"group\" data-testid=\"badgeTagComponent\" style=\"background: rgb(230, 241, 252); margin-top: 0px; padding: 4px 8px; display: flex; align-items: flex-start; flex-direction: column; border-radius: 4px;\"><span class=\"w_yTSq f6-m f7 dib w_0aYG w_MwbK\" style=\"color: rgb(0, 79, 154); line-height: 16px; font-weight: 700; white-space: pre; margin-right: 4px; vertical-align: middle;\">Best seller</span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP Omnibook 5 16 inch Touch Windows 11 Laptop Intel Core Ultra 7 AI PC 16GB RAM 1TB SSD Silver\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-OmniBook-5-16-inch-2K-Touch-Laptop-AI-PC-Intel-Core-Ultra-7-255U-16GB-RAM-1TB-SSD-Glacier-Silver_988a07c4-5068-4d6a-818e-54446bab1410.fc17869d5ff12e1f6baf782007676f21.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-OmniBook-5-16-inch-2K-Touch-Laptop-AI-PC-Intel-Core-Ultra-7-255U-16GB-RAM-1TB-SSD-Glacier-Silver_988a07c4-5068-4d6a-818e-54446bab1410.fc17869d5ff12e1f6baf782007676f21.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-OmniBook-5-16-inch-2K-Touch-Laptop-AI-PC-Intel-Core-Ultra-7-255U-16GB-RAM-1TB-SSD-Glacier-Silver_988a07c4-5068-4d6a-818e-54446bab1410.fc17869d5ff12e1f6baf782007676f21.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-0-productImage-14\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP Omnibook 5 16 inch Touch Windows 11 Laptop Intel Core Ultra 7 AI PC 16GB RAM 1TB SSD Silver\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"5BESRSBMJD9Z\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - HP Omnibook 5 16 inch Touch Windows 11 Laptop Intel Core Ultra 7 AI PC 16GB RAM 1TB SSD Silver\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">629</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price $629.00</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP Omnibook 5 16 inch Touch Windows 11 Laptop Intel Core Ultra 7 AI PC 16GB RAM 1TB SSD Silver</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"1387\">1387</span><span class=\"ld_Ej\">4.2 out of 5 Stars. 1387 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div data-test-id=\"gpt-low-inventory-container\"><span class=\"w_yTSq f7 f6-hdkp lh-solid lh-title-hdkp b dark-red w_0aYG w_MwbK\">Low stock</span></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div><div class=\"flex items-center mt1\"><img loading=\"lazy\" class=\"mr1\" src=\"//i5.walmartimages.com/dfw/63fd9f59-547b/d4dfa923-2a65-4c3a-b34c-c4db7ee6c035/v1/Apple_TV_iOS.svg\" alt=\"Apple Tv\" height=\"16\" width=\"16\"><span class=\"dark-gray f7 f6-l\">3 free offers from Apple</span></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"15ZJOEBZ8U38\" data-dca-guid=\"15ZJOEBZ8U38\" data-dca-id=\"13982958746\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"13982958746\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/HP-Stream-14-inch-Windows-Laptop-Intel-Processor-N150-4GB-128GB-eMMC-Pink-12-mo-Microsoft-365-included/13982958746?classType=VARIANT&amp;athbdg=L1103&amp;from=/search\"><span class=\"ld_Ej\"><h3>In 1K+ people's carts HP Stream 14 inch Win 11 Laptop Intel Processor N150 4GB 128GB eMMC Pink (12-mo. Microsoft 365 included) $179.00 Was $229.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap: 8px;\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" role=\"group\" data-testid=\"badgeTagComponent\" style=\"background: rgb(255, 255, 255); margin-top: 0px; padding: 4px 8px; display: flex; align-items: flex-start; flex-direction: column; border-radius: 4px; overflow: hidden; border: 1px solid rgb(0, 113, 220);\"><span class=\"w_yTSq f6-m f7 truncate dib w_0aYG w_MwbK\" style=\"color: rgb(0, 113, 220); line-height: 16px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; margin-right: 4px; vertical-align: middle;\">In 1K+ people's carts</span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP Stream 14 inch Win 11 Laptop Intel Processor N150 4GB 128GB eMMC Pink (12-mo. Microsoft 365 included)\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-Stream-14-inch-Windows-Laptop-Intel-Processor-N150-4GB-128GB-eMMC-Pink-12-mo-Microsoft-365-included_82b98986-afdd-40c3-a2d5-b0355110c65d.8403d90bb2cc57ab6d11c1b93eab4f44.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-Stream-14-inch-Windows-Laptop-Intel-Processor-N150-4GB-128GB-eMMC-Pink-12-mo-Microsoft-365-included_82b98986-afdd-40c3-a2d5-b0355110c65d.8403d90bb2cc57ab6d11c1b93eab4f44.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-Stream-14-inch-Windows-Laptop-Intel-Processor-N150-4GB-128GB-eMMC-Pink-12-mo-Microsoft-365-included_82b98986-afdd-40c3-a2d5-b0355110c65d.8403d90bb2cc57ab6d11c1b93eab4f44.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-0-productImage-15\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP Stream 14 inch Win 11 Laptop Intel Processor N150 4GB 128GB eMMC Pink (12-mo. Microsoft 365 included)\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-15ZJOEBZ8U38\"><div class=\"flex f6 justify-center items-center lh-title h2-l\" data-test-id=\"gpt-swatch-variants-container\"><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/HP-Stream-14-inch-Windows-Laptop-Intel-Processor-N150-4GB-128GB-eMMC-Pink-12-mo-Microsoft-365-included/13982958746?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/82b98986-afdd-40c3-a2d5-b0355110c65d.8403d90bb2cc57ab6d11c1b93eab4f44.jpeg?odnBg=FFFFFF&amp;odnHeight=30&amp;odnWidth=30\" class=\"br-100 v-btm ba b--transparent\" alt=\"Tranquil Pink, variant on HP Stream 14 inch Win 11 Laptop Intel Processor N150 4GB 128GB eMMC Pink (12-mo. Microsoft 365 included)\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"flex items-center justify-center mr0\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/HP-Stream-14-inch-Windows-Laptop-Intel-Processor-N150-4GB-128GB-eMMC-Blue-12-mo-Microsoft-365-included/13989468860?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/4f71c0f6-9424-4dc0-9a32-1fcc7aab0a24.4dcca0e9c456f32f74fb550ff255a43e.jpeg?odnBg=FFFFFF&amp;odnHeight=30&amp;odnWidth=30\" class=\"br-100 v-btm ba b--transparent\" alt=\"Waterfall Blue, variant on HP Stream 14 inch Win 11 Laptop Intel Processor N150 4GB 128GB eMMC Pink (12-mo. Microsoft 365 included)\" data-test-id=\"gpt-variant-image\"></a></div></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"15ZJOEBZ8U38\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/HP-Stream-14-inch-Windows-Laptop-Intel-Processor-N150-4GB-128GB-eMMC-Pink-12-mo-Microsoft-365-included/13982958746?classType=VARIANT&amp;athbdg=L1103\" aria-label=\"Options - HP Stream 14 inch Win 11 Laptop Intel Processor N150 4GB 128GB eMMC Pink (12-mo. Microsoft 365 included)\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">179</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price Now $179.00, Was $229.00</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$229.00</span></div><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $124.00</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP Stream 14 inch Win 11 Laptop Intel Processor N150 4GB 128GB eMMC Pink (12-mo. Microsoft 365 included)</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"8909\">8909</span><span class=\"ld_Ej\">4.2 out of 5 Stars. 8909 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline w-fit items-center br1 ph1 bg-blue-130 white ff-thunderbolt\"><img loading=\"lazy\" class=\"mr1\" height=\"10\" width=\"8\" alt=\"\" src=\"//i5.walmartimages.com/dfw/63fd9f59-a53c/14c2b8c6-d48a-4302-924f-7817f0c0737c/v1/thunderbolt.svg\"><div class=\"ff-text-wrapper\">Delivery as soon as <span class=\"b\">1 hour</span></div></div><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">tomorrow</span></div></div><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free pickup as soon as <span class=\"b\">tomorrow</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div data-testid=\"tile-take-over\" class=\"ph1 pa0-xl bb b--near-white w-25\"><div class=\"h-100 pb1-xl pr4-xl pv1 ph1\"><section class=\"h-100 flex flex-column justify-center\" data-dca-id=\"M:B1684FBE4F\" data-dca-type=\"module\" data-dca-name=\"__DCA_NAME_TBD__\"><div class=\"flex center shadow-4 relative pointer black h-100 br3 justify-between flex-column w-100\" style=\"box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 8px 0px;\"><a link-identifier=\"Generic Name\" class=\"absolute h-100 z-1 flex-column w-100\" role=\"link\" aria-label=\"View details for The latest Apple tech &amp; savings\" data-dca-id=\"L:C888812623\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/shop/savings/electronics/apple\"><span class=\"w_iUH7\">View details for The latest Apple tech &amp; savings</span></a><div class=\"relative flex h-100 items-start w-100\" style=\"border-radius: 8px 8px 0px 0px; flex: 0 0 50%;\"><img loading=\"lazy\" alt=\"Front and back of iPhone 17 Pro Max, AirPods positioned outside the case, two different types of Apple Watch and an AirTag.\" height=\"fit-content\" width=\"fit-content\" class=\"relative db\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-c48a/k2-_db8a8bde-933e-4e92-92b9-40b547c71e0e.v2.jpg\" style=\"width: 100%; border-radius: 8px 8px 0px 0px; height: 100%; object-fit: contain;\"></div><div class=\"flex center w-100 h-100\" style=\"max-height: 240px; border-radius: 0px 0px 8px 8px;\"><div class=\"ph3 flex-grow-1 self-start mt4 mb6\"><div class=\"relative\"><div class=\"b mb0 tc f3\">The latest Apple tech &amp; savings</div><div class=\"mb1 mt2 tc f5\">Upgrade your iPhone, AirPods &amp; more.</div><div class=\"tc\"><div class=\"mt4 db\"><button class=\"w_hhLG w_XK4d w_0_LY br-pill pv2 ph4 pointer bg-white z-2\" type=\"button\" data-dca-id=\"B:19EE485CDA\" data-dca-intent=\"open\" data-dca-event=\"unknown\" style=\"color: black;\">Shop now</button></div></div></div></div></div></div></section></div></div></div></div><div data-stack-index=\"1\" class=\"\" id=\"1\" tabindex=\"-1\"><hr aria-hidden=\"true\" class=\"w_8Gn9\"><div class=\"pv3 pl4-xl pt4-xl pl3\"><div data-testid=\"sp-search-middle\"><section data-dca-id=\"M:B86EDBF1E2\" data-dca-type=\"module\" data-dca-name=\"stickyATC\"><section><div class=\"pr3 pr0-xl pr4-m flex justify-between mb3 items-baseline\"><section data-dca-id=\"M:DF16D9EFF8\" data-dca-type=\"module\" data-dca-name=\"__DCA_NAME_TBD__\" style=\"flex: 1 1 0%;\"><div><div class=\"\"><div><div class=\"inline-flex\"><h2 class=\" lh-title ma0 \" aria-label=\"4 stars and above (9)\">4 stars and above<span class=\"f6 f5-m fw3 ml1 mt1-xl gray normal self-center\" aria-hidden=\"true\">(9)</span></h2></div></div></div></div></section><span class=\"gray\"><span class=\"w_yTSq w_0aYG w_MwbK\"><div class=\"flex items-center f7\"><div>Sponsored</div></div></span></span></div><div class=\"flex flex-column justify-center relative\" data-testid=\"horizontal-scroller-4 stars and above\" data-dca-name=\"ui_horizontal_scroller:4 stars and above\" data-dca-type=\"module\"><a link-identifier=\"horizontalScrollerPrevious\" class=\"absolute dn z-5 bg-white br-100 pa0 pointer hidden-child br-100 nav-control left-1\" aria-label=\"Previous slide for 4 stars and above list\" aria-disabled=\"true\" data-testid=\"horizontal-scroller-previous\" data-dca-intent=\"swipeRight\" tabindex=\"0\" role=\"button\" data-dca-id=\"L:725BAF5955\" data-dca-event=\"__DCA_EVENT_TBD__\" style=\"top: 100px;\"><i class=\"ld ld-ChevronLeft\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding: 12px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></a><ul data-testid=\"carousel-container\" class=\"list ma0 pl0 overflow-x-scroll hidesb hidesb-wk relative overflow-y-hidden carousel-peek-2 carousel-5\" data-dca-id=\"M:65DC72BB31\" data-dca-type=\"module\" data-dca-name=\"__DCA_NAME_TBD__\" style=\"display: grid; grid-auto-flow: column; scroll-snap-type: x mandatory; max-height: fit-content;\"><li class=\"flex flex-column items-center mr2\" data-slide=\"0\" style=\"scroll-snap-align: start;\"><div role=\"group\" data-item-id=\"2ZBMK0KKQI53\" data-dca-guid=\"2ZBMK0KKQI53\" data-dca-id=\"16884460798\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 \" data-test-id=\"gpt-main\"><a link-identifier=\"16884460798\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~SECONDARY_STACK-high_rated_stack~fs&amp;pos=1&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FDell-15-Laptop-DC15250-15-6-inch-FHD-Intel-Core-3-100U-8GB-RAM-512GB-SSD-Carbon-Black%2F16884460798%3FclassType%3DREGULAR%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=XAQQLld7qep7ZAPhNdUXc2mZ1qODjgZpQZ-9IFgOKf7QdGiNdt9GEItj8JEsvgrXYChQtVUm896FfLAYXG7zLV2AByxttXDpmxGwHkIHWQMhHo0J20WTKqyPFcu3mFcMGUfzVkME2Ha7fmkapbdAHrqsllApRInjCG6lj5Qo1iS77ALvUVA_1dvM8MuuZlH638FYl5I8jbE4D8RqhQF7mupyMb0PVFVwDHlCBuFpbyNNVuJ6RdAoEFUFjdiRtuLg21MdHKCsizG5wPNwiCokFg&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=REGULAR\"><span class=\"ld_Ej\"><h3>Dell 15 Laptop DC15250 - 15.6-inch FHD, Intel Core 3-100U, 8GB RAM, 512GB SSD, Carbon Black $375.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Dell 15 Laptop DC15250 - 15.6-inch FHD, Intel Core 3-100U, 8GB RAM, 512GB SSD, Carbon Black\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/Dell-15-Laptop-DC15250-15-6-inch-FHD-Intel-Core-3-100U-8GB-RAM-512GB-SSD-Carbon-Black_50f303bc-9f95-4411-acb2-6ead08488a49.8134694eeed940df2b974fd0bafc2a0d.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/Dell-15-Laptop-DC15250-15-6-inch-FHD-Intel-Core-3-100U-8GB-RAM-512GB-SSD-Carbon-Black_50f303bc-9f95-4411-acb2-6ead08488a49.8134694eeed940df2b974fd0bafc2a0d.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/Dell-15-Laptop-DC15250-15-6-inch-FHD-Intel-Core-3-100U-8GB-RAM-512GB-SSD-Carbon-Black_50f303bc-9f95-4411-acb2-6ead08488a49.8134694eeed940df2b974fd0bafc2a0d.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Dell 15 Laptop DC15250 - 15.6-inch FHD, Intel Core 3-100U, 8GB RAM, 512GB SSD, Carbon Black\"></div></div><div class=\"z-2 relative mv2\"><div class=\"z-2 relative w-60\"><div class=\"relative dib flex-row-reverse\" data-id=\"2ZBMK0KKQI53\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~SECONDARY_STACK-high_rated_stack~fs&amp;pos=1&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FDell-15-Laptop-DC15250-15-6-inch-FHD-Intel-Core-3-100U-8GB-RAM-512GB-SSD-Carbon-Black%2F16884460798%3FclassType%3DREGULAR%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=XAQQLld7qep7ZAPhNdUXc2mZ1qODjgZpQZ-9IFgOKf7QdGiNdt9GEItj8JEsvgrXYChQtVUm896FfLAYXG7zLV2AByxttXDpmxGwHkIHWQMhHo0J20WTKqyPFcu3mFcMGUfzVkME2Ha7fmkapbdAHrqsllApRInjCG6lj5Qo1iS77ALvUVA_1dvM8MuuZlH638FYl5I8jbE4D8RqhQF7mupyMb0PVFVwDHlCBuFpbyNNVuJ6RdAoEFUFjdiRtuLg21MdHKCsizG5wPNwiCokFg&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=REGULAR\" aria-label=\"Options - Dell 15 Laptop DC15250 - 15.6-inch FHD, Intel Core 3-100U, 8GB RAM, 512GB SSD, Carbon Black\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">375</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price $375.00</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $299.00</div></div></div><span class=\"ld_B4\" data-test-id=\"gpt-product-title-line-clamp\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><div class=\"mv2\" data-test-id=\"gpt-inline-brand-title-container\"><span data-test-id=\"gpt-one-line-brand-product-title\" class=\"normal dark-gray\">Dell 15 Laptop DC15250 - 15.6-inch FHD, Intel Core 3-100U, 8GB RAM, 512GB SSD, Carbon Black</span></div></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"2288\">2288</span><span class=\"ld_Ej\">4.6 out of 5 Stars. 2288 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">tomorrow</span></div></div></div></div></div></div></div></div></li><li class=\"flex flex-column items-center mr2\" data-slide=\"1\"><div role=\"group\" data-item-id=\"5D7CKN98YMN4\" data-dca-guid=\"5D7CKN98YMN4\" data-dca-id=\"13575961751\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 \" data-test-id=\"gpt-main\"><a link-identifier=\"13575961751\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~SECONDARY_STACK-high_rated_stack~fs&amp;pos=2&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FRestored-Dell-Latitude-3190-11-6-Laptop-Intel-Core-Celeron-N4120-1-1-GHz-8GB-RAM-58GB-SSD-Windows-11-Home-Refurbished%2F13575961751%3FconditionGroupCode%3D2%26classType%3DREGULAR%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=7VVoFj6AUlDDiP4lrt6_FLZt8snn843lal3V8XlSGkCDvU_SMSfBPUQd5ndGDiIjeyGf3-1yxw0YdzeHBqYt212AByxttXDpmxGwHkIHWQMhHo0J20WTKqyPFcu3mFcMvpOAo_i5pXjfyAGYIlz9qPRZnhvzW5IutKz4p-9h9Z0C9kpZ3zIkTWNKpp5sdwahMcLiZ0hXyVg4_PPH9fFHKOPhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;conditionGroupCode=2&amp;classType=REGULAR\"><span class=\"ld_Ej\"><h3>Restored Dell Latitude 3190 11.6\" Laptop Intel Core Celeron N4120 (1.1 GHz) 4GB RAM 64GB SSD Windows 10 Home $158.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Restored Dell Latitude 3190 11.6&quot; Laptop Intel Core Celeron N4120 (1.1 GHz) 4GB RAM 64GB SSD Windows 10 Home\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/Restored-Dell-Latitude-3190-11-6-Laptop-Intel-Core-Celeron-N4120-1-1-GHz-8GB-RAM-58GB-SSD-Windows-11-Home-Refurbished_64b69ebc-a7c2-4b0a-a4fe-199a5a9ee685.6d0ab77902ea238116caf0ec642ad335.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/Restored-Dell-Latitude-3190-11-6-Laptop-Intel-Core-Celeron-N4120-1-1-GHz-8GB-RAM-58GB-SSD-Windows-11-Home-Refurbished_64b69ebc-a7c2-4b0a-a4fe-199a5a9ee685.6d0ab77902ea238116caf0ec642ad335.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/Restored-Dell-Latitude-3190-11-6-Laptop-Intel-Core-Celeron-N4120-1-1-GHz-8GB-RAM-58GB-SSD-Windows-11-Home-Refurbished_64b69ebc-a7c2-4b0a-a4fe-199a5a9ee685.6d0ab77902ea238116caf0ec642ad335.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Restored Dell Latitude 3190 11.6&quot; Laptop Intel Core Celeron N4120 (1.1 GHz) 4GB RAM 64GB SSD Windows 10 Home\"></div></div><div class=\"z-2 relative mv2\"><div class=\"z-2 relative\"><div class=\"relative dib flex-row-reverse\" data-id=\"5D7CKN98YMN4\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - Restored Dell Latitude 3190 11.6&quot; Laptop Intel Core Celeron N4120 (1.1 GHz) 4GB RAM 64GB SSD Windows 10 Home\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">158</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price $158.00</span></div></div><span class=\"ld_B4\" data-test-id=\"gpt-product-title-line-clamp\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><div class=\"mv2\" data-test-id=\"gpt-inline-brand-title-container\"><span data-test-id=\"gpt-one-line-brand-product-title\" class=\"normal dark-gray\">Restored Dell Latitude 3190 11.6\" Laptop Intel Core Celeron N4120 (1.1 GHz) 4GB RAM 64GB SSD Windows 10 Home</span></div></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"34\">34</span><span class=\"ld_Ej\">3.5 out of 5 Stars. 34 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"flex items-center mt0\" data-testid=\"product-badge-container\"><div class=\"mr1\"><i class=\"ld ld-Recycle\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i></div><span data-testid=\"product-badge-text\" class=\"dark-gray f7 f6-l\" aria-hidden=\"false\">Restored: Fair</span></div></div></div></div></div></div></li><li class=\"flex flex-column items-center mr2\" data-slide=\"2\"><div role=\"group\" data-item-id=\"28HY55BSXB4X\" data-dca-guid=\"28HY55BSXB4X\" data-dca-id=\"8458658151\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 \" data-test-id=\"gpt-main\"><a link-identifier=\"8458658151\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~SECONDARY_STACK-high_rated_stack~fs&amp;pos=3&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2F2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind%2F8458658151%3FclassType%3DREGULAR%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=71j-ydoEywzmn3gCjMfmjH2iTjlNFvTHwFwQru_MfpX5rlhE1ul2CUX_K3aZBtW5htmwVKcRglrK_tOs0uyk7NEfICQfIJMOOm3IQnnRW_omxE3ohQdH22KRu2dWZf3DILbeD7m7yWW0P2thun1cgSW6cCdpeULTHkxwFRn3XwxJ8x7vE_w5_3VFHmoYKha36_-nQSTpPepXcS-ILDFcgHF5uwVZ4G6xBE474abZmWJ8W7Ev4SnWHXqrTDgzVAyL0jEQuiAu3HVQQLPxTd_DwRd5MHVqGNqzIDZPIaa1N1o&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=REGULAR\"><span class=\"ld_Ej\"><h3>2026 Newest Laptop, 15.6-Inch FHD Display Laptop with Intel Quad Core-12th N150(Up to 3.4GHz), 8GB RAM 256GB ROM Business Laptop Computer, Fingerprint, Type C, Windows 11 Home, Pink $349.99 Was $699.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, 2026 Newest Laptop, 15.6-Inch FHD Display Laptop with Intel Quad Core-12th N150(Up to 3.4GHz), 8GB RAM 256GB ROM Business Laptop Computer, Fingerprint, Type C, Windows 11 Home, Pink\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind_68012c26-4831-43de-8762-fd9e119182a6.ad7210ba4fddcd7804c24e3a47a59f92.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind_68012c26-4831-43de-8762-fd9e119182a6.ad7210ba4fddcd7804c24e3a47a59f92.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind_68012c26-4831-43de-8762-fd9e119182a6.ad7210ba4fddcd7804c24e3a47a59f92.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"2026 Newest Laptop, 15.6-Inch FHD Display Laptop with Intel Quad Core-12th N150(Up to 3.4GHz), 8GB RAM 256GB ROM Business Laptop Computer, Fingerprint, Type C, Windows 11 Home, Pink\"></div></div><div class=\"z-2 relative mv2\"><div class=\"z-2 relative\"><div class=\"relative dib flex-row-reverse\" data-id=\"28HY55BSXB4X\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - 2026 Newest Laptop, 15.6-Inch FHD Display Laptop with Intel Quad Core-12th N150(Up to 3.4GHz), 8GB RAM 256GB ROM Business Laptop Computer, Fingerprint, Type C, Windows 11 Home, Pink\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">349</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">99</span></div><span class=\"ld_Ej\">current price Now $349.99, Was $699.99</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$699.99</span></div></div></div><span class=\"ld_B4\" data-test-id=\"gpt-product-title-line-clamp\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><div class=\"mv2\" data-test-id=\"gpt-inline-brand-title-container\"><span data-test-id=\"gpt-one-line-brand-product-title\" class=\"normal dark-gray\">2026 Newest Laptop, 15.6-Inch FHD Display Laptop with Intel Quad Core-12th N150(Up to 3.4GHz), 8GB RAM 256GB ROM Business Laptop Computer, Fingerprint, Type C, Windows 11 Home, Pink</span></div></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"353\">353</span><span class=\"ld_Ej\">4.3 out of 5 Stars. 353 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div></div></div></div></div></div></li><li class=\"flex flex-column items-center mr2\" data-slide=\"3\"><div role=\"group\" data-item-id=\"4B38K4HL3UF7\" data-dca-guid=\"4B38K4HL3UF7\" data-dca-id=\"16572824328\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 \" data-test-id=\"gpt-main\"><a link-identifier=\"16572824328\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~SECONDARY_STACK-high_rated_stack~fs&amp;pos=4&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FHP-17-3-HD-Laptop-Student-Business-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-AI-Copilot-Key-Office-Pro-Lifetime-Windows-11-Pro-Wi-Fi-6-Numeric-Keypad%2F16572824328%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=9TsQPTkY-zpfNh6ZH02umcHLLMklsrUvypZ2gTqhx4-5zZe8WSZADniOc5bkizOyXk7wmu-tV0L0xvIuq6SmsF2AByxttXDpmxGwHkIHWQMhHo0J20WTKqyPFcu3mFcMyy4HY0dO7gz09aHWHrd59lqIAjzvaiGLNxYP6eAm1VZ0ltu0lrm_HKwymtVypGe_CRhK-GxI-l5AGxTjOKERu-pyMb0PVFVwDHlCBuFpbyNNVuJ6RdAoEFUFjdiRtuLg21MdHKCsizG5wPNwiCokFg&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\"><span class=\"ld_Ej\"><h3>HP 17.3\" HD+ Laptop for Student and Business, Intel Core i3-N305, 16GB RAM, 512GB SSD, AI Copilot Key, Windows 11 Pro, Wi-Fi 6, Numeric Keypad $699.59</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP 17.3&quot; HD+ Laptop for Student and Business, Intel Core i3-N305, 16GB RAM, 512GB SSD, AI Copilot Key, Windows 11 Pro, Wi-Fi 6, Numeric Keypad\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-17-3-HD-Laptop-Student-Business-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-AI-Copilot-Key-Office-Pro-Lifetime-Windows-11-Pro-Wi-Fi-6-Numeric-Keypad_360ff695-c2e3-4bdd-b7b5-dd063265ce9e.39e58d805bff97029c1a61f5d61c94d0.png?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-17-3-HD-Laptop-Student-Business-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-AI-Copilot-Key-Office-Pro-Lifetime-Windows-11-Pro-Wi-Fi-6-Numeric-Keypad_360ff695-c2e3-4bdd-b7b5-dd063265ce9e.39e58d805bff97029c1a61f5d61c94d0.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-17-3-HD-Laptop-Student-Business-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-AI-Copilot-Key-Office-Pro-Lifetime-Windows-11-Pro-Wi-Fi-6-Numeric-Keypad_360ff695-c2e3-4bdd-b7b5-dd063265ce9e.39e58d805bff97029c1a61f5d61c94d0.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP 17.3&quot; HD+ Laptop for Student and Business, Intel Core i3-N305, 16GB RAM, 512GB SSD, AI Copilot Key, Windows 11 Pro, Wi-Fi 6, Numeric Keypad\"></div></div><div class=\"z-2 relative mv2\"><div class=\"z-2 relative w-60\"><div class=\"relative dib flex-row-reverse\" data-id=\"4B38K4HL3UF7\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~SECONDARY_STACK-high_rated_stack~fs&amp;pos=4&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FHP-17-3-HD-Laptop-Student-Business-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-AI-Copilot-Key-Office-Pro-Lifetime-Windows-11-Pro-Wi-Fi-6-Numeric-Keypad%2F16572824328%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=9TsQPTkY-zpfNh6ZH02umcHLLMklsrUvypZ2gTqhx4-5zZe8WSZADniOc5bkizOyXk7wmu-tV0L0xvIuq6SmsF2AByxttXDpmxGwHkIHWQMhHo0J20WTKqyPFcu3mFcMyy4HY0dO7gz09aHWHrd59lqIAjzvaiGLNxYP6eAm1VZ0ltu0lrm_HKwymtVypGe_CRhK-GxI-l5AGxTjOKERu-pyMb0PVFVwDHlCBuFpbyNNVuJ6RdAoEFUFjdiRtuLg21MdHKCsizG5wPNwiCokFg&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\" aria-label=\"Options - HP 17.3&quot; HD+ Laptop for Student and Business, Intel Core i3-N305, 16GB RAM, 512GB SSD, AI Copilot Key, Windows 11 Pro, Wi-Fi 6, Numeric Keypad\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">699</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">59</span></div><span class=\"ld_Ej\">current price $699.59</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $599.99</div></div></div><span class=\"ld_B4\" data-test-id=\"gpt-product-title-line-clamp\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><div class=\"mv2\" data-test-id=\"gpt-inline-brand-title-container\"><span data-test-id=\"gpt-one-line-brand-product-title\" class=\"normal dark-gray\">HP 17.3\" HD+ Laptop for Student and Business, Intel Core i3-N305, 16GB RAM, 512GB SSD, AI Copilot Key, Windows 11 Pro, Wi-Fi 6, Numeric Keypad</span></div></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"154\">154</span><span class=\"ld_Ej\">5 out of 5 Stars. 154 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div></div></div></div></div></div></li><li class=\"flex flex-column items-center mr2\" data-slide=\"4\"><div role=\"group\" data-item-id=\"15MQO6T5TZYR\" data-dca-guid=\"15MQO6T5TZYR\" data-dca-id=\"17589714890\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 \" data-test-id=\"gpt-main\"><a link-identifier=\"17589714890\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~SECONDARY_STACK-high_rated_stack~fs&amp;pos=5&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FHP-17-inch-Laptop-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-17-3-HD-Display-Windows-11-Pro-Numeric-Keyboard-Wi-Fi-6-Bluetooth-Webcam-Students-Business%2F17589714890%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=LI85FgvgmAxFofj9PE_bvxfiEnniO4icnEwxNiAHjH0oGKQiCYe5czson9uksLMXvIdfrxx2odY_39_BSEOGTAGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMGKaxBLEITTbw4bYtBW8hG9zIjcgP8kVibVR-B7Whb2t2szi4y2_vf22UFQBRh-hWmOq0koXz4ZykwhLEuazMtePhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\"><span class=\"ld_Ej\"><h3>HP 17 inch Laptop, Intel Core i3-N305, 16GB RAM, 512GB SSD, 17.3\" HD+ Display, Windows 11 Pro, Numeric Keyboard, Wi-Fi 6, Bluetooth, Webcam, For Students &amp; Business $699.69</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP 17 inch Laptop, Intel Core i3-N305, 16GB RAM, 512GB SSD, 17.3&quot; HD+ Display, Windows 11 Pro, Numeric Keyboard, Wi-Fi 6, Bluetooth, Webcam, For Students &amp; Business\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-17-inch-Laptop-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-17-3-HD-Display-Windows-11-Pro-Numeric-Keyboard-Wi-Fi-6-Bluetooth-Webcam-Students-Business_dab52335-1e89-4bd6-99f8-853fcf3bfa54.60531944807ca1837af52534bc2d9b9e.png?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-17-inch-Laptop-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-17-3-HD-Display-Windows-11-Pro-Numeric-Keyboard-Wi-Fi-6-Bluetooth-Webcam-Students-Business_dab52335-1e89-4bd6-99f8-853fcf3bfa54.60531944807ca1837af52534bc2d9b9e.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-17-inch-Laptop-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-17-3-HD-Display-Windows-11-Pro-Numeric-Keyboard-Wi-Fi-6-Bluetooth-Webcam-Students-Business_dab52335-1e89-4bd6-99f8-853fcf3bfa54.60531944807ca1837af52534bc2d9b9e.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP 17 inch Laptop, Intel Core i3-N305, 16GB RAM, 512GB SSD, 17.3&quot; HD+ Display, Windows 11 Pro, Numeric Keyboard, Wi-Fi 6, Bluetooth, Webcam, For Students &amp; Business\"></div></div><div class=\"z-2 relative mv2\"><div class=\"z-2 relative w-60\"><div class=\"relative dib flex-row-reverse\" data-id=\"15MQO6T5TZYR\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~SECONDARY_STACK-high_rated_stack~fs&amp;pos=5&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FHP-17-inch-Laptop-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-17-3-HD-Display-Windows-11-Pro-Numeric-Keyboard-Wi-Fi-6-Bluetooth-Webcam-Students-Business%2F17589714890%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=LI85FgvgmAxFofj9PE_bvxfiEnniO4icnEwxNiAHjH0oGKQiCYe5czson9uksLMXvIdfrxx2odY_39_BSEOGTAGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMGKaxBLEITTbw4bYtBW8hG9zIjcgP8kVibVR-B7Whb2t2szi4y2_vf22UFQBRh-hWmOq0koXz4ZykwhLEuazMtePhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\" aria-label=\"Options - HP 17 inch Laptop, Intel Core i3-N305, 16GB RAM, 512GB SSD, 17.3&quot; HD+ Display, Windows 11 Pro, Numeric Keyboard, Wi-Fi 6, Bluetooth, Webcam, For Students &amp; Business\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">699</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">69</span></div><span class=\"ld_Ej\">current price $699.69</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $569.00</div></div></div><span class=\"ld_B4\" data-test-id=\"gpt-product-title-line-clamp\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><div class=\"mv2\" data-test-id=\"gpt-inline-brand-title-container\"><span data-test-id=\"gpt-one-line-brand-product-title\" class=\"normal dark-gray\">HP 17 inch Laptop, Intel Core i3-N305, 16GB RAM, 512GB SSD, 17.3\" HD+ Display, Windows 11 Pro, Numeric Keyboard, Wi-Fi 6, Bluetooth, Webcam, For Students &amp; Business</span></div></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"371\">371</span><span class=\"ld_Ej\">4.5 out of 5 Stars. 371 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div></div></div></div></div></div></li><li class=\"flex flex-column items-center mr2\" data-slide=\"5\" style=\"scroll-snap-align: start;\"><div role=\"group\" data-item-id=\"4X8SAV89T9VS\" data-dca-guid=\"4X8SAV89T9VS\" data-dca-id=\"17299453369\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 \" data-test-id=\"gpt-main\"><a link-identifier=\"17299453369\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~SECONDARY_STACK-high_rated_stack~fs&amp;pos=6&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FHP-17-3-Laptop-for-Business-and-Students-AMD-Ryzen-5-7430U-6-core-16GB-RAM-512GB-SSD-Anti-Glare-Camera-Wi-Fi-6-Windows-11-Pro%2F17299453369%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=scjfc6_3Z6syL7v8rbWQhga50QdaEJWSVEBLHhq1WPL-zATB9svo-wtVmDtaYAEd3_2MSOPJmhq-cT2mtlJmGgGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcM1anNoXpv1H6nkmKgIUs5Npj4jiFJ7e_1RftHd3cRfjcL6wxYE6kclzwLXvZfX8B_poOFBW5B1_F1WSw0bT2feFYe0WktsIDS4IlQOq9_QKfy20W86XMWHWHlsE2zvu2e68g8rOeFByyW04zEV0BQu-eFBLdyKGhAyf9lj9Al0qeVT2Ty5Ohunu6C0gIWaEiZ&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\"><span class=\"ld_Ej\"><h3>HP 17.3\" Laptop for Business and Students, AMD Ryzen 5 7430U (6-core), 16GB RAM, 512GB SSD, Anti-Glare, Camera, Wi-Fi 6, Windows 11 Pro $699.59</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP 17.3&quot; Laptop for Business and Students, AMD Ryzen 5 7430U (6-core), 16GB RAM, 512GB SSD, Anti-Glare, Camera, Wi-Fi 6, Windows 11 Pro\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-17-3-Laptop-for-Business-and-Students-AMD-Ryzen-5-7430U-6-core-16GB-RAM-512GB-SSD-Anti-Glare-Camera-Wi-Fi-6-Windows-11-Pro_cda227c8-3974-438d-b9df-7d789aee6dd4.88e1754b33eb15ca3104f7dd0a25a6a7.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-17-3-Laptop-for-Business-and-Students-AMD-Ryzen-5-7430U-6-core-16GB-RAM-512GB-SSD-Anti-Glare-Camera-Wi-Fi-6-Windows-11-Pro_cda227c8-3974-438d-b9df-7d789aee6dd4.88e1754b33eb15ca3104f7dd0a25a6a7.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-17-3-Laptop-for-Business-and-Students-AMD-Ryzen-5-7430U-6-core-16GB-RAM-512GB-SSD-Anti-Glare-Camera-Wi-Fi-6-Windows-11-Pro_cda227c8-3974-438d-b9df-7d789aee6dd4.88e1754b33eb15ca3104f7dd0a25a6a7.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP 17.3&quot; Laptop for Business and Students, AMD Ryzen 5 7430U (6-core), 16GB RAM, 512GB SSD, Anti-Glare, Camera, Wi-Fi 6, Windows 11 Pro\"></div></div><div class=\"z-2 relative mv2\"><div class=\"z-2 relative w-60\"><div class=\"relative dib flex-row-reverse\" data-id=\"4X8SAV89T9VS\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~SECONDARY_STACK-high_rated_stack~fs&amp;pos=6&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FHP-17-3-Laptop-for-Business-and-Students-AMD-Ryzen-5-7430U-6-core-16GB-RAM-512GB-SSD-Anti-Glare-Camera-Wi-Fi-6-Windows-11-Pro%2F17299453369%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=scjfc6_3Z6syL7v8rbWQhga50QdaEJWSVEBLHhq1WPL-zATB9svo-wtVmDtaYAEd3_2MSOPJmhq-cT2mtlJmGgGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcM1anNoXpv1H6nkmKgIUs5Npj4jiFJ7e_1RftHd3cRfjcL6wxYE6kclzwLXvZfX8B_poOFBW5B1_F1WSw0bT2feFYe0WktsIDS4IlQOq9_QKfy20W86XMWHWHlsE2zvu2e68g8rOeFByyW04zEV0BQu-eFBLdyKGhAyf9lj9Al0qeVT2Ty5Ohunu6C0gIWaEiZ&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\" aria-label=\"Options - HP 17.3&quot; Laptop for Business and Students, AMD Ryzen 5 7430U (6-core), 16GB RAM, 512GB SSD, Anti-Glare, Camera, Wi-Fi 6, Windows 11 Pro\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">699</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">59</span></div><span class=\"ld_Ej\">current price $699.59</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $699.59 – $1,969.00</div></div></div><span class=\"ld_B4\" data-test-id=\"gpt-product-title-line-clamp\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><div class=\"mv2\" data-test-id=\"gpt-inline-brand-title-container\"><span data-test-id=\"gpt-one-line-brand-product-title\" class=\"normal dark-gray\">HP 17.3\" Laptop for Business and Students, AMD Ryzen 5 7430U (6-core), 16GB RAM, 512GB SSD, Anti-Glare, Camera, Wi-Fi 6, Windows 11 Pro</span></div></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"76\">76</span><span class=\"ld_Ej\">4.9 out of 5 Stars. 76 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div></div></div></div></div></div></li><li class=\"flex flex-column items-center mr2\" data-slide=\"6\"><div role=\"group\" data-item-id=\"0TZLU7HZP72F\" data-dca-guid=\"0TZLU7HZP72F\" data-dca-id=\"16626107264\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 \" data-test-id=\"gpt-main\"><a link-identifier=\"16626107264\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~SECONDARY_STACK-high_rated_stack~fs&amp;pos=7&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FHP-2025-Business-Laptop-17-3-FHD-IPS-Display-AMD-Ryzen-5-Beats-i7-1165G7-Ms-Office-Lifetime-Win-11-Pro-AI-Copilot-w-Accessory-Numeric-Keypad-WiFi-6-1%2F16626107264%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=-SFRm4eL5YI6n6vCDzk3eN3laBHCTLi5O1iiqnxHRLOcCvkwklEs469WYyrH8ePpUEhPviwAgI8tNkSIsa9EbwGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMSq6uDA1I5GQyvY7lH5zqfFXE21dG7F6dLUkrLJKVvEtoO0ztyERlGkpXAe8FeXY-QZUJ5rlcRdqz-MsXoXQ0duPhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\"><span class=\"ld_Ej\"><h3>HP 2025 Business Laptop, 17.3\" FHD IPS Display, AMD Ryzen 5 (Beats i7-1165G7), Win 11 Pro, AI Copilot, w/Accessory, Numeric Keypad, WiFi 6 (16GB RAM + 512GB SSD) $699.69</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP 2025 Business Laptop, 17.3&quot; FHD IPS Display, AMD Ryzen 5 (Beats i7-1165G7), Win 11 Pro, AI Copilot, w/Accessory, Numeric Keypad, WiFi 6 (16GB RAM + 512GB SSD)\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-2025-Business-Laptop-17-3-FHD-IPS-Display-AMD-Ryzen-5-Beats-i7-1165G7-Ms-Office-Lifetime-Win-11-Pro-AI-Copilot-w-Accessory-Numeric-Keypad-WiFi-6-1_a6e754a0-2285-4d57-b592-6e9a3b71a31a.e1f2274282694e8339f551e3e9d015ec.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-2025-Business-Laptop-17-3-FHD-IPS-Display-AMD-Ryzen-5-Beats-i7-1165G7-Ms-Office-Lifetime-Win-11-Pro-AI-Copilot-w-Accessory-Numeric-Keypad-WiFi-6-1_a6e754a0-2285-4d57-b592-6e9a3b71a31a.e1f2274282694e8339f551e3e9d015ec.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-2025-Business-Laptop-17-3-FHD-IPS-Display-AMD-Ryzen-5-Beats-i7-1165G7-Ms-Office-Lifetime-Win-11-Pro-AI-Copilot-w-Accessory-Numeric-Keypad-WiFi-6-1_a6e754a0-2285-4d57-b592-6e9a3b71a31a.e1f2274282694e8339f551e3e9d015ec.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP 2025 Business Laptop, 17.3&quot; FHD IPS Display, AMD Ryzen 5 (Beats i7-1165G7), Win 11 Pro, AI Copilot, w/Accessory, Numeric Keypad, WiFi 6 (16GB RAM + 512GB SSD)\"></div></div><div class=\"z-2 relative mv2\"><div class=\"z-2 relative w-60\"><div class=\"relative dib flex-row-reverse\" data-id=\"0TZLU7HZP72F\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~SECONDARY_STACK-high_rated_stack~fs&amp;pos=7&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FHP-2025-Business-Laptop-17-3-FHD-IPS-Display-AMD-Ryzen-5-Beats-i7-1165G7-Ms-Office-Lifetime-Win-11-Pro-AI-Copilot-w-Accessory-Numeric-Keypad-WiFi-6-1%2F16626107264%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=-SFRm4eL5YI6n6vCDzk3eN3laBHCTLi5O1iiqnxHRLOcCvkwklEs469WYyrH8ePpUEhPviwAgI8tNkSIsa9EbwGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMSq6uDA1I5GQyvY7lH5zqfFXE21dG7F6dLUkrLJKVvEtoO0ztyERlGkpXAe8FeXY-QZUJ5rlcRdqz-MsXoXQ0duPhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\" aria-label=\"Options - HP 2025 Business Laptop, 17.3&quot; FHD IPS Display, AMD Ryzen 5 (Beats i7-1165G7), Win 11 Pro, AI Copilot, w/Accessory, Numeric Keypad, WiFi 6 (16GB RAM + 512GB SSD)\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">699</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">69</span></div><span class=\"ld_Ej\">current price $699.69</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $699.69 – $999.99</div></div></div><span class=\"ld_B4\" data-test-id=\"gpt-product-title-line-clamp\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><div class=\"mv2\" data-test-id=\"gpt-inline-brand-title-container\"><span data-test-id=\"gpt-one-line-brand-product-title\" class=\"normal dark-gray\">HP 2025 Business Laptop, 17.3\" FHD IPS Display, AMD Ryzen 5 (Beats i7-1165G7), Win 11 Pro, AI Copilot, w/Accessory, Numeric Keypad, WiFi 6 (16GB RAM + 512GB SSD)</span></div></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"75\">75</span><span class=\"ld_Ej\">5 out of 5 Stars. 75 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div></div></div></div></div></div></li><li class=\"flex flex-column items-center mr2\" data-slide=\"7\"><div role=\"group\" data-item-id=\"581JEC0LLI78\" data-dca-guid=\"581JEC0LLI78\" data-dca-id=\"17468167966\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 \" data-test-id=\"gpt-main\"><a link-identifier=\"17468167966\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~SECONDARY_STACK-high_rated_stack~fs&amp;pos=8&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FLenovo-IdeaPad-2025-15-6-FHD-Laptop-Intel-4-Core-CPU-12GB-RAM-256GB-SSD-Wi-Fi-6-Win11%2F17468167966%3FclassType%3DVARIANT%26athbdg%3DL1900%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=ILTpKhokn-Xdx42dwiCX6utwPtuW6ukq-4rBq7c9wX4L92lqxVtE00FKYO4idU-xSpDTaikczl7y84sgufrXgwGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMNESj-xE0WVdTesiL8lI8_qM1TvzwN73iBg1jNsM6VOo9kMRFHpl3etAsl6RIkCiyD09QP67BqVjvcgWdOUYcglHE8Rdg5WFX9Q3cn2tj4T0Wtb13xQ1RXkI8o-PIwEIxhNFvwP5tGrnpAE8blk3pzvIIgApoZ7PD5N719u1EOE0&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT&amp;athbdg=L1900\"><span class=\"ld_Ej\"><h3>Flash Deal Lenovo IdeaPad 2025 15.6” FHD Laptop, Intel 4-Core CPU, 12GB RAM, 256GB SSD + 128 eMMC, Wi-Fi 6, Win11 $328.95 Was $369.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap: 8px;\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" role=\"group\" data-testid=\"badgeTagComponent\" style=\"background: rgb(255, 249, 233); margin-top: 0px; padding: 4px 8px; display: flex; align-items: flex-start; flex-direction: column; border-radius: 4px;\"><span class=\"w_yTSq f6-m f7 dib w_0aYG w_MwbK\" style=\"color: rgb(153, 82, 19); line-height: 16px; font-weight: 700; white-space: pre; margin-right: 4px; vertical-align: middle;\">Flash Deal</span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Lenovo IdeaPad 2025 15.6” FHD Laptop, Intel 4-Core CPU, 12GB RAM, 256GB SSD + 128 eMMC, Wi-Fi 6, Win11\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/Lenovo-IdeaPad-2025-15-6-FHD-Laptop-Intel-4-Core-CPU-12GB-RAM-256GB-SSD-Wi-Fi-6-Win11_9a0e2f4e-8a40-4854-a9c6-6c4dad4db70c.fdab55003bc6e8c3db4cd1d2c8f97b6e.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/Lenovo-IdeaPad-2025-15-6-FHD-Laptop-Intel-4-Core-CPU-12GB-RAM-256GB-SSD-Wi-Fi-6-Win11_9a0e2f4e-8a40-4854-a9c6-6c4dad4db70c.fdab55003bc6e8c3db4cd1d2c8f97b6e.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/Lenovo-IdeaPad-2025-15-6-FHD-Laptop-Intel-4-Core-CPU-12GB-RAM-256GB-SSD-Wi-Fi-6-Win11_9a0e2f4e-8a40-4854-a9c6-6c4dad4db70c.fdab55003bc6e8c3db4cd1d2c8f97b6e.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Lenovo IdeaPad 2025 15.6” FHD Laptop, Intel 4-Core CPU, 12GB RAM, 256GB SSD + 128 eMMC, Wi-Fi 6, Win11\"></div></div><div class=\"z-2 relative mv2\"><div class=\"z-2 relative w-60\"><div class=\"relative dib flex-row-reverse\" data-id=\"581JEC0LLI78\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~SECONDARY_STACK-high_rated_stack~fs&amp;pos=8&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FLenovo-IdeaPad-2025-15-6-FHD-Laptop-Intel-4-Core-CPU-12GB-RAM-256GB-SSD-Wi-Fi-6-Win11%2F17468167966%3FclassType%3DVARIANT%26athbdg%3DL1900%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=ILTpKhokn-Xdx42dwiCX6utwPtuW6ukq-4rBq7c9wX4L92lqxVtE00FKYO4idU-xSpDTaikczl7y84sgufrXgwGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMNESj-xE0WVdTesiL8lI8_qM1TvzwN73iBg1jNsM6VOo9kMRFHpl3etAsl6RIkCiyD09QP67BqVjvcgWdOUYcglHE8Rdg5WFX9Q3cn2tj4T0Wtb13xQ1RXkI8o-PIwEIxhNFvwP5tGrnpAE8blk3pzvIIgApoZ7PD5N719u1EOE0&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT&amp;athbdg=L1900\" aria-label=\"Options - Lenovo IdeaPad 2025 15.6” FHD Laptop, Intel 4-Core CPU, 12GB RAM, 256GB SSD + 128 eMMC, Wi-Fi 6, Win11\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">328</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">95</span></div><span class=\"ld_Ej\">current price Now $328.95, Was $369.00</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$369.00</span></div><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $288.95</div></div></div><span class=\"ld_B4\" data-test-id=\"gpt-product-title-line-clamp\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><div class=\"mv2\" data-test-id=\"gpt-inline-brand-title-container\"><span data-test-id=\"gpt-one-line-brand-product-title\" class=\"normal dark-gray\">Lenovo IdeaPad 2025 15.6” FHD Laptop, Intel 4-Core CPU, 12GB RAM, 256GB SSD + 128 eMMC, Wi-Fi 6, Win11</span></div></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"47\">47</span><span class=\"ld_Ej\">4.2 out of 5 Stars. 47 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div></div></div></div></div></div></li><li class=\"flex flex-column items-center mr2\" data-slide=\"8\"><div role=\"group\" data-item-id=\"5JYR0KNI6BC1\" data-dca-guid=\"5JYR0KNI6BC1\" data-dca-id=\"15852368936\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 \" data-test-id=\"gpt-main\"><a link-identifier=\"15852368936\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~SECONDARY_STACK-high_rated_stack~fs&amp;pos=9&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2F15-6-IPS-FHD-Laptop-8GB-RAM-256GB-SSD-Intel-Pentium-6-Cores-i3-1215U-Beat-i5-1135G7-Student-Laptop-Laptop-Computer-Backlit-Keyboard-Fingerprint-Home%2F15852368936%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=5qEbqRP4ssg6c8tubflUIju1FMPsUy2Wlu7ys1irRJ9_ocofOPqRzsfHiGAr3KhLkW45XneagvNJq_JBJf9PgAGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMbr7eHuNArnB8XP8q3sBg4UIX_Tt53HOsOBHffDbrXeZGg5NrnmbMzYgpMfyiii_WS-2jYrrtjb6TvP5pAB1ae4TRb8D-bRq56QBPG5ZN6c7yCIAKaGezw-Te9fbtRDhN&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\"><span class=\"ld_Ej\"><h3>17.3\"Laptop-Computer Pink Student-Laptop 2025 Newest,Backlit Keyboard Fingerprint 8GB RAM 256GB SSD Intel 6 Cores i3-1215U(Up to 4.40 GHz)IPS FHD Business-Laptop 2 Years Warranty $349.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, 17.3&quot;Laptop-Computer Pink Student-Laptop 2025 Newest,Backlit Keyboard Fingerprint 8GB RAM 256GB SSD Intel 6 Cores i3-1215U(Up to 4.40 GHz)IPS FHD Business-Laptop 2 Years Warranty\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/15-6-IPS-FHD-Laptop-8GB-RAM-256GB-SSD-Intel-Pentium-6-Cores-i3-1215U-Beat-i5-1135G7-Student-Laptop-Laptop-Computer-Backlit-Keyboard-Fingerprint-Home_9c4b2b12-f0c3-4a4f-b9d1-3c0107eb1f6c.b114da48f47246901421a27f238f319b.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/15-6-IPS-FHD-Laptop-8GB-RAM-256GB-SSD-Intel-Pentium-6-Cores-i3-1215U-Beat-i5-1135G7-Student-Laptop-Laptop-Computer-Backlit-Keyboard-Fingerprint-Home_9c4b2b12-f0c3-4a4f-b9d1-3c0107eb1f6c.b114da48f47246901421a27f238f319b.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/15-6-IPS-FHD-Laptop-8GB-RAM-256GB-SSD-Intel-Pentium-6-Cores-i3-1215U-Beat-i5-1135G7-Student-Laptop-Laptop-Computer-Backlit-Keyboard-Fingerprint-Home_9c4b2b12-f0c3-4a4f-b9d1-3c0107eb1f6c.b114da48f47246901421a27f238f319b.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"17.3&quot;Laptop-Computer Pink Student-Laptop 2025 Newest,Backlit Keyboard Fingerprint 8GB RAM 256GB SSD Intel 6 Cores i3-1215U(Up to 4.40 GHz)IPS FHD Business-Laptop 2 Years Warranty\"></div></div><div class=\"z-2 relative mv2\"><div class=\"z-2 relative w-60\"><div class=\"relative dib flex-row-reverse\" data-id=\"5JYR0KNI6BC1\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~SECONDARY_STACK-high_rated_stack~fs&amp;pos=9&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2F15-6-IPS-FHD-Laptop-8GB-RAM-256GB-SSD-Intel-Pentium-6-Cores-i3-1215U-Beat-i5-1135G7-Student-Laptop-Laptop-Computer-Backlit-Keyboard-Fingerprint-Home%2F15852368936%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=5qEbqRP4ssg6c8tubflUIju1FMPsUy2Wlu7ys1irRJ9_ocofOPqRzsfHiGAr3KhLkW45XneagvNJq_JBJf9PgAGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMbr7eHuNArnB8XP8q3sBg4UIX_Tt53HOsOBHffDbrXeZGg5NrnmbMzYgpMfyiii_WS-2jYrrtjb6TvP5pAB1ae4TRb8D-bRq56QBPG5ZN6c7yCIAKaGezw-Te9fbtRDhN&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\" aria-label=\"Options - 17.3&quot;Laptop-Computer Pink Student-Laptop 2025 Newest,Backlit Keyboard Fingerprint 8GB RAM 256GB SSD Intel 6 Cores i3-1215U(Up to 4.40 GHz)IPS FHD Business-Laptop 2 Years Warranty\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">349</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">99</span></div><span class=\"ld_Ej\">current price $349.99</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $349.99 – $769.99</div></div></div><span class=\"ld_B4\" data-test-id=\"gpt-product-title-line-clamp\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><div class=\"mv2\" data-test-id=\"gpt-inline-brand-title-container\"><span data-test-id=\"gpt-one-line-brand-product-title\" class=\"normal dark-gray\">17.3\"Laptop-Computer Pink Student-Laptop 2025 Newest,Backlit Keyboard Fingerprint 8GB RAM 256GB SSD Intel 6 Cores i3-1215U(Up to 4.40 GHz)IPS FHD Business-Laptop 2 Years Warranty</span></div></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"151\">151</span><span class=\"ld_Ej\">4.2 out of 5 Stars. 151 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div></div></div></div></div></div></li></ul><a link-identifier=\"horizontalScrollerNext\" class=\"absolute dn z-5 bg-white br-100 pa0 pointer db-l br-100 nav-control right-1\" aria-label=\"Next slide for 4 stars and above list\" aria-disabled=\"false\" data-testid=\"horizontal-scroller-next\" data-dca-intent=\"swipeLeft\" tabindex=\"0\" role=\"button\" data-dca-id=\"L:D255F19F56\" data-dca-event=\"__DCA_EVENT_TBD__\" style=\"top: 100px;\"><i class=\"ld ld-ChevronRight\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding: 12px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></a></div></section></section></div></div><hr aria-hidden=\"true\" class=\"w_8Gn9\"></div><div data-stack-index=\"2\" class=\"flex flex-column justify-center\" id=\"2\" tabindex=\"-1\"><div id=\"results-container\" class=\"flex flex-row flex-shrink-0\"><div class=\"flex flex-column w-100\"></div></div><div class=\"flex flex-wrap w-100 flex-grow-0 flex-shrink-0 ph0 ph2-m pr0-xl pl4-xl mt0-xl\" data-testid=\"item-stack\"><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"5UHOWNMFD4V6\" data-dca-guid=\"5UHOWNMFD4V6\" data-dca-id=\"13722470932\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"13722470932\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/ASUS-Chromebook-CX1-15-6-FHD-Intel-Celeron-N4500-128GB-eMMC-4GB-RAM-ChromeOS-Pure-Gray/13722470932?classType=VARIANT&amp;athbdg=L1600&amp;from=/search\"><span class=\"ld_Ej\"><h3>Best seller ASUS Chromebook CX1, 15.6\" FHD, Intel Celeron N4500, 128GB eMMC, 4GB RAM, ChromeOS, Pure Gray $159.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap: 8px;\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" role=\"group\" data-testid=\"badgeTagComponent\" style=\"background: rgb(230, 241, 252); margin-top: 0px; padding: 4px 8px; display: flex; align-items: flex-start; flex-direction: column; border-radius: 4px;\"><span class=\"w_yTSq f6-m f7 dib w_0aYG w_MwbK\" style=\"color: rgb(0, 79, 154); line-height: 16px; font-weight: 700; white-space: pre; margin-right: 4px; vertical-align: middle;\">Best seller</span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, ASUS Chromebook CX1, 15.6&quot; FHD, Intel Celeron N4500, 128GB eMMC, 4GB RAM, ChromeOS, Pure Gray\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/ASUS-Chromebook-CX1-15-6-FHD-Intel-Celeron-N4500-128GB-eMMC-4GB-RAM-ChromeOS-Pure-Gray_b0f893ee-be29-46c9-905b-04400c0dd231.671a1ba74b705db258ede344db840e4e.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/ASUS-Chromebook-CX1-15-6-FHD-Intel-Celeron-N4500-128GB-eMMC-4GB-RAM-ChromeOS-Pure-Gray_b0f893ee-be29-46c9-905b-04400c0dd231.671a1ba74b705db258ede344db840e4e.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/ASUS-Chromebook-CX1-15-6-FHD-Intel-Celeron-N4500-128GB-eMMC-4GB-RAM-ChromeOS-Pure-Gray_b0f893ee-be29-46c9-905b-04400c0dd231.671a1ba74b705db258ede344db840e4e.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-0\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"ASUS Chromebook CX1, 15.6&quot; FHD, Intel Celeron N4500, 128GB eMMC, 4GB RAM, ChromeOS, Pure Gray\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-5UHOWNMFD4V6\"><div class=\"flex f6 justify-center items-center lh-title h2-l\" data-test-id=\"gpt-swatch-variants-container\"><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/ASUS-Chromebook-CX1-15-6-FHD-Intel-Celeron-N4500-128GB-eMMC-4GB-RAM-ChromeOS-Fabric-Blue/13737005799?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/2004e399-d477-4bcc-8303-4e944499ea13.bc3bebb05083afc926ce4e66cc483f0c.jpeg?odnHeight=30&amp;odnWidth=30&amp;odnBg=FFFFFF\" class=\"br-100 v-btm ba b--transparent\" alt=\"Fabric Blue, variant on ASUS Chromebook CX1, 15.6&quot; FHD, Intel Celeron N4500, 128GB eMMC, 4GB RAM, ChromeOS, Pure Gray\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"flex items-center justify-center mr0\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/ASUS-Chromebook-CX1-15-6-FHD-Intel-Celeron-N4500-128GB-eMMC-4GB-RAM-ChromeOS-Pure-Gray/13722470932?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/f4fb6484-645b-42fb-8d49-682d687e47a0.4f4b76aa08b2069a4e246b8ac8f2f689.jpeg?odnHeight=30&amp;odnWidth=30&amp;odnBg=FFFFFF\" class=\"br-100 v-btm ba b--transparent\" alt=\"Pure Gray, variant on ASUS Chromebook CX1, 15.6&quot; FHD, Intel Celeron N4500, 128GB eMMC, 4GB RAM, ChromeOS, Pure Gray\" data-test-id=\"gpt-variant-image\"></a></div></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"5UHOWNMFD4V6\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/ASUS-Chromebook-CX1-15-6-FHD-Intel-Celeron-N4500-128GB-eMMC-4GB-RAM-ChromeOS-Pure-Gray/13722470932?classType=VARIANT&amp;athbdg=L1600\" aria-label=\"Options - ASUS Chromebook CX1, 15.6&quot; FHD, Intel Celeron N4500, 128GB eMMC, 4GB RAM, ChromeOS, Pure Gray\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">159</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price $159.00</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $85.00</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">ASUS Chromebook CX1, 15.6\" FHD, Intel Celeron N4500, 128GB eMMC, 4GB RAM, ChromeOS, Pure Gray</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"6621\">6621</span><span class=\"ld_Ej\">4.2 out of 5 Stars. 6621 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">tomorrow</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"1MRAAWSO53FZ\" data-dca-guid=\"1MRAAWSO53FZ\" data-dca-id=\"16651118643\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"16651118643\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/RNRUO-15-6inch-Windows-11-Laptop-16GB-RAM-256GB-PCIE-3-0-NVME-SATA-AMD-3020e-2-Cores-2-6GHz-Fingerprint-Backlit-KB-Full-function-Type-C-WiFi5-BT5-0/16651118643?classType=VARIANT&amp;athbdg=L1600&amp;from=/search\"><span class=\"ld_Ej\"><h3>Best seller RNRUO 15.6\" Windows 11 Laptop, Dual 8GB RAM, 256GB SSD, AMD 3020e with 2 Cores up to 2.6GHz, With Office 2024, 1920x1080 Display WiFi5 BT5.0 for Student, Home Office, Business $199.69 Was $489.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap: 8px;\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" role=\"group\" data-testid=\"badgeTagComponent\" style=\"background: rgb(230, 241, 252); margin-top: 0px; padding: 4px 8px; display: flex; align-items: flex-start; flex-direction: column; border-radius: 4px;\"><span class=\"w_yTSq f6-m f7 dib w_0aYG w_MwbK\" style=\"color: rgb(0, 79, 154); line-height: 16px; font-weight: 700; white-space: pre; margin-right: 4px; vertical-align: middle;\">Best seller</span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, RNRUO 15.6&quot; Windows 11 Laptop, Dual 8GB RAM, 256GB SSD, AMD 3020e with 2 Cores up to 2.6GHz, With Office 2024, 1920x1080 Display WiFi5 BT5.0 for Student, Home Office, Business\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/RNRUO-15-6inch-Windows-11-Laptop-16GB-RAM-256GB-PCIE-3-0-NVME-SATA-AMD-3020e-2-Cores-2-6GHz-Fingerprint-Backlit-KB-Full-function-Type-C-WiFi5-BT5-0_3dca8eb5-3727-4822-b680-5e02d305eb92.38338d36dd18133df7a525b353c470c4.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/RNRUO-15-6inch-Windows-11-Laptop-16GB-RAM-256GB-PCIE-3-0-NVME-SATA-AMD-3020e-2-Cores-2-6GHz-Fingerprint-Backlit-KB-Full-function-Type-C-WiFi5-BT5-0_3dca8eb5-3727-4822-b680-5e02d305eb92.38338d36dd18133df7a525b353c470c4.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/RNRUO-15-6inch-Windows-11-Laptop-16GB-RAM-256GB-PCIE-3-0-NVME-SATA-AMD-3020e-2-Cores-2-6GHz-Fingerprint-Backlit-KB-Full-function-Type-C-WiFi5-BT5-0_3dca8eb5-3727-4822-b680-5e02d305eb92.38338d36dd18133df7a525b353c470c4.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-1\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"RNRUO 15.6&quot; Windows 11 Laptop, Dual 8GB RAM, 256GB SSD, AMD 3020e with 2 Cores up to 2.6GHz, With Office 2024, 1920x1080 Display WiFi5 BT5.0 for Student, Home Office, Business\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-1MRAAWSO53FZ\"><div class=\"f6 lh-title tc h1 v-mid\" data-test-id=\"gpt-text-variants-container\"><div aria-hidden=\"true\" aria-labelledby=\"variants-dynamic-1MRAAWSO53FZ\" data-test-id=\"gpt-dynamic-text-display\"><i class=\"ld ld-Plus\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i>2 sizes</div><span class=\"ld_Ej\" id=\"variants-dynamic-1MRAAWSO53FZ\" data-test-id=\"gpt-dynamic-text-hidden\">Available in additional 2 sizes</span></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"1MRAAWSO53FZ\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/RNRUO-15-6inch-Windows-11-Laptop-16GB-RAM-256GB-PCIE-3-0-NVME-SATA-AMD-3020e-2-Cores-2-6GHz-Fingerprint-Backlit-KB-Full-function-Type-C-WiFi5-BT5-0/16651118643?classType=VARIANT&amp;athbdg=L1600\" aria-label=\"Options - RNRUO 15.6&quot; Windows 11 Laptop, Dual 8GB RAM, 256GB SSD, AMD 3020e with 2 Cores up to 2.6GHz, With Office 2024, 1920x1080 Display WiFi5 BT5.0 for Student, Home Office, Business\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">199</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">69</span></div><span class=\"ld_Ej\">current price Now $199.69, Was $489.00</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$489.00</span></div><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $199.69 – $249.09</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">RNRUO 15.6\" Windows 11 Laptop, Dual 8GB RAM, 256GB SSD, AMD 3020e with 2 Cores up to 2.6GHz, With Office 2024, 1920x1080 Display WiFi5 BT5.0 for Student, Home Office, Business</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"324\">324</span><span class=\"ld_Ej\">3.8 out of 5 Stars. 324 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">Sat, Mar 7</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"36UI820SV8R8\" data-dca-guid=\"36UI820SV8R8\" data-dca-id=\"5123764557\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"5123764557\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/HP-14-inch-x360-FHD-Touch-Chromebook-Laptop-Intel-Processor-N100-4GB-RAM-64GB-eMMC-Sky-Blue/5123764557?classType=REGULAR&amp;athbdg=L1300&amp;from=/search\"><span class=\"ld_Ej\"><h3>Rollback HP Chromebook x360 14 inch FHD IPS Touch 2-in-1 Laptop Intel Processor N100 4GB RAM 64GB eMMC - Sky Blue $219.00 Was $299.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap: 8px;\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" role=\"group\" data-testid=\"badgeTagComponent\" style=\"background: rgb(222, 28, 36); margin-top: 0px; padding: 4px 8px 4px 4px; display: flex; align-items: flex-start; flex-direction: column; border-radius: 4px;\"><span class=\"flex truncate w-100 items-center\"><i class=\"ld ld-Rollback flex items-center justify-center\" aria-label=\"\" role=\"img\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 14px; height: 12px; padding: 2px 1px; margin-right: 4px; box-sizing: content-box;\"></i><span class=\"w_yTSq f6-m f7 dib w_0aYG w_MwbK\" style=\"color: rgb(255, 255, 255); line-height: 16px; font-weight: 700; white-space: pre; margin-right: 4px; vertical-align: middle;\">Rollback</span></span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP Chromebook x360 14 inch FHD IPS Touch 2-in-1 Laptop Intel Processor N100 4GB RAM 64GB eMMC - Sky Blue\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-14-inch-x360-FHD-Touch-Chromebook-Laptop-Intel-Processor-N100-4GB-RAM-64GB-eMMC-Sky-Blue_383a420a-aabf-4aec-80e2-403238eefed1.da0d8583786edcfa7ae8047341285b72.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-14-inch-x360-FHD-Touch-Chromebook-Laptop-Intel-Processor-N100-4GB-RAM-64GB-eMMC-Sky-Blue_383a420a-aabf-4aec-80e2-403238eefed1.da0d8583786edcfa7ae8047341285b72.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-14-inch-x360-FHD-Touch-Chromebook-Laptop-Intel-Processor-N100-4GB-RAM-64GB-eMMC-Sky-Blue_383a420a-aabf-4aec-80e2-403238eefed1.da0d8583786edcfa7ae8047341285b72.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-2\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP Chromebook x360 14 inch FHD IPS Touch 2-in-1 Laptop Intel Processor N100 4GB RAM 64GB eMMC - Sky Blue\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"36UI820SV8R8\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - HP Chromebook x360 14 inch FHD IPS Touch 2-in-1 Laptop Intel Processor N100 4GB RAM 64GB eMMC - Sky Blue\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">219</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price Now $219.00, Was $299.00</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$299.00</span></div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP Chromebook x360 14 inch FHD IPS Touch 2-in-1 Laptop Intel Processor N100 4GB RAM 64GB eMMC - Sky Blue</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"4524\">4524</span><span class=\"ld_Ej\">4.4 out of 5 Stars. 4524 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">tomorrow</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div><div class=\"flex items-center mt1\"><img loading=\"lazy\" class=\"mr1\" src=\"//i5.walmartimages.com/dfw/63fd9f59-547b/d4dfa923-2a65-4c3a-b34c-c4db7ee6c035/v1/Apple_TV_iOS.svg\" alt=\"Apple Tv\" height=\"16\" width=\"16\"><span class=\"dark-gray f7 f6-l\">2 free offers from Apple</span></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"10P6CTB5V8FE\" data-dca-guid=\"10P6CTB5V8FE\" data-dca-id=\"17828556665\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"17828556665\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/RNRUO-15-6-Laptop-Computer-8GB-RAM-256GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-FHD-Display-Office-2024-WiFi5-BT5-0-Windows-11-Laptop-Business-S/17828556665?classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>RNRUO 15.6\" Pink Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y With 2 Cores, up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, PC Laptop for Business, Student, Office $199.69 Was $469.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, RNRUO 15.6&quot; Pink Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y With 2 Cores, up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, PC Laptop for Business, Student, Office\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/RNRUO-15-6-Laptop-Computer-8GB-RAM-256GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-FHD-Display-Office-2024-WiFi5-BT5-0-Windows-11-Laptop-Business-S_e4b3d77d-82bf-41c8-8724-7cf042199468.ee9bb54a464103f86ee919b4b1f77598.png?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/RNRUO-15-6-Laptop-Computer-8GB-RAM-256GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-FHD-Display-Office-2024-WiFi5-BT5-0-Windows-11-Laptop-Business-S_e4b3d77d-82bf-41c8-8724-7cf042199468.ee9bb54a464103f86ee919b4b1f77598.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/RNRUO-15-6-Laptop-Computer-8GB-RAM-256GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-FHD-Display-Office-2024-WiFi5-BT5-0-Windows-11-Laptop-Business-S_e4b3d77d-82bf-41c8-8724-7cf042199468.ee9bb54a464103f86ee919b4b1f77598.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-3\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"RNRUO 15.6&quot; Pink Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y With 2 Cores, up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, PC Laptop for Business, Student, Office\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-10P6CTB5V8FE\"><div class=\"f6 lh-title tc h1 v-mid\" data-test-id=\"gpt-text-variants-container\"><div aria-hidden=\"true\" aria-labelledby=\"variants-dynamic-10P6CTB5V8FE\" data-test-id=\"gpt-dynamic-text-display\"><i class=\"ld ld-Plus\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i>2 sizes</div><span class=\"ld_Ej\" id=\"variants-dynamic-10P6CTB5V8FE\" data-test-id=\"gpt-dynamic-text-hidden\">Available in additional 2 sizes</span></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"10P6CTB5V8FE\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/RNRUO-15-6-Laptop-Computer-8GB-RAM-256GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-FHD-Display-Office-2024-WiFi5-BT5-0-Windows-11-Laptop-Business-S/17828556665?classType=VARIANT\" aria-label=\"Options - RNRUO 15.6&quot; Pink Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y With 2 Cores, up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, PC Laptop for Business, Student, Office\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">199</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">69</span></div><span class=\"ld_Ej\">current price Now $199.69, Was $469.00</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$469.00</span></div><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $199.69 – $259.39</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">RNRUO 15.6\" Pink Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y With 2 Cores, up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, PC Laptop for Business, Student, Office</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"65\">65</span><span class=\"ld_Ej\">3.8 out of 5 Stars. 65 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">Sat, Mar 7</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"28OLZB4HLS6B\" data-dca-guid=\"28OLZB4HLS6B\" data-dca-id=\"17874160865\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"17874160865\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Processor-N100-4GB-RAM-128-SSD-Aric-Grey/17874160865?classType=REGULAR&amp;athbdg=L1103&amp;from=/search\"><span class=\"ld_Ej\"><h3>In 200+ people's carts Lenovo IdeaPad Slim 3i 15.6\" Laptop, Intel Processor N100, 4GB RAM, 128 SSD, Arctic Grey $192.00 Was $319.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap: 8px;\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" role=\"group\" data-testid=\"badgeTagComponent\" style=\"background: rgb(255, 255, 255); margin-top: 0px; padding: 4px 8px; display: flex; align-items: flex-start; flex-direction: column; border-radius: 4px; overflow: hidden; border: 1px solid rgb(0, 113, 220);\"><span class=\"w_yTSq f6-m f7 truncate dib w_0aYG w_MwbK\" style=\"color: rgb(0, 113, 220); line-height: 16px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; margin-right: 4px; vertical-align: middle;\">In 200+ people's carts</span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Lenovo IdeaPad Slim 3i 15.6&quot; Laptop, Intel Processor N100, 4GB RAM, 128 SSD, Arctic Grey\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Processor-N100-4GB-RAM-128-SSD-Aric-Grey_bbcf7b2a-9591-4bb7-859a-39654b54ef5b.f0f0a7bd518fa2f3ea8d70f9e14870fc.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Processor-N100-4GB-RAM-128-SSD-Aric-Grey_bbcf7b2a-9591-4bb7-859a-39654b54ef5b.f0f0a7bd518fa2f3ea8d70f9e14870fc.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Processor-N100-4GB-RAM-128-SSD-Aric-Grey_bbcf7b2a-9591-4bb7-859a-39654b54ef5b.f0f0a7bd518fa2f3ea8d70f9e14870fc.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-4\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Lenovo IdeaPad Slim 3i 15.6&quot; Laptop, Intel Processor N100, 4GB RAM, 128 SSD, Arctic Grey\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"28OLZB4HLS6B\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - Lenovo IdeaPad Slim 3i 15.6&quot; Laptop, Intel Processor N100, 4GB RAM, 128 SSD, Arctic Grey\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">192</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price Now $192.00, Was $319.99</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$319.99</span></div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">Lenovo IdeaPad Slim 3i 15.6\" Laptop, Intel Processor N100, 4GB RAM, 128 SSD, Arctic Grey</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"767\">767</span><span class=\"ld_Ej\">4.4 out of 5 Stars. 767 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"6HUVMLFFX61Z\" data-dca-guid=\"6HUVMLFFX61Z\" data-dca-id=\"5700202955\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"5700202955\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/HP-14-inch-Windows-Laptop-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Silver-12-mo-Microsoft-365-Included/5700202955?classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>HP 14 inch Windows Laptop Intel Celeron N4120 4GB RAM 64GB eMMC Silver (12-mo. Microsoft 365 Included) $177.97</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP 14 inch Windows Laptop Intel Celeron N4120 4GB RAM 64GB eMMC Silver (12-mo. Microsoft 365 Included)\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-14-inch-Windows-Laptop-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Silver-12-mo-Microsoft-365-Included_b7fc3734-20cb-4150-9283-e8327cebc381.fae77bb4deaf2683e6aa9fbbdea88535.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-14-inch-Windows-Laptop-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Silver-12-mo-Microsoft-365-Included_b7fc3734-20cb-4150-9283-e8327cebc381.fae77bb4deaf2683e6aa9fbbdea88535.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-14-inch-Windows-Laptop-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Silver-12-mo-Microsoft-365-Included_b7fc3734-20cb-4150-9283-e8327cebc381.fae77bb4deaf2683e6aa9fbbdea88535.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-5\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP 14 inch Windows Laptop Intel Celeron N4120 4GB RAM 64GB eMMC Silver (12-mo. Microsoft 365 Included)\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-6HUVMLFFX61Z\"><div class=\"flex f6 justify-center items-center lh-title h2-l\" data-test-id=\"gpt-swatch-variants-container\"><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/HP-Stream-14-inch-Laptop-Intel-Processor-N4102-4GB-RAM-64GB-eMMC-Blue-12-mo-Microsoft-365-included/166773164?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/075e0cd5-4e35-4fd8-a647-a6e3899f218d.e0766a4644927a337ad58c0a5b118e8b.jpeg?odnBg=FFFFFF&amp;odnHeight=30&amp;odnWidth=30\" class=\"br-100 v-btm ba b--transparent\" alt=\"Blue, variant on HP 14 inch Windows Laptop Intel Celeron N4120 4GB RAM 64GB eMMC Silver (12-mo. Microsoft 365 Included)\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/HP-Stream-14-Laptop-Intel-Celeron-N4120-Processor-4GB-RAM-64GB-eMMC-Silver-Windows-11-S-mode-with-Office-365-1-yr-14-cf2733wm/5700202955?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/b7fc3734-20cb-4150-9283-e8327cebc381.fae77bb4deaf2683e6aa9fbbdea88535.jpeg?odnBg=FFFFFF&amp;odnHeight=30&amp;odnWidth=30\" class=\"br-100 v-btm ba b--transparent\" alt=\"Natural silver, variant on HP 14 inch Windows Laptop Intel Celeron N4120 4GB RAM 64GB eMMC Silver (12-mo. Microsoft 365 Included)\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"flex items-center justify-center mr0\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/HP-Stream-14-inch-Laptop-Intel-Processor-N4102-4GB-RAM-64GB-eMMC-Pink-12-mo-Microsoft-365-included/443153637?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/8584cc4a-da05-406d-b576-a7e0938fab7d.3d28163cfbd2819b97790a8914a5119c.jpeg?odnBg=FFFFFF&amp;odnHeight=30&amp;odnWidth=30\" class=\"br-100 v-btm ba b--transparent\" alt=\"Pink, variant on HP 14 inch Windows Laptop Intel Celeron N4120 4GB RAM 64GB eMMC Silver (12-mo. Microsoft 365 Included)\" data-test-id=\"gpt-variant-image\"></a></div></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"6HUVMLFFX61Z\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/HP-14-inch-Windows-Laptop-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Silver-12-mo-Microsoft-365-Included/5700202955?classType=VARIANT\" aria-label=\"Options - HP 14 inch Windows Laptop Intel Celeron N4120 4GB RAM 64GB eMMC Silver (12-mo. Microsoft 365 Included)\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">177</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">97</span></div><span class=\"ld_Ej\">current price $177.97</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $169.49</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP 14 inch Windows Laptop Intel Celeron N4120 4GB RAM 64GB eMMC Silver (12-mo. Microsoft 365 Included)</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"20388\">20388</span><span class=\"ld_Ej\">4.1 out of 5 Stars. 20388 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div><div class=\"flex items-center mt1\"><img loading=\"lazy\" class=\"mr1\" src=\"//i5.walmartimages.com/dfw/63fd9f59-547b/d4dfa923-2a65-4c3a-b34c-c4db7ee6c035/v1/Apple_TV_iOS.svg\" alt=\"Apple Tv\" height=\"16\" width=\"16\"><span class=\"dark-gray f7 f6-l\">5 free offers from Apple</span></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"64JEIM8BE3IH\" data-dca-guid=\"64JEIM8BE3IH\" data-dca-id=\"8650254741\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"8650254741\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=22&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FWin-11-Pro-MS-Office-2019-16-Purple-Laptop-Ultra-Narrow-bezels-2-5K-FHD-2560x1600-IPS-Screen-Celeron-N5095-UPC-12G-RAM-960GB-SSD-with-Full-Size-Numer%2F8650254741%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=Hg79Q5I1oyzH4LYOTYtInHOloKQH3N7jlHxE-JMFePIPwfEIx7Trz-BltqxGiGA3aTywbPexshFN54zXIkF0D0XDdoCLrBbmgrOt7CqXsKBBPJByoE7odDkuf977IFzf_ShhELo8gXw5zoq86OLo7g_yYO8z68tRmfRDN7jASB6q1uGzFfjwwJSsunIJYAeWWRNE9Rk-ADScYMFBdLZi7pwH3xifdXs9dFPgvooyjw_NNQEIEfUTMOs_wAHhMARn&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\"><span class=\"ld_Ej\"><h3>【Win 11 Pro/MS Office 2019】16\" Purple Laptop,Ultra-Narrow Bezel 2.5K QHD IPS (2560x1600),Celeron N95 (3.4GHz), 16GB RAM 1T SSD,Color Backlit KB, Face Unlock, USB-C/HDMI/WiFi/BT, for Business Study $399.98 Was $599.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, 【Win 11 Pro/MS Office 2019】16&quot; Purple Laptop,Ultra-Narrow Bezel 2.5K QHD IPS (2560x1600),Celeron N95 (3.4GHz), 16GB RAM 1T SSD,Color Backlit KB, Face Unlock, USB-C/HDMI/WiFi/BT, for Business Study\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/Win-11-Pro-MS-Office-2019-16-Purple-Laptop-Ultra-Narrow-bezels-2-5K-FHD-2560x1600-IPS-Screen-Celeron-N5095-UPC-12G-RAM-960GB-SSD-with-Full-Size-Numer_a831bbcc-e065-46de-9ebe-11f3955103a6.b8eaf55191a34abdeb0bc8ae3285e99e.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/Win-11-Pro-MS-Office-2019-16-Purple-Laptop-Ultra-Narrow-bezels-2-5K-FHD-2560x1600-IPS-Screen-Celeron-N5095-UPC-12G-RAM-960GB-SSD-with-Full-Size-Numer_a831bbcc-e065-46de-9ebe-11f3955103a6.b8eaf55191a34abdeb0bc8ae3285e99e.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/Win-11-Pro-MS-Office-2019-16-Purple-Laptop-Ultra-Narrow-bezels-2-5K-FHD-2560x1600-IPS-Screen-Celeron-N5095-UPC-12G-RAM-960GB-SSD-with-Full-Size-Numer_a831bbcc-e065-46de-9ebe-11f3955103a6.b8eaf55191a34abdeb0bc8ae3285e99e.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-6\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"【Win 11 Pro/MS Office 2019】16&quot; Purple Laptop,Ultra-Narrow Bezel 2.5K QHD IPS (2560x1600),Celeron N95 (3.4GHz), 16GB RAM 1T SSD,Color Backlit KB, Face Unlock, USB-C/HDMI/WiFi/BT, for Business Study\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"64JEIM8BE3IH\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=22&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FWin-11-Pro-MS-Office-2019-16-Purple-Laptop-Ultra-Narrow-bezels-2-5K-FHD-2560x1600-IPS-Screen-Celeron-N5095-UPC-12G-RAM-960GB-SSD-with-Full-Size-Numer%2F8650254741%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=Hg79Q5I1oyzH4LYOTYtInHOloKQH3N7jlHxE-JMFePIPwfEIx7Trz-BltqxGiGA3aTywbPexshFN54zXIkF0D0XDdoCLrBbmgrOt7CqXsKBBPJByoE7odDkuf977IFzf_ShhELo8gXw5zoq86OLo7g_yYO8z68tRmfRDN7jASB6q1uGzFfjwwJSsunIJYAeWWRNE9Rk-ADScYMFBdLZi7pwH3xifdXs9dFPgvooyjw_NNQEIEfUTMOs_wAHhMARn&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\" aria-label=\"Options - 【Win 11 Pro/MS Office 2019】16&quot; Purple Laptop,Ultra-Narrow Bezel 2.5K QHD IPS (2560x1600),Celeron N95 (3.4GHz), 16GB RAM 1T SSD,Color Backlit KB, Face Unlock, USB-C/HDMI/WiFi/BT, for Business Study\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div class=\"h1 mt1\" data-test-id=\"gpt-sponsored-tag-container\"><div class=\"flex items-center lh-title h2-l normal\"><div class=\"flex items-center f7 f6-l\"><div>Sponsored</div><div class=\"z-2\"><button class=\"w_hhLG w_DZvO w_0_LY pointer pl1 no-underline pt3 pb3 \" type=\"button\" title=\"Ad disclaimer and feedback\" aria-label=\"Ad disclaimer and feedback\" data-dca-id=\"B:9AE6AB358F\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" style=\"color: gray;\"><i class=\"ld ld-InfoCircle\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i></button></div></div></div></div><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">399</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">98</span></div><span class=\"ld_Ej\">current price Now $399.98, Was $599.99</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$599.99</span></div><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $369.98</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">【Win 11 Pro/MS Office 2019】16\" Purple Laptop,Ultra-Narrow Bezel 2.5K QHD IPS (2560x1600),Celeron N95 (3.4GHz), 16GB RAM 1T SSD,Color Backlit KB, Face Unlock, USB-C/HDMI/WiFi/BT, for Business Study</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"68\">68</span><span class=\"ld_Ej\">3.9 out of 5 Stars. 68 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"3GFQTFWRFMCG\" data-dca-guid=\"3GFQTFWRFMCG\" data-dca-id=\"13683653981\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"13683653981\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/HP-15-6-inch-HD-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Moonlight-Blue/13683653981?classType=VARIANT&amp;athbdg=L1103&amp;from=/search\"><span class=\"ld_Ej\"><h3>In 200+ people's carts HP 15.6 inch Win 11 Laptop Intel Processor N200 4GB RAM 128GB UFS Moonlight Blue (12-mo. Microsoft 365 included) $219.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap: 8px;\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" role=\"group\" data-testid=\"badgeTagComponent\" style=\"background: rgb(255, 255, 255); margin-top: 0px; padding: 4px 8px; display: flex; align-items: flex-start; flex-direction: column; border-radius: 4px; overflow: hidden; border: 1px solid rgb(0, 113, 220);\"><span class=\"w_yTSq f6-m f7 truncate dib w_0aYG w_MwbK\" style=\"color: rgb(0, 113, 220); line-height: 16px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; margin-right: 4px; vertical-align: middle;\">In 200+ people's carts</span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP 15.6 inch Win 11 Laptop Intel Processor N200 4GB RAM 128GB UFS Moonlight Blue (12-mo. Microsoft 365 included)\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-15-6-inch-HD-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Moonlight-Blue_dc3079d7-80a5-4010-8fbc-4d397f96351f.b9d2bf6db8d7a800728cc795db09e911.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-15-6-inch-HD-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Moonlight-Blue_dc3079d7-80a5-4010-8fbc-4d397f96351f.b9d2bf6db8d7a800728cc795db09e911.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-15-6-inch-HD-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Moonlight-Blue_dc3079d7-80a5-4010-8fbc-4d397f96351f.b9d2bf6db8d7a800728cc795db09e911.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-7\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP 15.6 inch Win 11 Laptop Intel Processor N200 4GB RAM 128GB UFS Moonlight Blue (12-mo. Microsoft 365 included)\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-3GFQTFWRFMCG\"><div class=\"flex f6 justify-center items-center lh-title h2-l\" data-test-id=\"gpt-swatch-variants-container\"><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/HP-15-6-inch-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Moonlight-Blue-12-mo-Microsoft-365-included/13683653981?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/5818f419-49af-4a9f-a125-e4ff0a44e2ed.295a726515a31b2c90d3e7c8eeeeee1e.png?odnHeight=30&amp;odnWidth=30&amp;odnBg=FFFFFF\" class=\"br-100 v-btm ba b--transparent\" alt=\"Blue, variant on HP 15.6 inch Win 11 Laptop Intel Processor N200 4GB RAM 128GB UFS Moonlight Blue (12-mo. Microsoft 365 included)\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/HP-15-6-inch-HD-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Glimmer-Garnet/16568618338?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/f0b6d112-5864-4e60-9042-5e63d455de45.9ba2e071b949215326db6f0940fefc2b.jpeg?odnBg=FFFFFF&amp;odnHeight=30&amp;odnWidth=30\" class=\"br-100 v-btm ba b--transparent\" alt=\"Glimmer Garnet with a matte finish, variant on HP 15.6 inch Win 11 Laptop Intel Processor N200 4GB RAM 128GB UFS Moonlight Blue (12-mo. Microsoft 365 included)\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"flex items-center justify-center mr0\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/HP-15-6-inch-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Silver-12-mo-Microsoft-365-included/13660774419?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/d8e01eea-8d6f-47e6-9bf0-1ab98284edc8.2bfa90ff6f1068a8b8d6f782e575a910.png?odnHeight=30&amp;odnWidth=30&amp;odnBg=FFFFFF\" class=\"br-100 v-btm ba b--transparent\" alt=\"Silver, variant on HP 15.6 inch Win 11 Laptop Intel Processor N200 4GB RAM 128GB UFS Moonlight Blue (12-mo. Microsoft 365 included)\" data-test-id=\"gpt-variant-image\"></a></div></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"3GFQTFWRFMCG\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/HP-15-6-inch-HD-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Moonlight-Blue/13683653981?classType=VARIANT&amp;athbdg=L1103\" aria-label=\"Options - HP 15.6 inch Win 11 Laptop Intel Processor N200 4GB RAM 128GB UFS Moonlight Blue (12-mo. Microsoft 365 included)\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">219</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price $219.00</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $149.00</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP 15.6 inch Win 11 Laptop Intel Processor N200 4GB RAM 128GB UFS Moonlight Blue (12-mo. Microsoft 365 included)</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"4073\">4073</span><span class=\"ld_Ej\">4.2 out of 5 Stars. 4073 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">tomorrow</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"6VD3BKC9CCJI\" data-dca-guid=\"6VD3BKC9CCJI\" data-dca-id=\"13698855020\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"13698855020\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/HP-15-6-inch-Windows-Laptop-Intel-Core-i3-N305-8GB-RAM-256GB-SSD-Natural-Silver/13698855020?classType=REGULAR&amp;athbdg=L1600&amp;from=/search\"><span class=\"ld_Ej\"><h3>Best seller HP 15.6 inch Windows 11 Laptop intel Core i3-N305 8GB RAM 256GB SSD Natural Silver $332.90</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap: 8px;\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" role=\"group\" data-testid=\"badgeTagComponent\" style=\"background: rgb(230, 241, 252); margin-top: 0px; padding: 4px 8px; display: flex; align-items: flex-start; flex-direction: column; border-radius: 4px;\"><span class=\"w_yTSq f6-m f7 dib w_0aYG w_MwbK\" style=\"color: rgb(0, 79, 154); line-height: 16px; font-weight: 700; white-space: pre; margin-right: 4px; vertical-align: middle;\">Best seller</span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP 15.6 inch Windows 11 Laptop intel Core i3-N305 8GB RAM 256GB SSD Natural Silver\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-15-6-inch-Windows-Laptop-Intel-Core-i3-N305-8GB-RAM-256GB-SSD-Natural-Silver_4f7122d2-612b-4618-b416-2fc2eb7b0186.958f8533e020e164e67c255c6d5774fc.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-15-6-inch-Windows-Laptop-Intel-Core-i3-N305-8GB-RAM-256GB-SSD-Natural-Silver_4f7122d2-612b-4618-b416-2fc2eb7b0186.958f8533e020e164e67c255c6d5774fc.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-15-6-inch-Windows-Laptop-Intel-Core-i3-N305-8GB-RAM-256GB-SSD-Natural-Silver_4f7122d2-612b-4618-b416-2fc2eb7b0186.958f8533e020e164e67c255c6d5774fc.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-8\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP 15.6 inch Windows 11 Laptop intel Core i3-N305 8GB RAM 256GB SSD Natural Silver\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"6VD3BKC9CCJI\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/HP-15-6-inch-Windows-Laptop-Intel-Core-i3-N305-8GB-RAM-256GB-SSD-Natural-Silver/13698855020?classType=REGULAR&amp;athbdg=L1600\" aria-label=\"Options - HP 15.6 inch Windows 11 Laptop intel Core i3-N305 8GB RAM 256GB SSD Natural Silver\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">332</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">90</span></div><span class=\"ld_Ej\">current price $332.90</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $201.00</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP 15.6 inch Windows 11 Laptop intel Core i3-N305 8GB RAM 256GB SSD Natural Silver</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"2501\">2501</span><span class=\"ld_Ej\">4.2 out of 5 Stars. 2501 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">Sat, Mar 7</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div><div class=\"flex items-center mt1\"><img loading=\"lazy\" class=\"mr1\" src=\"//i5.walmartimages.com/dfw/63fd9f59-547b/d4dfa923-2a65-4c3a-b34c-c4db7ee6c035/v1/Apple_TV_iOS.svg\" alt=\"Apple Tv\" height=\"16\" width=\"16\"><span class=\"dark-gray f7 f6-l\">3 free offers from Apple</span></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div><div><div><button type=\"button\" class=\"bg-white tl bw0 nl1 flex pointer sans-serif w-100 pb2\" aria-expanded=\"false\" data-dca-id=\"B:8D3A9ECBE7\" data-dca-intent=\"__DCA_TBD__\"><div class=\"f6 \">Resold offers <span class=\"b\">from $201.00</span></div><i class=\"ld ld-ChevronDown pv0 pb2 ph2 black\" role=\"img\" data-testid=\"icon-chevron-down\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i></button><section></section></div></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"43GND9HXAO3M\" data-dca-guid=\"43GND9HXAO3M\" data-dca-id=\"13181111644\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"13181111644\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro/13181111644?classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>RNRUO 15.6\" Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y with 2 Cores Up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, Windows 11 Laptop for Business, Student, Office, Dark Gray $196.99 Was $409.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, RNRUO 15.6&quot; Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y with 2 Cores Up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, Windows 11 Laptop for Business, Student, Office, Dark Gray\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro_13769116-7795-469b-b472-90a8b51b7328.41341044ad27ff70a8994d40090837c3.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro_13769116-7795-469b-b472-90a8b51b7328.41341044ad27ff70a8994d40090837c3.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro_13769116-7795-469b-b472-90a8b51b7328.41341044ad27ff70a8994d40090837c3.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-9\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"RNRUO 15.6&quot; Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y with 2 Cores Up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, Windows 11 Laptop for Business, Student, Office, Dark Gray\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-43GND9HXAO3M\"><div class=\"f6 lh-title tc h1 v-mid\" data-test-id=\"gpt-text-variants-container\"><div aria-hidden=\"true\" aria-labelledby=\"variants-dynamic-43GND9HXAO3M\" data-test-id=\"gpt-dynamic-text-display\"><i class=\"ld ld-Plus\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i>3 options</div><span class=\"ld_Ej\" id=\"variants-dynamic-43GND9HXAO3M\" data-test-id=\"gpt-dynamic-text-hidden\">Available in additional 3 options</span></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"43GND9HXAO3M\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro/13181111644?classType=VARIANT\" aria-label=\"Options - RNRUO 15.6&quot; Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y with 2 Cores Up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, Windows 11 Laptop for Business, Student, Office, Dark Gray\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">196</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">99</span></div><span class=\"ld_Ej\">current price Now $196.99, Was $409.00</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$409.00</span></div><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $196.99 – $259.89</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">RNRUO 15.6\" Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y with 2 Cores Up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, Windows 11 Laptop for Business, Student, Office, Dark Gray</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"799\">799</span><span class=\"ld_Ej\">3.2 out of 5 Stars. 799 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">Sat, Mar 7</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"2KP0RBRHIM8A\" data-dca-guid=\"2KP0RBRHIM8A\" data-dca-id=\"2706605807\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"2706605807\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/HP-15-6-inch-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Scarlet-Red-12-mo-Microsoft-365-included/2706605807?classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>HPI SOURCING - NEW 15.6\" Laptop, Intel N-Series N200, 4GB RAM, 128GB SSD, Windows 11 Home in S mode, 15-fd0083wm $310.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HPI SOURCING - NEW 15.6&quot; Laptop, Intel N-Series N200, 4GB RAM, 128GB SSD, Windows 11 Home in S mode, 15-fd0083wm\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-15-6-inch-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Scarlet-Red-12-mo-Microsoft-365-included_c0297e29-0115-409f-aa99-55fc1cc11a42.52e867f5cebda83db7fbead6954655d3.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-15-6-inch-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Scarlet-Red-12-mo-Microsoft-365-included_c0297e29-0115-409f-aa99-55fc1cc11a42.52e867f5cebda83db7fbead6954655d3.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-15-6-inch-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Scarlet-Red-12-mo-Microsoft-365-included_c0297e29-0115-409f-aa99-55fc1cc11a42.52e867f5cebda83db7fbead6954655d3.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-10\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HPI SOURCING - NEW 15.6&quot; Laptop, Intel N-Series N200, 4GB RAM, 128GB SSD, Windows 11 Home in S mode, 15-fd0083wm\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"2KP0RBRHIM8A\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/HP-15-6-inch-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Scarlet-Red-12-mo-Microsoft-365-included/2706605807?classType=VARIANT\" aria-label=\"Options - HPI SOURCING - NEW 15.6&quot; Laptop, Intel N-Series N200, 4GB RAM, 128GB SSD, Windows 11 Home in S mode, 15-fd0083wm\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">310</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price $310.00</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $141.00</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HPI SOURCING - NEW 15.6\" Laptop, Intel N-Series N200, 4GB RAM, 128GB SSD, Windows 11 Home in S mode, 15-fd0083wm</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"8896\">8896</span><span class=\"ld_Ej\">4.2 out of 5 Stars. 8896 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div><div><div><button type=\"button\" class=\"bg-white tl bw0 nl1 flex pointer sans-serif w-100 pb2\" aria-expanded=\"false\" data-dca-id=\"B:8D3A9ECBE7\" data-dca-intent=\"__DCA_TBD__\"><div class=\"f6 \">Resold offers <span class=\"b\">from $141.00</span></div><i class=\"ld ld-ChevronDown pv0 pb2 ph2 black\" role=\"img\" data-testid=\"icon-chevron-down\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i></button><section></section></div></div></div></div><div data-testid=\"tile-take-over\" class=\"ph1 pa0-xl bb b--near-white w-25\"><div class=\"h-100 pb1-xl pr4-xl pv1 ph1\"><section class=\"h-100 flex flex-column justify-center\" data-dca-id=\"M:B1684FBE4F\" data-dca-type=\"module\" data-dca-name=\"__DCA_NAME_TBD__\"><div class=\"flex center shadow-4 relative pointer black h-100 br3 justify-between flex-column w-100\" style=\"box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 8px 0px;\"><a link-identifier=\"Generic Name\" class=\"absolute h-100 z-1 flex-column w-100\" role=\"link\" aria-label=\"View details for Tax prep, no stress\" data-dca-id=\"L:C888812623\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/shop/tax-prep?sort=best_seller?povid=ETS_D72_COMPUTING_TTO_CMPN_SB-TaxPrep_Laptops\"><span class=\"w_iUH7\">View details for Tax prep, no stress</span></a><div class=\"relative flex h-100 items-start w-100\" style=\"border-radius: 8px 8px 0px 0px; flex: 0 0 50%;\"><img loading=\"lazy\" alt=\"A printer on a desk, a laptop and Intuit Turbo Tax filing software.\" height=\"fit-content\" width=\"fit-content\" class=\"relative db\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-f01b/k2-_fc078a89-be6c-40ba-b6d5-da95dcb9f339.v1.png\" style=\"width: 100%; border-radius: 8px 8px 0px 0px; height: 100%; object-fit: contain;\"></div><div class=\"flex center w-100 h-100\" style=\"max-height: 240px; border-radius: 0px 0px 8px 8px;\"><div class=\"ph3 flex-grow-1 self-start mt4 mb6\"><div class=\"relative\"><div class=\"b mb0 tc f3\">Tax prep, no stress</div><div class=\"mb1 mt2 tc f5\">File with TurboTax, printers &amp; AI laptops.</div><div class=\"tc\"><div class=\"mt4 db\"><button class=\"w_hhLG w_XK4d w_0_LY br-pill pv2 ph4 pointer bg-white z-2\" type=\"button\" data-dca-id=\"B:19EE485CDA\" data-dca-intent=\"open\" data-dca-event=\"unknown\" style=\"color: black;\">Shop now</button></div></div></div></div></div></div></section></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"3JBLOWO8NG7D\" data-dca-guid=\"3JBLOWO8NG7D\" data-dca-id=\"13193314406\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"13193314406\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/RNRUO-15-6-Windows-11-Pro-Laptop-Intel-Celeron-N5095-up-to-2-9GHz-16GB-RAM-512GB-SSD-Fingerprint-Backlit-Keyboard-1920-1080-IPS-FHD-Display/13193314406?classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>RNRUO 15.6\" Laptop, Intel 6500Y up to 3.4GHz 16GB RAM 512GB SSD, With Office 2024, 1920*1080 IPS FHD Display Windows 11 for Student, Home Office, Business $259.99 Was $509.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, RNRUO 15.6&quot; Laptop, Intel 6500Y up to 3.4GHz 16GB RAM 512GB SSD, With Office 2024, 1920*1080 IPS FHD Display Windows 11 for Student, Home Office, Business\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/RNRUO-15-6-Windows-11-Pro-Laptop-Intel-Celeron-N5095-up-to-2-9GHz-16GB-RAM-512GB-SSD-Fingerprint-Backlit-Keyboard-1920-1080-IPS-FHD-Display_9be3df6f-ca6d-4335-8417-cdb4d170cc32.7ee850faef25d26011b1a596a683b1b7.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/RNRUO-15-6-Windows-11-Pro-Laptop-Intel-Celeron-N5095-up-to-2-9GHz-16GB-RAM-512GB-SSD-Fingerprint-Backlit-Keyboard-1920-1080-IPS-FHD-Display_9be3df6f-ca6d-4335-8417-cdb4d170cc32.7ee850faef25d26011b1a596a683b1b7.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/RNRUO-15-6-Windows-11-Pro-Laptop-Intel-Celeron-N5095-up-to-2-9GHz-16GB-RAM-512GB-SSD-Fingerprint-Backlit-Keyboard-1920-1080-IPS-FHD-Display_9be3df6f-ca6d-4335-8417-cdb4d170cc32.7ee850faef25d26011b1a596a683b1b7.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-12\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"RNRUO 15.6&quot; Laptop, Intel 6500Y up to 3.4GHz 16GB RAM 512GB SSD, With Office 2024, 1920*1080 IPS FHD Display Windows 11 for Student, Home Office, Business\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-3JBLOWO8NG7D\"><div class=\"f6 lh-title tc h1 v-mid\" data-test-id=\"gpt-text-variants-container\"><div aria-hidden=\"true\" aria-labelledby=\"variants-dynamic-3JBLOWO8NG7D\" data-test-id=\"gpt-dynamic-text-display\"><i class=\"ld ld-Plus\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i>2 options</div><span class=\"ld_Ej\" id=\"variants-dynamic-3JBLOWO8NG7D\" data-test-id=\"gpt-dynamic-text-hidden\">Available in additional 2 options</span></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"3JBLOWO8NG7D\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/RNRUO-15-6-Windows-11-Pro-Laptop-Intel-Celeron-N5095-up-to-2-9GHz-16GB-RAM-512GB-SSD-Fingerprint-Backlit-Keyboard-1920-1080-IPS-FHD-Display/13193314406?classType=VARIANT\" aria-label=\"Options - RNRUO 15.6&quot; Laptop, Intel 6500Y up to 3.4GHz 16GB RAM 512GB SSD, With Office 2024, 1920*1080 IPS FHD Display Windows 11 for Student, Home Office, Business\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">259</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">99</span></div><span class=\"ld_Ej\">current price Now $259.99, Was $509.00</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$509.00</span></div><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $259.99 – $279.99</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">RNRUO 15.6\" Laptop, Intel 6500Y up to 3.4GHz 16GB RAM 512GB SSD, With Office 2024, 1920*1080 IPS FHD Display Windows 11 for Student, Home Office, Business</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"841\">841</span><span class=\"ld_Ej\">3.8 out of 5 Stars. 841 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">Sat, Mar 7</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"22FQEDQ48XB3\" data-dca-guid=\"22FQEDQ48XB3\" data-dca-id=\"6144300102\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"6144300102\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/Windows-11-Pro-Laptop-15-6inch-12GB-RAM-512GB-SSD-12th-Gen-Intel-N100-Processor-1920x1080-Webacm/6144300102?classType=REGULAR&amp;from=/search\"><span class=\"ld_Ej\"><h3>Windows 11 Pro Laptop 15.6inch, 12GB RAM 512GB SSD, 12th Gen Intel N100 Processor, 1920x1080, Webacm $289.99 Was $549.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Windows 11 Pro Laptop 15.6inch, 12GB RAM 512GB SSD, 12th Gen Intel N100 Processor, 1920x1080, Webacm\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/Windows-11-Pro-Laptop-15-6inch-12GB-RAM-512GB-SSD-12th-Gen-Intel-N100-Processor-1920x1080-Webacm_5824e102-a508-4b0b-b087-de1ccffb7f81.70efd51e0b08d50e1e56c75588c3ea26.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/Windows-11-Pro-Laptop-15-6inch-12GB-RAM-512GB-SSD-12th-Gen-Intel-N100-Processor-1920x1080-Webacm_5824e102-a508-4b0b-b087-de1ccffb7f81.70efd51e0b08d50e1e56c75588c3ea26.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/Windows-11-Pro-Laptop-15-6inch-12GB-RAM-512GB-SSD-12th-Gen-Intel-N100-Processor-1920x1080-Webacm_5824e102-a508-4b0b-b087-de1ccffb7f81.70efd51e0b08d50e1e56c75588c3ea26.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-13\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Windows 11 Pro Laptop 15.6inch, 12GB RAM 512GB SSD, 12th Gen Intel N100 Processor, 1920x1080, Webacm\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"22FQEDQ48XB3\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - Windows 11 Pro Laptop 15.6inch, 12GB RAM 512GB SSD, 12th Gen Intel N100 Processor, 1920x1080, Webacm\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">289</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">99</span></div><span class=\"ld_Ej\">current price Now $289.99, Was $549.99</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$549.99</span></div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">Windows 11 Pro Laptop 15.6inch, 12GB RAM 512GB SSD, 12th Gen Intel N100 Processor, 1920x1080, Webacm</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"342\">342</span><span class=\"ld_Ej\">4 out of 5 Stars. 342 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"3O2E0RNVESL8\" data-dca-guid=\"3O2E0RNVESL8\" data-dca-id=\"13374211754\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"13374211754\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Core-i3-N305-8GB-256-SSD-82XB00BMUS/13374211754?classType=REGULAR&amp;athbdg=L1102&amp;from=/search\"><span class=\"ld_Ej\"><h3>50+ bought since yesterday Lenovo IdeaPad Slim 3i 15.6\" Laptop, Intel Core i3-N305, 8GB, 256 SSD, 82XB00BMUS $329.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap: 8px;\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" role=\"group\" data-testid=\"badgeTagComponent\" style=\"background: rgb(255, 255, 255); margin-top: 0px; padding: 4px 8px; display: flex; align-items: flex-start; flex-direction: column; border-radius: 4px; overflow: hidden; border: 1px solid rgb(0, 113, 220);\"><span class=\"w_yTSq f6-m f7 truncate dib w_0aYG w_MwbK\" style=\"color: rgb(0, 113, 220); line-height: 16px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; margin-right: 4px; vertical-align: middle;\">50+ bought since yesterday</span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Lenovo IdeaPad Slim 3i 15.6&quot; Laptop, Intel Core i3-N305, 8GB, 256 SSD, 82XB00BMUS\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Core-i3-N305-8GB-256-SSD-82XB00BMUS_0cf51be0-e420-4bc8-a1c7-3110cb00db01.4cd90c47e4e33ebf32c7c679866b73cd.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Core-i3-N305-8GB-256-SSD-82XB00BMUS_0cf51be0-e420-4bc8-a1c7-3110cb00db01.4cd90c47e4e33ebf32c7c679866b73cd.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Core-i3-N305-8GB-256-SSD-82XB00BMUS_0cf51be0-e420-4bc8-a1c7-3110cb00db01.4cd90c47e4e33ebf32c7c679866b73cd.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-14\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Lenovo IdeaPad Slim 3i 15.6&quot; Laptop, Intel Core i3-N305, 8GB, 256 SSD, 82XB00BMUS\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"3O2E0RNVESL8\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - Lenovo IdeaPad Slim 3i 15.6&quot; Laptop, Intel Core i3-N305, 8GB, 256 SSD, 82XB00BMUS\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">329</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price $329.00</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">Lenovo IdeaPad Slim 3i 15.6\" Laptop, Intel Core i3-N305, 8GB, 256 SSD, 82XB00BMUS</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"1996\">1996</span><span class=\"ld_Ej\">4.3 out of 5 Stars. 1996 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">tomorrow</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div><div class=\"flex items-center mt1\"><img loading=\"lazy\" class=\"mr1\" src=\"//i5.walmartimages.com/dfw/63fd9f59-547b/d4dfa923-2a65-4c3a-b34c-c4db7ee6c035/v1/Apple_TV_iOS.svg\" alt=\"Apple Tv\" height=\"16\" width=\"16\"><span class=\"dark-gray f7 f6-l\">3 free offers from Apple</span></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"786WYFDQ0X0H\" data-dca-guid=\"786WYFDQ0X0H\" data-dca-id=\"13542163431\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"13542163431\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/ASUS-Vivobook-Go-15-6-Laptop-Intel-i3-N305-8GB-256GB-Windows-11-Home-in-S-mode-Cool-Silver-E1504GA-WS35/13542163431?classType=VARIANT&amp;athbdg=L1102&amp;from=/search\"><span class=\"ld_Ej\"><h3>100+ bought since yesterday ASUS Vivobook Go 15.6” Laptop, Intel i3-N305, 8GB, 256GB, Windows 11 Home in S mode, Cool Silver, E1504GA-WS35 $269.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"><div class=\"flex items-start flex-column pa0 flex-row flex-wrap items-center\" style=\"gap: 8px;\"><span class=\"w_VbBP w_mFV6 w_U23Z w_3oNC w_GbWt\" role=\"group\" data-testid=\"badgeTagComponent\" style=\"background: rgb(255, 255, 255); margin-top: 0px; padding: 4px 8px; display: flex; align-items: flex-start; flex-direction: column; border-radius: 4px; overflow: hidden; border: 1px solid rgb(0, 113, 220);\"><span class=\"w_yTSq f6-m f7 truncate dib w_0aYG w_MwbK\" style=\"color: rgb(0, 113, 220); line-height: 16px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; margin-right: 4px; vertical-align: middle;\">100+ bought since yesterday</span></span></div></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, ASUS Vivobook Go 15.6” Laptop, Intel i3-N305, 8GB, 256GB, Windows 11 Home in S mode, Cool Silver, E1504GA-WS35\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/ASUS-Vivobook-Go-15-6-Laptop-Intel-i3-N305-8GB-256GB-Windows-11-Home-in-S-mode-Cool-Silver-E1504GA-WS35_a36e0438-f6f8-45e7-9494-938be6d7bffe.1c34ed81b72299aaa180ef7e0a5bced0.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/ASUS-Vivobook-Go-15-6-Laptop-Intel-i3-N305-8GB-256GB-Windows-11-Home-in-S-mode-Cool-Silver-E1504GA-WS35_a36e0438-f6f8-45e7-9494-938be6d7bffe.1c34ed81b72299aaa180ef7e0a5bced0.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/ASUS-Vivobook-Go-15-6-Laptop-Intel-i3-N305-8GB-256GB-Windows-11-Home-in-S-mode-Cool-Silver-E1504GA-WS35_a36e0438-f6f8-45e7-9494-938be6d7bffe.1c34ed81b72299aaa180ef7e0a5bced0.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-15\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"ASUS Vivobook Go 15.6” Laptop, Intel i3-N305, 8GB, 256GB, Windows 11 Home in S mode, Cool Silver, E1504GA-WS35\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"786WYFDQ0X0H\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - ASUS Vivobook Go 15.6” Laptop, Intel i3-N305, 8GB, 256GB, Windows 11 Home in S mode, Cool Silver, E1504GA-WS35\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">269</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price $269.00</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">ASUS Vivobook Go 15.6” Laptop, Intel i3-N305, 8GB, 256GB, Windows 11 Home in S mode, Cool Silver, E1504GA-WS35</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"669\">669</span><span class=\"ld_Ej\">4.3 out of 5 Stars. 669 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">tomorrow</span></div></div></div><div data-test-id=\"gpt-low-inventory-container\"><span class=\"w_yTSq f7 f6-hdkp lh-solid lh-title-hdkp b dark-red w_0aYG w_MwbK\">Only 8 left</span></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"6QVMXQEDJCYS\" data-dca-guid=\"6QVMXQEDJCYS\" data-dca-id=\"11739907604\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"11739907604\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=31&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FHP-Stream-14-HD-BrightView-Laptop-Intel-Celeron-N4120-16GB-RAM-416GB-Storage-128GB-eMMC-288GB-Docking-Station-Set-Intel-UHD-Graphics-720p-Camera-Wi-F%2F11739907604%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=WLPwFsMwztWXF2fNeQFGiO1PzlOSbVTGnHJeWNOo76QUCHpuxkkF4I7O1g-vCvoOeF9XAF74jkrcWu_jm1-pHAnXjrzL9EAtC4l9VYXb1vQhHo0J20WTKqyPFcu3mFcM9Z-zYeHaYzZIY5BdKZFqU4zHie2Il0nhjrCmsKSCnL-6W5_8J4-SYIfHPnHYQyaaYf3CB8nOwS3REyxV5oKxKOpyMb0PVFVwDHlCBuFpbyNNVuJ6RdAoEFUFjdiRtuLg21MdHKCsizG5wPNwiCokFg&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\"><span class=\"ld_Ej\"><h3>HP Stream 14\" HD BrightView Laptop, Intel Celeron N4120, 16GB RAM, 416GB Storage (128GB eMMC + 288GB Docking Station Set), Intel UHD Graphics, 720p Camera, Wi-Fi, 1 Year Office 365, Win 11 S, Gold $359.00 Was $399.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP Stream 14&quot; HD BrightView Laptop, Intel Celeron N4120, 16GB RAM, 416GB Storage (128GB eMMC + 288GB Docking Station Set), Intel UHD Graphics, 720p Camera, Wi-Fi, 1 Year Office 365, Win 11 S, Gold\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-Stream-14-HD-BrightView-Laptop-Intel-Celeron-N4120-16GB-RAM-416GB-Storage-128GB-eMMC-288GB-Docking-Station-Set-Intel-UHD-Graphics-720p-Camera-Wi-F_22050529-6b94-49a0-8723-dc31f8aa6cef.43dfa074b0aed5a184636b202fd98e02.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-Stream-14-HD-BrightView-Laptop-Intel-Celeron-N4120-16GB-RAM-416GB-Storage-128GB-eMMC-288GB-Docking-Station-Set-Intel-UHD-Graphics-720p-Camera-Wi-F_22050529-6b94-49a0-8723-dc31f8aa6cef.43dfa074b0aed5a184636b202fd98e02.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-Stream-14-HD-BrightView-Laptop-Intel-Celeron-N4120-16GB-RAM-416GB-Storage-128GB-eMMC-288GB-Docking-Station-Set-Intel-UHD-Graphics-720p-Camera-Wi-F_22050529-6b94-49a0-8723-dc31f8aa6cef.43dfa074b0aed5a184636b202fd98e02.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-16\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP Stream 14&quot; HD BrightView Laptop, Intel Celeron N4120, 16GB RAM, 416GB Storage (128GB eMMC + 288GB Docking Station Set), Intel UHD Graphics, 720p Camera, Wi-Fi, 1 Year Office 365, Win 11 S, Gold\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"6QVMXQEDJCYS\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=31&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FHP-Stream-14-HD-BrightView-Laptop-Intel-Celeron-N4120-16GB-RAM-416GB-Storage-128GB-eMMC-288GB-Docking-Station-Set-Intel-UHD-Graphics-720p-Camera-Wi-F%2F11739907604%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=WLPwFsMwztWXF2fNeQFGiO1PzlOSbVTGnHJeWNOo76QUCHpuxkkF4I7O1g-vCvoOeF9XAF74jkrcWu_jm1-pHAnXjrzL9EAtC4l9VYXb1vQhHo0J20WTKqyPFcu3mFcM9Z-zYeHaYzZIY5BdKZFqU4zHie2Il0nhjrCmsKSCnL-6W5_8J4-SYIfHPnHYQyaaYf3CB8nOwS3REyxV5oKxKOpyMb0PVFVwDHlCBuFpbyNNVuJ6RdAoEFUFjdiRtuLg21MdHKCsizG5wPNwiCokFg&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\" aria-label=\"Options - HP Stream 14&quot; HD BrightView Laptop, Intel Celeron N4120, 16GB RAM, 416GB Storage (128GB eMMC + 288GB Docking Station Set), Intel UHD Graphics, 720p Camera, Wi-Fi, 1 Year Office 365, Win 11 S, Gold\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div class=\"h1 mt1\" data-test-id=\"gpt-sponsored-tag-container\"><div class=\"flex items-center lh-title h2-l normal\"><div class=\"flex items-center f7 f6-l\"><div>Sponsored</div><div class=\"z-2\"><button class=\"w_hhLG w_DZvO w_0_LY pointer pl1 no-underline pt3 pb3 \" type=\"button\" title=\"Ad disclaimer and feedback\" aria-label=\"Ad disclaimer and feedback\" data-dca-id=\"B:9AE6AB358F\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" style=\"color: gray;\"><i class=\"ld ld-InfoCircle\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i></button></div></div></div></div><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">359</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price Now $359.00, Was $399.00</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$399.00</span></div><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $359.00 – $389.00</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP Stream 14\" HD BrightView Laptop, Intel Celeron N4120, 16GB RAM, 416GB Storage (128GB eMMC + 288GB Docking Station Set), Intel UHD Graphics, 720p Camera, Wi-Fi, 1 Year Office 365, Win 11 S, Gold</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"37\">37</span><span class=\"ld_Ej\">4.6 out of 5 Stars. 37 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div data-testid=\"tile-take-over\" class=\"ph1 pa0-xl bb b--near-white w-25\"><div class=\"h-100 pb1-xl pr4-xl pv1 ph1\"><section class=\"h-100 flex flex-column justify-center\" data-dca-id=\"M:B1684FBE4F\" data-dca-type=\"module\" data-dca-name=\"__DCA_NAME_TBD__\"><div class=\"flex center shadow-4 relative pointer black h-100 br3 justify-between flex-column w-100\" style=\"box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 8px 0px;\"><a link-identifier=\"Generic Name\" class=\"absolute h-100 z-1 flex-column w-100\" role=\"link\" aria-label=\"View details for Up to $50 off top tech\" data-dca-id=\"L:C888812623\" data-dca-intent=\"open\" data-dca-event=\"unknown\" href=\"/shop/savings/elevate-your-tech?cat_id=3944_1089430_3951_1230091_1094888&amp;XCAT_MPSpotlights_ElevateyourTech_Shop_TTO_Sav_ETS\"><span class=\"w_iUH7\">View details for Up to $50 off top tech</span></a><div class=\"relative flex h-100 items-start w-100\" style=\"border-radius: 8px 8px 0px 0px; flex: 0 0 50%;\"><img loading=\"lazy\" alt=\"Laptop, camera, iPhone.&nbsp;&nbsp;\" height=\"fit-content\" width=\"fit-content\" class=\"relative db\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-2c96/k2-_36475b8e-64b9-49b4-8447-e3aef60c869f.v1.jpg\" style=\"width: 100%; border-radius: 8px 8px 0px 0px; height: 100%; object-fit: contain;\"></div><div class=\"flex center w-100 h-100\" style=\"max-height: 240px; border-radius: 0px 0px 8px 8px;\"><div class=\"ph3 flex-grow-1 self-start mt4 mb6\"><div class=\"relative\"><div class=\"b mb0 tc f3\">Up to $50 off top tech</div><div class=\"mb1 mt2 tc f5\">Level up with laptops &amp; more. </div><div class=\"tc\"><div class=\"mt4 db\"><button class=\"w_hhLG w_XK4d w_0_LY br-pill pv2 ph4 pointer bg-white z-2\" type=\"button\" data-dca-id=\"B:19EE485CDA\" data-dca-intent=\"open\" data-dca-event=\"unknown\" style=\"color: black;\">Shop now</button></div></div></div></div></div></div></section></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"7CK7620R0X9H\" data-dca-guid=\"7CK7620R0X9H\" data-dca-id=\"13181111644\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"13181111644\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=32&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FRNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro%2F13181111644%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=YoaotNoQtbgpvnCoeFB-yeZH9_ULcZUZJcmuXo_frFvEfANW_RMBD8TxsBXnh6unA0U9A4FC1lZUyH1-0_7OmgnXjrzL9EAtC4l9VYXb1vQhHo0J20WTKqyPFcu3mFcMOMkbzj9L8U8k4ZtlkuE8tYb9AtU50rKHI0m0IyinJgboj3BMpRAq8DVZAkGjBs9PKMe5P4DX_QpMW5u4L5EoCBpCqojXdNN-czena9K8kIqlTUMDa1fgjW7POpEXzNfYhNFvwP5tGrnpAE8blk3pzvIIgApoZ7PD5N719u1EOE0&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\"><span class=\"ld_Ej\"><h3>RNRUO 15.6\" Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y with 2 Cores Up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, Windows 11 Laptop for Business, Student, Office, Dark Gray $196.99 Was $409.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, RNRUO 15.6&quot; Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y with 2 Cores Up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, Windows 11 Laptop for Business, Student, Office, Dark Gray\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro_13769116-7795-469b-b472-90a8b51b7328.41341044ad27ff70a8994d40090837c3.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro_13769116-7795-469b-b472-90a8b51b7328.41341044ad27ff70a8994d40090837c3.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro_13769116-7795-469b-b472-90a8b51b7328.41341044ad27ff70a8994d40090837c3.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-18\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"RNRUO 15.6&quot; Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y with 2 Cores Up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, Windows 11 Laptop for Business, Student, Office, Dark Gray\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"7CK7620R0X9H\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"https://www.walmart.com/sp/track?bt=1&amp;eventST=click&amp;plmt=sp-search-middle~desktop~primary-exact&amp;pos=32&amp;tax=3944_1089430_3951_8835131_1737838&amp;rdf=1&amp;rd=https%3A%2F%2Fwww.walmart.com%2Fip%2FRNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro%2F13181111644%3FclassType%3DVARIANT%26adsRedirect%3Dtrue&amp;adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0&amp;mloc=sp-search-middle&amp;pltfm=desktop&amp;pgId=laptop&amp;pt=search&amp;spQs=YoaotNoQtbgpvnCoeFB-yeZH9_ULcZUZJcmuXo_frFvEfANW_RMBD8TxsBXnh6unA0U9A4FC1lZUyH1-0_7OmgnXjrzL9EAtC4l9VYXb1vQhHo0J20WTKqyPFcu3mFcMOMkbzj9L8U8k4ZtlkuE8tYb9AtU50rKHI0m0IyinJgboj3BMpRAq8DVZAkGjBs9PKMe5P4DX_QpMW5u4L5EoCBpCqojXdNN-czena9K8kIqlTUMDa1fgjW7POpEXzNfYhNFvwP5tGrnpAE8blk3pzvIIgApoZ7PD5N719u1EOE0&amp;storeId=3081&amp;specificity=broad&amp;specificityScore=0.25884318&amp;couponState=na&amp;bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default&amp;classType=VARIANT\" aria-label=\"Options - RNRUO 15.6&quot; Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y with 2 Cores Up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, Windows 11 Laptop for Business, Student, Office, Dark Gray\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div class=\"h1 mt1\" data-test-id=\"gpt-sponsored-tag-container\"><div class=\"flex items-center lh-title h2-l normal\"><div class=\"flex items-center f7 f6-l\"><div>Sponsored</div><div class=\"z-2\"><button class=\"w_hhLG w_DZvO w_0_LY pointer pl1 no-underline pt3 pb3 \" type=\"button\" title=\"Ad disclaimer and feedback\" aria-label=\"Ad disclaimer and feedback\" data-dca-id=\"B:9AE6AB358F\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\" style=\"color: gray;\"><i class=\"ld ld-InfoCircle\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i></button></div></div></div></div><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">196</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">99</span></div><span class=\"ld_Ej\">current price Now $196.99, Was $409.00</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$409.00</span></div><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $196.99 – $259.89</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">RNRUO 15.6\" Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y with 2 Cores Up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, Windows 11 Laptop for Business, Student, Office, Dark Gray</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"799\">799</span><span class=\"ld_Ej\">3.2 out of 5 Stars. 799 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">Sat, Mar 7</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"4FGUVW0BDJO5\" data-dca-guid=\"4FGUVW0BDJO5\" data-dca-id=\"436432207\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"436432207\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/Apple-Macbook-Air-13-3-Laptop-Core-i5-128Gb-Gold-2019-USED/436432207?conditionGroupCode=2&amp;classType=REGULAR&amp;from=/search\"><span class=\"ld_Ej\"><h3>Restored Apple Macbook Air 13.3\" Laptop Core i5 128Gb Gold (2019). $369.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Restored Apple Macbook Air 13.3&quot; Laptop Core i5 128Gb Gold (2019).\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/asr/f56e563d-c946-4b57-9c0f-8a61cdf5abfc.321dc32e9e7cd78e62637c991a0c4c72.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/asr/f56e563d-c946-4b57-9c0f-8a61cdf5abfc.321dc32e9e7cd78e62637c991a0c4c72.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/asr/f56e563d-c946-4b57-9c0f-8a61cdf5abfc.321dc32e9e7cd78e62637c991a0c4c72.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-19\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Restored Apple Macbook Air 13.3&quot; Laptop Core i5 128Gb Gold (2019).\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"4FGUVW0BDJO5\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - Restored Apple Macbook Air 13.3&quot; Laptop Core i5 128Gb Gold (2019).\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">369</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">99</span></div><span class=\"ld_Ej\">current price $369.99</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">Restored Apple Macbook Air 13.3\" Laptop Core i5 128Gb Gold (2019).</h3></span><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div><div class=\"flex items-center mt0\" data-testid=\"product-badge-container\"><div class=\"mr1\"><i class=\"ld ld-Recycle\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i></div><span data-testid=\"product-badge-text\" class=\"dark-gray f7 f6-l\" aria-hidden=\"false\">Restored: Like New</span></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"5U60Z39ALT7O\" data-dca-guid=\"5U60Z39ALT7O\" data-dca-id=\"13566207291\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"13566207291\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver/13566207291?classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>ASUS Vivobook 15.6” FHD Laptop with Intel i5-1334U, Intel UHD Graphics, 8GB RAM, 512GB SSD, Cool Silver $399.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, ASUS Vivobook 15.6” FHD Laptop with Intel i5-1334U, Intel UHD Graphics, 8GB RAM, 512GB SSD, Cool Silver\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver_ec382747-3630-476f-b757-27850fd5268d.1cb2e27459fdb9f8d341c4c0b104c191.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver_ec382747-3630-476f-b757-27850fd5268d.1cb2e27459fdb9f8d341c4c0b104c191.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver_ec382747-3630-476f-b757-27850fd5268d.1cb2e27459fdb9f8d341c4c0b104c191.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-20\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"ASUS Vivobook 15.6” FHD Laptop with Intel i5-1334U, Intel UHD Graphics, 8GB RAM, 512GB SSD, Cool Silver\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-5U60Z39ALT7O\"><div class=\"f6 lh-title tc h1 v-mid\" data-test-id=\"gpt-text-variants-container\"><div aria-hidden=\"true\" aria-labelledby=\"variants-dynamic-5U60Z39ALT7O\" data-test-id=\"gpt-dynamic-text-display\"><i class=\"ld ld-Plus\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i>2 options</div><span class=\"ld_Ej\" id=\"variants-dynamic-5U60Z39ALT7O\" data-test-id=\"gpt-dynamic-text-hidden\">Available in additional 2 options</span></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"5U60Z39ALT7O\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver/13566207291?classType=VARIANT\" aria-label=\"Options - ASUS Vivobook 15.6” FHD Laptop with Intel i5-1334U, Intel UHD Graphics, 8GB RAM, 512GB SSD, Cool Silver\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">399</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price $399.00</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $399.00 – $459.00</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">ASUS Vivobook 15.6” FHD Laptop with Intel i5-1334U, Intel UHD Graphics, 8GB RAM, 512GB SSD, Cool Silver</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"188\">188</span><span class=\"ld_Ej\">4.1 out of 5 Stars. 188 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">tomorrow</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div><div class=\"flex items-center mt1\"><img loading=\"lazy\" class=\"mr1\" src=\"//i5.walmartimages.com/dfw/63fd9f59-547b/d4dfa923-2a65-4c3a-b34c-c4db7ee6c035/v1/Apple_TV_iOS.svg\" alt=\"Apple Tv\" height=\"16\" width=\"16\"><span class=\"dark-gray f7 f6-l\">3 free offers from Apple</span></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"6VXEAJODT4EG\" data-dca-guid=\"6VXEAJODT4EG\" data-dca-id=\"9143614208\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"9143614208\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/Auusda-15-6-Business-Laptop-32GB-RAM-1TB-SSD-Windows-11-Pro-Computers-Intel-N95-CPU-Pink/9143614208?classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>Auusda 15.6\" Business Laptop, 32GB RAM 1TB SSD, Windows 11 Pro Computers, Intel N5100 CPU, Pink $499.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Auusda 15.6&quot; Business Laptop, 32GB RAM 1TB SSD, Windows 11 Pro Computers, Intel N5100 CPU, Pink\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/Auusda-15-6-Business-Laptop-32GB-RAM-1TB-SSD-Windows-11-Pro-Computers-Intel-N95-CPU-Pink_730c87d9-120a-4f52-80cf-2c78468ecd61.5a90dc9e62da5ccc10c9a50162a179f5.png?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/Auusda-15-6-Business-Laptop-32GB-RAM-1TB-SSD-Windows-11-Pro-Computers-Intel-N95-CPU-Pink_730c87d9-120a-4f52-80cf-2c78468ecd61.5a90dc9e62da5ccc10c9a50162a179f5.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/Auusda-15-6-Business-Laptop-32GB-RAM-1TB-SSD-Windows-11-Pro-Computers-Intel-N95-CPU-Pink_730c87d9-120a-4f52-80cf-2c78468ecd61.5a90dc9e62da5ccc10c9a50162a179f5.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-21\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Auusda 15.6&quot; Business Laptop, 32GB RAM 1TB SSD, Windows 11 Pro Computers, Intel N5100 CPU, Pink\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"6VXEAJODT4EG\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - Auusda 15.6&quot; Business Laptop, 32GB RAM 1TB SSD, Windows 11 Pro Computers, Intel N5100 CPU, Pink\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">499</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">99</span></div><span class=\"ld_Ej\">current price $499.99</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">Auusda 15.6\" Business Laptop, 32GB RAM 1TB SSD, Windows 11 Pro Computers, Intel N5100 CPU, Pink</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"467\">467</span><span class=\"ld_Ej\">3.8 out of 5 Stars. 467 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"5TQR57HJLVUY\" data-dca-guid=\"5TQR57HJLVUY\" data-dca-id=\"13742500959\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"13742500959\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i7-1355U-16GB-RAM-512GB-SSD-Black/13742500959?classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>ASUS Vivobook 16\" WUXGA Laptop Intel Core i7-1355U 16GB RAM 512GB SSD Black $499.00 Was $649.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, ASUS Vivobook 16&quot; WUXGA Laptop Intel Core i7-1355U 16GB RAM 512GB SSD Black\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i7-1355U-16GB-RAM-512GB-SSD-Black_7f1c7476-8e15-4525-8cf3-0429092961a5.a551b608e39fe613ebb15e6c6fd71bbc.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i7-1355U-16GB-RAM-512GB-SSD-Black_7f1c7476-8e15-4525-8cf3-0429092961a5.a551b608e39fe613ebb15e6c6fd71bbc.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i7-1355U-16GB-RAM-512GB-SSD-Black_7f1c7476-8e15-4525-8cf3-0429092961a5.a551b608e39fe613ebb15e6c6fd71bbc.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-22\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"ASUS Vivobook 16&quot; WUXGA Laptop Intel Core i7-1355U 16GB RAM 512GB SSD Black\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-5TQR57HJLVUY\"><div class=\"flex f6 justify-center items-center lh-title h2-l\" data-test-id=\"gpt-swatch-variants-container\"><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/ASUS-VivoBook-16-IPS-WUXGA-Notebook-Intel-Core-i7-13620H-16GB-DDR4-RAM-512GB-SSD-Cool-Silver-Deca-core-60Hz-Display-Up-To-8-Hours-Bat/17377463164?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/121f31b6-2130-40d9-9d4a-334a29afbd04.4ae956f3869e21445b03f56283aa9587.jpeg?odnBg=FFFFFF&amp;odnHeight=30&amp;odnWidth=30\" class=\"br-100 v-btm ba b--transparent\" alt=\"Cool Silver, variant on ASUS Vivobook 16&quot; WUXGA Laptop Intel Core i7-1355U 16GB RAM 512GB SSD Black\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"flex items-center justify-center mr0\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/ASUS-Vivobook-16-Laptop-Intel-Core-i7-1355U-16GB-512GB-Windows-11-Home-Indie-Black-F1605VA-WS74/13742500959?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/7f1c7476-8e15-4525-8cf3-0429092961a5.a551b608e39fe613ebb15e6c6fd71bbc.jpeg?odnBg=FFFFFF&amp;odnHeight=30&amp;odnWidth=30\" class=\"br-100 v-btm ba b--transparent\" alt=\"Indie Black, variant on ASUS Vivobook 16&quot; WUXGA Laptop Intel Core i7-1355U 16GB RAM 512GB SSD Black\" data-test-id=\"gpt-variant-image\"></a></div></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"5TQR57HJLVUY\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i7-1355U-16GB-RAM-512GB-SSD-Black/13742500959?classType=VARIANT\" aria-label=\"Options - ASUS Vivobook 16&quot; WUXGA Laptop Intel Core i7-1355U 16GB RAM 512GB SSD Black\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">499</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price Now $499.00, Was $649.99</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$649.99</span></div><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $499.00 – $629.99</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">ASUS Vivobook 16\" WUXGA Laptop Intel Core i7-1355U 16GB RAM 512GB SSD Black</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"817\">817</span><span class=\"ld_Ej\">4.3 out of 5 Stars. 817 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">tomorrow</span></div></div></div><div data-test-id=\"gpt-low-inventory-container\"><span class=\"w_yTSq f7 f6-hdkp lh-solid lh-title-hdkp b dark-red w_0aYG w_MwbK\">Low stock</span></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"6Y38P1JFP0AR\" data-dca-guid=\"6Y38P1JFP0AR\" data-dca-id=\"18656262897\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"18656262897\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/HP-14-inch-Laptop-Light-Slim-Microsoft-Office-365-included-Intel-N-Series-Processor-4GB-RAM-64GB-SSD-Free-DVD-Drive-Flash-Drive-Windows-11-S-Rose-Gol/18656262897?classType=REGULAR&amp;from=/search\"><span class=\"ld_Ej\"><h3>HP 14 inch Laptop Light &amp; Slim, Microsoft Office 365 included, Intel N-Series Processor, 4GB RAM, 64GB SSD, Free DVD Drive &amp; Flash Drive, Windows 11 S (Rose Gold) $249.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP 14 inch Laptop Light &amp; Slim, Microsoft Office 365 included, Intel N-Series Processor, 4GB RAM, 64GB SSD, Free DVD Drive &amp; Flash Drive, Windows 11 S (Rose Gold)\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-14-inch-Laptop-Light-Slim-Microsoft-Office-365-included-Intel-N-Series-Processor-4GB-RAM-64GB-SSD-Free-DVD-Drive-Flash-Drive-Windows-11-S-Rose-Gol_0b673634-fdd9-467c-8df9-718f5181d725.3b538805e8c75f819f4f3997422bd035.png?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-14-inch-Laptop-Light-Slim-Microsoft-Office-365-included-Intel-N-Series-Processor-4GB-RAM-64GB-SSD-Free-DVD-Drive-Flash-Drive-Windows-11-S-Rose-Gol_0b673634-fdd9-467c-8df9-718f5181d725.3b538805e8c75f819f4f3997422bd035.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-14-inch-Laptop-Light-Slim-Microsoft-Office-365-included-Intel-N-Series-Processor-4GB-RAM-64GB-SSD-Free-DVD-Drive-Flash-Drive-Windows-11-S-Rose-Gol_0b673634-fdd9-467c-8df9-718f5181d725.3b538805e8c75f819f4f3997422bd035.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-23\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP 14 inch Laptop Light &amp; Slim, Microsoft Office 365 included, Intel N-Series Processor, 4GB RAM, 64GB SSD, Free DVD Drive &amp; Flash Drive, Windows 11 S (Rose Gold)\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"6Y38P1JFP0AR\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - HP 14 inch Laptop Light &amp; Slim, Microsoft Office 365 included, Intel N-Series Processor, 4GB RAM, 64GB SSD, Free DVD Drive &amp; Flash Drive, Windows 11 S (Rose Gold)\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">249</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price $249.00</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP 14 inch Laptop Light &amp; Slim, Microsoft Office 365 included, Intel N-Series Processor, 4GB RAM, 64GB SSD, Free DVD Drive &amp; Flash Drive, Windows 11 S (Rose Gold)</h3></span><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"3YWCTC8ZR7XV\" data-dca-guid=\"3YWCTC8ZR7XV\" data-dca-id=\"13172611709\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"13172611709\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/RNRUO-14-inch-Windows-11-Laptops-New-Intel-N4000-2-6Ghz-8GB-RAM-256GB-ROM-Notebook-PC-Computer-Laptop/13172611709?classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>RNRUO 15.6 inch Windows 11 Laptops New Intel 6500Y 8GB RAM 256GB ROM, FHD Display Type-C PD WiFi 5 BT5.0, Long Battery Life Netbook Laptop Computer for Kids, Student, Business $196.49 Was $429.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, RNRUO 15.6 inch Windows 11 Laptops New Intel 6500Y 8GB RAM 256GB ROM, FHD Display Type-C PD WiFi 5 BT5.0, Long Battery Life Netbook Laptop Computer for Kids, Student, Business\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/RNRUO-14-inch-Windows-11-Laptops-New-Intel-N4000-2-6Ghz-8GB-RAM-256GB-ROM-Notebook-PC-Computer-Laptop_49f93b7e-f698-4b24-b150-afd0bbdfd6a1.1795f3d5fbd47fa5f7c43a9eb72b56b3.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/RNRUO-14-inch-Windows-11-Laptops-New-Intel-N4000-2-6Ghz-8GB-RAM-256GB-ROM-Notebook-PC-Computer-Laptop_49f93b7e-f698-4b24-b150-afd0bbdfd6a1.1795f3d5fbd47fa5f7c43a9eb72b56b3.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/RNRUO-14-inch-Windows-11-Laptops-New-Intel-N4000-2-6Ghz-8GB-RAM-256GB-ROM-Notebook-PC-Computer-Laptop_49f93b7e-f698-4b24-b150-afd0bbdfd6a1.1795f3d5fbd47fa5f7c43a9eb72b56b3.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-24\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"RNRUO 15.6 inch Windows 11 Laptops New Intel 6500Y 8GB RAM 256GB ROM, FHD Display Type-C PD WiFi 5 BT5.0, Long Battery Life Netbook Laptop Computer for Kids, Student, Business\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-3YWCTC8ZR7XV\"><div class=\"f6 lh-title tc h1 v-mid\" data-test-id=\"gpt-text-variants-container\"><div aria-hidden=\"true\" aria-labelledby=\"variants-dynamic-3YWCTC8ZR7XV\" data-test-id=\"gpt-dynamic-text-display\"><i class=\"ld ld-Plus\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i>2 sizes</div><span class=\"ld_Ej\" id=\"variants-dynamic-3YWCTC8ZR7XV\" data-test-id=\"gpt-dynamic-text-hidden\">Available in additional 2 sizes</span></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"3YWCTC8ZR7XV\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/RNRUO-14-inch-Windows-11-Laptops-New-Intel-N4000-2-6Ghz-8GB-RAM-256GB-ROM-Notebook-PC-Computer-Laptop/13172611709?classType=VARIANT\" aria-label=\"Options - RNRUO 15.6 inch Windows 11 Laptops New Intel 6500Y 8GB RAM 256GB ROM, FHD Display Type-C PD WiFi 5 BT5.0, Long Battery Life Netbook Laptop Computer for Kids, Student, Business\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">196</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">49</span></div><span class=\"ld_Ej\">current price Now $196.49, Was $429.00</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$429.00</span></div><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $196.49 – $209.99</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">RNRUO 15.6 inch Windows 11 Laptops New Intel 6500Y 8GB RAM 256GB ROM, FHD Display Type-C PD WiFi 5 BT5.0, Long Battery Life Netbook Laptop Computer for Kids, Student, Business</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"1346\">1346</span><span class=\"ld_Ej\">3.5 out of 5 Stars. 1346 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">Sat, Mar 7</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"7796EOSWQGY0\" data-dca-guid=\"7796EOSWQGY0\" data-dca-id=\"13987763030\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"13987763030\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/HP-Victus-15-6-inch-FHD-144Hz-IPS-Windows-Laptop-Intel-Core-i5-13420H-16GB-RAM-512GB-SSD-Mica-Silver/13987763030?classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>HP Victus 15.6 inch FHD 144Hz IPS Win 11 Gaming Laptop Intel Core i5-13420H 16GB RAM 512GB SSD RTX 4050 Mica Silver $649.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP Victus 15.6 inch FHD 144Hz IPS Win 11 Gaming Laptop Intel Core i5-13420H 16GB RAM 512GB SSD RTX 4050 Mica Silver\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-Victus-15-6-inch-FHD-144Hz-IPS-Windows-Laptop-Intel-Core-i5-13420H-16GB-RAM-512GB-SSD-Mica-Silver_e08e5b03-5a7c-41e2-94ba-93244e8eb704.0c9b69afc9aee9a9e89cde921391a757.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-Victus-15-6-inch-FHD-144Hz-IPS-Windows-Laptop-Intel-Core-i5-13420H-16GB-RAM-512GB-SSD-Mica-Silver_e08e5b03-5a7c-41e2-94ba-93244e8eb704.0c9b69afc9aee9a9e89cde921391a757.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-Victus-15-6-inch-FHD-144Hz-IPS-Windows-Laptop-Intel-Core-i5-13420H-16GB-RAM-512GB-SSD-Mica-Silver_e08e5b03-5a7c-41e2-94ba-93244e8eb704.0c9b69afc9aee9a9e89cde921391a757.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-25\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP Victus 15.6 inch FHD 144Hz IPS Win 11 Gaming Laptop Intel Core i5-13420H 16GB RAM 512GB SSD RTX 4050 Mica Silver\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-7796EOSWQGY0\"><div class=\"f6 lh-title tc h1 v-mid\" data-test-id=\"gpt-text-variants-container\"><div aria-hidden=\"true\" aria-labelledby=\"variants-dynamic-7796EOSWQGY0\" data-test-id=\"gpt-dynamic-text-display\"><i class=\"ld ld-Plus\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i>2 options</div><span class=\"ld_Ej\" id=\"variants-dynamic-7796EOSWQGY0\" data-test-id=\"gpt-dynamic-text-hidden\">Available in additional 2 options</span></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"7796EOSWQGY0\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/HP-Victus-15-6-inch-FHD-144Hz-IPS-Windows-Laptop-Intel-Core-i5-13420H-16GB-RAM-512GB-SSD-Mica-Silver/13987763030?classType=VARIANT\" aria-label=\"Options - HP Victus 15.6 inch FHD 144Hz IPS Win 11 Gaming Laptop Intel Core i5-13420H 16GB RAM 512GB SSD RTX 4050 Mica Silver\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">649</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price $649.00</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $649.00 – $1,099.99</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP Victus 15.6 inch FHD 144Hz IPS Win 11 Gaming Laptop Intel Core i5-13420H 16GB RAM 512GB SSD RTX 4050 Mica Silver</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"1238\">1238</span><span class=\"ld_Ej\">4.2 out of 5 Stars. 1238 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">tomorrow</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"1WYY6XDYANSD\" data-dca-guid=\"1WYY6XDYANSD\" data-dca-id=\"16611011097\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"16611011097\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/Lenovo-IdeaPad-Slim-3i-15-6-FHD-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-512-SSD-Artic-Grey/16611011097?classType=REGULAR&amp;from=/search\"><span class=\"ld_Ej\"><h3>Lenovo IdeaPad Slim 3i 15.6\" FHD Touch Laptop, AMD Ryzen 5 7520U, 8GB RAM, 512 SSD, Artic Grey $374.49 Was $549.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Lenovo IdeaPad Slim 3i 15.6&quot; FHD Touch Laptop, AMD Ryzen 5 7520U, 8GB RAM, 512 SSD, Artic Grey\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/Lenovo-IdeaPad-Slim-3i-15-6-FHD-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-512-SSD-Artic-Grey_b5bbf229-b48e-4da5-a923-a66bb6f326c9.0efbc7daf4427bdd56d74ad96384fdf3.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/Lenovo-IdeaPad-Slim-3i-15-6-FHD-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-512-SSD-Artic-Grey_b5bbf229-b48e-4da5-a923-a66bb6f326c9.0efbc7daf4427bdd56d74ad96384fdf3.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/Lenovo-IdeaPad-Slim-3i-15-6-FHD-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-512-SSD-Artic-Grey_b5bbf229-b48e-4da5-a923-a66bb6f326c9.0efbc7daf4427bdd56d74ad96384fdf3.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-26\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Lenovo IdeaPad Slim 3i 15.6&quot; FHD Touch Laptop, AMD Ryzen 5 7520U, 8GB RAM, 512 SSD, Artic Grey\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"1WYY6XDYANSD\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/Lenovo-IdeaPad-Slim-3i-15-6-FHD-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-512-SSD-Artic-Grey/16611011097?classType=REGULAR\" aria-label=\"Options - Lenovo IdeaPad Slim 3i 15.6&quot; FHD Touch Laptop, AMD Ryzen 5 7520U, 8GB RAM, 512 SSD, Artic Grey\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">374</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">49</span></div><span class=\"ld_Ej\">current price Now $374.49, Was $549.99</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$549.99</span></div><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $270.00</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">Lenovo IdeaPad Slim 3i 15.6\" FHD Touch Laptop, AMD Ryzen 5 7520U, 8GB RAM, 512 SSD, Artic Grey</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"888\">888</span><span class=\"ld_Ej\">4.5 out of 5 Stars. 888 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div><div><div><button type=\"button\" class=\"bg-white tl bw0 nl1 flex pointer sans-serif w-100 pb2\" aria-expanded=\"false\" data-dca-id=\"B:8D3A9ECBE7\" data-dca-intent=\"__DCA_TBD__\"><div class=\"f6 \">Resold offers <span class=\"b\">from $270.00</span></div><i class=\"ld ld-ChevronDown pv0 pb2 ph2 black\" role=\"img\" data-testid=\"icon-chevron-down\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i></button><section></section></div></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"2JILGC2ECQXS\" data-dca-guid=\"2JILGC2ECQXS\" data-dca-id=\"17732351446\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"17732351446\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/RNRUO-15-6-Windonws-11-Laptop-12GB-DDR5-512G-SSD-3-6GHz-Intel-N150-Quad-Core-Office-2024-WiFi-6-BT-5-2-1080-FHD-Display-Student-Business-Home-Office/17732351446?classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>RNRUO 15.6\" Windonws 11 Laptop, 12GB DDR5 512G SSD, Up to 3.6GHz Intel N150 Quad-Core, Office 2024 WiFi 6 BT 5.2, 1080 FHD Display for Student, Business, Home Office, Pink $289.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, RNRUO 15.6&quot; Windonws 11 Laptop, 12GB DDR5 512G SSD, Up to 3.6GHz Intel N150 Quad-Core, Office 2024 WiFi 6 BT 5.2, 1080 FHD Display for Student, Business, Home Office, Pink\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/RNRUO-15-6-Windonws-11-Laptop-12GB-DDR5-512G-SSD-3-6GHz-Intel-N150-Quad-Core-Office-2024-WiFi-6-BT-5-2-1080-FHD-Display-Student-Business-Home-Office_57bbd6ea-004e-42eb-8bc8-e6ab04a2cdc5.92c1d670287de45f4c34ea170300bc82.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/RNRUO-15-6-Windonws-11-Laptop-12GB-DDR5-512G-SSD-3-6GHz-Intel-N150-Quad-Core-Office-2024-WiFi-6-BT-5-2-1080-FHD-Display-Student-Business-Home-Office_57bbd6ea-004e-42eb-8bc8-e6ab04a2cdc5.92c1d670287de45f4c34ea170300bc82.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/RNRUO-15-6-Windonws-11-Laptop-12GB-DDR5-512G-SSD-3-6GHz-Intel-N150-Quad-Core-Office-2024-WiFi-6-BT-5-2-1080-FHD-Display-Student-Business-Home-Office_57bbd6ea-004e-42eb-8bc8-e6ab04a2cdc5.92c1d670287de45f4c34ea170300bc82.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-27\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"RNRUO 15.6&quot; Windonws 11 Laptop, 12GB DDR5 512G SSD, Up to 3.6GHz Intel N150 Quad-Core, Office 2024 WiFi 6 BT 5.2, 1080 FHD Display for Student, Business, Home Office, Pink\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-2JILGC2ECQXS\"><div class=\"f6 lh-title tc h1 v-mid\" data-test-id=\"gpt-text-variants-container\"><div aria-hidden=\"true\" aria-labelledby=\"variants-dynamic-2JILGC2ECQXS\" data-test-id=\"gpt-dynamic-text-display\"><i class=\"ld ld-Plus\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i>2 options</div><span class=\"ld_Ej\" id=\"variants-dynamic-2JILGC2ECQXS\" data-test-id=\"gpt-dynamic-text-hidden\">Available in additional 2 options</span></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"2JILGC2ECQXS\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/RNRUO-15-6-Windonws-11-Laptop-12GB-DDR5-512G-SSD-3-6GHz-Intel-N150-Quad-Core-Office-2024-WiFi-6-BT-5-2-1080-FHD-Display-Student-Business-Home-Office/17732351446?classType=VARIANT\" aria-label=\"Options - RNRUO 15.6&quot; Windonws 11 Laptop, 12GB DDR5 512G SSD, Up to 3.6GHz Intel N150 Quad-Core, Office 2024 WiFi 6 BT 5.2, 1080 FHD Display for Student, Business, Home Office, Pink\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">289</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">99</span></div><span class=\"ld_Ej\">current price $289.99</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">RNRUO 15.6\" Windonws 11 Laptop, 12GB DDR5 512G SSD, Up to 3.6GHz Intel N150 Quad-Core, Office 2024 WiFi 6 BT 5.2, 1080 FHD Display for Student, Business, Home Office, Pink</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"459\">459</span><span class=\"ld_Ej\">3.9 out of 5 Stars. 459 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">Sat, Mar 7</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"3V48XIIY7PF7\" data-dca-guid=\"3V48XIIY7PF7\" data-dca-id=\"18262123769\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"18262123769\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-4GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Rose-Go/18262123769?classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>HP 14\" Ultra Thin 2026 Laptop with Copilot, Intel Quad-Core N150, 4GB RAM, 384GB(128GB eMMC+256GB SD Card), Windows 11 Pro,1 Year Office 365, Lightweight Rose Gold Notebook for Work and School $256.88</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP 14&quot; Ultra Thin 2026 Laptop with Copilot, Intel Quad-Core N150, 4GB RAM, 384GB(128GB eMMC+256GB SD Card), Windows 11 Pro,1 Year Office 365, Lightweight Rose Gold Notebook for Work and School\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-4GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Rose-Go_0c69958a-fc25-410d-9ce5-1d06531c2523.0d011c3e4f30235e98707733356d7ef7.png?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-4GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Rose-Go_0c69958a-fc25-410d-9ce5-1d06531c2523.0d011c3e4f30235e98707733356d7ef7.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-4GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Rose-Go_0c69958a-fc25-410d-9ce5-1d06531c2523.0d011c3e4f30235e98707733356d7ef7.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-28\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP 14&quot; Ultra Thin 2026 Laptop with Copilot, Intel Quad-Core N150, 4GB RAM, 384GB(128GB eMMC+256GB SD Card), Windows 11 Pro,1 Year Office 365, Lightweight Rose Gold Notebook for Work and School\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-3V48XIIY7PF7\"><div class=\"flex f6 justify-center items-center lh-title h2-l\" data-test-id=\"gpt-swatch-variants-container\"><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-4GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Blue-No/18272221761?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/1f35f1b7-8a60-4bc2-8996-d99638bf9268.d742614afb6204f32d791718657f286d.png?odnBg=FFFFFF&amp;odnHeight=30&amp;odnWidth=30\" class=\"br-100 v-btm ba b--transparent\" alt=\"Blue, variant on HP 14&quot; Ultra Thin 2026 Laptop with Copilot, Intel Quad-Core N150, 4GB RAM, 384GB(128GB eMMC+256GB SD Card), Windows 11 Pro,1 Year Office 365, Lightweight Rose Gold Notebook for Work and School\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-8GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Rose-Go/18295650901?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/0c69958a-fc25-410d-9ce5-1d06531c2523.0d011c3e4f30235e98707733356d7ef7.png?odnBg=FFFFFF&amp;odnHeight=30&amp;odnWidth=30\" class=\"br-100 v-btm ba b--transparent\" alt=\"Gold, variant on HP 14&quot; Ultra Thin 2026 Laptop with Copilot, Intel Quad-Core N150, 4GB RAM, 384GB(128GB eMMC+256GB SD Card), Windows 11 Pro,1 Year Office 365, Lightweight Rose Gold Notebook for Work and School\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-16GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Green/18262123266?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/fe5aebc8-e478-4090-a51d-9ef585b65bd0.cdf33c00b5b3a08fee676014d584b737.png?odnBg=FFFFFF&amp;odnHeight=30&amp;odnWidth=30\" class=\"br-100 v-btm ba b--transparent\" alt=\"Green, variant on HP 14&quot; Ultra Thin 2026 Laptop with Copilot, Intel Quad-Core N150, 4GB RAM, 384GB(128GB eMMC+256GB SD Card), Windows 11 Pro,1 Year Office 365, Lightweight Rose Gold Notebook for Work and School\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-8GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Lavende/18262272953?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/c0fca463-2aae-4db5-a549-f60fdfab268f.3873e88558e03a9299e6039a7e58b291.png?odnBg=FFFFFF&amp;odnHeight=30&amp;odnWidth=30\" class=\"br-100 v-btm ba b--transparent\" alt=\"Lavender, variant on HP 14&quot; Ultra Thin 2026 Laptop with Copilot, Intel Quad-Core N150, 4GB RAM, 384GB(128GB eMMC+256GB SD Card), Windows 11 Pro,1 Year Office 365, Lightweight Rose Gold Notebook for Work and School\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"z-2\" data-test-id=\"gpt-flyout-trigger\"><button class=\"w_hhLG w_DZvO w_0_LY no-underline f4 relative ph0\" type=\"button\" aria-label=\"show more color options\" aria-expanded=\"false\" data-dca-id=\"B:39F3A9843E\" data-dca-intent=\"expand\" data-dca-event=\"unknown\" data-test-id=\"gpt-flyout-toggle-button\"><i class=\"ld ld-Plus\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i></button></div></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"3V48XIIY7PF7\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-4GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Rose-Go/18262123769?classType=VARIANT\" aria-label=\"Options - HP 14&quot; Ultra Thin 2026 Laptop with Copilot, Intel Quad-Core N150, 4GB RAM, 384GB(128GB eMMC+256GB SD Card), Windows 11 Pro,1 Year Office 365, Lightweight Rose Gold Notebook for Work and School\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">256</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">88</span></div><span class=\"ld_Ej\">current price $256.88</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $256.88 – $409.77</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP 14\" Ultra Thin 2026 Laptop with Copilot, Intel Quad-Core N150, 4GB RAM, 384GB(128GB eMMC+256GB SD Card), Windows 11 Pro,1 Year Office 365, Lightweight Rose Gold Notebook for Work and School</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"35\">35</span><span class=\"ld_Ej\">3.3 out of 5 Stars. 35 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"6VZ4TK392NT7\" data-dca-guid=\"6VZ4TK392NT7\" data-dca-id=\"15625551829\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"15625551829\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/RNRUO-13-5-Windows-11-Pro-Laptop-8GB-RAM-256GB-SSD-Intel-Core-i3-1115G4-4-1GHz-16-10-2-5K-UHD-Display-Fingerprint-Backlit-Keyboard-Wifi5-BT-5-0-Stude/15625551829?classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>\"RNRUO 13.5\"\" Business Laptop, Intel i3-1115G4, 8GB RAM, 256GB SSD, 2.5K UHD, Windows 11 Pro, Fingerprint Reader\" $219.99 Was $259.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, &quot;RNRUO 13.5&quot;&quot; Business Laptop, Intel i3-1115G4, 8GB RAM, 256GB SSD, 2.5K UHD, Windows 11 Pro, Fingerprint Reader&quot;\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/RNRUO-13-5-Windows-11-Pro-Laptop-8GB-RAM-256GB-SSD-Intel-Core-i3-1115G4-4-1GHz-16-10-2-5K-UHD-Display-Fingerprint-Backlit-Keyboard-Wifi5-BT-5-0-Stude_586d0ce8-980d-454c-b619-e4b1e8be2414.6b32a631c79cabd0561e2339ca1a66b7.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/RNRUO-13-5-Windows-11-Pro-Laptop-8GB-RAM-256GB-SSD-Intel-Core-i3-1115G4-4-1GHz-16-10-2-5K-UHD-Display-Fingerprint-Backlit-Keyboard-Wifi5-BT-5-0-Stude_586d0ce8-980d-454c-b619-e4b1e8be2414.6b32a631c79cabd0561e2339ca1a66b7.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/RNRUO-13-5-Windows-11-Pro-Laptop-8GB-RAM-256GB-SSD-Intel-Core-i3-1115G4-4-1GHz-16-10-2-5K-UHD-Display-Fingerprint-Backlit-Keyboard-Wifi5-BT-5-0-Stude_586d0ce8-980d-454c-b619-e4b1e8be2414.6b32a631c79cabd0561e2339ca1a66b7.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-29\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"&quot;RNRUO 13.5&quot;&quot; Business Laptop, Intel i3-1115G4, 8GB RAM, 256GB SSD, 2.5K UHD, Windows 11 Pro, Fingerprint Reader&quot;\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-6VZ4TK392NT7\"><div class=\"f6 lh-title tc h1 v-mid\" data-test-id=\"gpt-text-variants-container\"><div aria-hidden=\"true\" aria-labelledby=\"variants-dynamic-6VZ4TK392NT7\" data-test-id=\"gpt-dynamic-text-display\"><i class=\"ld ld-Plus\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i>2 options</div><span class=\"ld_Ej\" id=\"variants-dynamic-6VZ4TK392NT7\" data-test-id=\"gpt-dynamic-text-hidden\">Available in additional 2 options</span></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"6VZ4TK392NT7\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/RNRUO-13-5-Windows-11-Pro-Laptop-8GB-RAM-256GB-SSD-Intel-Core-i3-1115G4-4-1GHz-16-10-2-5K-UHD-Display-Fingerprint-Backlit-Keyboard-Wifi5-BT-5-0-Stude/15625551829?classType=VARIANT\" aria-label=\"Options - &quot;RNRUO 13.5&quot;&quot; Business Laptop, Intel i3-1115G4, 8GB RAM, 256GB SSD, 2.5K UHD, Windows 11 Pro, Fingerprint Reader&quot;\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">219</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">99</span></div><span class=\"ld_Ej\">current price Now $219.99, Was $259.99</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$259.99</span></div><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $219.99 – $249.99</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">\"RNRUO 13.5\"\" Business Laptop, Intel i3-1115G4, 8GB RAM, 256GB SSD, 2.5K UHD, Windows 11 Pro, Fingerprint Reader\"</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"29\">29</span><span class=\"ld_Ej\">2.8 out of 5 Stars. 29 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"1PNRT247HHPS\" data-dca-guid=\"1PNRT247HHPS\" data-dca-id=\"5098188136\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"5098188136\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/HP14-inch-HD-Chromebook-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Glacier-Silver/5098188136?classType=REGULAR&amp;from=/search\"><span class=\"ld_Ej\"><h3>HP 14 inch HD Chromebook Laptop Intel Processor N200 4GB RAM 128GB UFS Glacier Silver $175.80</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP 14 inch HD Chromebook Laptop Intel Processor N200 4GB RAM 128GB UFS Glacier Silver\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP14-inch-HD-Chromebook-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Glacier-Silver_df386dee-277c-4942-8028-021189a667c9.ce365491aaafe9c160204db398857c17.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP14-inch-HD-Chromebook-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Glacier-Silver_df386dee-277c-4942-8028-021189a667c9.ce365491aaafe9c160204db398857c17.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP14-inch-HD-Chromebook-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Glacier-Silver_df386dee-277c-4942-8028-021189a667c9.ce365491aaafe9c160204db398857c17.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-30\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP 14 inch HD Chromebook Laptop Intel Processor N200 4GB RAM 128GB UFS Glacier Silver\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"1PNRT247HHPS\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/HP14-inch-HD-Chromebook-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Glacier-Silver/5098188136?classType=REGULAR\" aria-label=\"Options - HP 14 inch HD Chromebook Laptop Intel Processor N200 4GB RAM 128GB UFS Glacier Silver\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">175</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">80</span></div><span class=\"ld_Ej\">current price $175.80</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $109.00</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP 14 inch HD Chromebook Laptop Intel Processor N200 4GB RAM 128GB UFS Glacier Silver</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"7314\">7314</span><span class=\"ld_Ej\">4.2 out of 5 Stars. 7314 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div data-test-id=\"gpt-low-inventory-container\"><span class=\"w_yTSq f7 f6-hdkp lh-solid lh-title-hdkp b dark-red w_0aYG w_MwbK\">Only 4 left</span></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div><div class=\"flex items-center mt1\"><img loading=\"lazy\" class=\"mr1\" src=\"//i5.walmartimages.com/dfw/63fd9f59-547b/d4dfa923-2a65-4c3a-b34c-c4db7ee6c035/v1/Apple_TV_iOS.svg\" alt=\"Apple Tv\" height=\"16\" width=\"16\"><span class=\"dark-gray f7 f6-l\">2 free offers from Apple</span></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div><div><div><button type=\"button\" class=\"bg-white tl bw0 nl1 flex pointer sans-serif w-100 pb2\" aria-expanded=\"false\" data-dca-id=\"B:8D3A9ECBE7\" data-dca-intent=\"__DCA_TBD__\"><div class=\"f6 \">Resold offers <span class=\"b\">from $109.00</span></div><i class=\"ld ld-ChevronDown pv0 pb2 ph2 black\" role=\"img\" data-testid=\"icon-chevron-down\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i></button><section></section></div></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"2WHH8GCJR18H\" data-dca-guid=\"2WHH8GCJR18H\" data-dca-id=\"939731827\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"939731827\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/Apple-MacBook-Air-MJVM2LL-A-11-6-Inch-laptop-1-6-GHz-Intel-i5-128-GB-SSD-Integrated-Intel-HD-Graphics-6000-Mac-OS/939731827?conditionGroupCode=2&amp;classType=REGULAR&amp;from=/search\"><span class=\"ld_Ej\"><h3>Restored Apple MacBook Air MJVM2LL/A 11.6-Inch laptop(1.6 GHz Intel i5, 128 GB SSD, Integrated Intel HD Graphics 6000, Mac OS) $174.98</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Restored Apple MacBook Air MJVM2LL/A 11.6-Inch laptop(1.6 GHz Intel i5, 128 GB SSD, Integrated Intel HD Graphics 6000, Mac OS)\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/Apple-MacBook-Air-MJVM2LL-A-11-6-Inch-laptop-1-6-GHz-Intel-i5-128-GB-SSD-Integrated-Intel-HD-Graphics-6000-Mac-OS_644e2cbb-290a-4574-94f2-650eaa8a5cd9_1.c944fa351e93df7713017c7b737c0480.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/Apple-MacBook-Air-MJVM2LL-A-11-6-Inch-laptop-1-6-GHz-Intel-i5-128-GB-SSD-Integrated-Intel-HD-Graphics-6000-Mac-OS_644e2cbb-290a-4574-94f2-650eaa8a5cd9_1.c944fa351e93df7713017c7b737c0480.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/Apple-MacBook-Air-MJVM2LL-A-11-6-Inch-laptop-1-6-GHz-Intel-i5-128-GB-SSD-Integrated-Intel-HD-Graphics-6000-Mac-OS_644e2cbb-290a-4574-94f2-650eaa8a5cd9_1.c944fa351e93df7713017c7b737c0480.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-31\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Restored Apple MacBook Air MJVM2LL/A 11.6-Inch laptop(1.6 GHz Intel i5, 128 GB SSD, Integrated Intel HD Graphics 6000, Mac OS)\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"2WHH8GCJR18H\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - Restored Apple MacBook Air MJVM2LL/A 11.6-Inch laptop(1.6 GHz Intel i5, 128 GB SSD, Integrated Intel HD Graphics 6000, Mac OS)\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">174</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">98</span></div><span class=\"ld_Ej\">current price $174.98</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">Restored Apple MacBook Air MJVM2LL/A 11.6-Inch laptop(1.6 GHz Intel i5, 128 GB SSD, Integrated Intel HD Graphics 6000, Mac OS)</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"1\">1</span><span class=\"ld_Ej\">5 out of 5 Stars. 1 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div><div class=\"flex items-center mt0\" data-testid=\"product-badge-container\"><div class=\"mr1\"><i class=\"ld ld-Recycle\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i></div><span data-testid=\"product-badge-text\" class=\"dark-gray f7 f6-l\" aria-hidden=\"false\">Restored: Like New</span></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"26AQROWJ3N81\" data-dca-guid=\"26AQROWJ3N81\" data-dca-id=\"18988906689\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"18988906689\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-192GB-Storage-128GB-eMMC-64GB-SD-Windows-11-Home-Copilot-1-Year-Microsoft-Office-365-Ultra-Thin-Lightweight/18988906689?classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>HP 14\" N150 Laptop, Intel Quad-Core, 4GB RAM, 192GB Storage (128GB eMMC + 64GB SD), Windows 11 Home Copilot &amp; 1 Year Microsoft Office 365, Ultra Thin Lightweight Green Notebook for Work and School $239.78 Was $269.79</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP 14&quot; N150 Laptop, Intel Quad-Core, 4GB RAM, 192GB Storage (128GB eMMC + 64GB SD), Windows 11 Home Copilot &amp; 1 Year Microsoft Office 365, Ultra Thin Lightweight Green Notebook for Work and School\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-192GB-Storage-128GB-eMMC-64GB-SD-Windows-11-Home-Copilot-1-Year-Microsoft-Office-365-Ultra-Thin-Lightweight_d6736aa3-c987-4ae3-b814-d21cde39c426.6cbe18f040a6421fb12531d4a3c51757.png?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-192GB-Storage-128GB-eMMC-64GB-SD-Windows-11-Home-Copilot-1-Year-Microsoft-Office-365-Ultra-Thin-Lightweight_d6736aa3-c987-4ae3-b814-d21cde39c426.6cbe18f040a6421fb12531d4a3c51757.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-192GB-Storage-128GB-eMMC-64GB-SD-Windows-11-Home-Copilot-1-Year-Microsoft-Office-365-Ultra-Thin-Lightweight_d6736aa3-c987-4ae3-b814-d21cde39c426.6cbe18f040a6421fb12531d4a3c51757.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-32\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP 14&quot; N150 Laptop, Intel Quad-Core, 4GB RAM, 192GB Storage (128GB eMMC + 64GB SD), Windows 11 Home Copilot &amp; 1 Year Microsoft Office 365, Ultra Thin Lightweight Green Notebook for Work and School\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-26AQROWJ3N81\"><div class=\"flex f6 justify-center items-center lh-title h2-l\" data-test-id=\"gpt-swatch-variants-container\"><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-256GB-Storage-128GB-eMMC-128GB-SD-Windows-11-Home-Copilot-1-Year-Microsoft-Office-365-Ultra-Thin-Lightweigh/18985404671?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/d6736aa3-c987-4ae3-b814-d21cde39c426.6cbe18f040a6421fb12531d4a3c51757.png?odnBg=FFFFFF&amp;odnHeight=30&amp;odnWidth=30\" class=\"br-100 v-btm ba b--transparent\" alt=\"Green, variant on HP 14&quot; N150 Laptop, Intel Quad-Core, 4GB RAM, 192GB Storage (128GB eMMC + 64GB SD), Windows 11 Home Copilot &amp; 1 Year Microsoft Office 365, Ultra Thin Lightweight Green Notebook for Work and School\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-256GB-Storage-128GB-eMMC-128GB-SD-Windows-11-Home-Copilot-1-Year-MS-Office-365-Ultra-Thin-Lightweight-Purpl/19080813512?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/6e24bce7-70e2-4101-8ee9-b938ecfe8b02.90bef95b4eec4d8a1a13ddc6f09839d2.png?odnBg=FFFFFF&amp;odnHeight=30&amp;odnWidth=30\" class=\"br-100 v-btm ba b--transparent\" alt=\"Purple, variant on HP 14&quot; N150 Laptop, Intel Quad-Core, 4GB RAM, 192GB Storage (128GB eMMC + 64GB SD), Windows 11 Home Copilot &amp; 1 Year Microsoft Office 365, Ultra Thin Lightweight Green Notebook for Work and School\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"flex items-center justify-center mr2\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-192GB-Storage-128GB-eMMC-64GB-SD-Windows-11-Home-Copilot-1-Year-MS-Office-365-Ultra-Thin-Lightweight-Rose-G/19101506616?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/4e0d88c9-c1ea-4d73-badb-4ef70e16e805.9be6ea1be7c274142a2d4c2fa0b3020a.png?odnBg=FFFFFF&amp;odnHeight=30&amp;odnWidth=30\" class=\"br-100 v-btm ba b--transparent\" alt=\"Rose Gold, variant on HP 14&quot; N150 Laptop, Intel Quad-Core, 4GB RAM, 192GB Storage (128GB eMMC + 64GB SD), Windows 11 Home Copilot &amp; 1 Year Microsoft Office 365, Ultra Thin Lightweight Green Notebook for Work and School\" data-test-id=\"gpt-variant-image\"></a></div><div class=\"flex items-center justify-center mr0\" data-test-id=\"gpt-variant-swatch\"><a link-identifier=\"itemClick\" class=\"z-2 variant-swatch ba br-100 b--transparent\" data-dca-id=\"L:0ADC2F88B9\" data-dca-intent=\"select\" data-dca-event=\"unknown\" data-test-id=\"gpt-variant-link\" href=\"/ip/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-192GB-Storage-128GB-eMMC-64GB-SD-Windows-11-Home-Copilot-1-Year-MS-Office-365-Ultra-Thin-Lightweight-Silver/19071150760?classType=undefined&amp;variantFieldId=actual_color\"><img loading=\"lazy\" width=\"20px\" height=\"20px\" src=\"https://i5.walmartimages.com/asr/994cbd80-d290-41d5-9107-69b12a6b8a0f.ae01f1d2e4caf9ebd67ba24317c9757b.png?odnBg=FFFFFF&amp;odnHeight=30&amp;odnWidth=30\" class=\"br-100 v-btm ba b--transparent\" alt=\"Silver, variant on HP 14&quot; N150 Laptop, Intel Quad-Core, 4GB RAM, 192GB Storage (128GB eMMC + 64GB SD), Windows 11 Home Copilot &amp; 1 Year Microsoft Office 365, Ultra Thin Lightweight Green Notebook for Work and School\" data-test-id=\"gpt-variant-image\"></a></div></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"26AQROWJ3N81\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-192GB-Storage-128GB-eMMC-64GB-SD-Windows-11-Home-Copilot-1-Year-Microsoft-Office-365-Ultra-Thin-Lightweight/18988906689?classType=VARIANT\" aria-label=\"Options - HP 14&quot; N150 Laptop, Intel Quad-Core, 4GB RAM, 192GB Storage (128GB eMMC + 64GB SD), Windows 11 Home Copilot &amp; 1 Year Microsoft Office 365, Ultra Thin Lightweight Green Notebook for Work and School\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">239</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">78</span></div><span class=\"ld_Ej\">current price Now $239.78, Was $269.79</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$269.79</span></div><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $226.88</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP 14\" N150 Laptop, Intel Quad-Core, 4GB RAM, 192GB Storage (128GB eMMC + 64GB SD), Windows 11 Home Copilot &amp; 1 Year Microsoft Office 365, Ultra Thin Lightweight Green Notebook for Work and School</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"2\">2</span><span class=\"ld_Ej\">4.5 out of 5 Stars. 2 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"1AKA1J2RVS9D\" data-dca-guid=\"1AKA1J2RVS9D\" data-dca-id=\"16611706375\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"16611706375\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/MSI-Cyborg-15-6-inch-FHD-144Hz-Gaming-Laptop-Intel-Core-7-240H-NVIDIA-GeForce-RTX-5060-16GB-DDR7-512GB-SSD-Black-2025/16611706375?classType=REGULAR&amp;from=/search\"><span class=\"ld_Ej\"><h3>MSI Cyborg 15.6 inch FHD 144Hz Gaming Laptop Intel Core 7 240H NVIDIA GeForce RTX 5060 - 16GB RAM 512GB SSD Black (2025) $899.00 Was $1,199.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, MSI Cyborg 15.6 inch FHD 144Hz Gaming Laptop Intel Core 7 240H NVIDIA GeForce RTX 5060 - 16GB RAM 512GB SSD Black (2025)\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/MSI-Cyborg-15-6-inch-FHD-144Hz-Gaming-Laptop-Intel-Core-7-240H-NVIDIA-GeForce-RTX-5060-16GB-DDR7-512GB-SSD-Black-2025_26b22f7e-a04d-458f-b425-43b98a2bd5e9.fb1c6b6db3de36b3454afcd1b0e8bdb4.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/MSI-Cyborg-15-6-inch-FHD-144Hz-Gaming-Laptop-Intel-Core-7-240H-NVIDIA-GeForce-RTX-5060-16GB-DDR7-512GB-SSD-Black-2025_26b22f7e-a04d-458f-b425-43b98a2bd5e9.fb1c6b6db3de36b3454afcd1b0e8bdb4.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/MSI-Cyborg-15-6-inch-FHD-144Hz-Gaming-Laptop-Intel-Core-7-240H-NVIDIA-GeForce-RTX-5060-16GB-DDR7-512GB-SSD-Black-2025_26b22f7e-a04d-458f-b425-43b98a2bd5e9.fb1c6b6db3de36b3454afcd1b0e8bdb4.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-33\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"MSI Cyborg 15.6 inch FHD 144Hz Gaming Laptop Intel Core 7 240H NVIDIA GeForce RTX 5060 - 16GB RAM 512GB SSD Black (2025)\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"1AKA1J2RVS9D\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - MSI Cyborg 15.6 inch FHD 144Hz Gaming Laptop Intel Core 7 240H NVIDIA GeForce RTX 5060 - 16GB RAM 512GB SSD Black (2025)\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black green f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f3 mr1\">Now</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">899</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price Now $899.00, Was $1,199.99</span><div class=\"nearer-mid-gray mr1\" data-test-id=\"gpt-was-price-container\"><span class=\"strike f6\" aria-hidden=\"true\" data-test-id=\"gpt-was-price-value\">$1,199.99</span></div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">MSI Cyborg 15.6 inch FHD 144Hz Gaming Laptop Intel Core 7 240H NVIDIA GeForce RTX 5060 - 16GB RAM 512GB SSD Black (2025)</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"54\">54</span><span class=\"ld_Ej\">4.7 out of 5 Stars. 54 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">tomorrow</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"7HH95U34AQDA\" data-dca-guid=\"7HH95U34AQDA\" data-dca-id=\"9963221656\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"9963221656\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/ASUS-Vivobook-15-6-inch-Windows-Laptop-Intel-Core-i5-1235U-8GB-RAM-256GB-SSD-Quiet-Blue/9963221656?classType=REGULAR&amp;from=/search\"><span class=\"ld_Ej\"><h3>ASUS Vivobook 15.6 inch Windows Laptop Intel Core i5-1235U 8GB RAM 256GB SSD Quiet Blue $398.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, ASUS Vivobook 15.6 inch Windows Laptop Intel Core i5-1235U 8GB RAM 256GB SSD Quiet Blue\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/ASUS-Vivobook-15-6-inch-Windows-Laptop-Intel-Core-i5-1235U-8GB-RAM-256GB-SSD-Quiet-Blue_7852d0d9-8614-4c88-8a3e-3a23b4855ef8.9ef0c556e481911f845b03a449251695.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/ASUS-Vivobook-15-6-inch-Windows-Laptop-Intel-Core-i5-1235U-8GB-RAM-256GB-SSD-Quiet-Blue_7852d0d9-8614-4c88-8a3e-3a23b4855ef8.9ef0c556e481911f845b03a449251695.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/ASUS-Vivobook-15-6-inch-Windows-Laptop-Intel-Core-i5-1235U-8GB-RAM-256GB-SSD-Quiet-Blue_7852d0d9-8614-4c88-8a3e-3a23b4855ef8.9ef0c556e481911f845b03a449251695.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-34\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"ASUS Vivobook 15.6 inch Windows Laptop Intel Core i5-1235U 8GB RAM 256GB SSD Quiet Blue\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"7HH95U34AQDA\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - ASUS Vivobook 15.6 inch Windows Laptop Intel Core i5-1235U 8GB RAM 256GB SSD Quiet Blue\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">398</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">99</span></div><span class=\"ld_Ej\">current price $398.99</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">ASUS Vivobook 15.6 inch Windows Laptop Intel Core i5-1235U 8GB RAM 256GB SSD Quiet Blue</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_HGbC\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 2.174a.825.825 0 0 0-.74.478L8.375 7.424l-5.662.628a.816.816 0 0 0-.463.247c-.322.34-.32.89.006 1.227l3.494 4.023-1.174 6.039a.905.905 0 0 0 .066.562c.2.43.697.61 1.108.399l5.25-3.5V2.174Z\" class=\"w_sX0E\"></path><path class=\"w_eDrS\" d=\"M11 2.002v15.5M13.895 7.082l.17.354.387.062 6.226.999c.011.001.03.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.08.387 1.32 6.467a.15.15 0 0 1-.017.109c-.017.027-.036.036-.048.039a.04.04 0 0 1-.015 0 .05.05 0 0 1-.017-.005L11.342 17.6 11 17.424l-.342.175-5.925 3.032a.046.046 0 0 1-.02.006c-.005 0-.01 0-.018-.003-.013-.005-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.096c0-.041.015-.074.035-.095a.067.067 0 0 1 .037-.022l6.226-.999.387-.062.17-.354 2.831-5.892c.016-.033.036-.045.05-.05a.045.045 0 0 1 .017-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .041.046l2.83 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"394\">394</span><span class=\"ld_Ej\">4.4 out of 5 Stars. 394 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div><div class=\"flex items-center mt1\"><img loading=\"lazy\" class=\"mr1\" src=\"//i5.walmartimages.com/dfw/63fd9f59-547b/d4dfa923-2a65-4c3a-b34c-c4db7ee6c035/v1/Apple_TV_iOS.svg\" alt=\"Apple Tv\" height=\"16\" width=\"16\"><span class=\"dark-gray f7 f6-l\">5 free offers from Apple</span></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"6JEJ9DOT3FPT\" data-dca-guid=\"6JEJ9DOT3FPT\" data-dca-id=\"609040889\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"609040889\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/Apple-MacBook-Air-13-3-inch-Laptop-Space-Gray-M1-Chip-Built-for-Apple-Intelligence-8GB-RAM-256GB-storage/609040889?conditionGroupCode=2&amp;classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>Restored Apple MacBook Air 13.3-inch Laptop-Space Gray, M1 Chip, Built for Apple Intelligence, 8GB RAM, 256GB storage $379.99</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, Restored Apple MacBook Air 13.3-inch Laptop-Space Gray, M1 Chip, Built for Apple Intelligence, 8GB RAM, 256GB storage\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/asr/32c1d0da-c997-44ce-9214-88f502874319.586816deac62efaef95675ab97296f0a.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/asr/32c1d0da-c997-44ce-9214-88f502874319.586816deac62efaef95675ab97296f0a.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/asr/32c1d0da-c997-44ce-9214-88f502874319.586816deac62efaef95675ab97296f0a.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-35\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"Restored Apple MacBook Air 13.3-inch Laptop-Space Gray, M1 Chip, Built for Apple Intelligence, 8GB RAM, 256GB storage\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"6JEJ9DOT3FPT\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - Restored Apple MacBook Air 13.3-inch Laptop-Space Gray, M1 Chip, Built for Apple Intelligence, 8GB RAM, 256GB storage\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">379</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">99</span></div><span class=\"ld_Ej\">current price $379.99</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">Restored Apple MacBook Air 13.3-inch Laptop-Space Gray, M1 Chip, Built for Apple Intelligence, 8GB RAM, 256GB storage</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"22\">22</span><span class=\"ld_Ej\">4.1 out of 5 Stars. 22 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div data-test-id=\"gpt-low-inventory-container\"><span class=\"w_yTSq f7 f6-hdkp lh-solid lh-title-hdkp b dark-red w_0aYG w_MwbK\">Only 1 left</span></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div><div class=\"flex items-center mt0\" data-testid=\"product-badge-container\"><div class=\"mr1\"><i class=\"ld ld-Recycle\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i></div><span data-testid=\"product-badge-text\" class=\"dark-gray f7 f6-l\" aria-hidden=\"false\">Restored: Good</span></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"4C7APMFZ2BRK\" data-dca-guid=\"4C7APMFZ2BRK\" data-dca-id=\"15016650262\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"15016650262\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/RNRUO-14-inch-Laptop-Intel-Celeron-N3350-6GB-RAM-64GB-256GB-SSD-Windows-10-WiFi-5-BT5-0-HD-Camera/15016650262?classType=REGULAR&amp;from=/search\"><span class=\"ld_Ej\"><h3>RNRUO 15.6\" Laptop Computer, 12GB DDR5 256G SSD, Intel N95 Quad-Core up to 3.6GHz, Office 2024 Fingerprint Backlit KB WiFi 6 BT5.3, 1080 FHD Display for Student, Business, Home Office $229.09</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, RNRUO 15.6&quot; Laptop Computer, 12GB DDR5 256G SSD, Intel N95 Quad-Core up to 3.6GHz, Office 2024 Fingerprint Backlit KB WiFi 6 BT5.3, 1080 FHD Display for Student, Business, Home Office\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/RNRUO-14-inch-Laptop-Intel-Celeron-N3350-6GB-RAM-64GB-256GB-SSD-Windows-10-WiFi-5-BT5-0-HD-Camera_ed856a7c-6c58-428d-a0d9-59c50b840537.0ee6adafbdc0735b1e5337db055f5023.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/RNRUO-14-inch-Laptop-Intel-Celeron-N3350-6GB-RAM-64GB-256GB-SSD-Windows-10-WiFi-5-BT5-0-HD-Camera_ed856a7c-6c58-428d-a0d9-59c50b840537.0ee6adafbdc0735b1e5337db055f5023.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/RNRUO-14-inch-Laptop-Intel-Celeron-N3350-6GB-RAM-64GB-256GB-SSD-Windows-10-WiFi-5-BT5-0-HD-Camera_ed856a7c-6c58-428d-a0d9-59c50b840537.0ee6adafbdc0735b1e5337db055f5023.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-36\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"RNRUO 15.6&quot; Laptop Computer, 12GB DDR5 256G SSD, Intel N95 Quad-Core up to 3.6GHz, Office 2024 Fingerprint Backlit KB WiFi 6 BT5.3, 1080 FHD Display for Student, Business, Home Office\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"4C7APMFZ2BRK\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - RNRUO 15.6&quot; Laptop Computer, 12GB DDR5 256G SSD, Intel N95 Quad-Core up to 3.6GHz, Office 2024 Fingerprint Backlit KB WiFi 6 BT5.3, 1080 FHD Display for Student, Business, Home Office\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">229</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">09</span></div><span class=\"ld_Ej\">current price $229.09</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">RNRUO 15.6\" Laptop Computer, 12GB DDR5 256G SSD, Intel N95 Quad-Core up to 3.6GHz, Office 2024 Fingerprint Backlit KB WiFi 6 BT5.3, 1080 FHD Display for Student, Business, Home Office</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"105\">105</span><span class=\"ld_Ej\">3.1 out of 5 Stars. 105 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div data-testid=\"save-with-walmart-plus-badge\" class=\"flex items-end items-center\"><div class=\"mr1 blue b f7 f6-l lh-solid\">Save with</div><img loading=\"lazy\" class=\"flex\" src=\"//i5.walmartimages.com/dfw/63fd9f59-ac39/29c6759d-7f14-49fa-bd3a-b870eb4fb8fb/v1/wplus-icon-blue.svg\" alt=\"Walmart Plus\" height=\"20\" width=\"auto\"></div><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">Sat, Mar 7</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"0YCGO215BLSG\" data-dca-guid=\"0YCGO215BLSG\" data-dca-id=\"19556211776\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"19556211776\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/HP-14-Laptop-Thin-Light-Microsoft-Office-365-one-year-Intel-Quad-Core-Processor-4GB-Memory-128GB-Storage-Windows-11-Home-Green/19556211776?classType=REGULAR&amp;from=/search\"><span class=\"ld_Ej\"><h3>HP 14 Laptop Thin &amp; Light, Microsoft Office 365(one year), Intel Quad-Core Processor, 4GB Memory, 128GB Storage, Windows 11 Home (Green) $229.00</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP 14 Laptop Thin &amp; Light, Microsoft Office 365(one year), Intel Quad-Core Processor, 4GB Memory, 128GB Storage, Windows 11 Home (Green)\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-14-Laptop-Thin-Light-Microsoft-Office-365-one-year-Intel-Quad-Core-Processor-4GB-Memory-128GB-Storage-Windows-11-Home-Green_6460abb1-f23c-4b57-801f-fc81aa9ed966.25f350aa59b3858a108dd027c4c9479d.png?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-14-Laptop-Thin-Light-Microsoft-Office-365-one-year-Intel-Quad-Core-Processor-4GB-Memory-128GB-Storage-Windows-11-Home-Green_6460abb1-f23c-4b57-801f-fc81aa9ed966.25f350aa59b3858a108dd027c4c9479d.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-14-Laptop-Thin-Light-Microsoft-Office-365-one-year-Intel-Quad-Core-Processor-4GB-Memory-128GB-Storage-Windows-11-Home-Green_6460abb1-f23c-4b57-801f-fc81aa9ed966.25f350aa59b3858a108dd027c4c9479d.png?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-37\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP 14 Laptop Thin &amp; Light, Microsoft Office 365(one year), Intel Quad-Core Processor, 4GB Memory, 128GB Storage, Windows 11 Home (Green)\"></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"0YCGO215BLSG\"><button class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" type=\"button\" data-automation-id=\"add-to-cart\" data-dca-intent=\"select\" aria-label=\"Add to cart - HP 14 Laptop Thin &amp; Light, Microsoft Office 365(one year), Intel Quad-Core Processor, 4GB Memory, 128GB Storage, Windows 11 Home (Green)\" data-dca-event=\"addToCart\" data-dca-id=\"B:55DEA1FCB3\"><i class=\"ld ld-Plus\" title=\"add to cart\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i><span class=\"mr2\">Add</span></button></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">229</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">00</span></div><span class=\"ld_Ej\">current price $229.00</span></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP 14 Laptop Thin &amp; Light, Microsoft Office 365(one year), Intel Quad-Core Processor, 4GB Memory, 128GB Storage, Windows 11 Home (Green)</h3></span><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div><div class=\"mb0 ph0-xl pt0-xl bb b--near-white w-25\"><div class=\"h-100 pr4-xl ph2 pv3\" style=\"contain-intrinsic-size: 198px 340px;\"><div role=\"group\" data-item-id=\"29GQTTNEM978\" data-dca-guid=\"29GQTTNEM978\" data-dca-id=\"7987319291\" data-dca-name=\"stickyATC\" data-dca-type=\"module\" class=\"sans-serif mid-gray relative flex flex-column w-100 hide-child-opacity\" data-test-id=\"gpt-main\"><a link-identifier=\"7987319291\" class=\"w-100 h-100 z-1 hide-sibling-opacity  absolute\" target=\"\" data-dca-id=\"L:7B06D07E1D\" data-dca-intent=\"select\" data-dca-event=\"unknown\" href=\"/ip/HP-14-HD-Laptop-Students-Business-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Long-Battery-Life-UHD-Graphics-Webcam-HDMI-Wi-Fi-Windows-11-Home-S-Mode-Snowf/7987319291?classType=VARIANT&amp;from=/search\"><span class=\"ld_Ej\"><h3>HP 14\" HD Laptop for Students and Business,Intel Celeron N4120, 4GB RAM, 64GB eMMC, Long Battery Life, UHD Graphics, Webcam, HDMI, Wi-Fi,Windows 11 Home in S Mode, Snowflake White $185.24</h3></span></a><div data-test-id=\"gpt-product-tile-grid-container\"><div data-test-id=\"gpt-product-visual-meta-data\"><div class=\"h2 mb1\" data-test-id=\"gpt-product-flag-container\"></div><div class=\"relative overflow-hidden\" style=\"max-width: 288px; height: 0px; padding-bottom: min(288px, 100%); align-self: center; width: min(288px, 100%);\"><span data-dca-id=\"M:005F1C795D\" data-dca-type=\"module\"><button type=\"button\" class=\"bg-white pointer pa0 black bn mt2 mr2 pa1 br4 absolute top-0 right-0 z-2\" data-dca-intent=\"select\" data-dca-name=\"ItemHeartFavoriteButton\" data-automation-id=\"heart-item\" aria-label=\"Sign in to add to Favorites list, HP 14&quot; HD Laptop for Students and Business,Intel Celeron N4120, 4GB RAM, 64GB eMMC, Long Battery Life, UHD Graphics, Webcam, HDMI, Wi-Fi,Windows 11 Home in S Mode, Snowflake White\" data-dca-id=\"B:FC69248FFD\" style=\"width: 32px; height: 32px;\"><i class=\"ld ld-Heart  \" aria-hidden=\"true\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding-top: 1px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></button></span><img loading=\"lazy\" srcset=\"https://i5.walmartimages.com/seo/HP-14-HD-Laptop-Students-Business-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Long-Battery-Life-UHD-Graphics-Webcam-HDMI-Wi-Fi-Windows-11-Home-S-Mode-Snowf_27caba4b-bfe2-4ca3-8369-c3a7b0f3ee01.9d92b3d26e5d8d60427afb49169dada9.jpeg?odnHeight=288&amp;odnWidth=288&amp;odnBg=FFFFFF 1x, https://i5.walmartimages.com/seo/HP-14-HD-Laptop-Students-Business-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Long-Battery-Life-UHD-Graphics-Webcam-HDMI-Wi-Fi-Windows-11-Home-S-Mode-Snowf_27caba4b-bfe2-4ca3-8369-c3a7b0f3ee01.9d92b3d26e5d8d60427afb49169dada9.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF 2x\" src=\"https://i5.walmartimages.com/seo/HP-14-HD-Laptop-Students-Business-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Long-Battery-Life-UHD-Graphics-Webcam-HDMI-Wi-Fi-Windows-11-Home-S-Mode-Snowf_27caba4b-bfe2-4ca3-8369-c3a7b0f3ee01.9d92b3d26e5d8d60427afb49169dada9.jpeg?odnHeight=576&amp;odnWidth=576&amp;odnBg=FFFFFF\" id=\"is-2-productImage-38\" width=\"\" height=\"\" class=\"absolute top-0 left-0\" data-testid=\"productTileImage\" alt=\"HP 14&quot; HD Laptop for Students and Business,Intel Celeron N4120, 4GB RAM, 64GB eMMC, Long Battery Life, UHD Graphics, Webcam, HDMI, Wi-Fi,Windows 11 Home in S Mode, Snowflake White\"></div><div class=\"flex items-center justify-center h1 h2-l mv1\" data-test-id=\"gpt-variant-29GQTTNEM978\"><div class=\"f6 lh-title tc h1 v-mid\" data-test-id=\"gpt-text-variants-container\"><div aria-hidden=\"true\" aria-labelledby=\"variants-dynamic-29GQTTNEM978\" data-test-id=\"gpt-dynamic-text-display\"><i class=\"ld ld-Plus\" aria-hidden=\"true\" style=\"font-size: 1rem; vertical-align: -0.175em; width: 1rem; height: 1rem; box-sizing: content-box;\"></i>13 options</div><span class=\"ld_Ej\" id=\"variants-dynamic-29GQTTNEM978\" data-test-id=\"gpt-dynamic-text-hidden\">Available in additional 13 options</span></div></div></div><div class=\"z-2 relative mv2\"><div class=\"relative z-2\"><div class=\"relative dib flex-row-reverse\" data-id=\"29GQTTNEM978\"><a class=\"w_hhLG w_8nsR w_jDfj pointer bn sans-serif b flex items-center justify-center w-auto shadow-1 ph2\" href=\"/ip/HP-14-HD-Laptop-Students-Business-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Long-Battery-Life-UHD-Graphics-Webcam-HDMI-Wi-Fi-Windows-11-Home-S-Mode-Snowf/7987319291?classType=VARIANT\" aria-label=\"Options - HP 14&quot; HD Laptop for Students and Business,Intel Celeron N4120, 4GB RAM, 64GB eMMC, Long Battery Life, UHD Graphics, Webcam, HDMI, Wi-Fi,Windows 11 Home in S Mode, Snowflake White\" data-dca-intent=\"select\" data-dca-event=\"addToCart\" data-dca-id=\"B:6AA5A1E246\"><span class=\"mh2\">Options</span></a></div></div></div><div class=\"\" data-test-id=\"gpt-product-descriptive-meta-data-container\"><div data-automation-id=\"product-price\" class=\"mt1\" data-test-id=\"gpt-global-product-price\"><div class=\"flex flex-wrap justify-start items-baseline lh-title\" data-test-id=\"gpt-price-flex-container\"><div class=\"mr1 mr2-xl b black f5 f4-l lh-title\" aria-hidden=\"true\" data-test-id=\"gpt-main-price-display\"><span class=\"f6 f5-l\" style=\"vertical-align: 0.65ex; margin-right: 2px;\">$</span><span class=\"f2\">185</span><span class=\"f6 f5-l\" style=\"vertical-align: 0.75ex;\">24</span></div><span class=\"ld_Ej\">current price $185.24</span><div class=\"nearer-mid-gray f7 f6-l lh-title w-100 black\" data-test-id=\"gpt-price-range-string\" style=\"margin-bottom: 2px;\">Options from $179.99</div></div></div><span class=\"ld_B4\" style=\"-webkit-line-clamp: 3; padding-bottom: 0.1em; margin-bottom: -0.1em;\"><h3 data-automation-id=\"product-title\" class=\"normal dark-gray mb0 mt1 lh-title f6 f5-l\">HP 14\" HD Laptop for Students and Business,Intel Celeron N4120, 4GB RAM, 64GB eMMC, Long Battery Life, UHD Graphics, Webcam, HDMI, Wi-Fi,Windows 11 Home in S Mode, Snowflake White</h3></span><div class=\"flex items-center mv1\"><div class=\"w_ExHd w_y6ym mr1\" data-testid=\"product-ratings\"><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_1jp4\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg><svg class=\"w_D5ag w_6H0I w_eDrS\" viewBox=\"0 0 22 22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m13.562 7.028.17.354.387.062 6.226.999c.011.002.029.008.047.034.018.026.03.063.023.106a.133.133 0 0 1-.034.073l-4.476 4.64-.274.284.079.387 1.321 6.467c.009.042 0 .08-.017.109-.018.028-.036.036-.049.04a.04.04 0 0 1-.014 0 .05.05 0 0 1-.017-.006l-5.926-3.032-.341-.175-.342.175-5.926 3.032a.046.046 0 0 1-.02.006c-.004 0-.01 0-.017-.003-.013-.004-.034-.017-.05-.05a.155.155 0 0 1-.01-.096l1.322-6.467.079-.387-.274-.284-4.477-4.64a.136.136 0 0 1-.035-.095c0-.042.014-.075.034-.096a.067.067 0 0 1 .037-.022l6.226-.999.388-.062.17-.354 2.83-5.892c.016-.033.037-.045.05-.05a.045.045 0 0 1 .018-.003c.004 0 .01.002.02.007a.1.1 0 0 1 .04.046l2.832 5.892Z\"></path></svg></div><span class=\"sans-serif gray f7\" aria-hidden=\"true\" data-testid=\"product-reviews\" data-value=\"1362\">1362</span><span class=\"ld_Ej\">3.8 out of 5 Stars. 1362 reviews</span></div><div class=\"flex flex-row\"><div class=\"flex flex-column w-100\"><div class=\"mt1\" data-test-id=\"gpt-fulfillment-badges-container\"><div class=\"f7 flex self-baseline dark-gray\"><div class=\"ff-text-wrapper\">Free shipping, arrives <span class=\"b\">in 3+ days</span></div></div></div><div class=\"mt1\" data-test-id=\"gpt-shop-similar-container\"></div></div></div></div></div></div><div class=\"pt2-l z-1\"></div></div></div></div></div></section><section data-dca-type=\"module\" data-dca-id=\"M:B6443307F6\" data-dca-name=\"__DCA_NAME_TBD__\"><div class=\"ph4\"><h2 class=\"pointer f2\">Related searches</h2><div class=\"flex flex-column justify-center relative\" data-testid=\"horizontal-scroller-Related searches\" data-dca-name=\"ui_horizontal_scroller:Related searches\" data-dca-type=\"module\"><a link-identifier=\"horizontalScrollerPrevious\" class=\"absolute dn z-5 bg-white br-100 pa0 pointer hidden-child br-100 nav-control left-1\" aria-label=\"Previous slide for Related searches list\" aria-disabled=\"true\" data-testid=\"horizontal-scroller-previous\" data-dca-intent=\"swipeRight\" tabindex=\"0\" role=\"button\" data-dca-id=\"L:725BAF5955\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-ChevronLeft\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding: 12px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></a><ul data-testid=\"carousel-container\" class=\"list ma0 pl0 overflow-x-scroll hidesb hidesb-wk relative overflow-y-hidden \" data-dca-id=\"M:D28DC31C98\" data-dca-type=\"module\" data-dca-name=\"__DCA_NAME_TBD__\" style=\"display: grid; grid-auto-flow: column; scroll-snap-type: x mandatory; max-height: fit-content;\"><li class=\"flex flex-column items-center\" data-slide=\"0\" style=\"scroll-snap-align: start;\"></li><li class=\"flex flex-column items-center\" data-slide=\"1\"><a class=\"w_hhLG w_DZvO w_0_LY pointer ba b--gray-30 bg-white no-underline br0 mr3 mb3\" href=\"/search?q=hp%20laptop&amp;related=true\" aria-label=\"Search for hp laptop\" data-dca-id=\"B:3AE2ABECAC\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><span class=\"w_C3Ts\"><img loading=\"lazy\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png?odnHeight=16&amp;odnWidth=16&amp;odnBg=FFFFFF\" alt=\"Related searches\" class=\"mw-none\" height=\"16\" width=\"16\"></span>hp laptop</a></li><li class=\"flex flex-column items-center\" data-slide=\"2\"><a class=\"w_hhLG w_DZvO w_0_LY pointer ba b--gray-30 bg-white no-underline br0 mr3 mb3\" href=\"/search?q=laptop%20computers%20under%20%24200&amp;related=true\" aria-label=\"Search for laptop computers under $200\" data-dca-id=\"B:3AE2ABECAC\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><span class=\"w_C3Ts\"><img loading=\"lazy\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png?odnHeight=16&amp;odnWidth=16&amp;odnBg=FFFFFF\" alt=\"Related searches\" class=\"mw-none\" height=\"16\" width=\"16\"></span>laptop computers under $200</a></li><li class=\"flex flex-column items-center\" data-slide=\"3\"><a class=\"w_hhLG w_DZvO w_0_LY pointer ba b--gray-30 bg-white no-underline br0 mr3 mb3\" href=\"/search?q=macbook&amp;related=true\" aria-label=\"Search for macbook\" data-dca-id=\"B:3AE2ABECAC\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><span class=\"w_C3Ts\"><img loading=\"lazy\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png?odnHeight=16&amp;odnWidth=16&amp;odnBg=FFFFFF\" alt=\"Related searches\" class=\"mw-none\" height=\"16\" width=\"16\"></span>macbook</a></li><li class=\"flex flex-column items-center\" data-slide=\"4\"><a class=\"w_hhLG w_DZvO w_0_LY pointer ba b--gray-30 bg-white no-underline br0 mr3 mb3\" href=\"/search?q=printer&amp;related=true\" aria-label=\"Search for printer\" data-dca-id=\"B:3AE2ABECAC\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><span class=\"w_C3Ts\"><img loading=\"lazy\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png?odnHeight=16&amp;odnWidth=16&amp;odnBg=FFFFFF\" alt=\"Related searches\" class=\"mw-none\" height=\"16\" width=\"16\"></span>printer</a></li><li class=\"flex flex-column items-center\" data-slide=\"5\"><a class=\"w_hhLG w_DZvO w_0_LY pointer ba b--gray-30 bg-white no-underline br0 mr3 mb3\" href=\"/search?q=laptop%20touchscreen&amp;related=true\" aria-label=\"Search for laptop touchscreen\" data-dca-id=\"B:3AE2ABECAC\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><span class=\"w_C3Ts\"><img loading=\"lazy\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png?odnHeight=16&amp;odnWidth=16&amp;odnBg=FFFFFF\" alt=\"Related searches\" class=\"mw-none\" height=\"16\" width=\"16\"></span>laptop touchscreen</a></li><li class=\"flex flex-column items-center\" data-slide=\"6\"><a class=\"w_hhLG w_DZvO w_0_LY pointer ba b--gray-30 bg-white no-underline br0 mr3 mb3\" href=\"/search?q=tablets&amp;related=true\" aria-label=\"Search for tablets\" data-dca-id=\"B:3AE2ABECAC\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><span class=\"w_C3Ts\"><img loading=\"lazy\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png?odnHeight=16&amp;odnWidth=16&amp;odnBg=FFFFFF\" alt=\"Related searches\" class=\"mw-none\" height=\"16\" width=\"16\"></span>tablets</a></li><li class=\"flex flex-column items-center\" data-slide=\"7\"><a class=\"w_hhLG w_DZvO w_0_LY pointer ba b--gray-30 bg-white no-underline br0 mr3 mb3\" href=\"/search?q=wireless%20mouse&amp;related=true\" aria-label=\"Search for wireless mouse\" data-dca-id=\"B:3AE2ABECAC\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><span class=\"w_C3Ts\"><img loading=\"lazy\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png?odnHeight=16&amp;odnWidth=16&amp;odnBg=FFFFFF\" alt=\"Related searches\" class=\"mw-none\" height=\"16\" width=\"16\"></span>wireless mouse</a></li><li class=\"flex flex-column items-center\" data-slide=\"8\" style=\"scroll-snap-align: start;\"><a class=\"w_hhLG w_DZvO w_0_LY pointer ba b--gray-30 bg-white no-underline br0 mr3 mb3\" href=\"/search?q=gaming%20laptop&amp;related=true\" aria-label=\"Search for gaming laptop\" data-dca-id=\"B:3AE2ABECAC\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><span class=\"w_C3Ts\"><img loading=\"lazy\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png?odnHeight=16&amp;odnWidth=16&amp;odnBg=FFFFFF\" alt=\"Related searches\" class=\"mw-none\" height=\"16\" width=\"16\"></span>gaming laptop</a></li><li class=\"flex flex-column items-center\" data-slide=\"9\"><a class=\"w_hhLG w_DZvO w_0_LY pointer ba b--gray-30 bg-white no-underline br0 mr3 mb3\" href=\"/search?q=lenovo%20laptop&amp;related=true\" aria-label=\"Search for lenovo laptop\" data-dca-id=\"B:3AE2ABECAC\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><span class=\"w_C3Ts\"><img loading=\"lazy\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png?odnHeight=16&amp;odnWidth=16&amp;odnBg=FFFFFF\" alt=\"Related searches\" class=\"mw-none\" height=\"16\" width=\"16\"></span>lenovo laptop</a></li><li class=\"flex flex-column items-center\" data-slide=\"10\"><a class=\"w_hhLG w_DZvO w_0_LY pointer ba b--gray-30 bg-white no-underline br0 mr3 mb3\" href=\"/search?q=chromebook&amp;related=true\" aria-label=\"Search for chromebook\" data-dca-id=\"B:3AE2ABECAC\" data-dca-intent=\"__DCA_INTENT_TBD__\" data-dca-event=\"__DCA_EVENT_TBD__\"><span class=\"w_C3Ts\"><img loading=\"lazy\" src=\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png?odnHeight=16&amp;odnWidth=16&amp;odnBg=FFFFFF\" alt=\"Related searches\" class=\"mw-none\" height=\"16\" width=\"16\"></span>chromebook</a></li></ul><a link-identifier=\"horizontalScrollerNext\" class=\"absolute dn z-5 bg-white br-100 pa0 pointer db-l br-100 nav-control right-1\" aria-label=\"Next slide for Related searches list\" aria-disabled=\"false\" data-testid=\"horizontal-scroller-next\" data-dca-intent=\"swipeLeft\" tabindex=\"0\" role=\"button\" data-dca-id=\"L:D255F19F56\" data-dca-event=\"__DCA_EVENT_TBD__\"><i class=\"ld ld-ChevronRight\" style=\"font-size: 1.5rem; vertical-align: -0.25em; padding: 12px; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></a></div></div></section></div></div><div style=\"min-height: 48px;\"><nav aria-label=\"pagination\" class=\"bg-white pt5 pb5\"><ul class=\"list flex items-center justify-center pa0\"><li aria-hidden=\"true\"><div class=\"w4 h4\"></div></li><li><a link-identifier=\"Generic Name\" class=\"sans-serif ph1 pv2 w4 h4 lh-copy border-box br-100 b--solid mh2-m db tc no-underline black bg-white b b--primary\" aria-current=\"page\" role=\"button\" data-automation-id=\"page-number\" data-dca-id=\"L:6D1D2E8CD2\" href=\"#\">1</a></li><li><a link-identifier=\"Generic Name\" class=\"sans-serif ph1 pv2 w4 h4 lh-copy border-box br-100 b--solid mh2-m db tc no-underline black bg-white b--white-90\" aria-label=\"Go to Page 2\" role=\"button\" data-automation-id=\"page-number\" data-dca-id=\"L:6D1D2E8CD2\" href=\"#\">2</a></li><li><a link-identifier=\"Generic Name\" class=\"sans-serif ph1 pv2 w4 h4 lh-copy border-box br-100 b--solid mh2-m db tc no-underline black bg-white b--white-90\" aria-label=\"Go to Page 3\" role=\"button\" data-automation-id=\"page-number\" data-dca-id=\"L:6D1D2E8CD2\" href=\"#\">3</a></li><li><div class=\"sans-serif pa1 lh-copy border-box bg-white\">...</div></li><li><div class=\"sans-serif ph1 pv2 w4 h4 lh-copy border-box br-100 b--solid mh2-m db tc no-underline gray bg-white b--white-90\">15</div></li><li><a link-identifier=\"Generic Name\" class=\"sans-serif ph1 pv2 w4 h4 border-box bg-white br-100 b--solid ba mh2-m db tc no-underline b--light-gray\" data-testid=\"NextPage\" aria-label=\"Next Page\" role=\"button\" data-dca-id=\"L:DD416D5608\" href=\"#\"><i class=\"ld ld-ChevronRight pv1 primary\" style=\"font-size: 1.5rem; vertical-align: -0.25em; width: 1.5rem; height: 1.5rem; box-sizing: content-box;\"></i></a></li></ul></nav></div><div class=\"w_3jM4 pa0\" id=\"SEARCH-DynamicAdContainer-zonebottom-laptop-\"></div> <div class=\"pt3\"><div class=\"w_3jM4 pa0\" id=\"SEARCH-SPCarousel-bottom-laptop-\"></div></div> </div></div></div></div></main></div><div id=\"third-party-cookie-detection\" style=\"display:none\"></div></div><span data-dca-id=\"M:1F6A7F853F\" data-dca-type=\"module\"><footer class=\"db pt5-hdkp lh-copy relative z-0\"><section class=\"flex flex-column flex-row-hdkp justify-center bg-washed-primary\"><section class=\"\" data-dca-id=\"M:A309656279\" data-dca-type=\"module\"><div class=\"pb4 pt3 pa0-hdkp ph3 tc\" style=\"padding-top:2rem;padding-bottom:2rem\"><div role=\"region\" aria-label=\"Give feedback\"><p class=\"f5 mt0\">We’d love to hear what you think!</p><button class=\"w_hhLG w_XK4d w_jDfj\" type=\"button\" data-dca-id=\"B:D9B3011B8C\" data-dca-intent=\"__DCA_TBD__\">Give feedback</button></div></div></section></section><div class=\"bw2 bt-0 bl-0 br-0 b--solid b--near-white b--none-hdkp\"></div><section data-dca-id=\"M:1F9E44E266\" data-dca-type=\"module\"><ul class=\"list ma0 mt3 ph3 pt1 ma0-hdkp ph4-hdkp pb4-hdkp pt3-hdkp flex-hdkp flex-wrap-hdkp justify-center-hdkp footer-list\" data-testid=\"responsive-footer-list\" data-dca-id=\"global_nav_footer:responsive_footer:undefined\" data-dca-type=\"module\"><li><a link-identifier=\"All Departments\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"All Departments\" data-dca-id=\"L:5A08A0D160\" href=\"/all-departments\">All Departments</a></li><li><a link-identifier=\"Store Directory\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Store Directory\" aria-label=\"Store Directory - opens in a new window\" target=\"_blank\" rel=\"noopener noreferrer\" data-dca-id=\"L:5A08A0D160\" href=\"/store/directory\">Store Directory</a></li><li><a link-identifier=\"Careers\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Careers\" aria-label=\"Careers - opens in a new window\" target=\"_blank\" rel=\"noopener noreferrer\" data-dca-id=\"L:5A08A0D160\" href=\"https://careers.walmart.com/\">Careers</a></li><li><a link-identifier=\"Our Company\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Our Company\" aria-label=\"Our Company - opens in a new window\" target=\"_blank\" rel=\"noopener noreferrer\" data-dca-id=\"L:5A08A0D160\" href=\"https://corporate.walmart.com/\">Our Company</a></li><li><a link-identifier=\"Sell on Walmart.com\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Sell on Walmart.com\" aria-label=\"Sell on Walmart.com - opens in a new window\" target=\"_blank\" rel=\"noopener noreferrer\" data-dca-id=\"L:5A08A0D160\" href=\"https://marketplace.walmart.com/?utm_source=Walmart.com&amp;utm_medium=link&amp;utm_campaign=footer\">Sell on Walmart.com</a></li><li><a link-identifier=\"Help\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Help\" data-dca-id=\"L:5A08A0D160\" href=\"/help\">Help</a></li><li><a link-identifier=\"Product Recalls\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Product Recalls\" aria-label=\"Product Recalls - opens in a new window\" target=\"_blank\" rel=\"noopener noreferrer\" data-dca-id=\"L:5A08A0D160\" href=\"https://corporate.walmart.com/recalls\">Product Recalls</a></li><li><a link-identifier=\"Accessibility\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Accessibility\" aria-label=\"Accessibility - opens in a new window\" target=\"_blank\" rel=\"noopener noreferrer\" data-dca-id=\"L:5A08A0D160\" href=\"https://www.walmart.com/help/article/responsible-disclosure-and-accessibility-policies/0f173dab8bd942da84b1cd7ab5ffc3cb\">Accessibility</a></li><li><a link-identifier=\"Tax Exempt Program\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Tax Exempt Program\" data-dca-id=\"L:5A08A0D160\" href=\"https://www.walmart.com/cp/tax-exemption-program/8480422\">Tax Exempt Program</a></li><li><a link-identifier=\"Get the Walmart App\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Get the Walmart App\" data-dca-id=\"L:5A08A0D160\" href=\"https://walmart.onelink.me/UIev?pid=walmart.com&amp;af_web_dp=https%3A%2F%2Fwww.walmart.com%2Fcp%2Fwalmart-mobile-app%2F1087865&amp;c=Walmart.com%20Site%20Footer&amp;af_dp=walmart%3A%2F%2F\">Get the Walmart App</a></li><li><a link-identifier=\"Safety Data Sheet\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Safety Data Sheet\" data-dca-id=\"L:5A08A0D160\" href=\"http://msds.walmartstores.com/\">Safety Data Sheet</a></li><li><a link-identifier=\"Terms of Use\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Terms of Use\" data-dca-id=\"L:5A08A0D160\" href=\"/help/article/walmart-com-terms-of-use/3b75080af40340d6bbd596f116fae5a0\">Terms of Use</a></li><li><a link-identifier=\"Privacy Notice\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Privacy Notice\" aria-label=\"Privacy Notice - opens in a new window\" target=\"_blank\" rel=\"noopener noreferrer\" data-dca-id=\"L:5A08A0D160\" href=\"https://corporate.walmart.com/privacy-security/walmart-privacy-notice\">Privacy Notice</a></li><li><a link-identifier=\"California Supply Chain Act\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"California Supply Chain Act\" aria-label=\"California Supply Chain Act - opens in a new window\" target=\"_blank\" rel=\"noopener noreferrer\" data-dca-id=\"L:5A08A0D160\" href=\"https://corporate.walmart.com/california-transparency\">California Supply Chain Act</a></li><li><a link-identifier=\"Your Privacy Choices\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp flex items-center\" title=\"Your Privacy Choices\" aria-label=\"Your Privacy Choices - opens in a new window\" target=\"_blank\" rel=\"noopener noreferrer\" data-dca-id=\"L:5A08A0D160\" href=\"https://www.walmart.com/account/api/ccpa-intake?native=false&amp;app=gm&amp;type=sod\"><img loading=\"lazy\" width=\"29\" height=\"14\" src=\"//i5.walmartimages.com/dfw/63fd9f59-4be1/0e321069-d42a-42ae-9b17-6987bf35d3ad/v1/privacy-choices-dweb.png\" alt=\"Privacy choices icon\" class=\"mr1\" aria-hidden=\"true\">Your Privacy Choices</a></li><li><a link-identifier=\"Customer Privacy Center\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Customer Privacy Center\" aria-label=\"Customer Privacy Center - opens in a new window\" target=\"_blank\" rel=\"noopener noreferrer\" data-dca-id=\"L:5A08A0D160\" href=\"https://www.walmart.com/privacy-center\">Customer Privacy Center</a></li><li><a link-identifier=\"Notice at Collection\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Notice at Collection\" aria-label=\"Notice at Collection - opens in a new window\" target=\"_blank\" rel=\"noopener noreferrer\" data-dca-id=\"L:5A08A0D160\" href=\"https://corporate.walmart.com/privacy-security/california-privacy-rights#what-are-the-categories-of-personal-information-collected\">Notice at Collection</a></li><li><a link-identifier=\"AdChoices\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"AdChoices\" data-dca-id=\"L:5A08A0D160\" href=\"https://corporate.walmart.com/privacy-security/walmart-privacy-notice#interest-based-advertising\">AdChoices</a></li><li><a link-identifier=\"Consumer Health Data Privacy Notices\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Consumer Health Data Privacy Notices\" data-dca-id=\"L:5A08A0D160\" href=\"https://corporate.walmart.com/privacy-security/walmart-consumer-health-data-privacy-notices\">Consumer Health Data Privacy Notices</a></li><li><a link-identifier=\"Brand Shop Directory\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Brand Shop Directory\" data-dca-id=\"L:5A08A0D160\" href=\"https://www.walmart.com/brand/branddirectory\">Brand Shop Directory</a></li><li><a link-identifier=\"Pharmacy\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Pharmacy\" data-dca-id=\"L:5A08A0D160\" href=\"https://www.walmart.com/cp/pharmacy/5431?povid=HWS_GlobalFooter_Pharmacy\">Pharmacy</a></li><li><a link-identifier=\"Walmart Business\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Walmart Business\" data-dca-id=\"L:5A08A0D160\" href=\"https://www.walmart.com/cp/walmart-business/7810722?povid=7810722_POV_WMTfooter\">Walmart Business</a></li><li><a link-identifier=\"#IYWYK\" class=\"f6 no-underline mb3 ma0-hdkp footer-link mr4-hdkp db\" title=\"Walmart In the Know is a social media photo feed\" data-dca-id=\"L:5A08A0D160\" href=\"https://www.walmart.com/cp/walmart-in-the-know/7781927\">#IYWYK</a></li><li><a link-identifier=\"Delete Account\" class=\"f6 no-underline mb3 ma0-hdkp footer-link db\" title=\"Delete Account\" data-dca-id=\"L:5A08A0D160\" href=\"https://www.walmart.com/account/login?vid=oaoh&amp;tid=0&amp;returnUrl=%2Faccount%2Fdelete-account\">Delete Account</a></li></ul><div class=\"f7 lh-title mt6 pb5 ph3 pt1 tc-hdkp pa0-hdkp pt2-hdkp ma0-hdkp pb5-hdkp footer-copyright\">© 2026 Walmart. The trademarks Walmart and the Walmart Spark design are registered with the US Patent and Trademark Office. All Rights Reserved.</div></section></footer></span> </div></div><span class=\"w_iUH7\" aria-live=\"assertive\"></span><span class=\"w_iUH7\" aria-live=\"polite\"></span><div aria-live=\"assertive\"></div><div aria-live=\"assertive\"></div><span class=\"ld_Ej\" aria-live=\"assertive\" data-live-announcer=\"true\"></span><span class=\"ld_Ej\" aria-live=\"polite\" data-live-announcer=\"true\"></span></div><script id=\"__NEXT_DATA__\" type=\"application/json\" nonce=\"\">{\"props\":{\"pageProps\":{\"initialData\":{\"headers\":{},\"moduleDataByZone\":{\"pillsTopZone\":{\"__typename\":\"TempoModule\",\"type\":\"PillsModule\",\"name\":\"0825 Guided Nav Pills\",\"version\":3,\"moduleId\":\"d80c120b-3158-42ac-9525-9b22e6c4fbac\",\"schedule\":{\"priority\":1},\"matchedTrigger\":{\"zone\":\"pillsTopZone\"},\"configs\":{\"__typename\":\"TempoWM_GLASSWWWPillsModuleConfigs\",\"moduleSource\":\"chipModuleWithImages\",\"pillsV2\":[{\"title\":\"Laptop Savings\",\"titleColor\":\"#000000\",\"url\":\"/shop/savings/electronics/computers?cat_id=3944_1089430_3951_132960\\u0026povid=ETS_D72_Computing_NA_VF_SAV_SB-AllLaptopComputers_ComputerSavings\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-efeb/k2-_dbf1a207-8dac-4862-982e-f7ed93e55bc2.v1.jpg\",\"alt\":\"Laptop Savings\",\"assetId\":\"b1ad34ac-ceed-4a78-b6b6-348ab09330f2\",\"assetName\":\"5850101-020-FAS-Deals-REG-ALL-HubSpoke-Null.jpg\"}},{\"title\":\"Get it Today\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/all-laptop-computers/3944_1089430_3951_132960?facet=fulfillment_speed%3AToday\\u0026povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_GetitTodayLaptops\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-4ad6/k2-_cafd4fcd-05a4-4639-950f-e5dd6ce46be3.v1.png\",\"alt\":\"Get it Today\",\"assetId\":\"Get It Today_Sandals_MM.png\",\"assetName\":\"Get It Today_Sandals_MM.png\"}},{\"title\":\"Laptop Editors' Picks\",\"titleColor\":\"#000000\",\"url\":\"/shop/tech/editors-picks?catId=3944_1089430_132960\\u0026povid=ETS_computing_facet_searchbrowse_editorspicks\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-c2f3/k2-_ab7bf06f-b9f6-4977-9d78-0f0dc9e00c78.v1.jpg\",\"alt\":\"Editors' Picks\",\"assetId\":\"69e0e3c8-63d1-4d8d-92c2-d49540a3d6dc\",\"assetName\":\"6277157-017-ETS-NewAndTrendingTechEditorsPicks-REG-ALL-HubSpoke-Null.jpg\"}},{\"title\":\"Windows Laptops\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/windows-os-laptops/3944_1089430_3951_8835131_1737838?povid=ETS_computing_facet_searchbrowse_windowslaptops\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-b87b/k2-_73247cc3-8ae2-49d6-a711-ac9602e450ea.v1.jpg\",\"alt\":\"Windows Laptops\",\"assetId\":\"d861abb8-53f7-494e-b5a8-7df4967cee1b\",\"assetName\":\"windows laptop pill.jpeg\"}},{\"title\":\"Gaming Laptops\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/gaming-laptops/3944_1089430_3951_1230091_1094888?povid=ETS_computing_facet_searchbrowse_gaminglaptops\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-200a/k2-_58a9cea1-5629-4b47-807b-d4974b1c761d.v1.jpg\",\"alt\":\"Gaming Laptop\",\"assetId\":\"acaceac9-d10a-486f-fd0b-40158427ce8d\",\"assetName\":\"MSI Gaming Laptop Black.jpeg\"}},{\"title\":\"Chromebooks\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/google-chromebooks/3944_1089430_3951_1230091_1103213?povid=ETS_computing_facet_searchbrowse_chromebooks\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-aea4/k2-_95a85f70-32c6-49c2-aeff-c5680998e52e.v1.jpg\",\"alt\":\"Chromebooks\",\"assetId\":\"5628ed88-af59-47fa-671d-e9b8151d8fad\",\"assetName\":\"Chromebook category NUP.jpeg\"}},{\"title\":\"MacBooks\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/all-apple-macbook/3944_1089430_3951_8945805_4431341?povid=ETS_computing_facet_searchbrowse_macbooks\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-9f4a/k2-_f7789819-f2ee-4af4-9ac6-94dc41d29727.v1.png\",\"alt\":\"MacBook Neo\",\"assetId\":\"MacBook Neo.png\",\"assetName\":\"MacBook Neo.png\"}},{\"title\":\"Touchscreen Laptops\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/touchscreen-laptops/3944_1089430_3951_1230091_1101633?povid=ETS_computing_facet_searchbrowse_touchscreenlaptops\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-3b2a/k2-_47328139-c08e-43fa-add1-6b870ff06d41.v1.jpg\",\"alt\":\"Touchscreen Laptops\",\"assetId\":\"b7c81630-d53c-4263-7244-fda7a4df1a1f\",\"assetName\":\"touchscreen nav pill image.jpeg\"}},{\"title\":\"Everyday Laptops\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/essential-laptops/3944_1089430_3951_1427621?povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_EssentialLaptops\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-7757/k2-_db8a7f1d-ffdb-4062-88ca-62e40c89fb5c.v1.jpg\",\"alt\":\"Everyday Laptops\",\"assetId\":\"Essential Laptops.jpg\",\"assetName\":\"Essential Laptops.jpg\"}},{\"title\":\"Student Laptops\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/laptops-for-students/3944_1089430_3951_1230091_1155872_5825707?povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_StudentLaptops\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-a6a1/k2-_e616ea26-66ef-4f4f-8d67-f27cab40e1b1.v1.jpg\",\"alt\":\"Student Laptops\",\"assetId\":\"Creator Laptops.jpg\",\"assetName\":\"Creator Laptops.jpg\"}},{\"title\":\"Work \\u0026 Business Laptops\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/work-business-laptops/3944_1089430_3951_4426560?povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_WorkBusinessLaptops\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-9983/k2-_0db497f5-2a8b-4f75-a96c-555689560cbb.v1.jpg\",\"alt\":\"Work \\u0026 Business Laptops\",\"assetId\":\"Work Laptops.jpg\",\"assetName\":\"Work Laptops.jpg\"}},{\"title\":\"AI Laptops\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/ai-laptop/3944_1089430_3951_1230091_2871426?seo=electronics\\u0026seo=ai-laptop\\u0026seo=3944_1089430_3951_1230091_2871426\\u0026page=1\\u0026affinityOverride=default\\u0026povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_AILaptopsNUp\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-9d77/k2-_36367a27-e824-47be-bb09-40681249b476.v1.jpg\",\"alt\":\"AI Laptops\",\"assetId\":\"New AI Laptop Pill.jpg\",\"assetName\":\"New AI Laptop Pill.jpg\"}},{\"title\":\"Resold Laptops\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/walmart-restored-laptops/3944_9332706_7782955_2916436_5359799?povid=ETS_computing_facet_searchbrowse_resoldlaptops\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-7b75/k2-_b9f95189-cee8-41a3-a766-8e329968e931.v1.jpg\",\"alt\":\"Resold\",\"assetId\":\"e8e6b865-df78-4794-bcf0-43f85774fcd2\",\"assetName\":\"6423955-009-ETS-ResoldAtWalmart-REG-ALL-MMFacet-Null.jpg\"}},{\"title\":\"All Computers\",\"titleColor\":\"#000000\",\"url\":\"/search?q=computers\\u0026povid=ETS_D72_Computing_NA_VF_EVGN_SB-AllLaptopComputers_AllComputers\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-d000/k2-_0290f89f-5e37-4b56-851b-a8bc17dac759.v1.jpg\",\"alt\":\"All Computers\",\"assetId\":\"3b42d2d9-db04-4a52-ad5e-0b5df84cebf3\",\"assetName\":\"5732653-204-ETS-TrackingDevices-REG-D-MMFacet-Null.jpg\"}}]}},\"bottomZone1\":{\"__typename\":\"TempoModule\",\"type\":\"DynamicAdContainer\",\"name\":\"DAC with Gallery-\\u003eMarquee\",\"version\":3,\"moduleId\":\"7d661833-d81c-44e8-b168-e24fbc33ec61\",\"schedule\":{\"priority\":1},\"matchedTrigger\":{\"zone\":\"bottomZone1\"},\"configs\":{\"__typename\":\"TempoWM_GLASSWWWDynamicAdContainerConfigs\",\"_rawConfigs\":{\"adModules\":[{\"adServers\":[{\"adServer\":\"DISPLAY_ADS\",\"uid\":\"pop36MjK\"},{\"adServer\":\"DISPLAY_ADS_DSP\",\"uid\":\"p7rFOAKX\"}],\"moduleLocation\":\"galleryBottom\",\"moduleType\":\"GalleryDisplayAd\",\"priority\":\"1\",\"uid\":\"EQSg5yJB\"},{\"adServers\":[{\"adServer\":\"DISPLAY_ADS\",\"uid\":\"EtJtoWNS\"},{\"adServer\":\"DISPLAY_ADS_DSP\",\"uid\":\"XTFBNP6E\"}],\"moduleLocation\":\"marquee2\",\"moduleType\":\"MarqueeDisplayAd\",\"priority\":\"2\",\"uid\":\"XBDPPez3\"}],\"lazy\":\"1500\",\"zoneLocation\":\"zonebottom\"},\"adModules\":[{\"moduleType\":\"GalleryDisplayAd\",\"moduleLocation\":\"galleryBottom\",\"priority\":\"1\",\"title\":null,\"viewAgainLogo\":null,\"viewAgainText\":null,\"viewAgainCTA\":null},{\"moduleType\":\"MarqueeDisplayAd\",\"moduleLocation\":\"marquee2\",\"priority\":\"2\",\"title\":null,\"viewAgainLogo\":null,\"viewAgainText\":null,\"viewAgainCTA\":null}],\"zoneLocation\":\"zonebottom\",\"lazy\":\"1500\"}},\"topZone3\":{\"__typename\":\"TempoModule\",\"type\":\"SearchSortFilterModule\",\"name\":\"Default Sort \\u0026 Filter\",\"version\":6,\"moduleId\":\"8d6b5e69-db36-453a-bd8a-fcf0de045072\",\"schedule\":{\"priority\":1},\"matchedTrigger\":{\"zone\":\"topZone3\"},\"configs\":{\"__typename\":\"_TempoWM_GLASSWWWSearchSortFilterModuleConfigs\",\"topNavFacets\":[{\"title\":\"In-store\",\"name\":\"In-store\",\"expandOnLoad\":null,\"type\":\"fulfillment_method_in_store\",\"displayType\":\"TOGGLE\",\"urlParams\":null,\"url\":\"facet=fulfillment_method_in_store%3AIn-store\\u0026query=laptop\\u0026cat_id=0\\u0026stores=3081\\u0026ps=80\",\"layout\":\"pill\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":null,\"hasPopularValues\":null,\"popularValues\":null,\"values\":null},{\"title\":\"Get it fast\",\"name\":\"Get it fast\",\"expandOnLoad\":null,\"type\":\"fulfillment_speed\",\"displayType\":\"TOGGLE\",\"urlParams\":null,\"url\":\"facet=fulfillment_speed%3ATomorrow\\u0026query=laptop\\u0026cat_id=0\\u0026stores=3081\\u0026ps=80\",\"layout\":\"pill\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":null,\"hasPopularValues\":null,\"popularValues\":null,\"values\":null},{\"title\":\"All deals\",\"name\":\"All deals\",\"expandOnLoad\":null,\"type\":\"all_deals\",\"displayType\":\"TOGGLE\",\"urlParams\":null,\"url\":\"facet=all_deals%3Anon_event\\u0026query=laptop\\u0026cat_id=0\\u0026stores=3081\\u0026ps=80\",\"layout\":\"pill\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":null,\"hasPopularValues\":null,\"popularValues\":null,\"values\":null},{\"title\":\"Price\",\"name\":\"Price\",\"expandOnLoad\":false,\"type\":\"price\",\"displayType\":\"DROPDOWN\",\"urlParams\":null,\"url\":null,\"layout\":\"pill\",\"min\":0,\"max\":1200,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":true,\"stepSize\":12,\"isSelected\":null,\"valueDisplayLimit\":null,\"hasPopularValues\":false,\"popularValues\":null,\"values\":null},{\"title\":\"Brand\",\"name\":\"Brand\",\"expandOnLoad\":false,\"type\":\"brand\",\"displayType\":\"DROPDOWN\",\"urlParams\":null,\"url\":null,\"layout\":\"pill\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":50,\"hasPopularValues\":true,\"popularValues\":null,\"values\":[{\"id\":\"HP\",\"title\":\"HP\",\"name\":\"HP\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:HP\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Acer\",\"title\":\"Acer\",\"name\":\"Acer\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Acer\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Lenovo\",\"title\":\"Lenovo\",\"name\":\"Lenovo\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Lenovo\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ASUS\",\"title\":\"ASUS\",\"name\":\"ASUS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ASUS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Apple\",\"title\":\"Apple\",\"name\":\"Apple\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Apple\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"MSI\",\"title\":\"MSI\",\"name\":\"MSI\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:MSI\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Dell\",\"title\":\"Dell\",\"name\":\"Dell\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Dell\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft\",\"title\":\"Microsoft\",\"name\":\"Microsoft\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Microsoft\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hillside Planter\",\"title\":\"Hillside Planter\",\"name\":\"Hillside Planter\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Hillside%20Planter\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"RNRUO\",\"title\":\"RNRUO\",\"name\":\"RNRUO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:RNRUO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AEEZO\",\"title\":\"AEEZO\",\"name\":\"AEEZO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AEEZO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Nimo\",\"title\":\"Nimo\",\"name\":\"Nimo\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Nimo\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"HYYUO\",\"title\":\"HYYUO\",\"name\":\"HYYUO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:HYYUO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"SANPTENT\",\"title\":\"SANPTENT\",\"name\":\"SANPTENT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:SANPTENT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"onn\",\"title\":\"onn\",\"name\":\"onn\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:onn\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TEMLICOLO\",\"title\":\"TEMLICOLO\",\"name\":\"TEMLICOLO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TEMLICOLO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ACEMAGIC\",\"title\":\"ACEMAGIC\",\"name\":\"ACEMAGIC\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ACEMAGIC\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Toemaagic\",\"title\":\"Toemaagic\",\"name\":\"Toemaagic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Toemaagic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TPV\",\"title\":\"TPV\",\"name\":\"TPV\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TPV\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Gateway\",\"title\":\"Gateway\",\"name\":\"Gateway\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Gateway\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Samsung\",\"title\":\"Samsung\",\"name\":\"Samsung\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Samsung\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Rumtuk\",\"title\":\"Rumtuk\",\"name\":\"Rumtuk\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Rumtuk\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Akocrsiy\",\"title\":\"Akocrsiy\",\"name\":\"Akocrsiy\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Akocrsiy\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"SGIN\",\"title\":\"SGIN\",\"name\":\"SGIN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:SGIN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"KurieTim\",\"title\":\"KurieTim\",\"name\":\"KurieTim\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:KurieTim\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NIPOGI\",\"title\":\"NIPOGI\",\"name\":\"NIPOGI\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NIPOGI\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NoteCraft\",\"title\":\"NoteCraft\",\"name\":\"NoteCraft\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NoteCraft\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"EYY\",\"title\":\"EYY\",\"name\":\"EYY\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:EYY\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Exsurf\",\"title\":\"Exsurf\",\"name\":\"Exsurf\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Exsurf\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Easy-Goes Tech\",\"title\":\"Easy-Goes Tech\",\"name\":\"Easy-Goes Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Easy-Goes%20Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"HBESTORE\",\"title\":\"HBESTORE\",\"name\":\"HBESTORE\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:HBESTORE\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Coolby\",\"title\":\"Coolby\",\"name\":\"Coolby\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Coolby\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"LG\",\"title\":\"LG\",\"name\":\"LG\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:LG\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Molegar\",\"title\":\"Molegar\",\"name\":\"Molegar\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Molegar\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"VOZIZOV\",\"title\":\"VOZIZOV\",\"name\":\"VOZIZOV\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:VOZIZOV\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BULANUO\",\"title\":\"BULANUO\",\"name\":\"BULANUO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BULANUO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ESOOR\",\"title\":\"ESOOR\",\"name\":\"ESOOR\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ESOOR\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ownbrand\",\"title\":\"ownbrand\",\"name\":\"ownbrand\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ownbrand\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Golzer\",\"title\":\"Golzer\",\"name\":\"Golzer\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Golzer\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"JUPETE\",\"title\":\"JUPETE\",\"name\":\"JUPETE\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:JUPETE\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"LOSFTES\",\"title\":\"LOSFTES\",\"name\":\"LOSFTES\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:LOSFTES\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Blackview\",\"title\":\"Blackview\",\"name\":\"Blackview\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Blackview\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Colour Talk\",\"title\":\"Colour Talk\",\"name\":\"Colour Talk\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Colour%20Talk\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"VAIO\",\"title\":\"VAIO\",\"name\":\"VAIO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:VAIO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Teclast\",\"title\":\"Teclast\",\"name\":\"Teclast\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Teclast\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Ningmei\",\"title\":\"Ningmei\",\"name\":\"Ningmei\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Ningmei\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"iTech Deals\",\"title\":\"iTech Deals\",\"name\":\"iTech Deals\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:iTech%20Deals\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Elepad\",\"title\":\"Elepad\",\"name\":\"Elepad\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Elepad\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Chheart\",\"title\":\"Chheart\",\"name\":\"Chheart\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Chheart\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Oyzzraze\",\"title\":\"Oyzzraze\",\"name\":\"Oyzzraze\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Oyzzraze\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Pryloxen\",\"title\":\"Pryloxen\",\"name\":\"Pryloxen\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Pryloxen\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"UHIPPO\",\"title\":\"UHIPPO\",\"name\":\"UHIPPO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:UHIPPO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Toshiba\",\"title\":\"Toshiba\",\"name\":\"Toshiba\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Toshiba\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Latitude\",\"title\":\"Latitude\",\"name\":\"Latitude\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Latitude\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Core Innovations\",\"title\":\"Core Innovations\",\"name\":\"Core Innovations\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Core%20Innovations\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"CHIBBS\",\"title\":\"CHIBBS\",\"name\":\"CHIBBS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:CHIBBS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Unbranded\",\"title\":\"Unbranded\",\"name\":\"Unbranded\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Unbranded\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"XIKEJI\",\"title\":\"XIKEJI\",\"name\":\"XIKEJI\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:XIKEJI\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DACHUAN\",\"title\":\"DACHUAN\",\"name\":\"DACHUAN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DACHUAN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Panasonic\",\"title\":\"Panasonic\",\"name\":\"Panasonic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Panasonic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Alienware\",\"title\":\"Alienware\",\"name\":\"Alienware\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Alienware\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"RULY\",\"title\":\"RULY\",\"name\":\"RULY\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:RULY\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Deluxe PCs\",\"title\":\"Deluxe PCs\",\"name\":\"Deluxe PCs\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Deluxe%20PCs\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Panasonic Toughbook\",\"title\":\"Panasonic Toughbook\",\"name\":\"Panasonic Toughbook\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Panasonic%20Toughbook\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Yustda\",\"title\":\"Yustda\",\"name\":\"Yustda\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Yustda\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"REIXCA\",\"title\":\"REIXCA\",\"name\":\"REIXCA\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:REIXCA\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Guy-Tech\",\"title\":\"Guy-Tech\",\"name\":\"Guy-Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Guy-Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Joy Systems - Dell\",\"title\":\"Joy Systems - Dell\",\"name\":\"Joy Systems - Dell\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Joy%20Systems%20-%20Dell\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TOPOSH\",\"title\":\"TOPOSH\",\"name\":\"TOPOSH\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TOPOSH\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ThundeRobot\",\"title\":\"ThundeRobot\",\"name\":\"ThundeRobot\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ThundeRobot\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AJANTA INDUSTRIAL\",\"title\":\"AJANTA INDUSTRIAL\",\"name\":\"AJANTA INDUSTRIAL\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AJANTA%20INDUSTRIAL\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Dynabook\",\"title\":\"Dynabook\",\"name\":\"Dynabook\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Dynabook\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"GIGABYTE\",\"title\":\"GIGABYTE\",\"name\":\"GIGABYTE\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:GIGABYTE\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ME2\",\"title\":\"ME2\",\"name\":\"ME2\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ME2\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Fsjun\",\"title\":\"Fsjun\",\"name\":\"Fsjun\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Fsjun\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BiTECOOL\",\"title\":\"BiTECOOL\",\"name\":\"BiTECOOL\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BiTECOOL\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Generic\",\"title\":\"Generic\",\"name\":\"Generic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Generic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel\",\"title\":\"Intel\",\"name\":\"Intel\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Intel\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Tulasi\",\"title\":\"Tulasi\",\"name\":\"Tulasi\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Tulasi\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"7KeTree\",\"title\":\"7KeTree\",\"name\":\"7KeTree\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:7KeTree\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"JYXCN\",\"title\":\"JYXCN\",\"name\":\"JYXCN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:JYXCN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Mavark\",\"title\":\"Mavark\",\"name\":\"Mavark\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Mavark\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Acmine\",\"title\":\"Acmine\",\"name\":\"Acmine\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Acmine\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"JYXOIHUB\",\"title\":\"JYXOIHUB\",\"name\":\"JYXOIHUB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:JYXOIHUB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"panasonics\",\"title\":\"panasonics\",\"name\":\"panasonics\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:panasonics\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Goldengulf\",\"title\":\"Goldengulf\",\"name\":\"Goldengulf\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Goldengulf\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Onerbl\",\"title\":\"Onerbl\",\"name\":\"Onerbl\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Onerbl\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"7ketree\",\"title\":\"7ketree\",\"name\":\"7ketree\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:7ketree\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"FEEEMAHA\",\"title\":\"FEEEMAHA\",\"name\":\"FEEEMAHA\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:FEEEMAHA\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"IST Computers\",\"title\":\"IST Computers\",\"name\":\"IST Computers\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:IST%20Computers\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BELNET\",\"title\":\"BELNET\",\"name\":\"BELNET\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BELNET\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DELL NOTEBOOKS\",\"title\":\"DELL NOTEBOOKS\",\"name\":\"DELL NOTEBOOKS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DELL%20NOTEBOOKS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hasee\",\"title\":\"Hasee\",\"name\":\"Hasee\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Hasee\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Joy Systems - HP\",\"title\":\"Joy Systems - HP\",\"name\":\"Joy Systems - HP\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Joy%20Systems%20-%20HP\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Predator\",\"title\":\"Predator\",\"name\":\"Predator\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Predator\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"[P].[amz_brand]\",\"title\":\"[P].[amz_brand]\",\"name\":\"[P].[amz_brand]\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:%5BP%5D.%5Bamz_brand%5D\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"eN-Tech\",\"title\":\"eN-Tech\",\"name\":\"eN-Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:eN-Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"hidevolution\",\"title\":\"hidevolution\",\"name\":\"hidevolution\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:hidevolution\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AORUS\",\"title\":\"AORUS\",\"name\":\"AORUS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AORUS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BREB\",\"title\":\"BREB\",\"name\":\"BREB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BREB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Discount Computer Depot\",\"title\":\"Discount Computer Depot\",\"name\":\"Discount Computer Depot\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Discount%20Computer%20Depot\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Elo\",\"title\":\"Elo\",\"name\":\"Elo\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Elo\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"FIREBAT\",\"title\":\"FIREBAT\",\"name\":\"FIREBAT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:FIREBAT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"GhostManta\",\"title\":\"GhostManta\",\"name\":\"GhostManta\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:GhostManta\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hi-Tec\",\"title\":\"Hi-Tec\",\"name\":\"Hi-Tec\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Hi-Tec\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"K-Mains\",\"title\":\"K-Mains\",\"name\":\"K-Mains\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:K-Mains\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TUF\",\"title\":\"TUF\",\"name\":\"TUF\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TUF\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Toughbook\",\"title\":\"Toughbook\",\"name\":\"Toughbook\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Toughbook\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Weiboer\",\"title\":\"Weiboer\",\"name\":\"Weiboer\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Weiboer\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"XPG\",\"title\":\"XPG\",\"name\":\"XPG\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:XPG\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"dadypet\",\"title\":\"dadypet\",\"name\":\"dadypet\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:dadypet\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"7keTree\",\"title\":\"7keTree\",\"name\":\"7keTree\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:7keTree\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Avita\",\"title\":\"Avita\",\"name\":\"Avita\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Avita\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BRE NUC\",\"title\":\"BRE NUC\",\"name\":\"BRE NUC\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BRE%20NUC\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Bisofice\",\"title\":\"Bisofice\",\"name\":\"Bisofice\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Bisofice\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Black Diamond Memory\",\"title\":\"Black Diamond Memory\",\"name\":\"Black Diamond Memory\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Black%20Diamond%20Memory\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DARZU\",\"title\":\"DARZU\",\"name\":\"DARZU\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DARZU\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Dr. Battery\",\"title\":\"Dr. Battery\",\"name\":\"Dr. Battery\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Dr.%20Battery\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Ghostmanta\",\"title\":\"Ghostmanta\",\"name\":\"Ghostmanta\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Ghostmanta\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NOBRAND\",\"title\":\"NOBRAND\",\"name\":\"NOBRAND\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NOBRAND\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Orbic\",\"title\":\"Orbic\",\"name\":\"Orbic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Orbic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Skytech Gaming\",\"title\":\"Skytech Gaming\",\"name\":\"Skytech Gaming\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Skytech%20Gaming\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Sleeping Phoenix\",\"title\":\"Sleeping Phoenix\",\"name\":\"Sleeping Phoenix\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Sleeping%20Phoenix\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TechMagnet\",\"title\":\"TechMagnet\",\"name\":\"TechMagnet\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TechMagnet\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Thunderb\",\"title\":\"Thunderb\",\"name\":\"Thunderb\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Thunderb\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Ubisoft\",\"title\":\"Ubisoft\",\"name\":\"Ubisoft\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Ubisoft\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"XMHEIRD\",\"title\":\"XMHEIRD\",\"name\":\"XMHEIRD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:XMHEIRD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"estock\",\"title\":\"estock\",\"name\":\"estock\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:estock\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"zdtodz\",\"title\":\"zdtodz\",\"name\":\"zdtodz\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:zdtodz\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AOPEN\",\"title\":\"AOPEN\",\"name\":\"AOPEN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AOPEN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Activision\",\"title\":\"Activision\",\"name\":\"Activision\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Activision\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BDF\",\"title\":\"BDF\",\"name\":\"BDF\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BDF\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Bioworld\",\"title\":\"Bioworld\",\"name\":\"Bioworld\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Bioworld\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Broage\",\"title\":\"Broage\",\"name\":\"Broage\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Broage\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DynamicFunction\",\"title\":\"DynamicFunction\",\"name\":\"DynamicFunction\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DynamicFunction\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Flora\",\"title\":\"Flora\",\"name\":\"Flora\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Flora\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Getac Technology\",\"title\":\"Getac Technology\",\"name\":\"Getac Technology\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Getac%20Technology\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Good\",\"title\":\"Good\",\"name\":\"Good\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Good\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"HP Refurb\",\"title\":\"HP Refurb\",\"name\":\"HP Refurb\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:HP%20Refurb\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hoovy\",\"title\":\"Hoovy\",\"name\":\"Hoovy\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Hoovy\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"IVIEW\",\"title\":\"IVIEW\",\"name\":\"IVIEW\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:IVIEW\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Jenzora\",\"title\":\"Jenzora\",\"name\":\"Jenzora\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Jenzora\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"KIRCUIT\",\"title\":\"KIRCUIT\",\"name\":\"KIRCUIT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:KIRCUIT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"LENOVO DCG SOURCING\",\"title\":\"LENOVO DCG SOURCING\",\"name\":\"LENOVO DCG SOURCING\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:LENOVO%20DCG%20SOURCING\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Labtec\",\"title\":\"Labtec\",\"name\":\"Labtec\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Labtec\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Laptop Buddy\",\"title\":\"Laptop Buddy\",\"name\":\"Laptop Buddy\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Laptop%20Buddy\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Lexibook\",\"title\":\"Lexibook\",\"name\":\"Lexibook\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Lexibook\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Memorex\",\"title\":\"Memorex\",\"name\":\"Memorex\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Memorex\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Mightyskins\",\"title\":\"Mightyskins\",\"name\":\"Mightyskins\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Mightyskins\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Moobody\",\"title\":\"Moobody\",\"name\":\"Moobody\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Moobody\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NATNO\",\"title\":\"NATNO\",\"name\":\"NATNO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NATNO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NIPOG\",\"title\":\"NIPOG\",\"name\":\"NIPOG\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NIPOG\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"OTVOC\",\"title\":\"OTVOC\",\"name\":\"OTVOC\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:OTVOC\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Pc Wholesale Exclusive\",\"title\":\"Pc Wholesale Exclusive\",\"name\":\"Pc Wholesale Exclusive\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Pc%20Wholesale%20Exclusive\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"THTRO\",\"title\":\"THTRO\",\"name\":\"THTRO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:THTRO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"VIVIDCRAFT\",\"title\":\"VIVIDCRAFT\",\"name\":\"VIVIDCRAFT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:VIVIDCRAFT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Victus\",\"title\":\"Victus\",\"name\":\"Victus\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Victus\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ViewSonic\",\"title\":\"ViewSonic\",\"name\":\"ViewSonic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ViewSonic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"WAVLINK\",\"title\":\"WAVLINK\",\"name\":\"WAVLINK\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:WAVLINK\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Yeastar\",\"title\":\"Yeastar\",\"name\":\"Yeastar\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Yeastar\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Yolmary\",\"title\":\"Yolmary\",\"name\":\"Yolmary\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Yolmary\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"generic\",\"title\":\"generic\",\"name\":\"generic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:generic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"lkx\",\"title\":\"lkx\",\"name\":\"lkx\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:lkx\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"temellsan\",\"title\":\"temellsan\",\"name\":\"temellsan\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:temellsan\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"203 Trading\",\"title\":\"203 Trading\",\"name\":\"203 Trading\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:203%20Trading\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"2K\",\"title\":\"2K\",\"name\":\"2K\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:2K\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"3M\",\"title\":\"3M\",\"name\":\"3M\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:3M\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"A-Premium\",\"title\":\"A-Premium\",\"name\":\"A-Premium\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:A-Premium\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ADHART\",\"title\":\"ADHART\",\"name\":\"ADHART\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ADHART\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD\",\"title\":\"AMD\",\"name\":\"AMD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AMD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"APPLE - SYSTEMS\",\"title\":\"APPLE - SYSTEMS\",\"name\":\"APPLE - SYSTEMS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:APPLE%20-%20SYSTEMS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ARCADORA\",\"title\":\"ARCADORA\",\"name\":\"ARCADORA\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ARCADORA\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AUSU\",\"title\":\"AUSU\",\"name\":\"AUSU\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AUSU\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Abacus\",\"title\":\"Abacus\",\"name\":\"Abacus\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Abacus\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Acadia\",\"title\":\"Acadia\",\"name\":\"Acadia\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Acadia\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Amazon Renewed\",\"title\":\"Amazon Renewed\",\"name\":\"Amazon Renewed\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Amazon%20Renewed\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Asuss\",\"title\":\"Asuss\",\"name\":\"Asuss\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Asuss\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Azpen\",\"title\":\"Azpen\",\"name\":\"Azpen\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Azpen\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BOOX\",\"title\":\"BOOX\",\"name\":\"BOOX\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BOOX\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BalconyBliss\",\"title\":\"BalconyBliss\",\"name\":\"BalconyBliss\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BalconyBliss\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Baoblaze\",\"title\":\"Baoblaze\",\"name\":\"Baoblaze\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Baoblaze\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Blair Tech\",\"title\":\"Blair Tech\",\"name\":\"Blair Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Blair%20Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Blarkrus\",\"title\":\"Blarkrus\",\"name\":\"Blarkrus\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Blarkrus\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"CQLDYWXDY\",\"title\":\"CQLDYWXDY\",\"name\":\"CQLDYWXDY\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:CQLDYWXDY\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"CTI Tech\",\"title\":\"CTI Tech\",\"name\":\"CTI Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:CTI%20Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Cbzote\",\"title\":\"Cbzote\",\"name\":\"Cbzote\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Cbzote\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Ccdes\",\"title\":\"Ccdes\",\"name\":\"Ccdes\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Ccdes\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Computers 4 Less TN\",\"title\":\"Computers 4 Less TN\",\"name\":\"Computers 4 Less TN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Computers%204%20Less%20TN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Custom Ascent\",\"title\":\"Custom Ascent\",\"name\":\"Custom Ascent\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Custom%20Ascent\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"CyberGeek\",\"title\":\"CyberGeek\",\"name\":\"CyberGeek\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:CyberGeek\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DMKAOLLK\",\"title\":\"DMKAOLLK\",\"name\":\"DMKAOLLK\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DMKAOLLK\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Darzheoy\",\"title\":\"Darzheoy\",\"name\":\"Darzheoy\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Darzheoy\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]}],\"allSortAndFilterFacets\":[{\"title\":\"Sort by\",\"name\":\"Sort by\",\"expandOnLoad\":false,\"type\":\"sort\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":null,\"hasPopularValues\":null,\"popularValues\":null,\"values\":[{\"id\":\"best_match\",\"title\":\"Best Match\",\"name\":\"Best Match\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=sort:Best%20Match\",\"isSelected\":true,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"price_low\",\"title\":\"Price: Low to High\",\"name\":\"Price: Low to High\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=sort:Price:%20Low%20to%20High\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"price_high\",\"title\":\"Price: High to Low\",\"name\":\"Price: High to Low\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=sort:Price:%20High%20to%20Low\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"best_seller\",\"title\":\"Best Seller\",\"name\":\"Best Seller\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=sort:Best%20Seller\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"rating_high\",\"title\":\"Highly Rated\",\"name\":\"Highly Rated\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=sort:Highly%20Rated\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Price\",\"name\":\"Price\",\"expandOnLoad\":false,\"type\":\"price\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":0,\"max\":1200,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":true,\"stepSize\":12,\"isSelected\":null,\"valueDisplayLimit\":null,\"hasPopularValues\":false,\"popularValues\":null,\"values\":null},{\"title\":\"Brand\",\"name\":\"Brand\",\"expandOnLoad\":false,\"type\":\"brand\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":50,\"hasPopularValues\":true,\"popularValues\":null,\"values\":[{\"id\":\"HP\",\"title\":\"HP\",\"name\":\"HP\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:HP\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Acer\",\"title\":\"Acer\",\"name\":\"Acer\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Acer\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Lenovo\",\"title\":\"Lenovo\",\"name\":\"Lenovo\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Lenovo\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ASUS\",\"title\":\"ASUS\",\"name\":\"ASUS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ASUS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Apple\",\"title\":\"Apple\",\"name\":\"Apple\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Apple\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"MSI\",\"title\":\"MSI\",\"name\":\"MSI\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:MSI\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Dell\",\"title\":\"Dell\",\"name\":\"Dell\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Dell\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft\",\"title\":\"Microsoft\",\"name\":\"Microsoft\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Microsoft\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hillside Planter\",\"title\":\"Hillside Planter\",\"name\":\"Hillside Planter\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Hillside%20Planter\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"RNRUO\",\"title\":\"RNRUO\",\"name\":\"RNRUO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:RNRUO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AEEZO\",\"title\":\"AEEZO\",\"name\":\"AEEZO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AEEZO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Nimo\",\"title\":\"Nimo\",\"name\":\"Nimo\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Nimo\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"HYYUO\",\"title\":\"HYYUO\",\"name\":\"HYYUO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:HYYUO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"SANPTENT\",\"title\":\"SANPTENT\",\"name\":\"SANPTENT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:SANPTENT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"onn\",\"title\":\"onn\",\"name\":\"onn\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:onn\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TEMLICOLO\",\"title\":\"TEMLICOLO\",\"name\":\"TEMLICOLO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TEMLICOLO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ACEMAGIC\",\"title\":\"ACEMAGIC\",\"name\":\"ACEMAGIC\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ACEMAGIC\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Toemaagic\",\"title\":\"Toemaagic\",\"name\":\"Toemaagic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Toemaagic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TPV\",\"title\":\"TPV\",\"name\":\"TPV\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TPV\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Gateway\",\"title\":\"Gateway\",\"name\":\"Gateway\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Gateway\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Samsung\",\"title\":\"Samsung\",\"name\":\"Samsung\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Samsung\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Rumtuk\",\"title\":\"Rumtuk\",\"name\":\"Rumtuk\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Rumtuk\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Akocrsiy\",\"title\":\"Akocrsiy\",\"name\":\"Akocrsiy\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Akocrsiy\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"SGIN\",\"title\":\"SGIN\",\"name\":\"SGIN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:SGIN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"KurieTim\",\"title\":\"KurieTim\",\"name\":\"KurieTim\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:KurieTim\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NIPOGI\",\"title\":\"NIPOGI\",\"name\":\"NIPOGI\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NIPOGI\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NoteCraft\",\"title\":\"NoteCraft\",\"name\":\"NoteCraft\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NoteCraft\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"EYY\",\"title\":\"EYY\",\"name\":\"EYY\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:EYY\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Exsurf\",\"title\":\"Exsurf\",\"name\":\"Exsurf\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Exsurf\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Easy-Goes Tech\",\"title\":\"Easy-Goes Tech\",\"name\":\"Easy-Goes Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Easy-Goes%20Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"HBESTORE\",\"title\":\"HBESTORE\",\"name\":\"HBESTORE\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:HBESTORE\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Coolby\",\"title\":\"Coolby\",\"name\":\"Coolby\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Coolby\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"LG\",\"title\":\"LG\",\"name\":\"LG\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:LG\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Molegar\",\"title\":\"Molegar\",\"name\":\"Molegar\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Molegar\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"VOZIZOV\",\"title\":\"VOZIZOV\",\"name\":\"VOZIZOV\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:VOZIZOV\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BULANUO\",\"title\":\"BULANUO\",\"name\":\"BULANUO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BULANUO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ESOOR\",\"title\":\"ESOOR\",\"name\":\"ESOOR\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ESOOR\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ownbrand\",\"title\":\"ownbrand\",\"name\":\"ownbrand\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ownbrand\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Golzer\",\"title\":\"Golzer\",\"name\":\"Golzer\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Golzer\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"JUPETE\",\"title\":\"JUPETE\",\"name\":\"JUPETE\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:JUPETE\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"LOSFTES\",\"title\":\"LOSFTES\",\"name\":\"LOSFTES\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:LOSFTES\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Blackview\",\"title\":\"Blackview\",\"name\":\"Blackview\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Blackview\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Colour Talk\",\"title\":\"Colour Talk\",\"name\":\"Colour Talk\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Colour%20Talk\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"VAIO\",\"title\":\"VAIO\",\"name\":\"VAIO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:VAIO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Teclast\",\"title\":\"Teclast\",\"name\":\"Teclast\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Teclast\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Ningmei\",\"title\":\"Ningmei\",\"name\":\"Ningmei\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Ningmei\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"iTech Deals\",\"title\":\"iTech Deals\",\"name\":\"iTech Deals\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:iTech%20Deals\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Elepad\",\"title\":\"Elepad\",\"name\":\"Elepad\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Elepad\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Chheart\",\"title\":\"Chheart\",\"name\":\"Chheart\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Chheart\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Oyzzraze\",\"title\":\"Oyzzraze\",\"name\":\"Oyzzraze\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Oyzzraze\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Pryloxen\",\"title\":\"Pryloxen\",\"name\":\"Pryloxen\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Pryloxen\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"UHIPPO\",\"title\":\"UHIPPO\",\"name\":\"UHIPPO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:UHIPPO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Toshiba\",\"title\":\"Toshiba\",\"name\":\"Toshiba\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Toshiba\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Latitude\",\"title\":\"Latitude\",\"name\":\"Latitude\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Latitude\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Core Innovations\",\"title\":\"Core Innovations\",\"name\":\"Core Innovations\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Core%20Innovations\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"CHIBBS\",\"title\":\"CHIBBS\",\"name\":\"CHIBBS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:CHIBBS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Unbranded\",\"title\":\"Unbranded\",\"name\":\"Unbranded\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Unbranded\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"XIKEJI\",\"title\":\"XIKEJI\",\"name\":\"XIKEJI\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:XIKEJI\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DACHUAN\",\"title\":\"DACHUAN\",\"name\":\"DACHUAN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DACHUAN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Panasonic\",\"title\":\"Panasonic\",\"name\":\"Panasonic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Panasonic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Alienware\",\"title\":\"Alienware\",\"name\":\"Alienware\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Alienware\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"RULY\",\"title\":\"RULY\",\"name\":\"RULY\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:RULY\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Deluxe PCs\",\"title\":\"Deluxe PCs\",\"name\":\"Deluxe PCs\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Deluxe%20PCs\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Panasonic Toughbook\",\"title\":\"Panasonic Toughbook\",\"name\":\"Panasonic Toughbook\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Panasonic%20Toughbook\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Yustda\",\"title\":\"Yustda\",\"name\":\"Yustda\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Yustda\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"REIXCA\",\"title\":\"REIXCA\",\"name\":\"REIXCA\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:REIXCA\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Guy-Tech\",\"title\":\"Guy-Tech\",\"name\":\"Guy-Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Guy-Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Joy Systems - Dell\",\"title\":\"Joy Systems - Dell\",\"name\":\"Joy Systems - Dell\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Joy%20Systems%20-%20Dell\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TOPOSH\",\"title\":\"TOPOSH\",\"name\":\"TOPOSH\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TOPOSH\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ThundeRobot\",\"title\":\"ThundeRobot\",\"name\":\"ThundeRobot\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ThundeRobot\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AJANTA INDUSTRIAL\",\"title\":\"AJANTA INDUSTRIAL\",\"name\":\"AJANTA INDUSTRIAL\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AJANTA%20INDUSTRIAL\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Dynabook\",\"title\":\"Dynabook\",\"name\":\"Dynabook\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Dynabook\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"GIGABYTE\",\"title\":\"GIGABYTE\",\"name\":\"GIGABYTE\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:GIGABYTE\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ME2\",\"title\":\"ME2\",\"name\":\"ME2\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ME2\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Fsjun\",\"title\":\"Fsjun\",\"name\":\"Fsjun\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Fsjun\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BiTECOOL\",\"title\":\"BiTECOOL\",\"name\":\"BiTECOOL\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BiTECOOL\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Generic\",\"title\":\"Generic\",\"name\":\"Generic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Generic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel\",\"title\":\"Intel\",\"name\":\"Intel\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Intel\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Tulasi\",\"title\":\"Tulasi\",\"name\":\"Tulasi\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Tulasi\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"7KeTree\",\"title\":\"7KeTree\",\"name\":\"7KeTree\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:7KeTree\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"JYXCN\",\"title\":\"JYXCN\",\"name\":\"JYXCN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:JYXCN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Mavark\",\"title\":\"Mavark\",\"name\":\"Mavark\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Mavark\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Acmine\",\"title\":\"Acmine\",\"name\":\"Acmine\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Acmine\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"JYXOIHUB\",\"title\":\"JYXOIHUB\",\"name\":\"JYXOIHUB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:JYXOIHUB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"panasonics\",\"title\":\"panasonics\",\"name\":\"panasonics\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:panasonics\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Goldengulf\",\"title\":\"Goldengulf\",\"name\":\"Goldengulf\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Goldengulf\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Onerbl\",\"title\":\"Onerbl\",\"name\":\"Onerbl\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Onerbl\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"7ketree\",\"title\":\"7ketree\",\"name\":\"7ketree\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:7ketree\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"FEEEMAHA\",\"title\":\"FEEEMAHA\",\"name\":\"FEEEMAHA\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:FEEEMAHA\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"IST Computers\",\"title\":\"IST Computers\",\"name\":\"IST Computers\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:IST%20Computers\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BELNET\",\"title\":\"BELNET\",\"name\":\"BELNET\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BELNET\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DELL NOTEBOOKS\",\"title\":\"DELL NOTEBOOKS\",\"name\":\"DELL NOTEBOOKS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DELL%20NOTEBOOKS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hasee\",\"title\":\"Hasee\",\"name\":\"Hasee\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Hasee\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Joy Systems - HP\",\"title\":\"Joy Systems - HP\",\"name\":\"Joy Systems - HP\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Joy%20Systems%20-%20HP\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Predator\",\"title\":\"Predator\",\"name\":\"Predator\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Predator\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"[P].[amz_brand]\",\"title\":\"[P].[amz_brand]\",\"name\":\"[P].[amz_brand]\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:%5BP%5D.%5Bamz_brand%5D\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"eN-Tech\",\"title\":\"eN-Tech\",\"name\":\"eN-Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:eN-Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"hidevolution\",\"title\":\"hidevolution\",\"name\":\"hidevolution\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:hidevolution\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AORUS\",\"title\":\"AORUS\",\"name\":\"AORUS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AORUS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BREB\",\"title\":\"BREB\",\"name\":\"BREB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BREB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Discount Computer Depot\",\"title\":\"Discount Computer Depot\",\"name\":\"Discount Computer Depot\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Discount%20Computer%20Depot\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Elo\",\"title\":\"Elo\",\"name\":\"Elo\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Elo\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"FIREBAT\",\"title\":\"FIREBAT\",\"name\":\"FIREBAT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:FIREBAT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"GhostManta\",\"title\":\"GhostManta\",\"name\":\"GhostManta\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:GhostManta\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hi-Tec\",\"title\":\"Hi-Tec\",\"name\":\"Hi-Tec\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Hi-Tec\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"K-Mains\",\"title\":\"K-Mains\",\"name\":\"K-Mains\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:K-Mains\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TUF\",\"title\":\"TUF\",\"name\":\"TUF\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TUF\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Toughbook\",\"title\":\"Toughbook\",\"name\":\"Toughbook\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Toughbook\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Weiboer\",\"title\":\"Weiboer\",\"name\":\"Weiboer\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Weiboer\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"XPG\",\"title\":\"XPG\",\"name\":\"XPG\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:XPG\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"dadypet\",\"title\":\"dadypet\",\"name\":\"dadypet\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:dadypet\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"7keTree\",\"title\":\"7keTree\",\"name\":\"7keTree\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:7keTree\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Avita\",\"title\":\"Avita\",\"name\":\"Avita\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Avita\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BRE NUC\",\"title\":\"BRE NUC\",\"name\":\"BRE NUC\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BRE%20NUC\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Bisofice\",\"title\":\"Bisofice\",\"name\":\"Bisofice\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Bisofice\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Black Diamond Memory\",\"title\":\"Black Diamond Memory\",\"name\":\"Black Diamond Memory\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Black%20Diamond%20Memory\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DARZU\",\"title\":\"DARZU\",\"name\":\"DARZU\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DARZU\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Dr. Battery\",\"title\":\"Dr. Battery\",\"name\":\"Dr. Battery\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Dr.%20Battery\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Ghostmanta\",\"title\":\"Ghostmanta\",\"name\":\"Ghostmanta\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Ghostmanta\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NOBRAND\",\"title\":\"NOBRAND\",\"name\":\"NOBRAND\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NOBRAND\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Orbic\",\"title\":\"Orbic\",\"name\":\"Orbic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Orbic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Skytech Gaming\",\"title\":\"Skytech Gaming\",\"name\":\"Skytech Gaming\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Skytech%20Gaming\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Sleeping Phoenix\",\"title\":\"Sleeping Phoenix\",\"name\":\"Sleeping Phoenix\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Sleeping%20Phoenix\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TechMagnet\",\"title\":\"TechMagnet\",\"name\":\"TechMagnet\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TechMagnet\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Thunderb\",\"title\":\"Thunderb\",\"name\":\"Thunderb\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Thunderb\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Ubisoft\",\"title\":\"Ubisoft\",\"name\":\"Ubisoft\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Ubisoft\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"XMHEIRD\",\"title\":\"XMHEIRD\",\"name\":\"XMHEIRD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:XMHEIRD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"estock\",\"title\":\"estock\",\"name\":\"estock\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:estock\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"zdtodz\",\"title\":\"zdtodz\",\"name\":\"zdtodz\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:zdtodz\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AOPEN\",\"title\":\"AOPEN\",\"name\":\"AOPEN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AOPEN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Activision\",\"title\":\"Activision\",\"name\":\"Activision\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Activision\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BDF\",\"title\":\"BDF\",\"name\":\"BDF\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BDF\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Bioworld\",\"title\":\"Bioworld\",\"name\":\"Bioworld\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Bioworld\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Broage\",\"title\":\"Broage\",\"name\":\"Broage\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Broage\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DynamicFunction\",\"title\":\"DynamicFunction\",\"name\":\"DynamicFunction\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DynamicFunction\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Flora\",\"title\":\"Flora\",\"name\":\"Flora\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Flora\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Getac Technology\",\"title\":\"Getac Technology\",\"name\":\"Getac Technology\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Getac%20Technology\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Good\",\"title\":\"Good\",\"name\":\"Good\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Good\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"HP Refurb\",\"title\":\"HP Refurb\",\"name\":\"HP Refurb\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:HP%20Refurb\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hoovy\",\"title\":\"Hoovy\",\"name\":\"Hoovy\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Hoovy\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"IVIEW\",\"title\":\"IVIEW\",\"name\":\"IVIEW\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:IVIEW\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Jenzora\",\"title\":\"Jenzora\",\"name\":\"Jenzora\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Jenzora\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"KIRCUIT\",\"title\":\"KIRCUIT\",\"name\":\"KIRCUIT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:KIRCUIT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"LENOVO DCG SOURCING\",\"title\":\"LENOVO DCG SOURCING\",\"name\":\"LENOVO DCG SOURCING\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:LENOVO%20DCG%20SOURCING\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Labtec\",\"title\":\"Labtec\",\"name\":\"Labtec\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Labtec\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Laptop Buddy\",\"title\":\"Laptop Buddy\",\"name\":\"Laptop Buddy\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Laptop%20Buddy\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Lexibook\",\"title\":\"Lexibook\",\"name\":\"Lexibook\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Lexibook\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Memorex\",\"title\":\"Memorex\",\"name\":\"Memorex\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Memorex\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Mightyskins\",\"title\":\"Mightyskins\",\"name\":\"Mightyskins\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Mightyskins\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Moobody\",\"title\":\"Moobody\",\"name\":\"Moobody\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Moobody\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NATNO\",\"title\":\"NATNO\",\"name\":\"NATNO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NATNO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NIPOG\",\"title\":\"NIPOG\",\"name\":\"NIPOG\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NIPOG\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"OTVOC\",\"title\":\"OTVOC\",\"name\":\"OTVOC\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:OTVOC\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Pc Wholesale Exclusive\",\"title\":\"Pc Wholesale Exclusive\",\"name\":\"Pc Wholesale Exclusive\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Pc%20Wholesale%20Exclusive\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"THTRO\",\"title\":\"THTRO\",\"name\":\"THTRO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:THTRO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"VIVIDCRAFT\",\"title\":\"VIVIDCRAFT\",\"name\":\"VIVIDCRAFT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:VIVIDCRAFT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Victus\",\"title\":\"Victus\",\"name\":\"Victus\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Victus\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ViewSonic\",\"title\":\"ViewSonic\",\"name\":\"ViewSonic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ViewSonic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"WAVLINK\",\"title\":\"WAVLINK\",\"name\":\"WAVLINK\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:WAVLINK\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Yeastar\",\"title\":\"Yeastar\",\"name\":\"Yeastar\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Yeastar\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Yolmary\",\"title\":\"Yolmary\",\"name\":\"Yolmary\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Yolmary\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"generic\",\"title\":\"generic\",\"name\":\"generic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:generic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"lkx\",\"title\":\"lkx\",\"name\":\"lkx\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:lkx\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"temellsan\",\"title\":\"temellsan\",\"name\":\"temellsan\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:temellsan\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"203 Trading\",\"title\":\"203 Trading\",\"name\":\"203 Trading\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:203%20Trading\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"2K\",\"title\":\"2K\",\"name\":\"2K\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:2K\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"3M\",\"title\":\"3M\",\"name\":\"3M\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:3M\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"A-Premium\",\"title\":\"A-Premium\",\"name\":\"A-Premium\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:A-Premium\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ADHART\",\"title\":\"ADHART\",\"name\":\"ADHART\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ADHART\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD\",\"title\":\"AMD\",\"name\":\"AMD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AMD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"APPLE - SYSTEMS\",\"title\":\"APPLE - SYSTEMS\",\"name\":\"APPLE - SYSTEMS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:APPLE%20-%20SYSTEMS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ARCADORA\",\"title\":\"ARCADORA\",\"name\":\"ARCADORA\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ARCADORA\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AUSU\",\"title\":\"AUSU\",\"name\":\"AUSU\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AUSU\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Abacus\",\"title\":\"Abacus\",\"name\":\"Abacus\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Abacus\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Acadia\",\"title\":\"Acadia\",\"name\":\"Acadia\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Acadia\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Amazon Renewed\",\"title\":\"Amazon Renewed\",\"name\":\"Amazon Renewed\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Amazon%20Renewed\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Asuss\",\"title\":\"Asuss\",\"name\":\"Asuss\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Asuss\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Azpen\",\"title\":\"Azpen\",\"name\":\"Azpen\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Azpen\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BOOX\",\"title\":\"BOOX\",\"name\":\"BOOX\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BOOX\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BalconyBliss\",\"title\":\"BalconyBliss\",\"name\":\"BalconyBliss\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BalconyBliss\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Baoblaze\",\"title\":\"Baoblaze\",\"name\":\"Baoblaze\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Baoblaze\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Blair Tech\",\"title\":\"Blair Tech\",\"name\":\"Blair Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Blair%20Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Blarkrus\",\"title\":\"Blarkrus\",\"name\":\"Blarkrus\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Blarkrus\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"CQLDYWXDY\",\"title\":\"CQLDYWXDY\",\"name\":\"CQLDYWXDY\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:CQLDYWXDY\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"CTI Tech\",\"title\":\"CTI Tech\",\"name\":\"CTI Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:CTI%20Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Cbzote\",\"title\":\"Cbzote\",\"name\":\"Cbzote\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Cbzote\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Ccdes\",\"title\":\"Ccdes\",\"name\":\"Ccdes\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Ccdes\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Computers 4 Less TN\",\"title\":\"Computers 4 Less TN\",\"name\":\"Computers 4 Less TN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Computers%204%20Less%20TN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Custom Ascent\",\"title\":\"Custom Ascent\",\"name\":\"Custom Ascent\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Custom%20Ascent\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"CyberGeek\",\"title\":\"CyberGeek\",\"name\":\"CyberGeek\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:CyberGeek\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DMKAOLLK\",\"title\":\"DMKAOLLK\",\"name\":\"DMKAOLLK\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DMKAOLLK\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Darzheoy\",\"title\":\"Darzheoy\",\"name\":\"Darzheoy\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Darzheoy\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Item Conditions\",\"name\":\"Item Conditions\",\"expandOnLoad\":false,\"type\":\"offer_condition_group_codes_filter_v0\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"1\",\"title\":\"New\",\"name\":\"New\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=offer_condition_group_codes_filter_v0:New\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"3\",\"title\":\"Pre-Owned\",\"name\":\"Pre-Owned\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=offer_condition_group_codes_filter_v0:Pre-Owned\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"2\",\"title\":\"Restored\",\"name\":\"Restored\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=offer_condition_group_codes_filter_v0:Restored\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Screen Size\",\"name\":\"Screen Size\",\"expandOnLoad\":false,\"type\":\"screen_size_laptop\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":50,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"10\\\" - 12\\\"\",\"title\":\"10\\\" - 12\\\"\",\"name\":\"10\\\" - 12\\\"\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=screen_size_laptop:10%22%20-%2012%22\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"11\\\" - 14\\\"\",\"title\":\"11\\\" - 14\\\"\",\"name\":\"11\\\" - 14\\\"\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=screen_size_laptop:11%22%20-%2014%22\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"15\\\" - 16\\\"\",\"title\":\"15\\\" - 16\\\"\",\"name\":\"15\\\" - 16\\\"\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=screen_size_laptop:15%22%20-%2016%22\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"16\\\" \\u0026 Up\",\"title\":\"16\\\" \\u0026 Up\",\"name\":\"16\\\" \\u0026 Up\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=screen_size_laptop:16%22%20%26%20Up\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Processor Type\",\"name\":\"Processor Type\",\"expandOnLoad\":false,\"type\":\"processor_type\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":true,\"popularValues\":null,\"values\":[{\"id\":\"Intel Core i7\",\"title\":\"Intel Core i7\",\"name\":\"Intel Core i7\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Core%20i7\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Core i5\",\"title\":\"Intel Core i5\",\"name\":\"Intel Core i5\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Core%20i5\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Ryzen 7\",\"title\":\"AMD Ryzen 7\",\"name\":\"AMD Ryzen 7\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:AMD%20Ryzen%207\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Ryzen 5\",\"title\":\"AMD Ryzen 5\",\"name\":\"AMD Ryzen 5\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:AMD%20Ryzen%205\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Core i9\",\"title\":\"Intel Core i9\",\"name\":\"Intel Core i9\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Core%20i9\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Core i3\",\"title\":\"Intel Core i3\",\"name\":\"Intel Core i3\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Core%20i3\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Ryzen 9\",\"title\":\"AMD Ryzen 9\",\"name\":\"AMD Ryzen 9\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:AMD%20Ryzen%209\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Core i7-10750H\",\"title\":\"Intel Core i7-10750H\",\"name\":\"Intel Core i7-10750H\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Core%20i7-10750H\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Core i7-1355U\",\"title\":\"Intel Core i7-1355U\",\"name\":\"Intel Core i7-1355U\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Core%20i7-1355U\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Core i5-1035G1\",\"title\":\"Intel Core i5-1035G1\",\"name\":\"Intel Core i5-1035G1\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Core%20i5-1035G1\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Ryzen 7 7730U\",\"title\":\"AMD Ryzen 7 7730U\",\"name\":\"AMD Ryzen 7 7730U\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:AMD%20Ryzen%207%207730U\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Ryzen 3\",\"title\":\"AMD Ryzen 3\",\"name\":\"AMD Ryzen 3\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:AMD%20Ryzen%203\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Core i5-13420H\",\"title\":\"Intel Core i5-13420H\",\"name\":\"Intel Core i5-13420H\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Core%20i5-13420H\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel\",\"title\":\"Intel\",\"name\":\"Intel\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Apple M1\",\"title\":\"Apple M1\",\"name\":\"Apple M1\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Apple%20M1\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Apple M2\",\"title\":\"Apple M2\",\"name\":\"Apple M2\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Apple%20M2\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Ryzen\",\"title\":\"AMD Ryzen\",\"name\":\"AMD Ryzen\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:AMD%20Ryzen\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Celeron\",\"title\":\"Intel Celeron\",\"name\":\"Intel Celeron\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Celeron\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Pentium Gold\",\"title\":\"Intel Pentium Gold\",\"name\":\"Intel Pentium Gold\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Pentium%20Gold\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"i7-11800H\",\"title\":\"i7-11800H\",\"name\":\"i7-11800H\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:i7-11800H\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Data Storage\",\"name\":\"Data Storage\",\"expandOnLoad\":false,\"type\":\"data_storage_computers\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"256 GB and Under\",\"title\":\"256 GB and Under\",\"name\":\"256 GB and Under\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=data_storage_computers:256%20GB%20and%20Under\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"256 GB - 500 GB\",\"title\":\"256 GB - 500 GB\",\"name\":\"256 GB - 500 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=data_storage_computers:256%20GB%20-%20500%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"500 GB - 1 TB\",\"title\":\"500 GB - 1 TB\",\"name\":\"500 GB - 1 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=data_storage_computers:500%20GB%20-%201%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1 TB - 2 TB\",\"title\":\"1 TB - 2 TB\",\"name\":\"1 TB - 2 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=data_storage_computers:1%20TB%20-%202%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"2 TB and Up\",\"title\":\"2 TB and Up\",\"name\":\"2 TB and Up\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=data_storage_computers:2%20TB%20and%20Up\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Operating System\",\"name\":\"Operating System\",\"expandOnLoad\":false,\"type\":\"operating_system\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":true,\"popularValues\":null,\"values\":[{\"id\":\"Microsoft Windows 11\",\"title\":\"Microsoft Windows 11\",\"name\":\"Microsoft Windows 11\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2011\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows\",\"title\":\"Microsoft Windows\",\"name\":\"Microsoft Windows\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Windows\",\"title\":\"Windows\",\"name\":\"Windows\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Windows\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 11 Professional\",\"title\":\"Microsoft Windows 11 Professional\",\"name\":\"Microsoft Windows 11 Professional\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2011%20Professional\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Windows 10\",\"title\":\"Windows 10\",\"name\":\"Windows 10\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Windows%2010\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 11 Home (64-bit)\",\"title\":\"Microsoft Windows 11 Home (64-bit)\",\"name\":\"Microsoft Windows 11 Home (64-bit)\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2011%20Home%20(64-bit)\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 11 Professional (64-bit)\",\"title\":\"Microsoft Windows 11 Professional (64-bit)\",\"name\":\"Microsoft Windows 11 Professional (64-bit)\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2011%20Professional%20(64-bit)\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 10\",\"title\":\"Microsoft Windows 10\",\"name\":\"Microsoft Windows 10\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2010\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 11 Home\",\"title\":\"Microsoft Windows 11 Home\",\"name\":\"Microsoft Windows 11 Home\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2011%20Home\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Windows 10 Pro\",\"title\":\"Windows 10 Pro\",\"name\":\"Windows 10 Pro\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Windows%2010%20Pro\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Windows 10 Home\",\"title\":\"Windows 10 Home\",\"name\":\"Windows 10 Home\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Windows%2010%20Home\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 10 Professional\",\"title\":\"Microsoft Windows 10 Professional\",\"name\":\"Microsoft Windows 10 Professional\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2010%20Professional\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Chrome OS\",\"title\":\"Chrome OS\",\"name\":\"Chrome OS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Chrome%20OS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 10 Home\",\"title\":\"Microsoft Windows 10 Home\",\"name\":\"Microsoft Windows 10 Home\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2010%20Home\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 10 Professional (64-bit)\",\"title\":\"Microsoft Windows 10 Professional (64-bit)\",\"name\":\"Microsoft Windows 10 Professional (64-bit)\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2010%20Professional%20(64-bit)\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 10 Pro 64-Bit\",\"title\":\"Microsoft Windows 10 Pro 64-Bit\",\"name\":\"Microsoft Windows 10 Pro 64-Bit\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2010%20Pro%2064-Bit\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 10Professional\",\"title\":\"Microsoft Windows 10Professional\",\"name\":\"Microsoft Windows 10Professional\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2010Professional\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Apple iOS\",\"title\":\"Apple iOS\",\"name\":\"Apple iOS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Apple%20iOS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Windows 7\",\"title\":\"Windows 7\",\"name\":\"Windows 7\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Windows%207\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 10 S\",\"title\":\"Microsoft Windows 10 S\",\"name\":\"Microsoft Windows 10 S\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2010%20S\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Graphics Card\",\"name\":\"Graphics Card\",\"expandOnLoad\":false,\"type\":\"graphic_card\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":true,\"popularValues\":null,\"values\":[{\"id\":\"NVIDIA GeForce RTX 4070\",\"title\":\"NVIDIA GeForce RTX 4070\",\"name\":\"NVIDIA GeForce RTX 4070\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%204070\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 4060\",\"title\":\"NVIDIA GeForce RTX 4060\",\"name\":\"NVIDIA GeForce RTX 4060\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%204060\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 4050\",\"title\":\"NVIDIA GeForce RTX 4050\",\"name\":\"NVIDIA GeForce RTX 4050\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%204050\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 4080\",\"title\":\"NVIDIA GeForce RTX 4080\",\"name\":\"NVIDIA GeForce RTX 4080\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%204080\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 3050\",\"title\":\"NVIDIA GeForce RTX 3050\",\"name\":\"NVIDIA GeForce RTX 3050\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%203050\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 3060\",\"title\":\"NVIDIA GeForce RTX 3060\",\"name\":\"NVIDIA GeForce RTX 3060\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%203060\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 3050 Ti\",\"title\":\"NVIDIA GeForce RTX 3050 Ti\",\"name\":\"NVIDIA GeForce RTX 3050 Ti\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%203050%20Ti\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 3070\",\"title\":\"NVIDIA GeForce RTX 3070\",\"name\":\"NVIDIA GeForce RTX 3070\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%203070\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Radeon RX 7900 XTX\",\"title\":\"AMD Radeon RX 7900 XTX\",\"name\":\"AMD Radeon RX 7900 XTX\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:AMD%20Radeon%20RX%207900%20XTX\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 3070 Ti\",\"title\":\"NVIDIA GeForce RTX 3070 Ti\",\"name\":\"NVIDIA GeForce RTX 3070 Ti\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%203070%20Ti\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Radeon\",\"title\":\"AMD Radeon\",\"name\":\"AMD Radeon\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:AMD%20Radeon\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 3080\",\"title\":\"NVIDIA GeForce RTX 3080\",\"name\":\"NVIDIA GeForce RTX 3080\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%203080\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel UHD Graphics\",\"title\":\"Intel UHD Graphics\",\"name\":\"Intel UHD Graphics\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:Intel%20UHD%20Graphics\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Radeon RX 6800 XT\",\"title\":\"AMD Radeon RX 6800 XT\",\"name\":\"AMD Radeon RX 6800 XT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:AMD%20Radeon%20RX%206800%20XT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce GTX 1650\",\"title\":\"NVIDIA GeForce GTX 1650\",\"name\":\"NVIDIA GeForce GTX 1650\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20GTX%201650\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 2060\",\"title\":\"NVIDIA GeForce RTX 2060\",\"name\":\"NVIDIA GeForce RTX 2060\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%202060\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 2050\",\"title\":\"NVIDIA GeForce RTX 2050\",\"name\":\"NVIDIA GeForce RTX 2050\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%202050\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce MX550\",\"title\":\"NVIDIA GeForce MX550\",\"name\":\"NVIDIA GeForce MX550\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20MX550\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel HD Graphics\",\"title\":\"Intel HD Graphics\",\"name\":\"Intel HD Graphics\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:Intel%20HD%20Graphics\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel UHD Graphics 600\",\"title\":\"Intel UHD Graphics 600\",\"name\":\"Intel UHD Graphics 600\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:Intel%20UHD%20Graphics%20600\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Processor Brand\",\"name\":\"Processor Brand\",\"expandOnLoad\":false,\"type\":\"processor_brand\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"Intel\",\"title\":\"Intel\",\"name\":\"Intel\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_brand:Intel\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD\",\"title\":\"AMD\",\"name\":\"AMD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_brand:AMD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Apple\",\"title\":\"Apple\",\"name\":\"Apple\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_brand:Apple\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA\",\"title\":\"NVIDIA\",\"name\":\"NVIDIA\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_brand:NVIDIA\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ARM\",\"title\":\"ARM\",\"name\":\"ARM\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_brand:ARM\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Features\",\"name\":\"Features\",\"expandOnLoad\":false,\"type\":\"features\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":true,\"popularValues\":null,\"values\":[{\"id\":\"Touchscreen\",\"title\":\"Touchscreen\",\"name\":\"Touchscreen\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Touchscreen\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Wireless\",\"title\":\"Wireless\",\"name\":\"Wireless\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Wireless\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Water-Resistant\",\"title\":\"Water-Resistant\",\"name\":\"Water-Resistant\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Water-Resistant\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Portable\",\"title\":\"Portable\",\"name\":\"Portable\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Portable\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Waterproof\",\"title\":\"Waterproof\",\"name\":\"Waterproof\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Waterproof\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Automatic Shut-Off\",\"title\":\"Automatic Shut-Off\",\"name\":\"Automatic Shut-Off\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Automatic%20Shut-Off\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Automatic Shutoff\",\"title\":\"Automatic Shutoff\",\"name\":\"Automatic Shutoff\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Automatic%20Shutoff\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hypoallergenic\",\"title\":\"Hypoallergenic\",\"name\":\"Hypoallergenic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Hypoallergenic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Removable\",\"title\":\"Removable\",\"name\":\"Removable\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Removable\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Hard Drive Type\",\"name\":\"Hard Drive Type\",\"expandOnLoad\":false,\"type\":\"hard_drive_type\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"HDD\",\"title\":\"HDD\",\"name\":\"HDD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=hard_drive_type:HDD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"SSD\",\"title\":\"SSD\",\"name\":\"SSD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=hard_drive_type:SSD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hybrid\",\"title\":\"Hybrid\",\"name\":\"Hybrid\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=hard_drive_type:Hybrid\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"No Drive\",\"title\":\"No Drive\",\"name\":\"No Drive\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=hard_drive_type:No%20Drive\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Solid State Drive Capacity\",\"name\":\"Solid State Drive Capacity\",\"expandOnLoad\":false,\"type\":\"solid_state_drive_capacity\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":50,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"1 TB\",\"title\":\"1 TB\",\"name\":\"1 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:1%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"512 GB\",\"title\":\"512 GB\",\"name\":\"512 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:512%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"2 TB\",\"title\":\"2 TB\",\"name\":\"2 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:2%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"256 GB\",\"title\":\"256 GB\",\"name\":\"256 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:256%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"500 GB\",\"title\":\"500 GB\",\"name\":\"500 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:500%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"4 TB\",\"title\":\"4 TB\",\"name\":\"4 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:4%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1.0 TB\",\"title\":\"1.0 TB\",\"name\":\"1.0 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:1.0%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1.02 TB\",\"title\":\"1.02 TB\",\"name\":\"1.02 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:1.02%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1000 GB\",\"title\":\"1000 GB\",\"name\":\"1000 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:1000%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"128 GB\",\"title\":\"128 GB\",\"name\":\"128 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:128%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1.5 TB\",\"title\":\"1.5 TB\",\"name\":\"1.5 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:1.5%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1024 GB\",\"title\":\"1024 GB\",\"name\":\"1024 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:1024%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"512 TB\",\"title\":\"512 TB\",\"name\":\"512 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:512%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"512.0 GB\",\"title\":\"512.0 GB\",\"name\":\"512.0 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:512.0%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"16 GB\",\"title\":\"16 GB\",\"name\":\"16 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:16%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1.51 TB\",\"title\":\"1.51 TB\",\"name\":\"1.51 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:1.51%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1 GB\",\"title\":\"1 GB\",\"name\":\"1 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:1%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"128 TB\",\"title\":\"128 TB\",\"name\":\"128 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:128%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"256 TB\",\"title\":\"256 TB\",\"name\":\"256 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:256%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"64 GB\",\"title\":\"64 GB\",\"name\":\"64 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:64%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"32 GB\",\"title\":\"32 GB\",\"name\":\"32 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:32%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"8 TB\",\"title\":\"8 TB\",\"name\":\"8 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:8%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"320 GB\",\"title\":\"320 GB\",\"name\":\"320 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:320%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"250 GB\",\"title\":\"250 GB\",\"name\":\"250 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:250%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"240 GB\",\"title\":\"240 GB\",\"name\":\"240 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:240%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"180 GB\",\"title\":\"180 GB\",\"name\":\"180 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:180%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"192 GB\",\"title\":\"192 GB\",\"name\":\"192 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:192%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"384 GB\",\"title\":\"384 GB\",\"name\":\"384 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:384%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"120 GB\",\"title\":\"120 GB\",\"name\":\"120 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:120%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"16 TB\",\"title\":\"16 TB\",\"name\":\"16 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:16%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"750 GB\",\"title\":\"750 GB\",\"name\":\"750 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:750%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"160 GB\",\"title\":\"160 GB\",\"name\":\"160 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:160%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"256.0 GB\",\"title\":\"256.0 GB\",\"name\":\"256.0 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:256.0%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"448 GB\",\"title\":\"448 GB\",\"name\":\"448 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:448%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"640 GB\",\"title\":\"640 GB\",\"name\":\"640 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:640%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"480 GB\",\"title\":\"480 GB\",\"name\":\"480 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:480%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"500 TB\",\"title\":\"500 TB\",\"name\":\"500 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:500%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"768 GB\",\"title\":\"768 GB\",\"name\":\"768 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:768%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"576 GB\",\"title\":\"576 GB\",\"name\":\"576 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:576%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"512gb ssd\",\"title\":\"512gb ssd\",\"name\":\"512gb ssd\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:512gb%20ssd\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"64.0 GB\",\"title\":\"64.0 GB\",\"name\":\"64.0 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:64.0%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"704 GB\",\"title\":\"704 GB\",\"name\":\"704 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:704%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"8 GB\",\"title\":\"8 GB\",\"name\":\"8 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:8%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"832 GB\",\"title\":\"832 GB\",\"name\":\"832 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:832%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"64 TB\",\"title\":\"64 TB\",\"name\":\"64 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:64%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"960 GB\",\"title\":\"960 GB\",\"name\":\"960 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:960%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"128.0 GB\",\"title\":\"128.0 GB\",\"name\":\"128.0 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:128.0%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"6 TB\",\"title\":\"6 TB\",\"name\":\"6 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:6%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"32 TB\",\"title\":\"32 TB\",\"name\":\"32 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:32%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"0 GB\",\"title\":\"0 GB\",\"name\":\"0 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:0%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Color\",\"name\":\"Color\",\"expandOnLoad\":false,\"type\":\"color\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":50,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"Pink\",\"title\":\"Pink\",\"name\":\"Pink\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Pink\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Black\",\"title\":\"Black\",\"name\":\"Black\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Black\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Blue\",\"title\":\"Blue\",\"name\":\"Blue\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Blue\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Silver\",\"title\":\"Silver\",\"name\":\"Silver\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Silver\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Purple\",\"title\":\"Purple\",\"name\":\"Purple\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Purple\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"White\",\"title\":\"White\",\"name\":\"White\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:White\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Red\",\"title\":\"Red\",\"name\":\"Red\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Red\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Gray\",\"title\":\"Gray\",\"name\":\"Gray\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Gray\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Gold\",\"title\":\"Gold\",\"name\":\"Gold\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Gold\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Green\",\"title\":\"Green\",\"name\":\"Green\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Green\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Multicolor\",\"title\":\"Multicolor\",\"name\":\"Multicolor\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Multicolor\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Beige\",\"title\":\"Beige\",\"name\":\"Beige\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Beige\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Brown\",\"title\":\"Brown\",\"name\":\"Brown\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Brown\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Clear\",\"title\":\"Clear\",\"name\":\"Clear\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Clear\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Yellow\",\"title\":\"Yellow\",\"name\":\"Yellow\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Yellow\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Orange\",\"title\":\"Orange\",\"name\":\"Orange\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Orange\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Other\",\"title\":\"Other\",\"name\":\"Other\",\"expandOnLoad\":null,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Other\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Off-White\",\"title\":\"Off-White\",\"name\":\"Off-White\",\"expandOnLoad\":null,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Off-White\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Assorted\",\"title\":\"Assorted\",\"name\":\"Assorted\",\"expandOnLoad\":null,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Assorted\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Resolution\",\"name\":\"Resolution\",\"expandOnLoad\":false,\"type\":\"resolution\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":true,\"popularValues\":null,\"values\":[{\"id\":\"4K UHD\",\"title\":\"4K UHD\",\"name\":\"4K UHD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:4K%20UHD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1080p\",\"title\":\"1080p\",\"name\":\"1080p\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1080p\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"720p\",\"title\":\"720p\",\"name\":\"720p\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:720p\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"FHD (1080P)\",\"title\":\"FHD (1080P)\",\"name\":\"FHD (1080P)\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:FHD%20(1080P)\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"4K (2160P)\",\"title\":\"4K (2160P)\",\"name\":\"4K (2160P)\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:4K%20(2160P)\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1920 x 1200\",\"title\":\"1920 x 1200\",\"name\":\"1920 x 1200\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1920%20x%201200\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"2560 x 1600\",\"title\":\"2560 x 1600\",\"name\":\"2560 x 1600\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:2560%20x%201600\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"FHD (1920 x 1080)\",\"title\":\"FHD (1920 x 1080)\",\"name\":\"FHD (1920 x 1080)\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:FHD%20(1920%20x%201080)\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"2880 x 1800\",\"title\":\"2880 x 1800\",\"name\":\"2880 x 1800\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:2880%20x%201800\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1080p+\",\"title\":\"1080p+\",\"name\":\"1080p+\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1080p+\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"2560x1600\",\"title\":\"2560x1600\",\"name\":\"2560x1600\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:2560x1600\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1920 x 1080 (Full HD)\",\"title\":\"1920 x 1080 (Full HD)\",\"name\":\"1920 x 1080 (Full HD)\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1920%20x%201080%20(Full%20HD)\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1440p QHD\",\"title\":\"1440p QHD\",\"name\":\"1440p QHD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1440p%20QHD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"FHD (1920x1080)\",\"title\":\"FHD (1920x1080)\",\"name\":\"FHD (1920x1080)\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:FHD%20(1920x1080)\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"FHD\",\"title\":\"FHD\",\"name\":\"FHD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:FHD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1920x1200\",\"title\":\"1920x1200\",\"name\":\"1920x1200\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1920x1200\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1080p; FHD; 1920x1080\",\"title\":\"1080p; FHD; 1920x1080\",\"name\":\"1080p; FHD; 1920x1080\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1080p;%20FHD;%201920x1080\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"WUXGA\",\"title\":\"WUXGA\",\"name\":\"WUXGA\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:WUXGA\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1200p\",\"title\":\"1200p\",\"name\":\"1200p\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1200p\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1080 FHD\",\"title\":\"1080 FHD\",\"name\":\"1080 FHD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1080%20FHD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Display Technology\",\"name\":\"Display Technology\",\"expandOnLoad\":false,\"type\":\"display_technology\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":true,\"popularValues\":null,\"values\":[{\"id\":\"OLED\",\"title\":\"OLED\",\"name\":\"OLED\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:OLED\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Backlit\",\"title\":\"Backlit\",\"name\":\"Backlit\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:Backlit\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"LED\",\"title\":\"LED\",\"name\":\"LED\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:LED\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"IPS LCD\",\"title\":\"IPS LCD\",\"name\":\"IPS LCD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:IPS%20LCD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMOLED\",\"title\":\"AMOLED\",\"name\":\"AMOLED\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:AMOLED\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"LCD\",\"title\":\"LCD\",\"name\":\"LCD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:LCD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"QLED\",\"title\":\"QLED\",\"name\":\"QLED\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:QLED\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"HDR\",\"title\":\"HDR\",\"name\":\"HDR\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:HDR\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TFT LCD\",\"title\":\"TFT LCD\",\"name\":\"TFT LCD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:TFT%20LCD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Retina Display\",\"title\":\"Retina Display\",\"name\":\"Retina Display\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:Retina%20Display\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Super LCD\",\"title\":\"Super LCD\",\"name\":\"Super LCD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:Super%20LCD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Digital\",\"title\":\"Digital\",\"name\":\"Digital\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:Digital\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Analog\",\"title\":\"Analog\",\"name\":\"Analog\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:Analog\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"No Display\",\"title\":\"No Display\",\"name\":\"No Display\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:No%20Display\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DLP\",\"title\":\"DLP\",\"name\":\"DLP\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:DLP\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"E-Ink\",\"title\":\"E-Ink\",\"name\":\"E-Ink\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:E-Ink\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"RAM\",\"name\":\"RAM\",\"expandOnLoad\":false,\"type\":\"ram_memory_general\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"3GB \\u0026 Under\",\"title\":\"3GB \\u0026 Under\",\"name\":\"3GB \\u0026 Under\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=ram_memory_general:3GB%20%26%20Under\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"4GB\",\"title\":\"4GB\",\"name\":\"4GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=ram_memory_general:4GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"6GB\",\"title\":\"6GB\",\"name\":\"6GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=ram_memory_general:6GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"8GB\",\"title\":\"8GB\",\"name\":\"8GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=ram_memory_general:8GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"12GB \\u0026 Up\",\"title\":\"12GB \\u0026 Up\",\"name\":\"12GB \\u0026 Up\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=ram_memory_general:12GB%20%26%20Up\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Availability\",\"name\":\"Availability\",\"expandOnLoad\":false,\"type\":\"exclude_oos\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":null,\"hasPopularValues\":null,\"popularValues\":null,\"values\":[{\"id\":\"Show available items only\",\"title\":\"Show available items only\",\"name\":\"Show available items only\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=exclude_oos:Show%20available%20items%20only\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Departments\",\"name\":\"Departments\",\"expandOnLoad\":null,\"type\":\"cat_id\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":null,\"hasPopularValues\":null,\"popularValues\":null,\"values\":[{\"id\":\"3944\",\"title\":\"Electronics\",\"name\":\"Electronics\",\"expandOnLoad\":true,\"description\":null,\"type\":\"cat_id\",\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=3944\\u0026stores=3081\\u0026grid=true\\u0026spelling=true\\u0026ps=40\",\"isSelected\":null,\"baseSeoURL\":\"/browse/electronics/3944\",\"catPathName\":\"/Electronics\",\"values\":null},{\"id\":\"6163033\",\"title\":\"Services\",\"name\":\"Services\",\"expandOnLoad\":true,\"description\":null,\"type\":\"cat_id\",\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=6163033\\u0026stores=3081\\u0026grid=true\\u0026spelling=true\\u0026ps=40\",\"isSelected\":null,\"baseSeoURL\":\"/browse/services/6163033\",\"catPathName\":\"/Services\",\"values\":null}]},{\"title\":\"Deals\",\"name\":\"Deals\",\"expandOnLoad\":false,\"type\":\"special_offers\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"Reduced Price\",\"title\":\"Reduced Price\",\"name\":\"Reduced Price\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=special_offers:Reduced%20Price\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Clearance\",\"title\":\"Clearance\",\"name\":\"Clearance\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=special_offers:Clearance\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Rollback\",\"title\":\"Rollback\",\"name\":\"Rollback\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=special_offers:Rollback\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Customer Rating\",\"name\":\"Customer Rating\",\"expandOnLoad\":false,\"type\":\"customer_rating\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"4 - 5 Stars\",\"title\":\"4 - 5 Stars\",\"name\":\"4 - 5 Stars\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=customer_rating:4%20-%205%20Stars\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"3 - 3.9 Stars\",\"title\":\"3 - 3.9 Stars\",\"name\":\"3 - 3.9 Stars\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=customer_rating:3%20-%203.9%20Stars\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Retailer\",\"name\":\"Retailer\",\"expandOnLoad\":false,\"type\":\"retailer_type\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"Walmart\",\"title\":\"Walmart\",\"name\":\"Walmart\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=retailer_type:Walmart\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Pro Sellers\",\"title\":\"Pro Sellers\",\"name\":\"Pro Sellers\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=retailer_type:Pro%20Sellers\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Marketplace Sellers fulfilled by Walmart\",\"title\":\"Marketplace Sellers fulfilled by Walmart\",\"name\":\"Marketplace Sellers fulfilled by Walmart\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=retailer_type:Marketplace%20Sellers%20fulfilled%20by%20Walmart\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Gifting\",\"name\":\"Gifting\",\"expandOnLoad\":false,\"type\":\"Gifting\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"Gift eligible\",\"title\":\"Gift eligible\",\"name\":\"Gift eligible\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=Gifting:Gift%20eligible\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]}],\"sortByColor\":\"#2e2f32\"}},\"sponsoredBrandZone\":{\"__typename\":\"TempoModule\",\"type\":\"BrandAmplifierAd\",\"name\":\"Search Brand Amplifier Ad\",\"version\":6,\"moduleId\":\"ce73cb9e-2029-4083-80c4-d6aced706cf0\",\"schedule\":{\"priority\":1},\"matchedTrigger\":{\"zone\":\"sponsoredBrandZone\"},\"configs\":{\"__typename\":\"TempoWM_GLASSWWWBrandAmplifierAdConfigs\",\"_rawConfigs\":{\"lazy\":null,\"moduleLocation\":\"top\"},\"moduleLocation\":\"top\",\"ad\":{\"status\":\"SUCCESS\",\"moduleType\":\"BrandAmplifierAd\",\"platform\":\"DESKTOP\",\"pageId\":\"laptop\",\"pageType\":\"SEARCH\",\"storeId\":\"3081\",\"stateCode\":\"CA\",\"zipCode\":\"95829\",\"pageContext\":{\"customerContext\":{\"customerId\":null,\"isActiveMember\":false,\"isPaidMember\":false,\"paymentMethodMetaData\":[],\"purseTags\":[]},\"searchNormalize\":{\"analytics_log\":{\"fe_log\":{\"dept\":\"/3944/1089430/3951/8835131/1737838\",\"g\":\"S\",\"ms\":0,\"msf\":2,\"mso\":2,\"msov\":0,\"pts\":\"Laptop Computers:0.998046875\",\"qa\":\"default\",\"s\":\"b\",\"sp_elig\":false,\"sps\":0.25884318,\"tkc\":1,\"tpt\":\"Laptop Computers\",\"trf\":\"ht\"},\"sot_log\":{},\"substitute_log\":{\"altph\":\"1\",\"elig\":\"Y\",\"trig\":\"Y\"}},\"normalized_query\":\"laptop\",\"original_query\":\"laptop\",\"productTypeSpecificityScore\":{\"quantile\":0.5559,\"score\":0.8485761},\"product_type\":[{\"name\":\"Laptop Computers\",\"score\":0.998046875,\"source\":\"classifier\"}],\"rewritten_query\":\"laptop\",\"specificity\":\"broad\",\"specificityScore\":{\"quantile\":0.1458,\"score\":0.25884318},\"top_query_cat_path\":\"/3944/1089430/3951/8835131/1737838\",\"top_query_cat_path_name\":\"/Electronics/Computers, Laptops and Tablets/Laptops/Laptops by Operating System/Windows OS Laptops\",\"verticalId\":\"ets\"}},\"moduleConfigs\":{\"lazy\":null,\"moduleLocation\":\"top\"},\"adsContext\":{\"brand\":\"\",\"categoryId\":\"3944_1089430_3951_8835131_1737838\",\"categoryName\":\"Electronics/Computers, Laptops and Tablets/Laptops/Laptops by Operating System/Windows OS Laptops\",\"dedupeList\":[\"\"],\"itemId\":\"\",\"locationContext\":{\"deliveryStore\":\"3081\",\"incatchment\":true,\"intent\":\"SHIPPING\",\"intentStrength\":\"IMPLICIT\",\"pickupStore\":\"3081\",\"stateCode\":\"CA\",\"storeFrontIds\":[{\"anchorStore\":true,\"deliveryStore\":true,\"deliveryWICAgencies\":[\"CA\"],\"pickupStore\":true,\"pickupWICAgencies\":[\"CA\"],\"stateOrProvinceCode\":\"CA\",\"storeId\":\"3081\"}],\"storeId\":\"3081\",\"zipCode\":\"95829\"},\"normKeyword\":\"laptop\",\"productName\":\"\",\"productTypeId\":\"\",\"verticalId\":\"ets\"},\"adRequestComposite\":{\"adsConfig\":\"{}\",\"categoryId\":\"\",\"facets\":\"\",\"isDebug\":false,\"isManualShelf\":false,\"keyword\":\"laptop\"},\"adContent\":{\"type\":\"SPONSORED_PRODUCTS\",\"dataV1\":{\"__typename\":\"SponsoredBrandsV1\",\"adUuid\":\"567fa63e-8e48-4a23-9bd5-1e563d6313ad\",\"adExpInfo\":null,\"moduleInfo\":\"{\\\"adExpId\\\":\\\"\\\",\\\"bucketId\\\":\\\"ace1_13644|ace2_default|ace3_default\\\",\\\"ghost\\\":[],\\\"brands\\\":[],\\\"dc\\\":\\\"eus2\\\",\\\"ed\\\":\\\"u7OzqIMVMhydxZeIph2cdg\\\"}\",\"brands\":[{\"logo\":{\"featuredHeadline\":\"Discover to latest from Windows\",\"featuredImage\":\"https://i5.walmartimages.com/dfw/f4368c8c-a7e5/k2-_f4fb10ee-1b1d-41e6-8ca9-f3a80522deca.v1.png\",\"featuredImageName\":\"Windows 11\",\"featuredUrl\":\"https://www.walmart.com/browse/windows-11/0?_refineresult=true\\u0026_be_shelf_id=8168629\\u0026search_sort=100\\u0026facet=shelf_id%3A8168629%7C%7Cretailer_type%3AWalmart\",\"logoClickTrackUrl\":\"https://www.walmart.com/sp/track?adUid=567fa63e-8e48-4a23-9bd5-1e563d6313ad\\u0026pgId=laptop\\u0026spQs=B-0ORuQ6BMVYu5ErviP0wtvLNeZ7zCQrsRq11qyo3B7qj4DCOTc4BRXtwMG4wY2qwca2aGn6I3vdZLCuF3Ka4mSJM_Nw7vFdGcq_Yd8rHL_rSaukVFCHigTX5chSdBRKEr61fpnu3xguuDezpqCR_tbZVQcA1cUiOLoKzOCRwmX4o0sq8PCQs5mxfTJ1ZwXLvQVqmXSsXMuO5BhMYWDGfhJYQopp8oJZLPpywhQUiKA\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sb-search-top\\u0026bkt=ace1_13644%7Cace2_default%7Cace3_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026addlInfo=%7EsbaItems%7C13566207291%7C13736423867%7C13509901545%7E\"},\"products\":[{\"usItemId\":\"13566207291\",\"offerId\":\"3BF7098CD3F235CCB77C273D728CC4D2\",\"badges\":{\"flags\":null,\"labels\":null,\"tags\":[],\"groups\":null,\"groupsV2\":[]},\"priceInfo\":{\"priceDisplayCodes\":{\"rollback\":null,\"reducedPrice\":null,\"eligibleForAssociateDiscount\":true,\"clearance\":null,\"strikethrough\":null,\"submapType\":null,\"priceDisplayCondition\":null,\"unitOfMeasure\":null,\"pricePerUnitUom\":null},\"currentPrice\":{\"price\":399,\"priceString\":\"$399.00\",\"priceDisplay\":\"$399.00\"},\"wasPrice\":null,\"listPrice\":null,\"priceRange\":null,\"unitPrice\":null,\"savingsAmount\":null,\"comparisonPrice\":null,\"subscriptionPrice\":null,\"subscriptionDiscountPrice\":null,\"wPlusEarlyAccessPrice\":null},\"preOrder\":{\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null},\"annualEventV2\":false,\"earlyAccessEvent\":false,\"isEarlyAccessItem\":false,\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"snapEligible\":false,\"showOptions\":false,\"sponsoredProduct\":{\"spQs\":\"EqUAAe56SwyHso94Uj7FEV2wH2jGVkQgIXSSlOq8yGK-e4xiXpJTM-magQE5DBHCxQBCXQ5xBon5e6yc1QUnASTgpKbS2GXZISXpA8yB62MAPSmgq94Vcnz4N3hoqxg1CKS6rrQ-mufZoxaRMS9QRBQmjr0xbf_D85st4e5BQiQRwLrNik0EN6YEN2MUGpESxHj4PqRhI5BiyHHtrMt-3zWnCrxMvenaM866OtIfCsk\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=567fa63e-8e48-4a23-9bd5-1e563d6313ad\\u0026pgId=laptop\\u0026spQs=EqUAAe56SwyHso94Uj7FEV2wH2jGVkQgIXSSlOq8yGK-e4xiXpJTM-magQE5DBHCxQBCXQ5xBon5e6yc1QUnASTgpKbS2GXZISXpA8yB62MAPSmgq94Vcnz4N3hoqxg1CKS6rrQ-mufZoxaRMS9QRBQmjr0xbf_D85st4e5BQiQRwLrNik0EN6YEN2MUGpESxHj4PqRhI5BiyHHtrMt-3zWnCrxMvenaM866OtIfCsk\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sb-search-top\\u0026bkt=ace1_13644%7Cace2_default%7Cace3_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\",\"spTags\":null},\"subscription\":{\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"canonicalUrl\":\"/ip/ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver/13566207291\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"numberOfReviews\":188,\"averageRating\":4.1,\"availabilityStatus\":\"IN_STOCK\",\"imageInfo\":{\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver_ec382747-3630-476f-b757-27850fd5268d.1cb2e27459fdb9f8d341c4c0b104c191.jpeg\",\"allImages\":null},\"name\":\"ASUS Vivobook 15.6” FHD Laptop with Intel i5-1334U, Intel UHD Graphics, 8GB RAM, 512GB SSD, Cool Silver\",\"fulfillmentBadge\":null,\"classType\":\"REGULAR\",\"type\":\"REGULAR\",\"showAtc\":true,\"brand\":\"ASUS\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null},{\"usItemId\":\"13736423867\",\"offerId\":\"412854AAB1FA32C5B30E4FCE999D2AB1\",\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"id\":\"L1300\",\"text\":\"Rollback\",\"key\":\"ROLLBACK\",\"query\":null,\"type\":\"ICON\",\"styleId\":\"PRIMARY_RED_BOLD\"}],\"labels\":null,\"tags\":[],\"groups\":null,\"groupsV2\":[{\"name\":\"flags\",\"flow\":\"HORIZONTAL\",\"pos\":\"ProdTileBadgeModule1\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1300\",\"memStyleId\":\"PRIMARY_ALIZARINRED_PL4\",\"fbMemStyleId\":null,\"content\":[{\"type\":\"ICON\",\"value\":null,\"styleId\":\"DOWNARROW_WHITE\",\"fbStyleId\":null,\"contDesc\":null,\"url\":null,\"actionId\":null},{\"type\":\"TEXT\",\"value\":\"Rollback\",\"styleId\":\"WHITE_BOLD\",\"fbStyleId\":null,\"contDesc\":null,\"url\":null,\"actionId\":null}]}]}]},\"priceInfo\":{\"priceDisplayCodes\":{\"rollback\":true,\"reducedPrice\":null,\"eligibleForAssociateDiscount\":true,\"clearance\":null,\"strikethrough\":true,\"submapType\":null,\"priceDisplayCondition\":null,\"unitOfMeasure\":null,\"pricePerUnitUom\":null},\"currentPrice\":{\"price\":719,\"priceString\":\"$719.00\",\"priceDisplay\":\"Now $719.00\"},\"wasPrice\":{\"price\":849.99,\"priceString\":\"$849.99\"},\"listPrice\":null,\"priceRange\":{\"minPrice\":719,\"maxPrice\":719,\"priceString\":\"From $719.00\"},\"unitPrice\":null,\"savingsAmount\":{\"amount\":130.99,\"priceString\":\"SAVE $130.99\"},\"comparisonPrice\":null,\"subscriptionPrice\":null,\"subscriptionDiscountPrice\":null,\"wPlusEarlyAccessPrice\":null},\"preOrder\":{\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null},\"annualEventV2\":false,\"earlyAccessEvent\":false,\"isEarlyAccessItem\":false,\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"snapEligible\":false,\"showOptions\":false,\"sponsoredProduct\":{\"spQs\":\"mUqqChUvHrigGvsjKHjXcJxxOMHMrqSzi0sgrNxa0Fi-e4xiXpJTM-magQE5DBHCxQBCXQ5xBon5e6yc1QUnASTgpKbS2GXZISXpA8yB62MAPSmgq94Vcnz4N3hoqxg1CKS6rrQ-mufZoxaRMS9QRBQmjr0xbf_D85st4e5BQiQRwLrNik0EN6YEN2MUGpESxHj4PqRhI5BiyHHtrMt-3zWnCrxMvenaM866OtIfCsk\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=567fa63e-8e48-4a23-9bd5-1e563d6313ad\\u0026pgId=laptop\\u0026spQs=mUqqChUvHrigGvsjKHjXcJxxOMHMrqSzi0sgrNxa0Fi-e4xiXpJTM-magQE5DBHCxQBCXQ5xBon5e6yc1QUnASTgpKbS2GXZISXpA8yB62MAPSmgq94Vcnz4N3hoqxg1CKS6rrQ-mufZoxaRMS9QRBQmjr0xbf_D85st4e5BQiQRwLrNik0EN6YEN2MUGpESxHj4PqRhI5BiyHHtrMt-3zWnCrxMvenaM866OtIfCsk\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sb-search-top\\u0026bkt=ace1_13644%7Cace2_default%7Cace3_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\",\"spTags\":null},\"subscription\":{\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"canonicalUrl\":\"/ip/ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i9-13900H-16GB-RAM-1TB-NVMe-SSD-Cool-Silver/13736423867\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"numberOfReviews\":110,\"averageRating\":4.6,\"availabilityStatus\":\"IN_STOCK\",\"imageInfo\":{\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i9-13900H-16GB-RAM-1TB-NVMe-SSD-Cool-Silver_95b455b3-cf70-4603-8ef0-529c8eb322fd.80b7caac4a8472d8fd43dbd3b5a4d5e4.jpeg\",\"allImages\":null},\"name\":\"ASUS Vivobook 16 Laptop, Intel® Core™ i9-13900H, 16GB, 1TB, Windows 11 Home, Cool Silver, F1605VA-WS96\",\"fulfillmentBadge\":null,\"classType\":\"REGULAR\",\"type\":\"REGULAR\",\"showAtc\":true,\"brand\":\"ASUS\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null},{\"usItemId\":\"13509901545\",\"offerId\":\"BDCD81AFF6C03DDA84EAFA2F550C3A62\",\"badges\":{\"flags\":null,\"labels\":null,\"tags\":[],\"groups\":null,\"groupsV2\":[]},\"priceInfo\":{\"priceDisplayCodes\":{\"rollback\":null,\"reducedPrice\":null,\"eligibleForAssociateDiscount\":true,\"clearance\":null,\"strikethrough\":null,\"submapType\":null,\"priceDisplayCondition\":null,\"unitOfMeasure\":null,\"pricePerUnitUom\":null},\"currentPrice\":{\"price\":979,\"priceString\":\"$979.00\",\"priceDisplay\":\"$979.00\"},\"wasPrice\":null,\"listPrice\":null,\"priceRange\":{\"minPrice\":979,\"maxPrice\":979,\"priceString\":\"From $979.00\"},\"unitPrice\":null,\"savingsAmount\":null,\"comparisonPrice\":null,\"subscriptionPrice\":null,\"subscriptionDiscountPrice\":null,\"wPlusEarlyAccessPrice\":null},\"preOrder\":{\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null},\"annualEventV2\":false,\"earlyAccessEvent\":false,\"isEarlyAccessItem\":false,\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"snapEligible\":false,\"showOptions\":false,\"sponsoredProduct\":{\"spQs\":\"q8cJDqNIMRrVbfEJl3gTSkt9Tln4CxCOOxRR9Cg8_vq-e4xiXpJTM-magQE5DBHCxQBCXQ5xBon5e6yc1QUnASTgpKbS2GXZISXpA8yB62MAPSmgq94Vcnz4N3hoqxg1CKS6rrQ-mufZoxaRMS9QRBQmjr0xbf_D85st4e5BQiQRwLrNik0EN6YEN2MUGpESxHj4PqRhI5BiyHHtrMt-3zWnCrxMvenaM866OtIfCsk\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=567fa63e-8e48-4a23-9bd5-1e563d6313ad\\u0026pgId=laptop\\u0026spQs=q8cJDqNIMRrVbfEJl3gTSkt9Tln4CxCOOxRR9Cg8_vq-e4xiXpJTM-magQE5DBHCxQBCXQ5xBon5e6yc1QUnASTgpKbS2GXZISXpA8yB62MAPSmgq94Vcnz4N3hoqxg1CKS6rrQ-mufZoxaRMS9QRBQmjr0xbf_D85st4e5BQiQRwLrNik0EN6YEN2MUGpESxHj4PqRhI5BiyHHtrMt-3zWnCrxMvenaM866OtIfCsk\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sb-search-top\\u0026bkt=ace1_13644%7Cace2_default%7Cace3_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\",\"spTags\":null},\"subscription\":{\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"canonicalUrl\":\"/ip/ASUS-Zenbook-14-14-WUXGA-OLED-Touch-Laptop-Copilot-PC-with-AMD-Ryzen-AI-7-350-AMD-Radeon-Graphics-32GB-RAM-1TB-NVMe-SSD-Jade-Black/13509901545\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"numberOfReviews\":251,\"averageRating\":4.2,\"availabilityStatus\":\"IN_STOCK\",\"imageInfo\":{\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/ASUS-Zenbook-14-14-WUXGA-OLED-Touch-Laptop-Copilot-PC-with-AMD-Ryzen-AI-7-350-AMD-Radeon-Graphics-32GB-RAM-1TB-NVMe-SSD-Jade-Black_85116be3-1e71-4878-8086-2c9cb82e07d7.c019b15a0da057e6b80e2da3f2b1d08a.jpeg\",\"allImages\":null},\"name\":\"ASUS Zenbook 14 inch OLED WUXGA Touch Windows Laptop AMD Ryzen AI7 32GB RAM 1TB SSD Jade Black\",\"fulfillmentBadge\":null,\"classType\":\"REGULAR\",\"type\":\"REGULAR\",\"showAtc\":true,\"brand\":\"ASUS\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null}],\"customInfo\":{\"images\":[]}}]}}}}},\"topZone5\":{\"__typename\":\"TempoModule\",\"type\":\"SearchFitment\",\"name\":\"Search Fitment Module\",\"version\":8,\"moduleId\":\"4e756e28-80b7-499d-aae4-b46bbc21b554\",\"schedule\":{\"priority\":1},\"matchedTrigger\":{\"zone\":\"topZone5\"},\"configs\":{\"__typename\":\"TempoWM_GLASSWWWSearchFitmentModuleConfigs\",\"fitments\":null}},\"topZone6\":{\"__typename\":\"TempoModule\",\"type\":\"SearchNonItem\",\"name\":\"Search Non Item Module\",\"version\":1,\"moduleId\":\"8a6208c9-6ee9-4d9e-96a3-3b2cad2d690e\",\"schedule\":{\"priority\":1},\"matchedTrigger\":{\"zone\":\"topZone6\"},\"configs\":{\"__typename\":\"TempoWM_GLASSWWWSearchNonItemConfigs\",\"title\":null,\"subTitle\":null,\"urlLinkText\":null,\"url\":null}},\"skylineZone\":{\"__typename\":\"TempoModule\",\"type\":\"SkylineDisplayAd\",\"name\":\"Skyline Display Ad\",\"version\":9,\"moduleId\":\"d82a07bd-471a-46ef-9926-63ae0bd7dbc2\",\"schedule\":{\"priority\":1},\"matchedTrigger\":{\"zone\":\"skylineZone\"},\"configs\":{\"__typename\":\"TempoWM_GLASSWWWSkylineDisplayAdConfigs\",\"_rawConfigs\":{\"clientCapabilities\":null,\"lazy\":\"400\",\"moduleLocation\":\"top\"},\"ad\":null}},\"bottomZone2\":{\"__typename\":\"TempoModule\",\"type\":\"SponsoredProductCarousel\",\"name\":\"Sponsored Product Carousel - rweb\",\"version\":5,\"moduleId\":\"304f501d-075d-4a59-89aa-6e23bf0fdb64\",\"schedule\":{\"priority\":1},\"matchedTrigger\":{\"zone\":\"bottomZone2\"},\"configs\":{\"__typename\":\"TempoWM_GLASSWWWSponsoredProductCarouselConfigs\",\"_rawConfigs\":{\"CarouselType\":\"default\",\"lazy\":\"1000\",\"moduleLocation\":\"bottom\",\"title\":\"Products you may also like\"}}},\"INVALID\":{\"__typename\":\"TempoModule\",\"type\":\"EnricherModule\",\"name\":\"Enricher Static Module\",\"version\":5,\"moduleId\":\"enricher-static-module-id\",\"schedule\":{\"priority\":0},\"matchedTrigger\":{\"zone\":\"INVALID\"},\"configs\":{\"__typename\":\"EnricherModuleConfigsV1\",\"zoneV1\":[{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"extraData\":{\"cov\":[],\"isBadSplitItem\":false,\"p13nError\":null,\"seeSimilarButtonText\":null,\"shopSimilarCoverage\":null,\"showSeeSimilarButton\":null,\"sizeReferer\":null},\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"f97639d6-f314-44fb-8a03-d73b1d334569\",\"zone\":\"pillsTopZone\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"d80c120b-3158-42ac-9525-9b22e6c4fbac\",\"zone\":\"pillsTopZone\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"2d12082a-7a86-42d2-ae8f-38e9fe37f014\",\"zone\":\"tileTakeOverProductZone\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"7d661833-d81c-44e8-b168-e24fbc33ec61\",\"zone\":\"bottomZone1\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"8d6b5e69-db36-453a-bd8a-fcf0de045072\",\"zone\":\"topZone3\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"ce73cb9e-2029-4083-80c4-d6aced706cf0\",\"zone\":\"sponsoredBrandZone\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"4e756e28-80b7-499d-aae4-b46bbc21b554\",\"zone\":\"topZone5\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"8a6208c9-6ee9-4d9e-96a3-3b2cad2d690e\",\"zone\":\"topZone6\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"d82a07bd-471a-46ef-9926-63ae0bd7dbc2\",\"zone\":\"skylineZone\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"6c1838e4-a302-47ba-87c1-6c5ab213c928\",\"zone\":\"sponsoredVideoAdZone\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"304f501d-075d-4a59-89aa-6e23bf0fdb64\",\"zone\":\"bottomZone2\"}]}}},\"layoutContainerData\":{\"content\":[{\"content\":{\"id\":\"top\",\"mapping\":[{\"options\":{\"refId\":\"skylineZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"sponsoredBrandZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"adPlaceholderModuleZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone1\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone2\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone3\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"pillsTopZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone4\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone5\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"nonProductTopZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone6\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone7\"},\"type\":\"ZONE\"}],\"type\":\"slot\"},\"flow\":\"vertical\",\"type\":\"container\"},{\"content\":{\"id\":\"stacks\",\"mapping\":[{\"options\":{\"refId\":\"benefitProgramBannerZone\"},\"type\":\"ZONE\"},{\"options\":{\"displayInTempo\":true,\"refId\":\"stacks1\",\"tempoLabel\":\"Stacks Zone\"},\"type\":\"EXTERNAL\"},{\"options\":{\"refId\":\"browsingHistoryZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"bottomZone1\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"bottomZone2\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"bottomZone3\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"bottomZone4\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"bottomZone5\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"tileTakeOverProductZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"tileDisplayAdZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"sponsoredVideoAdZone\"},\"type\":\"ZONE\"}],\"type\":\"slot\"},\"flow\":\"vertical\",\"type\":\"container\"}],\"flow\":\"vertical\",\"type\":\"container\"},\"searchResult\":{\"title\":\"Results for \\\"laptop\\\"\",\"aggregatedCount\":20656,\"searchRedirect\":{\"redirectUrl\":null},\"enableFFAwareSearchBasedOnImplicitIntent\":false,\"breadCrumb\":null,\"debug\":{\"statusCode\":\"OK\",\"responseTimeMillis\":1030,\"scsTimeMillis\":9,\"sisUrl\":\"http://preso-usgm-prod.wmt/v2/search?query=laptop\\u0026facet=\\u0026stores=3081\\u0026cat_id=\\u0026sort=best_match\\u0026page=1\\u0026min_price=\\u0026max_price=\\u0026spelling=true\\u0026ptss=\\u0026trsp=\\u0026isMoreOptionsTileEnabled=true\\u0026autoOptIn=false\\u0026multiStoreIds=\\u0026prg=desktop\\u0026storeSlotBooked=\\u0026stateOrProvinceCode=CA\\u0026ps=40\\u0026zipcode=95829\\u0026recall_set=\\u0026pageType=SearchPage\\u0026inCatchment=true\\u0026extended_zipcode=95829\\u0026addressId=\\u0026customerContext=%7B%22customerId%22%3Anull%2C%22isPaidMember%22%3Afalse%2C%22isActiveMember%22%3Afalse%2C%22purseTags%22%3A%5B%5D%2C%22paymentMethodMetaData%22%3A%5B%5D%7D\\u0026pickupStore=3081\\u0026deliveryStore=3081\\u0026subIntentSource=LS\\u0026isMsEnabled=true\\u0026allowedWICAgencies=CA\\u0026pickupWICAgencies=CA\\u0026deliveryWICAgencies=CA\\u0026isDefaulted=true\\u0026ffAwareSearchOptOut=false\\u0026isGenAiEnabled=true\\u0026nudge_context=\\u0026isModuleArrayReq=false\\u0026pickupStoreStateOrProvinceCode=CA\",\"adsUrl\":\"http://swag-wmt.prod.walmart.com/fs?storeSlotBooked=\\u0026prg=desktop\\u0026limit=40\\u0026query=laptop\\u0026cat_id=\\u0026facet=\\u0026page=1\\u0026ps=16\\u0026min_price=\\u0026max_price=\\u0026sort=best_match\\u0026spelling=true\\u0026recall_set=\\u0026ptss=\\u0026pageType=SearchPage\\u0026trsp=\\u0026ffAwareSearchOptOut=false\\u0026enableSlaBadgeV2=false\\u0026zipcode=95829\\u0026stores=3081\\u0026stateOrProvinceCode=CA\\u0026extended_zipcode=95829\\u0026addressId=\\u0026inCatchment=true\\u0026multiStoreIds=\\u0026autoOptIn=false\\u0026isMoreOptionsTileEnabled=true\\u0026isGenAiEnabled=true\\u0026rootDimension=\\u0026altQuery=\\u0026selectedFilter=\\u0026neuralSearchSeeAll=false\\u0026isModuleArrayReq=false\\u0026isLMPBrowsePage=false\\u0026isDefaulted=true\\u0026pickupStoreStateOrProvinceCode=CA\\u0026allowedWICAgencies=CA\\u0026pickupWICAgencies=CA\\u0026deliveryWICAgencies=CA\\u0026isMsEnabled=true\\u0026customerContext=%7B%22customerId%22%3Anull%2C%22isPaidMember%22%3Afalse%2C%22isActiveMember%22%3Afalse%2C%22purseTags%22%3A%5B%5D%2C%22paymentMethodMetaData%22%3A%5B%5D%7D\\u0026pickupStore=3081\\u0026deliveryStore=3081\\u0026subIntentSource=LS\\u0026nudge_context=\\u0026msOn=true\\u0026isMosaic=false\",\"genAIDebugInfo\":{\"searchAlgorithm\":\"\",\"isGenAiQueryEligible\":false,\"genAIUnavailableReason\":\"Q_CLASSIFIER_FAILED\",\"reformulatedQuery\":null},\"presoDebugInformation\":[{\"explainerToolsResponse\":null}]},\"itemStacks\":[{\"displayMessage\":null,\"meta\":{\"beacon\":\"{\\\"interpretations\\\":[{\\\"id\\\":\\\"0\\\",\\\"type\\\":\\\"primary\\\",\\\"sub_type\\\":\\\"exact\\\",\\\"query\\\":\\\"laptop\\\"}],\\\"exact\\\":true}\",\"suppressTitle\":false,\"isSponsored\":false,\"adsBeacon\":{\"adUuid\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\",\"moduleInfo\":\"{\\\"adUuid\\\":\\\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\\\",\\\"facet\\\":false,\\\"intent\\\":false,\\\"genAi\\\":false,\\\"affinity\\\":\\\"default\\\",\\\"sorting\\\":\\\"best_match\\\",\\\"bucketId\\\":\\\"ace1_default|ace2_default|ace3_default|bb_1_13745|bb_2_13747|coldstart_off|search_default\\\",\\\"engagementTraffic\\\":\\\"head_torso\\\",\\\"sessionTraffic\\\":\\\"head\\\",\\\"ghost\\\":[],\\\"brands\\\":[],\\\"ruleIds\\\":[],\\\"qc\\\":\\\"qenv\\\",\\\"rqs\\\":[],\\\"dc\\\":\\\"eus2\\\",\\\"ed\\\":\\\"u7OzqIMVMhydxZeIph2cdg\\\",\\\"sparky\\\":false,\\\"specificity\\\":\\\"broad\\\",\\\"models\\\":[{\\\"source\\\":\\\"dynamic-pcvr~main\\\",\\\"modelId\\\":\\\"sm-xgb-cvr-09122024-clara-v6\\\"},{\\\"source\\\":\\\"troas-pcvr~main\\\",\\\"modelId\\\":\\\"sm-xgb-cvr-20250625-troas-kate-v2\\\"},{\\\"source\\\":\\\"troas-pvpc~main\\\",\\\"modelId\\\":\\\"pvpc_direct_model_v9_direct_mleap\\\"}]}\",\"max_ads\":12,\"adSlots\":[]},\"spBeaconInfo\":null,\"query\":\"laptop\",\"isPartialResult\":false,\"stackId\":0,\"stackType\":\"DEFAULT\",\"stackName\":\"SBE_EMM_1\",\"title\":\"Results for \\\"laptop\\\"\",\"description\":null,\"subTitle\":null,\"titleKey\":\"resultsFor\",\"subType\":\"EXACT_MATCH\",\"queryUsedForSearchResults\":\"laptop\",\"layoutEnum\":\"GRID\",\"totalItemCount\":20656,\"totalItemCountDisplay\":\"(1000+)\",\"viewAllParams\":null,\"comparisonCart\":null,\"borderColor\":null,\"iconUrl\":null,\"initialCount\":0,\"fulfillmentIntent\":null},\"itemsV2\":null,\"content\":null,\"title\":\"Results for \\\"laptop\\\"\",\"titleKey\":\"resultsFor\",\"subTitle\":null,\"description\":\"\",\"queryUsedForSearchResults\":\"laptop\",\"totalItemCountDisplay\":\"(1000+)\",\"count\":20656,\"items\":[{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"4C500VY5GG5J\",\"usItemId\":\"15377670482\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"Restored Dell Latitude 3190 | 11.6\\\" Touchscreen Laptop PC | Intel Core Pentium Silver N5030 (1.1 GHz) | 8GB RAM | 128GB SSD | Windows 11 Pro\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"5006182B9DA1459CB5B64C3E88512027\",\"name\":\"Restored-Dell-Latitude-3190-11-6-Touchscreen-Laptop-PC-Intel-Core-Pentium-Silver-N5030-1-1-GHz-8GB-RAM-128GB-SSD-Windows-11-Pro-Refurbished_1b35f0df-acf8-43f3-a0bd-637fb3963ff3.141425f5c3b1f1e1c39d74faa1e81d3f.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/Restored-Dell-Latitude-3190-11-6-Touchscreen-Laptop-PC-Intel-Core-Pentium-Silver-N5030-1-1-GHz-8GB-RAM-128GB-SSD-Windows-11-Pro-Refurbished_1b35f0df-acf8-43f3-a0bd-637fb3963ff3.141425f5c3b1f1e1c39d74faa1e81d3f.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Restored-Dell-Latitude-3190-11-6-Touchscreen-Laptop-PC-Intel-Core-Pentium-Silver-N5030-1-1-GHz-8GB-RAM-128GB-SSD-Windows-11-Pro-Refurbished/15377670482?conditionGroupCode=2\\u0026classType=REGULAR\",\"conditionV2\":{\"code\":5,\"groupCode\":2},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"product_condition\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1095\",\"key\":\"PREOWNED\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":null,\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"REFURB_ICON_BLACK_TXT\",\"text\":\"Restored: Like New\",\"type\":\"ICON\",\"iconId\":null,\"templates\":null,\"badgeContent\":null}]},{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4,\"numberOfReviews\":59,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"DEA609FAA6F7448BAE542FB030870E59\",\"sellerName\":\"Discount Computer Depot\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"DFE8E9E563143803A7BBCA45725FC9F0\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-11T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$178.00\",\"linePriceDisplay\":\"$178.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":{\"spQs\":\"pG8_TBoSsQovjzaCp3UxSBS21I82TTZP-kzg05Vrf8eHKkgL0tN0s4EVcVl3scR49Z-m5luOM9_scNCRJB0rvgGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMkNc4Ueh8oGRaPEIYL9j1ML1bY8Iwwx40xB-F79oooFXsrcC02vQ_PKAOxB1c1GJEPym0mSHIxr7ZSJqZuhZfJuvIPKznhQcsltOMxFdAULvnhQS3cihoQMn_ZY_QJdKnlU9k8uTobp7ugtICFmhImQ\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\\u0026pgId=laptop\\u0026spQs=pG8_TBoSsQovjzaCp3UxSBS21I82TTZP-kzg05Vrf8eHKkgL0tN0s4EVcVl3scR49Z-m5luOM9_scNCRJB0rvgGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMkNc4Ueh8oGRaPEIYL9j1ML1bY8Iwwx40xB-F79oooFXsrcC02vQ_PKAOxB1c1GJEPym0mSHIxr7ZSJqZuhZfJuvIPKznhQcsltOMxFdAULvnhQS3cihoQMn_ZY_QJdKnlU9k8uTobp7ugtICFmhImQ\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026qc=qenv\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"11.6 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/Restored-Dell-Latitude-3190-11-6-Touchscreen-Laptop-PC-Intel-Core-Pentium-Silver-N5030-1-1-GHz-8GB-RAM-128GB-SSD-Windows-11-Pro-Refurbished_1b35f0df-acf8-43f3-a0bd-637fb3963ff3.141425f5c3b1f1e1c39d74faa1e81d3f.jpeg\",\"imageSize\":\"\",\"imageID\":\"5006182B9DA1459CB5B64C3E88512027\",\"imageName\":\"Restored-Dell-Latitude-3190-11-6-Touchscreen-Laptop-PC-Intel-Core-Pentium-Silver-N5030-1-1-GHz-8GB-RAM-128GB-SSD-Windows-11-Pro-Refurbished_1b35f0df-acf8-43f3-a0bd-637fb3963ff3.141425f5c3b1f1e1c39d74faa1e81d3f.jpeg\",\"isOutOfStock\":false,\"price\":178,\"rating\":{\"averageRating\":4,\"numberOfReviews\":59},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":0,\"itemStackPosition\":1,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"5170WJHEM8FP\",\"usItemId\":\"17586673039\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"HP 17.3\\\" Touchscreen Laptop, AMD Ryzen 5 7430U, 16GB RAM, 1TB SSD, Backlit, Fingerprint, Win11 Home\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"7F35852FC46448CC84896F060441831A\",\"name\":\"HP-17-3-Touchscreen-Laptop-AMD-Ryzen-5-7430U-16GB-RAM-1TB-SSD-Backlit-Fingerprint-Win11-Home_9a02ecbb-93a7-4bcb-b839-2a5bc20179fb.9735a65097246ebe2b3a987d26f33e27.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-17-3-Touchscreen-Laptop-AMD-Ryzen-5-7430U-16GB-RAM-1TB-SSD-Backlit-Fingerprint-Win11-Home_9a02ecbb-93a7-4bcb-b839-2a5bc20179fb.9735a65097246ebe2b3a987d26f33e27.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-17-3-Touchscreen-Laptop-AMD-Ryzen-5-7430U-16GB-RAM-1TB-SSD-Backlit-Fingerprint-Win11-Home/17586673039?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.3,\"numberOfReviews\":258,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"E3AC3CCD80E94D77A876ADE3B17D7B89\",\"sellerName\":\"PCOnline US\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"37846F5D9FE93D79BF88DA1197102CA5\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-09T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$849.00\",\"linePrice\":\"$699.00\",\"linePriceDisplay\":\"Now $699.00\",\"savings\":\"SAVE $150.00\",\"savingsAmt\":150,\"wasPrice\":\"$849.00\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":659,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $659.00\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":{\"spQs\":\"Ke62Has9zBtniHPRaY_xEOhvTaHiP3L2qgKA5k4iQdAd47de2VLKTImdAg1_rRHaZlCd6xH1am9cGft7q6Gb_QGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMokjgkw2jRrXxOgJr2CCetGFOi7ASK44rm3Fz9VNaG4vCv-AoMqR55ETSg0eG2bEH7VGtLGI917B2S7_AxFpDWepyMb0PVFVwDHlCBuFpbyNNVuJ6RdAoEFUFjdiRtuLg21MdHKCsizG5wPNwiCokFg\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\\u0026pgId=laptop\\u0026spQs=Ke62Has9zBtniHPRaY_xEOhvTaHiP3L2qgKA5k4iQdAd47de2VLKTImdAg1_rRHaZlCd6xH1am9cGft7q6Gb_QGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMokjgkw2jRrXxOgJr2CCetGFOi7ASK44rm3Fz9VNaG4vCv-AoMqR55ETSg0eG2bEH7VGtLGI917B2S7_AxFpDWepyMb0PVFVwDHlCBuFpbyNNVuJ6RdAoEFUFjdiRtuLg21MdHKCsizG5wPNwiCokFg\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026qc=qenv\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"17.3 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-17-3-Touchscreen-Laptop-AMD-Ryzen-5-7430U-16GB-RAM-1TB-SSD-Backlit-Fingerprint-Win11-Home_9a02ecbb-93a7-4bcb-b839-2a5bc20179fb.9735a65097246ebe2b3a987d26f33e27.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"7F35852FC46448CC84896F060441831A\",\"imageName\":\"HP-17-3-Touchscreen-Laptop-AMD-Ryzen-5-7430U-16GB-RAM-1TB-SSD-Backlit-Fingerprint-Win11-Home_9a02ecbb-93a7-4bcb-b839-2a5bc20179fb.9735a65097246ebe2b3a987d26f33e27.jpeg\",\"isOutOfStock\":false,\"price\":699,\"rating\":{\"averageRating\":4.3,\"numberOfReviews\":258},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":1,\"itemStackPosition\":1,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"69RR19L9AR1H\",\"usItemId\":\"5370677533\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"Restored Dell Latitude 5400 Laptop Intel Core I5 8365u Processor ( Windows 11 Pro ) 16GB RAM 256GB SSD M2, HDMI, Bluetooth, HD Webcam (Refurbished)\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":2,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"1E6728D6080C46E3ADE38A2712CDED29\",\"name\":\"Restored-Dell-Latitude-5400-Laptop-Intel-Core-I5-8365u-Processor-Windows-11-Pro-16GB-RAM-256GB-SSD-M2-HDMI-Bluetooth-HD-Webcam-Refurbished_8a2b9f07-39ae-42f5-9b9a-8d0729d3a9b6.45633042da05683903192b68253235b0.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/Restored-Dell-Latitude-5400-Laptop-Intel-Core-I5-8365u-Processor-Windows-11-Pro-16GB-RAM-256GB-SSD-M2-HDMI-Bluetooth-HD-Webcam-Refurbished_8a2b9f07-39ae-42f5-9b9a-8d0729d3a9b6.45633042da05683903192b68253235b0.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Restored-Dell-Latitude-5400-Laptop-Intel-Core-I5-8365u-Processor-Windows-11-Pro-16GB-RAM-256GB-SSD-M2-HDMI-Bluetooth-HD-Webcam-Refurbished/5370677533?conditionGroupCode=2\\u0026classType=REGULAR\\u0026athbdg=L1900\",\"conditionV2\":{\"code\":5,\"groupCode\":2},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:1230093:1230102:9951025\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"TODAYS_DEAL\",\"text\":\"Flash Deal\",\"type\":\"LABEL\",\"id\":\"L1900\",\"styleId\":\"TERTIARY_SPARK_BOLD\"}],\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"product_condition\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1095\",\"key\":\"PREOWNED\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":null,\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"REFURB_ICON_BLACK_TXT\",\"text\":\"Restored: Like New\",\"type\":\"ICON\",\"iconId\":null,\"templates\":null,\"badgeContent\":null}]},{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1900\",\"memStyleId\":\"TERTIARY_FLORALWHITE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Flash Deal\",\"styleId\":\"HOTBROWN_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":3.6,\"numberOfReviews\":24,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"DEA609FAA6F7448BAE542FB030870E59\",\"sellerName\":\"Discount Computer Depot\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"32FFFC1C3576385DBC37E6AE400AF378\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-11T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$218.00\",\"linePriceDisplay\":\"$218.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":{\"spQs\":\"_IheFzrQ2OeTEa1v0NKw1Q6SsN_EXjtHt3En-9s-UQECa02SYU3AlnJsI4lP1ltXOp94F8yj5swGTcSu0rDngD9vGti40ousa1-_x2euLOUmxE3ohQdH22KRu2dWZf3DLqEtpLutr-ctOXscPxKkDFR-f14V05Zv1bCUsdZ_7BlCnzDe9TeztO4FEB2A_RpnPym0mSHIxr7ZSJqZuhZfJuvIPKznhQcsltOMxFdAULvnhQS3cihoQMn_ZY_QJdKnlU9k8uTobp7ugtICFmhImQ\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\\u0026pgId=laptop\\u0026spQs=_IheFzrQ2OeTEa1v0NKw1Q6SsN_EXjtHt3En-9s-UQECa02SYU3AlnJsI4lP1ltXOp94F8yj5swGTcSu0rDngD9vGti40ousa1-_x2euLOUmxE3ohQdH22KRu2dWZf3DLqEtpLutr-ctOXscPxKkDFR-f14V05Zv1bCUsdZ_7BlCnzDe9TeztO4FEB2A_RpnPym0mSHIxr7ZSJqZuhZfJuvIPKznhQcsltOMxFdAULvnhQS3cihoQMn_ZY_QJdKnlU9k8uTobp7ugtICFmhImQ\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026qc=qenv\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"14\\\"\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"\",\"flag\":\"Flash Deal\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"TODAYS_DEAL\",\"text\":\"Flash Deal\",\"type\":\"LABEL\",\"id\":\"L1900\",\"styleId\":\"TERTIARY_SPARK_BOLD\"},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1900\",\"memStyleId\":\"TERTIARY_FLORALWHITE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Flash Deal\",\"styleId\":\"HOTBROWN_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/Restored-Dell-Latitude-5400-Laptop-Intel-Core-I5-8365u-Processor-Windows-11-Pro-16GB-RAM-256GB-SSD-M2-HDMI-Bluetooth-HD-Webcam-Refurbished_8a2b9f07-39ae-42f5-9b9a-8d0729d3a9b6.45633042da05683903192b68253235b0.jpeg\",\"imageSize\":\"\",\"imageID\":\"1E6728D6080C46E3ADE38A2712CDED29\",\"imageName\":\"Restored-Dell-Latitude-5400-Laptop-Intel-Core-I5-8365u-Processor-Windows-11-Pro-16GB-RAM-256GB-SSD-M2-HDMI-Bluetooth-HD-Webcam-Refurbished_8a2b9f07-39ae-42f5-9b9a-8d0729d3a9b6.45633042da05683903192b68253235b0.jpeg\",\"isOutOfStock\":false,\"price\":218,\"rating\":{\"averageRating\":3.6,\"numberOfReviews\":24},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":2,\"itemStackPosition\":1,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"1DOJRQ47NA3W\",\"usItemId\":\"19699754154\",\"isBadSplit\":false,\"catalogSellerId\":\"0\",\"fitmentLabel\":null,\"name\":\"Apple MacBook Neo 13-inch Apple A18 Pro chip with 6‑core CPU and 5‑core GPU, 8GB, 256GB SSD, Magic Keyboard - Citrus\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"Apple MacBook Neo 13-inch Apple A18 Pro chip with 6core CPU and 5core GPU, 8GB, 256GB SSD, Magic Keyboard - Citrus\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":0.0,\\\"l2sf\\\":0.0,\\\"src\\\":[\\\"SOLR\\\",\\\"VIP\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"1A90DC8D09B4410C85621BC16B1199DA\",\"name\":\"13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Citrus_1f65fe6c-8c9e-4f07-9fd8-5977a3929a56.ac87611a1a03138a8be9f0a0bdda5709.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Citrus_1f65fe6c-8c9e-4f07-9fd8-5977a3929a56.ac87611a1a03138a8be9f0a0bdda5709.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Citrus/19699754154?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8945805:6996875\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":null,\"numberOfReviews\":null,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":true,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"1973A9AB60A23C8EAB35CFA9AEA47417\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-11T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$599.00\",\"linePriceDisplay\":\"$599.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":599,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $599.00 – $699.00\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"actual_color\",\"type\":\"LOCATOR\",\"id\":null,\"displayName\":\"options\",\"isVariantTypeSwatch\":true,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/94e1eb22-1d9a-4ea3-8392-932bc581d9c8.50f5f1ea4b020356050677f513d4c12e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Blush\",\"rank\":10000000,\"displayName\":\"Blush\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/63d7346f-1e25-4ebc-a44b-7bccf67f98ac.82fe0657d8a6572396c61175352840d9.png?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"16ITX152FNYH\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Blush/19652372462?classType=undefined\",\"usItemId\":\"19652372462\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/1f65fe6c-8c9e-4f07-9fd8-5977a3929a56.ac87611a1a03138a8be9f0a0bdda5709.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Citrus\",\"rank\":10000001,\"displayName\":\"Citrus\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/c54e2dc3-6e31-41fa-accd-9cfd608f0f5a.ebed2c645d6430318c45e9fa51909013.png?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"3M8P5XT7TYSX\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Citrus/19699754154?classType=undefined\",\"usItemId\":\"19699754154\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/e9401695-df72-40f2-a8e1-52e55781e343.4f6d32560efe780059074aa6dbcdab39.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Indigo\",\"rank\":10000002,\"displayName\":\"Indigo\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/ab7078ca-c0b8-4b45-af8a-ae6caeb13b7f.a7b63cd0f79d55453355ba3e599906c8.png?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"56VMZUZ87C69\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Indigo/19717318352?classType=undefined\",\"usItemId\":\"19717318352\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/7ff6e343-a918-4888-abaa-059e4bac8f1f.e7241a659c28f2baf1bb6d27366f985b.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Silver\",\"rank\":10000003,\"displayName\":\"Silver\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/f42c3c0f-0d97-4f05-bdff-951ba019fd58.237d8ea23822278fdb328c52151b61c5.png?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"6KDMCYZLYB7O\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Silver/19664769612?classType=undefined\",\"usItemId\":\"19664769612\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"Apple MacBook Neo 13-inch Apple A18 Pro chip with 6core CPU and 5core GPU, 8GB, 256GB SSD, Magic Keyboard - Citrus\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Citrus_1f65fe6c-8c9e-4f07-9fd8-5977a3929a56.ac87611a1a03138a8be9f0a0bdda5709.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"1A90DC8D09B4410C85621BC16B1199DA\",\"imageName\":\"13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Citrus_1f65fe6c-8c9e-4f07-9fd8-5977a3929a56.ac87611a1a03138a8be9f0a0bdda5709.jpeg\",\"isOutOfStock\":false,\"price\":599,\"rating\":{\"averageRating\":0,\"numberOfReviews\":0},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"Blush\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/63d7346f-1e25-4ebc-a44b-7bccf67f98ac.82fe0657d8a6572396c61175352840d9.png?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/94e1eb22-1d9a-4ea3-8392-932bc581d9c8.50f5f1ea4b020356050677f513d4c12e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"16ITX152FNYH\",\"usItemId\":\"19652372462\",\"canonicalUrl\":\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Blush/19652372462?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Citrus\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/c54e2dc3-6e31-41fa-accd-9cfd608f0f5a.ebed2c645d6430318c45e9fa51909013.png?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/1f65fe6c-8c9e-4f07-9fd8-5977a3929a56.ac87611a1a03138a8be9f0a0bdda5709.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"3M8P5XT7TYSX\",\"usItemId\":\"19699754154\",\"canonicalUrl\":\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Citrus/19699754154?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Indigo\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/ab7078ca-c0b8-4b45-af8a-ae6caeb13b7f.a7b63cd0f79d55453355ba3e599906c8.png?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/e9401695-df72-40f2-a8e1-52e55781e343.4f6d32560efe780059074aa6dbcdab39.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"56VMZUZ87C69\",\"usItemId\":\"19717318352\",\"canonicalUrl\":\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Indigo/19717318352?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Silver\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/f42c3c0f-0d97-4f05-bdff-951ba019fd58.237d8ea23822278fdb328c52151b61c5.png?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/7ff6e343-a918-4888-abaa-059e4bac8f1f.e7241a659c28f2baf1bb6d27366f985b.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"6KDMCYZLYB7O\",\"usItemId\":\"19664769612\",\"canonicalUrl\":\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Silver/19664769612?classType=undefined\\u0026variantFieldId=actual_color\"}],\"isVariantTypeSwatch\":true,\"displayName\":\"options\",\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":3,\"itemStackPosition\":1,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"52DR8CWD5QRO\",\"usItemId\":\"13943258180\",\"isBadSplit\":false,\"catalogSellerId\":\"101392409\",\"fitmentLabel\":null,\"name\":\"HP Omnibook 5 16 inch Windows 11 Laptop AMD Ryzen 7 AI PC 16GB RAM 512GB SSD Glacier Silver\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":\"HP Omnibook 5 16 inch Windows 11 Laptop AMD Ryzen 7 AI PC 16GB RAM 512GB SSD Glacier Silver\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":15,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.968946,\\\"l2sf\\\":9.968946,\\\"l2se\\\":0.253454,\\\"l2sr\\\":0.941225,\\\"src\\\":[\\\"SOLR\\\",\\\"VIP\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"E8D46EE45C55485E95765F7F2CEAA5EE\",\"name\":\"HP-Omnibook-5-16-inch-Windows-Laptop-AMD-Ryzen-7-AI-PC-16GB-RAM-512GB-SSD-Glacier-Silver_36bc9dcd-4182-4cfb-a86b-05aed1ae3e64.32b35980d9afba50905479bc112df6f5.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-Omnibook-5-16-inch-Windows-Laptop-AMD-Ryzen-7-AI-PC-16GB-RAM-512GB-SSD-Glacier-Silver_36bc9dcd-4182-4cfb-a86b-05aed1ae3e64.32b35980d9afba50905479bc112df6f5.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-Omnibook-5-16-inch-Windows-Laptop-AMD-Ryzen-7-AI-PC-16GB-RAM-512GB-SSD-Glacier-Silver/13943258180?classType=REGULAR\\u0026athbdg=L1600\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"BESTSELLER\",\"text\":\"Best seller\",\"type\":\"LABEL\",\"id\":\"L1600\",\"styleId\":\"TERTIARY_BLUE_BOLD\"}],\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1600\",\"memStyleId\":\"TERTIARY_LAVENDER\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Best seller\",\"styleId\":\"HYPERBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4.2,\"numberOfReviews\":735,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"5010793ACC1A49FDB9764E3F20E09BD7\",\"sellerName\":\"deal catcher\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":[{\"serviceType\":\"SERVICES\",\"serviceTitle\":\"\",\"serviceSubTitle\":\"\",\"serviceProviders\":[],\"groups\":[{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"FDD1718B056836F5B7A2CCBFC497F89B\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"2855D6DD321237C8B75D085458BFD4AA\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"118BF9C4A858360B82FDBD974C86AE17\"}]}]}],\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"8D7E62183B693C5691931F3829ABBABB\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-10T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$549.00\",\"linePriceDisplay\":\"$549.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"HP Omnibook 5 16 inch Windows 11 Laptop AMD Ryzen 7 AI PC 16GB RAM 512GB SSD Glacier Silver\",\"flag\":\"Best seller\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"BESTSELLER\",\"text\":\"Best seller\",\"type\":\"LABEL\",\"id\":\"L1600\",\"styleId\":\"TERTIARY_BLUE_BOLD\"},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1600\",\"memStyleId\":\"TERTIARY_LAVENDER\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Best seller\",\"styleId\":\"HYPERBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-Omnibook-5-16-inch-Windows-Laptop-AMD-Ryzen-7-AI-PC-16GB-RAM-512GB-SSD-Glacier-Silver_36bc9dcd-4182-4cfb-a86b-05aed1ae3e64.32b35980d9afba50905479bc112df6f5.jpeg\",\"imageSize\":\"\",\"imageID\":\"E8D46EE45C55485E95765F7F2CEAA5EE\",\"imageName\":\"HP-Omnibook-5-16-inch-Windows-Laptop-AMD-Ryzen-7-AI-PC-16GB-RAM-512GB-SSD-Glacier-Silver_36bc9dcd-4182-4cfb-a86b-05aed1ae3e64.32b35980d9afba50905479bc112df6f5.jpeg\",\"isOutOfStock\":false,\"price\":549,\"rating\":{\"averageRating\":4.2,\"numberOfReviews\":735},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":4,\"itemStackPosition\":1,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"361GDI6DZQUH\",\"usItemId\":\"16884610221\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"Dell 16 Laptop DC16251 - 16-inch FHD+ Touchscreen, Intel Core 7-150U, 16GB RAM, 1TB SSD, Ice Blue\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":1,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"7C91F2E0FF964A4BAD20893BF022A641\",\"name\":\"Dell-16-Laptop-DC16251-16-inch-FHD-Touchscreen-Intel-Core-7-150U-16GB-RAM-1TB-SSD-Ice-Blue_f9904319-82be-4251-8d9f-4514b62deb86.7ff344787fa2c7461facd6f030f3d676.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/Dell-16-Laptop-DC16251-16-inch-FHD-Touchscreen-Intel-Core-7-150U-16GB-RAM-1TB-SSD-Ice-Blue_f9904319-82be-4251-8d9f-4514b62deb86.7ff344787fa2c7461facd6f030f3d676.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Dell-16-Laptop-DC16251-16-inch-FHD-Touchscreen-Intel-Core-7-150U-16GB-RAM-1TB-SSD-Ice-Blue/16884610221?classType=REGULAR\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"tomorrow\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4.6,\"numberOfReviews\":78,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"1A96921BF06D3D15A8F88A3144752813\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-06T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$699.99\",\"linePriceDisplay\":\"$699.99\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":{\"spQs\":\"z1O4TzP72tlMCiDQP_56huDdvuSFO6tKe1jABESvHX_QdGiNdt9GEItj8JEsvgrX-Ra21dgbPqsafsE4a0DOHwGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMsCa_UT3MB08xyY0sXwEN_T_aR0nv2d8gnv54NwN76C4-jlPs42Uv4GpWKlx43vI7vDl_2TfXYrg8NEZh4Jw20-PhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\\u0026pgId=laptop\\u0026spQs=z1O4TzP72tlMCiDQP_56huDdvuSFO6tKe1jABESvHX_QdGiNdt9GEItj8JEsvgrX-Ra21dgbPqsafsE4a0DOHwGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMsCa_UT3MB08xyY0sXwEN_T_aR0nv2d8gnv54NwN76C4-jlPs42Uv4GpWKlx43vI7vDl_2TfXYrg8NEZh4Jw20-PhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026qc=qenv\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"16 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"tomorrow\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/Dell-16-Laptop-DC16251-16-inch-FHD-Touchscreen-Intel-Core-7-150U-16GB-RAM-1TB-SSD-Ice-Blue_f9904319-82be-4251-8d9f-4514b62deb86.7ff344787fa2c7461facd6f030f3d676.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"7C91F2E0FF964A4BAD20893BF022A641\",\"imageName\":\"Dell-16-Laptop-DC16251-16-inch-FHD-Touchscreen-Intel-Core-7-150U-16GB-RAM-1TB-SSD-Ice-Blue_f9904319-82be-4251-8d9f-4514b62deb86.7ff344787fa2c7461facd6f030f3d676.jpeg\",\"isOutOfStock\":false,\"price\":699.99,\"rating\":{\"averageRating\":4.6,\"numberOfReviews\":78},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":5,\"itemStackPosition\":1,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"190069F0THYM\",\"usItemId\":\"17066350050\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"Exsurf 16\\\" Home Laptop, Windows 11 Pro Computer,AMD Ryzen 7430U , 16GB RAM 512GB SSD, Backlit Keyboard, Fingerprint Unlock\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"A1709429A9D84C24BB1BD3F2B15CDFED\",\"name\":\"Pryloxen-16-Home-Laptop-Windows-11-Pro-Computer-AMD-Ryzen-7430U-16GB-RAM-512GB-SSD-Backlit-Keyboard-Fingerprint-Unlock_68763b30-18c7-4911-912f-53825a97728c.c8016b7cc2eb17a20f86a2f37a4a4729.png\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/Pryloxen-16-Home-Laptop-Windows-11-Pro-Computer-AMD-Ryzen-7430U-16GB-RAM-512GB-SSD-Backlit-Keyboard-Fingerprint-Unlock_68763b30-18c7-4911-912f-53825a97728c.c8016b7cc2eb17a20f86a2f37a4a4729.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Pryloxen-16-Home-Laptop-Windows-11-Pro-Computer-AMD-Ryzen-7430U-16GB-RAM-512GB-SSD-Backlit-Keyboard-Fingerprint-Unlock/17066350050?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.5,\"numberOfReviews\":13,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F1096E1F88DA4699BBA475FA23C47DFF\",\"sellerName\":\"Exsurf  Laptop\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"E38247C8555D352CB8F9C104220252F9\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-09T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$369.38\",\"linePriceDisplay\":\"$369.38\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":{\"spQs\":\"BQ0a30aULMXnORu57d-8rNSmIfsvpq3Ra6loeIDFaSkpqijCgj3lqjMme7pnIb-ESMDu8-zSs_w7xKB6dxahJwGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMKmlpUIK4hjf06ZjP9hyMnybwTZZylJXNlvHu_8IYorg7aJOyZaG_vOQRvxGwuGtjazgczR5GoSTYenS7UBIqeePhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\\u0026pgId=laptop\\u0026spQs=BQ0a30aULMXnORu57d-8rNSmIfsvpq3Ra6loeIDFaSkpqijCgj3lqjMme7pnIb-ESMDu8-zSs_w7xKB6dxahJwGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMKmlpUIK4hjf06ZjP9hyMnybwTZZylJXNlvHu_8IYorg7aJOyZaG_vOQRvxGwuGtjazgczR5GoSTYenS7UBIqeePhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026qc=qenv\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"16 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/Pryloxen-16-Home-Laptop-Windows-11-Pro-Computer-AMD-Ryzen-7430U-16GB-RAM-512GB-SSD-Backlit-Keyboard-Fingerprint-Unlock_68763b30-18c7-4911-912f-53825a97728c.c8016b7cc2eb17a20f86a2f37a4a4729.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"A1709429A9D84C24BB1BD3F2B15CDFED\",\"imageName\":\"Pryloxen-16-Home-Laptop-Windows-11-Pro-Computer-AMD-Ryzen-7430U-16GB-RAM-512GB-SSD-Backlit-Keyboard-Fingerprint-Unlock_68763b30-18c7-4911-912f-53825a97728c.c8016b7cc2eb17a20f86a2f37a4a4729.png\",\"isOutOfStock\":false,\"price\":369.38,\"rating\":{\"averageRating\":4.5,\"numberOfReviews\":13},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":6,\"itemStackPosition\":1,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"28HY55BSXB4X\",\"usItemId\":\"8458658151\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"2026 Newest Laptop, 15.6-Inch FHD Display Laptop with Intel Quad Core-12th N150(Up to 3.4GHz), 8GB RAM 256GB ROM Business Laptop Computer, Fingerprint, Type C, Windows 11 Home, Pink\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"5C77C39549C74CDFB3DD51DD806E158E\",\"name\":\"2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind_68012c26-4831-43de-8762-fd9e119182a6.ad7210ba4fddcd7804c24e3a47a59f92.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind_68012c26-4831-43de-8762-fd9e119182a6.ad7210ba4fddcd7804c24e3a47a59f92.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind/8458658151?classType=REGULAR\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4.3,\"numberOfReviews\":353,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"650750EB201D42D3A35342AD61D08D9E\",\"sellerName\":\"Cleamol Co.,Ltd\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"5E0E5B6D98DF31E7ACD3770A12664EE6\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-13T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$699.99\",\"linePrice\":\"$349.99\",\"linePriceDisplay\":\"Now $349.99\",\"savings\":\"SAVE $350.00\",\"savingsAmt\":350,\"wasPrice\":\"$699.99\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":{\"spQs\":\"71j-ydoEywzmn3gCjMfmjH2iTjlNFvTHwFwQru_MfpX5rlhE1ul2CUX_K3aZBtW5htmwVKcRglrK_tOs0uyk7D9vGti40ousa1-_x2euLOUmxE3ohQdH22KRu2dWZf3DILbeD7m7yWW0P2thun1cgUbWihJwfW_1R7KDkRdLnNdRBXCfVBKw21nkbaqGObMc6_-nQSTpPepXcS-ILDFcgHF5uwVZ4G6xBE474abZmWJ8W7Ev4SnWHXqrTDgzVAyL0jEQuiAu3HVQQLPxTd_DwRd5MHVqGNqzIDZPIaa1N1o\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\\u0026pgId=laptop\\u0026spQs=71j-ydoEywzmn3gCjMfmjH2iTjlNFvTHwFwQru_MfpX5rlhE1ul2CUX_K3aZBtW5htmwVKcRglrK_tOs0uyk7D9vGti40ousa1-_x2euLOUmxE3ohQdH22KRu2dWZf3DILbeD7m7yWW0P2thun1cgUbWihJwfW_1R7KDkRdLnNdRBXCfVBKw21nkbaqGObMc6_-nQSTpPepXcS-ILDFcgHF5uwVZ4G6xBE474abZmWJ8W7Ev4SnWHXqrTDgzVAyL0jEQuiAu3HVQQLPxTd_DwRd5MHVqGNqzIDZPIaa1N1o\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026qc=qenv\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"15.6 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind_68012c26-4831-43de-8762-fd9e119182a6.ad7210ba4fddcd7804c24e3a47a59f92.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"5C77C39549C74CDFB3DD51DD806E158E\",\"imageName\":\"2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind_68012c26-4831-43de-8762-fd9e119182a6.ad7210ba4fddcd7804c24e3a47a59f92.jpeg\",\"isOutOfStock\":false,\"price\":349.99,\"rating\":{\"averageRating\":4.3,\"numberOfReviews\":353},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":7,\"itemStackPosition\":1,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"AdPlaceholder\",\"type\":\"SponsoredVideoAd\",\"moduleLocation\":\"middle\",\"lazy\":\"700\",\"adUuid\":\"bf01eed1-6383-4701-ac76-c1a70a0786a7\",\"hasVideo\":true,\"hasAd\":true,\"moduleInfo\":\"{\\\"adExpId\\\":\\\"\\\",\\\"bucketId\\\":\\\"ace1_13648|ace2_default|ace3_default\\\",\\\"ghost\\\":[],\\\"brands\\\":[],\\\"dc\\\":\\\"eus2\\\",\\\"ed\\\":\\\"u7OzqIMVMhydxZeIph2cdg\\\"}\",\"videoAdType\":null},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"4M0TARY74D8Y\",\"usItemId\":\"17939462069\",\"isBadSplit\":false,\"catalogSellerId\":\"0\",\"fitmentLabel\":null,\"name\":\"HP 15.6 inch FHD IPS Touch Windows Laptop AMD Ryzen 5 7520U 8GB 1TB SSD Natural Silver\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"\\u003cli\\u003eProcessor: Equipped with the AMD Ryzen 5 7520U Processor\\u003c/li\\u003e\\u003cli\\u003eScreen: 15.6\\\" Full HD (1920 x 1080) IPS touchscreen offers crisp detail, vibrant colors, and wide viewing angles for an immersive\\u003c/li\\u003e\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":7,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.915271,\\\"l2sf\\\":0.5940434499097317,\\\"l2se\\\":0.594043,\\\"l2sr\\\":0.079389,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":{\"otherConditionsMessage\":\"RESOLD\",\"minPriceDisplay\":\"$349.00\"},\"imageInfo\":{\"id\":null,\"name\":\"HP-15-6-inch-Windows-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-1TB-SSD-Silver_9c886845-9389-4646-809d-1e441ee7196a.d9365ec76e6150ea2a84e15e2da59b6f.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-15-6-inch-Windows-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-1TB-SSD-Silver_9c886845-9389-4646-809d-1e441ee7196a.d9365ec76e6150ea2a84e15e2da59b6f.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-15-6-inch-Windows-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-1TB-SSD-Silver/17939462069?classType=VARIANT\\u0026athbdg=L1102\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SOCIAL_PROOF_PURCHASES_FLAG\",\"text\":\"2K+ bought since yesterday\",\"type\":\"LABEL\",\"id\":\"L1102\",\"styleId\":\"SECONDARY_BLUE_BOLD\"}],\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"tomorrow\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1102\",\"memStyleId\":\"SECONDARY_EPICBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"2K+ bought since yesterday\",\"styleId\":\"EPICBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.6,\"numberOfReviews\":243,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"01E55FF533B13DF0A88945C980967F10\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-06T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$359.00\",\"linePriceDisplay\":\"$359.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":349,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $349.00\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\\u003cli\\u003eProcessor: Equipped with the AMD Ryzen 5 7520U Processor\\u003c/li\\u003e\\u003cli\\u003eScreen: 15.6\\\" Full HD (1920 x 1080) IPS touchscreen offers crisp detail, vibrant colors, and wide viewing angles for an immersive\\u003c/li\\u003e\",\"flag\":\"2K+ bought since yesterday\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"SOCIAL_PROOF_PURCHASES_FLAG\",\"text\":\"2K+ bought since yesterday\",\"type\":\"LABEL\",\"id\":\"L1102\",\"styleId\":\"SECONDARY_BLUE_BOLD\"},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1102\",\"memStyleId\":\"SECONDARY_EPICBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"2K+ bought since yesterday\",\"styleId\":\"EPICBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"tomorrow\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-15-6-inch-Windows-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-1TB-SSD-Silver_9c886845-9389-4646-809d-1e441ee7196a.d9365ec76e6150ea2a84e15e2da59b6f.jpeg\",\"imageSize\":\"\",\"imageID\":\"\",\"imageName\":\"HP-15-6-inch-Windows-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-1TB-SSD-Silver_9c886845-9389-4646-809d-1e441ee7196a.d9365ec76e6150ea2a84e15e2da59b6f.jpeg\",\"isOutOfStock\":false,\"price\":359,\"rating\":{\"averageRating\":4.6,\"numberOfReviews\":243},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"isAtfMarker\":true,\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":9,\"itemStackPosition\":1,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"TileTakeOverProductPlaceholder\",\"type\":\"TileTakeOverProduct\",\"tileTakeOverTile\":{\"span\":\"1\",\"title\":\"Amazing Mac. Surprising price.\",\"subtitle\":\"From $599. Fast delivery on 3/11. T\\u0026C apply.\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-8b59/k2-_d6074bbc-c368-4104-b194-d099a7e8c0ed.v1.jpg\",\"alt\":\"Hello, Neo tagline. Hand holding a MacBook Neo in citrus.\",\"assetId\":\"36bbd317-9670-4358-8ad4-f781f8d3c771\",\"assetName\":\"8425606-202-ETS-AppleMacbookM2Preorder-REG-ALL-SingleTTO-Null.jpg\"},\"logoImage\":null,\"backgroundColor\":null,\"titleTextColor\":null,\"subtitleTextColor\":null,\"tileCta\":[{\"ctaLink\":{\"clickThrough\":{\"value\":\"/ip/13-inch-MacBook-Neo-Apple-A18-Pro-chip-with-6-core-CPU-and-5-core-GPU-8GB-256GB-SSD-Silver/19664769612?classType=VARIANT\\u0026from=/search\"},\"linkText\":\"Preorder now\",\"title\":\"Preorder now\"},\"ctaType\":\"button\",\"ctaTextColor\":null}],\"adsEnabled\":\"False\",\"adCardLocation\":null,\"enableLazyLoad\":null}},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"47HGNKQ80V1H\",\"usItemId\":\"17963105552\",\"isBadSplit\":false,\"catalogSellerId\":\"0\",\"fitmentLabel\":null,\"name\":\"HP 14 inch HD Windows Laptop AMD Athlon 7120 4GB RAM 128GB SSD Moonlight Blue\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":\"HP 14\\\" Athlon 4/128 Blue\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":17,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":11.183852,\\\"l2sf\\\":11.183852,\\\"l2se\\\":0.652521,\\\"l2sr\\\":0.108753,\\\"src\\\":[\\\"SOLR\\\",\\\"VIP\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"A7C741DA64964D4AA55698DD7C793CB6\",\"name\":\"DISPLAY-HP-15-R5-8-1-Silver_81ff506b-6bc4-4c8a-868f-35b97073ad4e.8c278fb9da8199ba946d223ac9580825.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/DISPLAY-HP-15-R5-8-1-Silver_81ff506b-6bc4-4c8a-868f-35b97073ad4e.8c278fb9da8199ba946d223ac9580825.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/DISPLAY-HP-15-R5-8-1-Silver/17963105552?classType=REGULAR\\u0026athbdg=L1200\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:6163033:8301259:9966361\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"CUSTOMER_PICK\",\"text\":\"Overall pick\",\"type\":\"LABEL\",\"id\":\"L1200\",\"styleId\":\"PRIMARY_BLUE_BOLD\"}],\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"tomorrow\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1200\",\"memStyleId\":\"PRIMARY_PRUSSIANBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Overall pick\",\"styleId\":\"WHITE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4.2,\"numberOfReviews\":3478,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"C31A386AE2583A328AF61024773662D0\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-06T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$229.00\",\"linePrice\":\"$149.00\",\"linePriceDisplay\":\"Now $149.00\",\"savings\":\"SAVE $80.00\",\"savingsAmt\":80,\"wasPrice\":\"$229.00\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"HP 14\\\" Athlon 4/128 Blue\",\"flag\":\"Overall pick\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"CUSTOMER_PICK\",\"text\":\"Overall pick\",\"type\":\"LABEL\",\"id\":\"L1200\",\"styleId\":\"PRIMARY_BLUE_BOLD\"},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1200\",\"memStyleId\":\"PRIMARY_PRUSSIANBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Overall pick\",\"styleId\":\"WHITE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"tomorrow\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/DISPLAY-HP-15-R5-8-1-Silver_81ff506b-6bc4-4c8a-868f-35b97073ad4e.8c278fb9da8199ba946d223ac9580825.jpeg\",\"imageSize\":\"\",\"imageID\":\"A7C741DA64964D4AA55698DD7C793CB6\",\"imageName\":\"DISPLAY-HP-15-R5-8-1-Silver_81ff506b-6bc4-4c8a-868f-35b97073ad4e.8c278fb9da8199ba946d223ac9580825.jpeg\",\"isOutOfStock\":false,\"price\":149,\"rating\":{\"averageRating\":4.2,\"numberOfReviews\":3478},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":10,\"itemStackPosition\":1,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"5555GZML7Y6S\",\"usItemId\":\"18280852708\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"HYYUO 15.6\\\" Windows 11 Laptop, 16GB RAM 512GB SSD, Intel Pentium Gold 6500Y with 2 Cores up to 3.4GHz, 1920x1080 FHD Display, WiFi5 BT5.0, PC Computer for Business, Study, Office\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"146F6614E3894F4FAED8AD7DA0B0BFD7\",\"name\":\"HYYUO-15-6-Windows-11-Laptop-16GB-RAM-512GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-1920x1080-FHD-Display-WiFi5-BT5-0-PC-Computer-Business-Study_a3102ba2-b58a-4f21-9e43-32ac41524d45.d573b1d5047f4eeb313c6ecd1f96c2e2.png\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HYYUO-15-6-Windows-11-Laptop-16GB-RAM-512GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-1920x1080-FHD-Display-WiFi5-BT5-0-PC-Computer-Business-Study_a3102ba2-b58a-4f21-9e43-32ac41524d45.d573b1d5047f4eeb313c6ecd1f96c2e2.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HYYUO-15-6-Windows-11-Laptop-16GB-RAM-512GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-1920x1080-FHD-Display-WiFi5-BT5-0-PC-Computer-Business-Study/18280852708?classType=REGULAR\\u0026athbdg=L1700\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"REDUCED_PRICE\",\"text\":\"Reduced price\",\"type\":\"LABEL\",\"id\":\"L1700\",\"styleId\":null}],\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1700\",\"memStyleId\":\"SECONDARY_HYPERBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Reduced price\",\"styleId\":\"HYPERBLUE_REGULAR\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":3.6,\"numberOfReviews\":27,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"4DCDAB15645B43FF9CEDCB62041A4E7F\",\"sellerName\":\"HYYUO\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"383E51420BBC3F35942B56B18B936B1B\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-09T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$569.00\",\"linePrice\":\"$269.99\",\"linePriceDisplay\":\"Now $269.99\",\"savings\":\"SAVE $299.01\",\"savingsAmt\":299.01,\"wasPrice\":\"$569.00\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":{\"spQs\":\"cdSpjqB9BlRqo-eLd91eYhoIPNmKeDdDjwlTN54uhdGkEAIVGPf3-6V6aTJ7TJjvjNk3sypI8LBOJ3lm1wy9Lj9vGti40ousa1-_x2euLOUmxE3ohQdH22KRu2dWZf3D3F0GiCLnmSkr16kusXPQel7jKrcvMLsbhCc1aPRqvjNhAxZ0griGqHLYM2jcjH6D6yL4hwJeFzfbLoYhcPxRgG9L9ZMsp67bUbOYSIO2QV8VhNYW8YRRxPJuy0yrijQxXYYCjM656y_inA2jBouMCjpYWCu3O7wF62cHVmX9zos\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\\u0026pgId=laptop\\u0026spQs=cdSpjqB9BlRqo-eLd91eYhoIPNmKeDdDjwlTN54uhdGkEAIVGPf3-6V6aTJ7TJjvjNk3sypI8LBOJ3lm1wy9Lj9vGti40ousa1-_x2euLOUmxE3ohQdH22KRu2dWZf3D3F0GiCLnmSkr16kusXPQel7jKrcvMLsbhCc1aPRqvjNhAxZ0griGqHLYM2jcjH6D6yL4hwJeFzfbLoYhcPxRgG9L9ZMsp67bUbOYSIO2QV8VhNYW8YRRxPJuy0yrijQxXYYCjM656y_inA2jBouMCjpYWCu3O7wF62cHVmX9zos\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026qc=qenv\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"15.6 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"\",\"flag\":\"Reduced price\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"REDUCED_PRICE\",\"text\":\"Reduced price\",\"type\":\"LABEL\",\"id\":\"L1700\",\"styleId\":null},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1700\",\"memStyleId\":\"SECONDARY_HYPERBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Reduced price\",\"styleId\":\"HYPERBLUE_REGULAR\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HYYUO-15-6-Windows-11-Laptop-16GB-RAM-512GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-1920x1080-FHD-Display-WiFi5-BT5-0-PC-Computer-Business-Study_a3102ba2-b58a-4f21-9e43-32ac41524d45.d573b1d5047f4eeb313c6ecd1f96c2e2.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"146F6614E3894F4FAED8AD7DA0B0BFD7\",\"imageName\":\"HYYUO-15-6-Windows-11-Laptop-16GB-RAM-512GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-1920x1080-FHD-Display-WiFi5-BT5-0-PC-Computer-Business-Study_a3102ba2-b58a-4f21-9e43-32ac41524d45.d573b1d5047f4eeb313c6ecd1f96c2e2.png\",\"isOutOfStock\":false,\"price\":269.99,\"rating\":{\"averageRating\":3.6,\"numberOfReviews\":27},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":11,\"itemStackPosition\":1,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"6IGUA8ZSSRZ4\",\"usItemId\":\"9929511078\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"Exsurf 15.6\\\" Windows 11 Pro Laptop, Intel 3050E CPU, 32GB RAM 1TB SSD,Type-C Port, Pink Home Computer\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"775D4A2DA9574C3DBBB9CC21E4433C06\",\"name\":\"Pryloxen-T-Series-T156A-Laptop-15-6-FHD-Display-Intel-N95-32GBRAM-1024GB-PCIe-SSD-Webcam-SD-Card-Reader-HDMI-Wi-Fi-6-Windows-11-Pro-Grey_548a7b91-6074-4de6-97c9-66f86d5dbe8b.70326d9f57e52159159fb6f1ee8f99b7.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/Pryloxen-T-Series-T156A-Laptop-15-6-FHD-Display-Intel-N95-32GBRAM-1024GB-PCIe-SSD-Webcam-SD-Card-Reader-HDMI-Wi-Fi-6-Windows-11-Pro-Grey_548a7b91-6074-4de6-97c9-66f86d5dbe8b.70326d9f57e52159159fb6f1ee8f99b7.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Pryloxen-T-Series-T156A-Laptop-15-6-FHD-Display-Intel-N95-32GBRAM-1024GB-PCIe-SSD-Webcam-SD-Card-Reader-HDMI-Wi-Fi-6-Windows-11-Pro-Grey/9929511078?classType=VARIANT\\u0026athbdg=L1700\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"REDUCED_PRICE\",\"text\":\"Reduced price\",\"type\":\"LABEL\",\"id\":\"L1700\",\"styleId\":null}],\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1700\",\"memStyleId\":\"SECONDARY_HYPERBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Reduced price\",\"styleId\":\"HYPERBLUE_REGULAR\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.2,\"numberOfReviews\":28,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F1096E1F88DA4699BBA475FA23C47DFF\",\"sellerName\":\"Exsurf  Laptop\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"863E28D7C165334894C9CC9AF8CF7607\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-10T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$599.99\",\"linePrice\":\"$399.99\",\"linePriceDisplay\":\"Now $399.99\",\"savings\":\"SAVE $200.00\",\"savingsAmt\":200,\"wasPrice\":\"$599.99\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":379.99,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $379.99\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":{\"spQs\":\"E9t710uDOrbinOI_OyiszJrQ47honJemYLWluNXZJSOy4YpFbuZ6Y1dMB-6FJouDSk77PX6KOaXS1BjnOoJeYT9vGti40ousa1-_x2euLOUmxE3ohQdH22KRu2dWZf3D3CHq70AjOi_7ZN-Jq6evUqR6y2qP1aLmESm-Me-dRG4oyMR5ZWBIajNUbcfvqSNFfTNsJaLFQBnoooXBRK-72-vIPKznhQcsltOMxFdAULvnhQS3cihoQMn_ZY_QJdKnlU9k8uTobp7ugtICFmhImQ\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\\u0026pgId=laptop\\u0026spQs=E9t710uDOrbinOI_OyiszJrQ47honJemYLWluNXZJSOy4YpFbuZ6Y1dMB-6FJouDSk77PX6KOaXS1BjnOoJeYT9vGti40ousa1-_x2euLOUmxE3ohQdH22KRu2dWZf3D3CHq70AjOi_7ZN-Jq6evUqR6y2qP1aLmESm-Me-dRG4oyMR5ZWBIajNUbcfvqSNFfTNsJaLFQBnoooXBRK-72-vIPKznhQcsltOMxFdAULvnhQS3cihoQMn_ZY_QJdKnlU9k8uTobp7ugtICFmhImQ\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026qc=qenv\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"15.6 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\",\"flag\":\"Reduced price\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"REDUCED_PRICE\",\"text\":\"Reduced price\",\"type\":\"LABEL\",\"id\":\"L1700\",\"styleId\":null},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1700\",\"memStyleId\":\"SECONDARY_HYPERBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Reduced price\",\"styleId\":\"HYPERBLUE_REGULAR\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/Pryloxen-T-Series-T156A-Laptop-15-6-FHD-Display-Intel-N95-32GBRAM-1024GB-PCIe-SSD-Webcam-SD-Card-Reader-HDMI-Wi-Fi-6-Windows-11-Pro-Grey_548a7b91-6074-4de6-97c9-66f86d5dbe8b.70326d9f57e52159159fb6f1ee8f99b7.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"775D4A2DA9574C3DBBB9CC21E4433C06\",\"imageName\":\"Pryloxen-T-Series-T156A-Laptop-15-6-FHD-Display-Intel-N95-32GBRAM-1024GB-PCIe-SSD-Webcam-SD-Card-Reader-HDMI-Wi-Fi-6-Windows-11-Pro-Grey_548a7b91-6074-4de6-97c9-66f86d5dbe8b.70326d9f57e52159159fb6f1ee8f99b7.jpeg\",\"isOutOfStock\":false,\"price\":399.99,\"rating\":{\"averageRating\":4.2,\"numberOfReviews\":28},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":12,\"itemStackPosition\":1,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"5BESRSBMJD9Z\",\"usItemId\":\"13968860429\",\"isBadSplit\":false,\"catalogSellerId\":\"101359911\",\"fitmentLabel\":null,\"name\":\"HP Omnibook 5 16 inch Touch Windows 11 Laptop Intel Core Ultra 7 AI PC 16GB RAM 1TB SSD Silver\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":\"HP Omnibook 5 16 inch Touch Windows 11 Laptop Intel Core Ultra 7 AI PC 16GB RAM 1TB SSD Silver\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":13,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":10.066009,\\\"l2sf\\\":10.066009,\\\"l2se\\\":0.185582,\\\"l2sr\\\":0.942983,\\\"src\\\":[\\\"SOLR\\\",\\\"VIP\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"6D70A52DEF5D451381B55E8679897BF4\",\"name\":\"HP-OmniBook-5-16-inch-2K-Touch-Laptop-AI-PC-Intel-Core-Ultra-7-255U-16GB-RAM-1TB-SSD-Glacier-Silver_988a07c4-5068-4d6a-818e-54446bab1410.fc17869d5ff12e1f6baf782007676f21.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-OmniBook-5-16-inch-2K-Touch-Laptop-AI-PC-Intel-Core-Ultra-7-255U-16GB-RAM-1TB-SSD-Glacier-Silver_988a07c4-5068-4d6a-818e-54446bab1410.fc17869d5ff12e1f6baf782007676f21.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-OmniBook-5-16-inch-2K-Touch-Laptop-AI-PC-Intel-Core-Ultra-7-255U-16GB-RAM-1TB-SSD-Glacier-Silver/13968860429?classType=REGULAR\\u0026athbdg=L1600\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"BESTSELLER\",\"text\":\"Best seller\",\"type\":\"LABEL\",\"id\":\"L1600\",\"styleId\":\"TERTIARY_BLUE_BOLD\"}],\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"urgency\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1071\",\"key\":\"LOW_INVENTORY\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":null,\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"RED_BOLD\",\"text\":\"Low stock\",\"type\":\"LABEL\",\"iconId\":null,\"templates\":null,\"badgeContent\":null}]},{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1600\",\"memStyleId\":\"TERTIARY_LAVENDER\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Best seller\",\"styleId\":\"HYPERBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4.2,\"numberOfReviews\":1387,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"23D9FF5A99364A07A99235C4F7ECAFFA\",\"sellerName\":\"Holiday Gifts Express\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":[{\"serviceType\":\"SERVICES\",\"serviceTitle\":\"\",\"serviceSubTitle\":\"\",\"serviceProviders\":[],\"groups\":[{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"FDD1718B056836F5B7A2CCBFC497F89B\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"2855D6DD321237C8B75D085458BFD4AA\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"118BF9C4A858360B82FDBD974C86AE17\"}]}]}],\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"BD1A8D6586FE3BB0B4A200E133F0333A\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-09T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$629.00\",\"linePriceDisplay\":\"$629.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"HP Omnibook 5 16 inch Touch Windows 11 Laptop Intel Core Ultra 7 AI PC 16GB RAM 1TB SSD Silver\",\"flag\":\"Best seller\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"BESTSELLER\",\"text\":\"Best seller\",\"type\":\"LABEL\",\"id\":\"L1600\",\"styleId\":\"TERTIARY_BLUE_BOLD\"},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1600\",\"memStyleId\":\"TERTIARY_LAVENDER\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Best seller\",\"styleId\":\"HYPERBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-OmniBook-5-16-inch-2K-Touch-Laptop-AI-PC-Intel-Core-Ultra-7-255U-16GB-RAM-1TB-SSD-Glacier-Silver_988a07c4-5068-4d6a-818e-54446bab1410.fc17869d5ff12e1f6baf782007676f21.jpeg\",\"imageSize\":\"\",\"imageID\":\"6D70A52DEF5D451381B55E8679897BF4\",\"imageName\":\"HP-OmniBook-5-16-inch-2K-Touch-Laptop-AI-PC-Intel-Core-Ultra-7-255U-16GB-RAM-1TB-SSD-Glacier-Silver_988a07c4-5068-4d6a-818e-54446bab1410.fc17869d5ff12e1f6baf782007676f21.jpeg\",\"isOutOfStock\":false,\"price\":629,\"rating\":{\"averageRating\":4.2,\"numberOfReviews\":1387},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":13,\"itemStackPosition\":1,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"15ZJOEBZ8U38\",\"usItemId\":\"13982958746\",\"isBadSplit\":false,\"catalogSellerId\":\"0\",\"fitmentLabel\":null,\"name\":\"HP Stream 14 inch Win 11 Laptop Intel Processor N150 4GB 128GB eMMC Pink (12-mo. Microsoft 365 included)\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"HP Stream 14 inch Win 11 Laptop Intel Processor N150 4GB 128GB eMMC Pink (12-mo. Microsoft 365 included)\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":10.069667,\\\"l2sf\\\":10.069667,\\\"l2se\\\":0.791811,\\\"l2sr\\\":0.985091,\\\"src\\\":[\\\"SOLR\\\",\\\"VIP\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"8533863C9F794650A40A8B2B1B3BCF6D\",\"name\":\"HP-Stream-14-inch-Windows-Laptop-Intel-Processor-N150-4GB-128GB-eMMC-Pink-12-mo-Microsoft-365-included_82b98986-afdd-40c3-a2d5-b0355110c65d.8403d90bb2cc57ab6d11c1b93eab4f44.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-Stream-14-inch-Windows-Laptop-Intel-Processor-N150-4GB-128GB-eMMC-Pink-12-mo-Microsoft-365-included_82b98986-afdd-40c3-a2d5-b0355110c65d.8403d90bb2cc57ab6d11c1b93eab4f44.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-Stream-14-inch-Windows-Laptop-Intel-Processor-N150-4GB-128GB-eMMC-Pink-12-mo-Microsoft-365-included/13982958746?classType=VARIANT\\u0026athbdg=L1103\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SOCIAL_PROOF_ATC_FLAG\",\"text\":\"In 1K+ people's carts\",\"type\":\"LABEL\",\"id\":\"L1103\",\"styleId\":\"SECONDARY_BLUE_BOLD\"}],\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1052\",\"key\":\"FF_DELIVERY\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"1 hour\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE_THUNDERBOLT\",\"text\":\"Delivery as soon as \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null},{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":2,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"tomorrow\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null},{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1051\",\"key\":\"FF_PICKUP\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":3,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"tomorrow\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free pickup as soon as \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1103\",\"memStyleId\":\"SECONDARY_EPICBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"In 1K+ people's carts\",\"styleId\":\"EPICBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.2,\"numberOfReviews\":8909,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"6A97B3DC7F9538EB81B36B6AA3318AFC\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"3081\",\"deliveryDate\":null,\"fulfillmentMethods\":[\"UNSCHEDULED\",\"SCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null},{\"fulfillment\":\"PICKUP\",\"storeId\":\"3081\",\"deliveryDate\":\"2026-03-06T15:00:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\",\"SCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null},{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-06T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$229.00\",\"linePrice\":\"$179.00\",\"linePriceDisplay\":\"Now $179.00\",\"savings\":\"SAVE $50.00\",\"savingsAmt\":50,\"wasPrice\":\"$229.00\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":124,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $124.00\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"actual_color\",\"type\":\"LOCATOR\",\"id\":null,\"displayName\":\"options\",\"isVariantTypeSwatch\":true,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/82b98986-afdd-40c3-a2d5-b0355110c65d.8403d90bb2cc57ab6d11c1b93eab4f44.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Tranquil Pink\",\"rank\":10000000,\"displayName\":\"Tranquil Pink\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/82b98986-afdd-40c3-a2d5-b0355110c65d.8403d90bb2cc57ab6d11c1b93eab4f44.jpeg?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"2E9XCSBQW91T\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-Stream-14-inch-Windows-Laptop-Intel-Processor-N150-4GB-128GB-eMMC-Pink-12-mo-Microsoft-365-included/13982958746?classType=undefined\",\"usItemId\":\"13982958746\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/4f71c0f6-9424-4dc0-9a32-1fcc7aab0a24.4dcca0e9c456f32f74fb550ff255a43e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Waterfall Blue\",\"rank\":10000001,\"displayName\":\"Waterfall Blue\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/4f71c0f6-9424-4dc0-9a32-1fcc7aab0a24.4dcca0e9c456f32f74fb550ff255a43e.jpeg?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"53FPI5BYN608\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-Stream-14-inch-Windows-Laptop-Intel-Processor-N150-4GB-128GB-eMMC-Blue-12-mo-Microsoft-365-included/13989468860?classType=undefined\",\"usItemId\":\"13989468860\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_store_not_available\",\"fulfillmentType\":\"STORE\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"HP Stream 14 inch Win 11 Laptop Intel Processor N150 4GB 128GB eMMC Pink (12-mo. Microsoft 365 included)\",\"flag\":\"In 1K+ people's carts\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"SOCIAL_PROOF_ATC_FLAG\",\"text\":\"In 1K+ people's carts\",\"type\":\"LABEL\",\"id\":\"L1103\",\"styleId\":\"SECONDARY_BLUE_BOLD\"},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1103\",\"memStyleId\":\"SECONDARY_EPICBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"In 1K+ people's carts\",\"styleId\":\"EPICBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Delivery as soon as \",\"slaText\":\"1 hour\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"w-fit items-center br1 ph1 bg-blue-130 white ff-thunderbolt\",\"key\":\"FF_DELIVERY\",\"imageProps\":{\"alt\":\"\",\"src\":\"//i5.walmartimages.com/dfw/63fd9f59-a53c/14c2b8c6-d48a-4302-924f-7817f0c0737c/v1/thunderbolt.svg\",\"preload\":false,\"height\":10,\"width\":8}},{\"text\":\"Free shipping, arrives \",\"slaText\":\"tomorrow\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"},{\"text\":\"Free pickup as soon as \",\"slaText\":\"tomorrow\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_PICKUP\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-Stream-14-inch-Windows-Laptop-Intel-Processor-N150-4GB-128GB-eMMC-Pink-12-mo-Microsoft-365-included_82b98986-afdd-40c3-a2d5-b0355110c65d.8403d90bb2cc57ab6d11c1b93eab4f44.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"8533863C9F794650A40A8B2B1B3BCF6D\",\"imageName\":\"HP-Stream-14-inch-Windows-Laptop-Intel-Processor-N150-4GB-128GB-eMMC-Pink-12-mo-Microsoft-365-included_82b98986-afdd-40c3-a2d5-b0355110c65d.8403d90bb2cc57ab6d11c1b93eab4f44.jpeg\",\"isOutOfStock\":false,\"price\":179,\"rating\":{\"averageRating\":4.2,\"numberOfReviews\":8909},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"Tranquil Pink\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/82b98986-afdd-40c3-a2d5-b0355110c65d.8403d90bb2cc57ab6d11c1b93eab4f44.jpeg?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/82b98986-afdd-40c3-a2d5-b0355110c65d.8403d90bb2cc57ab6d11c1b93eab4f44.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"2E9XCSBQW91T\",\"usItemId\":\"13982958746\",\"canonicalUrl\":\"/ip/HP-Stream-14-inch-Windows-Laptop-Intel-Processor-N150-4GB-128GB-eMMC-Pink-12-mo-Microsoft-365-included/13982958746?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Waterfall Blue\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/4f71c0f6-9424-4dc0-9a32-1fcc7aab0a24.4dcca0e9c456f32f74fb550ff255a43e.jpeg?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/4f71c0f6-9424-4dc0-9a32-1fcc7aab0a24.4dcca0e9c456f32f74fb550ff255a43e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"53FPI5BYN608\",\"usItemId\":\"13989468860\",\"canonicalUrl\":\"/ip/HP-Stream-14-inch-Windows-Laptop-Intel-Processor-N150-4GB-128GB-eMMC-Blue-12-mo-Microsoft-365-included/13989468860?classType=undefined\\u0026variantFieldId=actual_color\"}],\"isVariantTypeSwatch\":true,\"displayName\":\"options\",\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":14,\"itemStackPosition\":1,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"TileTakeOverProductPlaceholder\",\"type\":\"TileTakeOverProduct\",\"tileTakeOverTile\":{\"span\":\"1\",\"title\":\"The latest Apple tech \\u0026 savings\",\"subtitle\":\"Upgrade your iPhone, AirPods \\u0026 more.\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-c48a/k2-_db8a8bde-933e-4e92-92b9-40b547c71e0e.v2.jpg\",\"alt\":\"Front and back of iPhone 17 Pro Max, AirPods positioned outside the case, two different types of Apple Watch and an AirTag.\",\"assetId\":\"2a28e965-5409-4ccc-9684-100238f04f5b\",\"assetName\":\"8140970-201-ETS-AppleSavings-REG-ALL-SingleTTO-Null.jpg\"},\"logoImage\":null,\"backgroundColor\":null,\"titleTextColor\":null,\"subtitleTextColor\":null,\"tileCta\":[{\"ctaLink\":{\"clickThrough\":{\"value\":\"/shop/savings/electronics/apple\"},\"linkText\":\"Shop now\",\"title\":\"Shop now\"},\"ctaType\":\"button\",\"ctaTextColor\":null}],\"adsEnabled\":\"False\",\"adCardLocation\":null,\"enableLazyLoad\":null}}],\"layoutEnum\":\"GRID\"},{\"displayMessage\":null,\"meta\":{\"beacon\":\"{\\\"interpretations\\\":[{\\\"type\\\":\\\"SECONDARY_STACK\\\",\\\"sub_type\\\":\\\"high_rated_stack\\\"}]}\",\"suppressTitle\":null,\"isSponsored\":true,\"adsBeacon\":{\"adUuid\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\",\"moduleInfo\":\"{\\\"adUuid\\\":\\\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\\\",\\\"facet\\\":false,\\\"intent\\\":false,\\\"genAi\\\":false,\\\"affinity\\\":\\\"default\\\",\\\"sorting\\\":\\\"best_match\\\",\\\"bucketId\\\":\\\"ace1_default|ace2_13457|ace3_default|bb_1_13745|bb_2_13747|coldstart_off|search_default\\\",\\\"engagementTraffic\\\":\\\"head_torso\\\",\\\"sessionTraffic\\\":\\\"head\\\",\\\"ghost\\\":[],\\\"brands\\\":[],\\\"ruleIds\\\":[],\\\"qc\\\":\\\"\\\",\\\"rqs\\\":[],\\\"dc\\\":\\\"eus2\\\",\\\"ed\\\":\\\"u7OzqIMVMhydxZeIph2cdg\\\",\\\"sparky\\\":false,\\\"specificity\\\":\\\"broad\\\",\\\"models\\\":[{\\\"source\\\":\\\"dynamic-pcvr~main\\\",\\\"modelId\\\":\\\"sm-xgb-cvr-09122024-clara-v6\\\"}]}\",\"max_ads\":10,\"adSlots\":[]},\"spBeaconInfo\":null,\"query\":\"laptop\",\"isPartialResult\":false,\"stackId\":-11,\"stackType\":\"DEFAULT\",\"stackName\":null,\"title\":\"4 stars and above\",\"description\":null,\"subTitle\":null,\"titleKey\":null,\"subType\":\"SECONDARY_STACK\",\"queryUsedForSearchResults\":null,\"layoutEnum\":\"CAROUSEL\",\"totalItemCount\":9,\"totalItemCountDisplay\":\"(9)\",\"viewAllParams\":null,\"comparisonCart\":null,\"borderColor\":null,\"iconUrl\":null,\"initialCount\":null,\"fulfillmentIntent\":null},\"itemsV2\":null,\"content\":null,\"title\":\"4 stars and above\",\"titleKey\":null,\"subTitle\":null,\"description\":\"\",\"queryUsedForSearchResults\":null,\"totalItemCountDisplay\":\"(9)\",\"count\":9,\"items\":[{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"2ZBMK0KKQI53\",\"usItemId\":\"16884460798\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"Dell 15 Laptop DC15250 - 15.6-inch FHD, Intel Core 3-100U, 8GB RAM, 512GB SSD, Carbon Black\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":5,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"77E52F6D53AE46B3A9862AE1B2385A76\",\"name\":\"Dell-15-Laptop-DC15250-15-6-inch-FHD-Intel-Core-3-100U-8GB-RAM-512GB-SSD-Carbon-Black_50f303bc-9f95-4411-acb2-6ead08488a49.8134694eeed940df2b974fd0bafc2a0d.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/Dell-15-Laptop-DC15250-15-6-inch-FHD-Intel-Core-3-100U-8GB-RAM-512GB-SSD-Carbon-Black_50f303bc-9f95-4411-acb2-6ead08488a49.8134694eeed940df2b974fd0bafc2a0d.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Dell-15-Laptop-DC15250-15-6-inch-FHD-Intel-Core-3-100U-8GB-RAM-512GB-SSD-Carbon-Black/16884460798?classType=REGULAR\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"urgency\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1071\",\"key\":\"LOW_INVENTORY\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":null,\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"RED_BOLD\",\"text\":\"Only 4 left\",\"type\":\"LABEL\",\"iconId\":null,\"templates\":null,\"badgeContent\":null}]},{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"tomorrow\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4.6,\"numberOfReviews\":2288,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"942B5AF364FF364EB62FE19F09277D3B\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-06T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$375.00\",\"linePriceDisplay\":\"$375.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":299,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $299.00\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":{\"spQs\":\"XAQQLld7qep7ZAPhNdUXc2mZ1qODjgZpQZ-9IFgOKf7QdGiNdt9GEItj8JEsvgrXYChQtVUm896FfLAYXG7zLV2AByxttXDpmxGwHkIHWQMhHo0J20WTKqyPFcu3mFcMGUfzVkME2Ha7fmkapbdAHrqsllApRInjCG6lj5Qo1iS77ALvUVA_1dvM8MuuZlH638FYl5I8jbE4D8RqhQF7mupyMb0PVFVwDHlCBuFpbyNNVuJ6RdAoEFUFjdiRtuLg21MdHKCsizG5wPNwiCokFg\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\\u0026pgId=laptop\\u0026spQs=XAQQLld7qep7ZAPhNdUXc2mZ1qODjgZpQZ-9IFgOKf7QdGiNdt9GEItj8JEsvgrXYChQtVUm896FfLAYXG7zLV2AByxttXDpmxGwHkIHWQMhHo0J20WTKqyPFcu3mFcMGUfzVkME2Ha7fmkapbdAHrqsllApRInjCG6lj5Qo1iS77ALvUVA_1dvM8MuuZlH638FYl5I8jbE4D8RqhQF7mupyMb0PVFVwDHlCBuFpbyNNVuJ6RdAoEFUFjdiRtuLg21MdHKCsizG5wPNwiCokFg\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"15.6 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"tomorrow\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/Dell-15-Laptop-DC15250-15-6-inch-FHD-Intel-Core-3-100U-8GB-RAM-512GB-SSD-Carbon-Black_50f303bc-9f95-4411-acb2-6ead08488a49.8134694eeed940df2b974fd0bafc2a0d.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"77E52F6D53AE46B3A9862AE1B2385A76\",\"imageName\":\"Dell-15-Laptop-DC15250-15-6-inch-FHD-Intel-Core-3-100U-8GB-RAM-512GB-SSD-Carbon-Black_50f303bc-9f95-4411-acb2-6ead08488a49.8134694eeed940df2b974fd0bafc2a0d.jpeg\",\"isOutOfStock\":false,\"price\":375,\"rating\":{\"averageRating\":4.6,\"numberOfReviews\":2288},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":0,\"itemStackPosition\":2,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"5D7CKN98YMN4\",\"usItemId\":\"13575961751\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"Restored Dell Latitude 3190 11.6\\\" Laptop Intel Core Celeron N4120 (1.1 GHz) 4GB RAM 64GB SSD Windows 10 Home\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"8A4D34F0746F47F8817F2FFFEEFC4BE5\",\"name\":\"Restored-Dell-Latitude-3190-11-6-Laptop-Intel-Core-Celeron-N4120-1-1-GHz-8GB-RAM-58GB-SSD-Windows-11-Home-Refurbished_64b69ebc-a7c2-4b0a-a4fe-199a5a9ee685.6d0ab77902ea238116caf0ec642ad335.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/Restored-Dell-Latitude-3190-11-6-Laptop-Intel-Core-Celeron-N4120-1-1-GHz-8GB-RAM-58GB-SSD-Windows-11-Home-Refurbished_64b69ebc-a7c2-4b0a-a4fe-199a5a9ee685.6d0ab77902ea238116caf0ec642ad335.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Restored-Dell-Latitude-3190-11-6-Laptop-Intel-Core-Celeron-N4120-1-1-GHz-8GB-RAM-58GB-SSD-Windows-11-Home-Refurbished/13575961751?conditionGroupCode=2\\u0026classType=REGULAR\",\"conditionV2\":{\"code\":7,\"groupCode\":2},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1230457\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"product_condition\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1095\",\"key\":\"PREOWNED\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":null,\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"REFURB_ICON_BLACK_TXT\",\"text\":\"Restored: Fair\",\"type\":\"ICON\",\"iconId\":null,\"templates\":null,\"badgeContent\":null}]},{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":3.5,\"numberOfReviews\":34,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"DEA609FAA6F7448BAE542FB030870E59\",\"sellerName\":\"Discount Computer Depot\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"8B46C528BC8432CE823416D1CB246AE2\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-11T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$158.00\",\"linePriceDisplay\":\"$158.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":{\"spQs\":\"7VVoFj6AUlDDiP4lrt6_FLZt8snn843lal3V8XlSGkCDvU_SMSfBPUQd5ndGDiIjeyGf3-1yxw0YdzeHBqYt212AByxttXDpmxGwHkIHWQMhHo0J20WTKqyPFcu3mFcMvpOAo_i5pXjfyAGYIlz9qPRZnhvzW5IutKz4p-9h9Z0C9kpZ3zIkTWNKpp5sdwahMcLiZ0hXyVg4_PPH9fFHKOPhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\\u0026pgId=laptop\\u0026spQs=7VVoFj6AUlDDiP4lrt6_FLZt8snn843lal3V8XlSGkCDvU_SMSfBPUQd5ndGDiIjeyGf3-1yxw0YdzeHBqYt212AByxttXDpmxGwHkIHWQMhHo0J20WTKqyPFcu3mFcMvpOAo_i5pXjfyAGYIlz9qPRZnhvzW5IutKz4p-9h9Z0C9kpZ3zIkTWNKpp5sdwahMcLiZ0hXyVg4_PPH9fFHKOPhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"11.6 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/Restored-Dell-Latitude-3190-11-6-Laptop-Intel-Core-Celeron-N4120-1-1-GHz-8GB-RAM-58GB-SSD-Windows-11-Home-Refurbished_64b69ebc-a7c2-4b0a-a4fe-199a5a9ee685.6d0ab77902ea238116caf0ec642ad335.jpeg\",\"imageSize\":\"\",\"imageID\":\"8A4D34F0746F47F8817F2FFFEEFC4BE5\",\"imageName\":\"Restored-Dell-Latitude-3190-11-6-Laptop-Intel-Core-Celeron-N4120-1-1-GHz-8GB-RAM-58GB-SSD-Windows-11-Home-Refurbished_64b69ebc-a7c2-4b0a-a4fe-199a5a9ee685.6d0ab77902ea238116caf0ec642ad335.jpeg\",\"isOutOfStock\":false,\"price\":158,\"rating\":{\"averageRating\":3.5,\"numberOfReviews\":34},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":1,\"itemStackPosition\":2,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"28HY55BSXB4X\",\"usItemId\":\"8458658151\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"2026 Newest Laptop, 15.6-Inch FHD Display Laptop with Intel Quad Core-12th N150(Up to 3.4GHz), 8GB RAM 256GB ROM Business Laptop Computer, Fingerprint, Type C, Windows 11 Home, Pink\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"5C77C39549C74CDFB3DD51DD806E158E\",\"name\":\"2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind_68012c26-4831-43de-8762-fd9e119182a6.ad7210ba4fddcd7804c24e3a47a59f92.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind_68012c26-4831-43de-8762-fd9e119182a6.ad7210ba4fddcd7804c24e3a47a59f92.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind/8458658151?classType=REGULAR\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4.3,\"numberOfReviews\":353,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"650750EB201D42D3A35342AD61D08D9E\",\"sellerName\":\"Cleamol Co.,Ltd\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"5E0E5B6D98DF31E7ACD3770A12664EE6\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-13T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$699.99\",\"linePrice\":\"$349.99\",\"linePriceDisplay\":\"Now $349.99\",\"savings\":\"SAVE $350.00\",\"savingsAmt\":350,\"wasPrice\":\"$699.99\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":{\"spQs\":\"71j-ydoEywzmn3gCjMfmjH2iTjlNFvTHwFwQru_MfpX5rlhE1ul2CUX_K3aZBtW5htmwVKcRglrK_tOs0uyk7NEfICQfIJMOOm3IQnnRW_omxE3ohQdH22KRu2dWZf3DILbeD7m7yWW0P2thun1cgSW6cCdpeULTHkxwFRn3XwxJ8x7vE_w5_3VFHmoYKha36_-nQSTpPepXcS-ILDFcgHF5uwVZ4G6xBE474abZmWJ8W7Ev4SnWHXqrTDgzVAyL0jEQuiAu3HVQQLPxTd_DwRd5MHVqGNqzIDZPIaa1N1o\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\\u0026pgId=laptop\\u0026spQs=71j-ydoEywzmn3gCjMfmjH2iTjlNFvTHwFwQru_MfpX5rlhE1ul2CUX_K3aZBtW5htmwVKcRglrK_tOs0uyk7NEfICQfIJMOOm3IQnnRW_omxE3ohQdH22KRu2dWZf3DILbeD7m7yWW0P2thun1cgSW6cCdpeULTHkxwFRn3XwxJ8x7vE_w5_3VFHmoYKha36_-nQSTpPepXcS-ILDFcgHF5uwVZ4G6xBE474abZmWJ8W7Ev4SnWHXqrTDgzVAyL0jEQuiAu3HVQQLPxTd_DwRd5MHVqGNqzIDZPIaa1N1o\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"15.6 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind_68012c26-4831-43de-8762-fd9e119182a6.ad7210ba4fddcd7804c24e3a47a59f92.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"5C77C39549C74CDFB3DD51DD806E158E\",\"imageName\":\"2024-Newest-Laptop-15-6-Inch-FHD-Display-Laptop-Intel-Quad-Core-12th-N100-Up-3-4GHz-16GB-RAM-1TB-ROM-Business-Laptop-Computer-Fingerprint-Type-C-Wind_68012c26-4831-43de-8762-fd9e119182a6.ad7210ba4fddcd7804c24e3a47a59f92.jpeg\",\"isOutOfStock\":false,\"price\":349.99,\"rating\":{\"averageRating\":4.3,\"numberOfReviews\":353},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":2,\"itemStackPosition\":2,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"4B38K4HL3UF7\",\"usItemId\":\"16572824328\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"HP 17.3\\\" HD+ Laptop for Student and Business, Intel Core i3-N305, 16GB RAM, 512GB SSD, AI Copilot Key, Windows 11 Pro, Wi-Fi 6, Numeric Keypad\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"3D64798A9C2F468EB0D9E8A84F229C1D\",\"name\":\"HP-17-3-HD-Laptop-Student-Business-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-AI-Copilot-Key-Office-Pro-Lifetime-Windows-11-Pro-Wi-Fi-6-Numeric-Keypad_360ff695-c2e3-4bdd-b7b5-dd063265ce9e.39e58d805bff97029c1a61f5d61c94d0.png\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-17-3-HD-Laptop-Student-Business-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-AI-Copilot-Key-Office-Pro-Lifetime-Windows-11-Pro-Wi-Fi-6-Numeric-Keypad_360ff695-c2e3-4bdd-b7b5-dd063265ce9e.39e58d805bff97029c1a61f5d61c94d0.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-17-3-HD-Laptop-Student-Business-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-AI-Copilot-Key-Office-Pro-Lifetime-Windows-11-Pro-Wi-Fi-6-Numeric-Keypad/16572824328?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":5,\"numberOfReviews\":154,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"974611902A77437FBB999DF11CCBF0BA\",\"sellerName\":\"82days Tech\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"EDCC61CCAAE635809C803347745F6F0C\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-11T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$699.59\",\"linePriceDisplay\":\"$699.59\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":599.99,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $599.99\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":{\"spQs\":\"9TsQPTkY-zpfNh6ZH02umcHLLMklsrUvypZ2gTqhx4-5zZe8WSZADniOc5bkizOyXk7wmu-tV0L0xvIuq6SmsF2AByxttXDpmxGwHkIHWQMhHo0J20WTKqyPFcu3mFcMyy4HY0dO7gz09aHWHrd59lqIAjzvaiGLNxYP6eAm1VZ0ltu0lrm_HKwymtVypGe_CRhK-GxI-l5AGxTjOKERu-pyMb0PVFVwDHlCBuFpbyNNVuJ6RdAoEFUFjdiRtuLg21MdHKCsizG5wPNwiCokFg\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\\u0026pgId=laptop\\u0026spQs=9TsQPTkY-zpfNh6ZH02umcHLLMklsrUvypZ2gTqhx4-5zZe8WSZADniOc5bkizOyXk7wmu-tV0L0xvIuq6SmsF2AByxttXDpmxGwHkIHWQMhHo0J20WTKqyPFcu3mFcMyy4HY0dO7gz09aHWHrd59lqIAjzvaiGLNxYP6eAm1VZ0ltu0lrm_HKwymtVypGe_CRhK-GxI-l5AGxTjOKERu-pyMb0PVFVwDHlCBuFpbyNNVuJ6RdAoEFUFjdiRtuLg21MdHKCsizG5wPNwiCokFg\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"17.3 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-17-3-HD-Laptop-Student-Business-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-AI-Copilot-Key-Office-Pro-Lifetime-Windows-11-Pro-Wi-Fi-6-Numeric-Keypad_360ff695-c2e3-4bdd-b7b5-dd063265ce9e.39e58d805bff97029c1a61f5d61c94d0.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"3D64798A9C2F468EB0D9E8A84F229C1D\",\"imageName\":\"HP-17-3-HD-Laptop-Student-Business-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-AI-Copilot-Key-Office-Pro-Lifetime-Windows-11-Pro-Wi-Fi-6-Numeric-Keypad_360ff695-c2e3-4bdd-b7b5-dd063265ce9e.39e58d805bff97029c1a61f5d61c94d0.png\",\"isOutOfStock\":false,\"price\":699.59,\"rating\":{\"averageRating\":5,\"numberOfReviews\":154},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":3,\"itemStackPosition\":2,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"15MQO6T5TZYR\",\"usItemId\":\"17589714890\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"HP 17 inch Laptop, Intel Core i3-N305, 16GB RAM, 512GB SSD, 17.3\\\" HD+ Display, Windows 11 Pro, Numeric Keyboard, Wi-Fi 6, Bluetooth, Webcam, For Students \\u0026 Business\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"000ADBAA2C784F7EA9CDBCF8AD299AAF\",\"name\":\"HP-17-inch-Laptop-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-17-3-HD-Display-Windows-11-Pro-Numeric-Keyboard-Wi-Fi-6-Bluetooth-Webcam-Students-Business_dab52335-1e89-4bd6-99f8-853fcf3bfa54.60531944807ca1837af52534bc2d9b9e.png\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-17-inch-Laptop-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-17-3-HD-Display-Windows-11-Pro-Numeric-Keyboard-Wi-Fi-6-Bluetooth-Webcam-Students-Business_dab52335-1e89-4bd6-99f8-853fcf3bfa54.60531944807ca1837af52534bc2d9b9e.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-17-inch-Laptop-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-17-3-HD-Display-Windows-11-Pro-Numeric-Keyboard-Wi-Fi-6-Bluetooth-Webcam-Students-Business/17589714890?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.5,\"numberOfReviews\":371,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"1C4BF2C352174965ABADDB8974C3DE1E\",\"sellerName\":\"Littleox Tech LLC\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"D21FFF9BC8FD35C18825BBF108780668\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-11T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$699.69\",\"linePriceDisplay\":\"$699.69\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":569,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $569.00\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":{\"spQs\":\"LI85FgvgmAxFofj9PE_bvxfiEnniO4icnEwxNiAHjH0oGKQiCYe5czson9uksLMXvIdfrxx2odY_39_BSEOGTAGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMGKaxBLEITTbw4bYtBW8hG9zIjcgP8kVibVR-B7Whb2t2szi4y2_vf22UFQBRh-hWmOq0koXz4ZykwhLEuazMtePhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\\u0026pgId=laptop\\u0026spQs=LI85FgvgmAxFofj9PE_bvxfiEnniO4icnEwxNiAHjH0oGKQiCYe5czson9uksLMXvIdfrxx2odY_39_BSEOGTAGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMGKaxBLEITTbw4bYtBW8hG9zIjcgP8kVibVR-B7Whb2t2szi4y2_vf22UFQBRh-hWmOq0koXz4ZykwhLEuazMtePhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"17.3 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-17-inch-Laptop-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-17-3-HD-Display-Windows-11-Pro-Numeric-Keyboard-Wi-Fi-6-Bluetooth-Webcam-Students-Business_dab52335-1e89-4bd6-99f8-853fcf3bfa54.60531944807ca1837af52534bc2d9b9e.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"000ADBAA2C784F7EA9CDBCF8AD299AAF\",\"imageName\":\"HP-17-inch-Laptop-Intel-Core-i3-N305-16GB-RAM-512GB-SSD-17-3-HD-Display-Windows-11-Pro-Numeric-Keyboard-Wi-Fi-6-Bluetooth-Webcam-Students-Business_dab52335-1e89-4bd6-99f8-853fcf3bfa54.60531944807ca1837af52534bc2d9b9e.png\",\"isOutOfStock\":false,\"price\":699.69,\"rating\":{\"averageRating\":4.5,\"numberOfReviews\":371},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":4,\"itemStackPosition\":2,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"4X8SAV89T9VS\",\"usItemId\":\"17299453369\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"HP 17.3\\\" Laptop for Business and Students, AMD Ryzen 5 7430U (6-core), 16GB RAM, 512GB SSD, Anti-Glare, Camera, Wi-Fi 6, Windows 11 Pro\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"317D2A222CF14241A8F41D14B4034808\",\"name\":\"HP-17-3-Laptop-for-Business-and-Students-AMD-Ryzen-5-7430U-6-core-16GB-RAM-512GB-SSD-Anti-Glare-Camera-Wi-Fi-6-Windows-11-Pro_cda227c8-3974-438d-b9df-7d789aee6dd4.88e1754b33eb15ca3104f7dd0a25a6a7.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-17-3-Laptop-for-Business-and-Students-AMD-Ryzen-5-7430U-6-core-16GB-RAM-512GB-SSD-Anti-Glare-Camera-Wi-Fi-6-Windows-11-Pro_cda227c8-3974-438d-b9df-7d789aee6dd4.88e1754b33eb15ca3104f7dd0a25a6a7.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-17-3-Laptop-for-Business-and-Students-AMD-Ryzen-5-7430U-6-core-16GB-RAM-512GB-SSD-Anti-Glare-Camera-Wi-Fi-6-Windows-11-Pro/17299453369?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.9,\"numberOfReviews\":76,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"1C4BF2C352174965ABADDB8974C3DE1E\",\"sellerName\":\"Littleox Tech LLC\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"982ED9AC76AD3650ACA9F282FEED153B\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-11T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$699.59\",\"linePriceDisplay\":\"$699.59\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":699.59,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $699.59 – $1,969.00\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":{\"spQs\":\"scjfc6_3Z6syL7v8rbWQhga50QdaEJWSVEBLHhq1WPL-zATB9svo-wtVmDtaYAEd3_2MSOPJmhq-cT2mtlJmGgGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcM1anNoXpv1H6nkmKgIUs5Npj4jiFJ7e_1RftHd3cRfjcL6wxYE6kclzwLXvZfX8B_poOFBW5B1_F1WSw0bT2feFYe0WktsIDS4IlQOq9_QKfy20W86XMWHWHlsE2zvu2e68g8rOeFByyW04zEV0BQu-eFBLdyKGhAyf9lj9Al0qeVT2Ty5Ohunu6C0gIWaEiZ\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\\u0026pgId=laptop\\u0026spQs=scjfc6_3Z6syL7v8rbWQhga50QdaEJWSVEBLHhq1WPL-zATB9svo-wtVmDtaYAEd3_2MSOPJmhq-cT2mtlJmGgGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcM1anNoXpv1H6nkmKgIUs5Npj4jiFJ7e_1RftHd3cRfjcL6wxYE6kclzwLXvZfX8B_poOFBW5B1_F1WSw0bT2feFYe0WktsIDS4IlQOq9_QKfy20W86XMWHWHlsE2zvu2e68g8rOeFByyW04zEV0BQu-eFBLdyKGhAyf9lj9Al0qeVT2Ty5Ohunu6C0gIWaEiZ\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"17.3 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-17-3-Laptop-for-Business-and-Students-AMD-Ryzen-5-7430U-6-core-16GB-RAM-512GB-SSD-Anti-Glare-Camera-Wi-Fi-6-Windows-11-Pro_cda227c8-3974-438d-b9df-7d789aee6dd4.88e1754b33eb15ca3104f7dd0a25a6a7.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"317D2A222CF14241A8F41D14B4034808\",\"imageName\":\"HP-17-3-Laptop-for-Business-and-Students-AMD-Ryzen-5-7430U-6-core-16GB-RAM-512GB-SSD-Anti-Glare-Camera-Wi-Fi-6-Windows-11-Pro_cda227c8-3974-438d-b9df-7d789aee6dd4.88e1754b33eb15ca3104f7dd0a25a6a7.jpeg\",\"isOutOfStock\":false,\"price\":699.59,\"rating\":{\"averageRating\":4.9,\"numberOfReviews\":76},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":5,\"itemStackPosition\":2,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"0TZLU7HZP72F\",\"usItemId\":\"16626107264\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"HP 2025 Business Laptop, 17.3\\\" FHD IPS Display, AMD Ryzen 5 (Beats i7-1165G7), Win 11 Pro, AI Copilot, w/Accessory, Numeric Keypad, WiFi 6 (16GB RAM + 512GB SSD)\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"48A540550FFA4033B453D0F057EF9EC7\",\"name\":\"HP-2025-Business-Laptop-17-3-FHD-IPS-Display-AMD-Ryzen-5-Beats-i7-1165G7-Ms-Office-Lifetime-Win-11-Pro-AI-Copilot-w-Accessory-Numeric-Keypad-WiFi-6-1_a6e754a0-2285-4d57-b592-6e9a3b71a31a.e1f2274282694e8339f551e3e9d015ec.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-2025-Business-Laptop-17-3-FHD-IPS-Display-AMD-Ryzen-5-Beats-i7-1165G7-Ms-Office-Lifetime-Win-11-Pro-AI-Copilot-w-Accessory-Numeric-Keypad-WiFi-6-1_a6e754a0-2285-4d57-b592-6e9a3b71a31a.e1f2274282694e8339f551e3e9d015ec.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-2025-Business-Laptop-17-3-FHD-IPS-Display-AMD-Ryzen-5-Beats-i7-1165G7-Ms-Office-Lifetime-Win-11-Pro-AI-Copilot-w-Accessory-Numeric-Keypad-WiFi-6-1/16626107264?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":5,\"numberOfReviews\":75,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"974611902A77437FBB999DF11CCBF0BA\",\"sellerName\":\"82days Tech\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"763FF87482B5335FAE152500D936020A\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-12T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$699.69\",\"linePriceDisplay\":\"$699.69\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":699.69,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $699.69 – $999.99\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":{\"spQs\":\"-SFRm4eL5YI6n6vCDzk3eN3laBHCTLi5O1iiqnxHRLOcCvkwklEs469WYyrH8ePpUEhPviwAgI8tNkSIsa9EbwGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMSq6uDA1I5GQyvY7lH5zqfFXE21dG7F6dLUkrLJKVvEtoO0ztyERlGkpXAe8FeXY-QZUJ5rlcRdqz-MsXoXQ0duPhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\\u0026pgId=laptop\\u0026spQs=-SFRm4eL5YI6n6vCDzk3eN3laBHCTLi5O1iiqnxHRLOcCvkwklEs469WYyrH8ePpUEhPviwAgI8tNkSIsa9EbwGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMSq6uDA1I5GQyvY7lH5zqfFXE21dG7F6dLUkrLJKVvEtoO0ztyERlGkpXAe8FeXY-QZUJ5rlcRdqz-MsXoXQ0duPhXH0h9KJ3VTwzFRbYk47PiGUqB3aljOq84poKcccrY_UdENUu8jRUkwR6O2qzcA\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"17.3 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-2025-Business-Laptop-17-3-FHD-IPS-Display-AMD-Ryzen-5-Beats-i7-1165G7-Ms-Office-Lifetime-Win-11-Pro-AI-Copilot-w-Accessory-Numeric-Keypad-WiFi-6-1_a6e754a0-2285-4d57-b592-6e9a3b71a31a.e1f2274282694e8339f551e3e9d015ec.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"48A540550FFA4033B453D0F057EF9EC7\",\"imageName\":\"HP-2025-Business-Laptop-17-3-FHD-IPS-Display-AMD-Ryzen-5-Beats-i7-1165G7-Ms-Office-Lifetime-Win-11-Pro-AI-Copilot-w-Accessory-Numeric-Keypad-WiFi-6-1_a6e754a0-2285-4d57-b592-6e9a3b71a31a.e1f2274282694e8339f551e3e9d015ec.jpeg\",\"isOutOfStock\":false,\"price\":699.69,\"rating\":{\"averageRating\":5,\"numberOfReviews\":75},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":6,\"itemStackPosition\":2,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"581JEC0LLI78\",\"usItemId\":\"17468167966\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"Lenovo IdeaPad 2025 15.6” FHD Laptop, Intel 4-Core CPU, 12GB RAM, 256GB SSD + 128 eMMC, Wi-Fi 6, Win11\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"F45104CA6C56478C8F25FD7EEC2160FD\",\"name\":\"Lenovo-IdeaPad-2025-15-6-FHD-Laptop-Intel-4-Core-CPU-12GB-RAM-256GB-SSD-Wi-Fi-6-Win11_9a0e2f4e-8a40-4854-a9c6-6c4dad4db70c.fdab55003bc6e8c3db4cd1d2c8f97b6e.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/Lenovo-IdeaPad-2025-15-6-FHD-Laptop-Intel-4-Core-CPU-12GB-RAM-256GB-SSD-Wi-Fi-6-Win11_9a0e2f4e-8a40-4854-a9c6-6c4dad4db70c.fdab55003bc6e8c3db4cd1d2c8f97b6e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Lenovo-IdeaPad-2025-15-6-FHD-Laptop-Intel-4-Core-CPU-12GB-RAM-256GB-SSD-Wi-Fi-6-Win11/17468167966?classType=VARIANT\\u0026athbdg=L1900\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"TODAYS_DEAL\",\"text\":\"Flash Deal\",\"type\":\"LABEL\",\"id\":\"L1900\",\"styleId\":\"TERTIARY_SPARK_BOLD\"}],\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1900\",\"memStyleId\":\"TERTIARY_FLORALWHITE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Flash Deal\",\"styleId\":\"HOTBROWN_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.2,\"numberOfReviews\":47,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"E3AC3CCD80E94D77A876ADE3B17D7B89\",\"sellerName\":\"PCOnline US\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"918E386FA10C3754A9D8B894EEEAC841\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-09T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$369.00\",\"linePrice\":\"$328.95\",\"linePriceDisplay\":\"Now $328.95\",\"savings\":\"SAVE $40.05\",\"savingsAmt\":40.05,\"wasPrice\":\"$369.00\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":288.95,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $288.95\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":{\"spQs\":\"ILTpKhokn-Xdx42dwiCX6utwPtuW6ukq-4rBq7c9wX4L92lqxVtE00FKYO4idU-xSpDTaikczl7y84sgufrXgwGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMNESj-xE0WVdTesiL8lI8_qM1TvzwN73iBg1jNsM6VOo9kMRFHpl3etAsl6RIkCiyD09QP67BqVjvcgWdOUYcglHE8Rdg5WFX9Q3cn2tj4T0Wtb13xQ1RXkI8o-PIwEIxhNFvwP5tGrnpAE8blk3pzvIIgApoZ7PD5N719u1EOE0\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\\u0026pgId=laptop\\u0026spQs=ILTpKhokn-Xdx42dwiCX6utwPtuW6ukq-4rBq7c9wX4L92lqxVtE00FKYO4idU-xSpDTaikczl7y84sgufrXgwGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMNESj-xE0WVdTesiL8lI8_qM1TvzwN73iBg1jNsM6VOo9kMRFHpl3etAsl6RIkCiyD09QP67BqVjvcgWdOUYcglHE8Rdg5WFX9Q3cn2tj4T0Wtb13xQ1RXkI8o-PIwEIxhNFvwP5tGrnpAE8blk3pzvIIgApoZ7PD5N719u1EOE0\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"15.6 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\",\"flag\":\"Flash Deal\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"TODAYS_DEAL\",\"text\":\"Flash Deal\",\"type\":\"LABEL\",\"id\":\"L1900\",\"styleId\":\"TERTIARY_SPARK_BOLD\"},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1900\",\"memStyleId\":\"TERTIARY_FLORALWHITE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Flash Deal\",\"styleId\":\"HOTBROWN_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/Lenovo-IdeaPad-2025-15-6-FHD-Laptop-Intel-4-Core-CPU-12GB-RAM-256GB-SSD-Wi-Fi-6-Win11_9a0e2f4e-8a40-4854-a9c6-6c4dad4db70c.fdab55003bc6e8c3db4cd1d2c8f97b6e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"F45104CA6C56478C8F25FD7EEC2160FD\",\"imageName\":\"Lenovo-IdeaPad-2025-15-6-FHD-Laptop-Intel-4-Core-CPU-12GB-RAM-256GB-SSD-Wi-Fi-6-Win11_9a0e2f4e-8a40-4854-a9c6-6c4dad4db70c.fdab55003bc6e8c3db4cd1d2c8f97b6e.jpeg\",\"isOutOfStock\":false,\"price\":328.95,\"rating\":{\"averageRating\":4.2,\"numberOfReviews\":47},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":7,\"itemStackPosition\":2,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"5JYR0KNI6BC1\",\"usItemId\":\"15852368936\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"17.3\\\"Laptop-Computer Pink Student-Laptop 2025 Newest,Backlit Keyboard Fingerprint 8GB RAM 256GB SSD Intel 6 Cores i3-1215U(Up to 4.40 GHz)IPS FHD Business-Laptop 2 Years Warranty\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"369824A4BFB143FC9672472C23C2BA4E\",\"name\":\"15-6-IPS-FHD-Laptop-8GB-RAM-256GB-SSD-Intel-Pentium-6-Cores-i3-1215U-Beat-i5-1135G7-Student-Laptop-Laptop-Computer-Backlit-Keyboard-Fingerprint-Home_9c4b2b12-f0c3-4a4f-b9d1-3c0107eb1f6c.b114da48f47246901421a27f238f319b.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/15-6-IPS-FHD-Laptop-8GB-RAM-256GB-SSD-Intel-Pentium-6-Cores-i3-1215U-Beat-i5-1135G7-Student-Laptop-Laptop-Computer-Backlit-Keyboard-Fingerprint-Home_9c4b2b12-f0c3-4a4f-b9d1-3c0107eb1f6c.b114da48f47246901421a27f238f319b.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/15-6-IPS-FHD-Laptop-8GB-RAM-256GB-SSD-Intel-Pentium-6-Cores-i3-1215U-Beat-i5-1135G7-Student-Laptop-Laptop-Computer-Backlit-Keyboard-Fingerprint-Home/15852368936?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.2,\"numberOfReviews\":151,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"4D018CF96F574B79A7B419D4326F509D\",\"sellerName\":\"JYE Co.,Ltd\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"883A37DE27B63664B7F983B374D55180\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-11T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$349.99\",\"linePriceDisplay\":\"$349.99\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":349.99,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $349.99 – $769.99\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":{\"spQs\":\"5qEbqRP4ssg6c8tubflUIju1FMPsUy2Wlu7ys1irRJ9_ocofOPqRzsfHiGAr3KhLkW45XneagvNJq_JBJf9PgAGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMbr7eHuNArnB8XP8q3sBg4UIX_Tt53HOsOBHffDbrXeZGg5NrnmbMzYgpMfyiii_WS-2jYrrtjb6TvP5pAB1ae4TRb8D-bRq56QBPG5ZN6c7yCIAKaGezw-Te9fbtRDhN\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\\u0026pgId=laptop\\u0026spQs=5qEbqRP4ssg6c8tubflUIju1FMPsUy2Wlu7ys1irRJ9_ocofOPqRzsfHiGAr3KhLkW45XneagvNJq_JBJf9PgAGicz2eiZJAiGGc3uZvsPshHo0J20WTKqyPFcu3mFcMbr7eHuNArnB8XP8q3sBg4UIX_Tt53HOsOBHffDbrXeZGg5NrnmbMzYgpMfyiii_WS-2jYrrtjb6TvP5pAB1ae4TRb8D-bRq56QBPG5ZN6c7yCIAKaGezw-Te9fbtRDhN\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_13457%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"17.3 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/15-6-IPS-FHD-Laptop-8GB-RAM-256GB-SSD-Intel-Pentium-6-Cores-i3-1215U-Beat-i5-1135G7-Student-Laptop-Laptop-Computer-Backlit-Keyboard-Fingerprint-Home_9c4b2b12-f0c3-4a4f-b9d1-3c0107eb1f6c.b114da48f47246901421a27f238f319b.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"369824A4BFB143FC9672472C23C2BA4E\",\"imageName\":\"15-6-IPS-FHD-Laptop-8GB-RAM-256GB-SSD-Intel-Pentium-6-Cores-i3-1215U-Beat-i5-1135G7-Student-Laptop-Laptop-Computer-Backlit-Keyboard-Fingerprint-Home_9c4b2b12-f0c3-4a4f-b9d1-3c0107eb1f6c.b114da48f47246901421a27f238f319b.jpeg\",\"isOutOfStock\":false,\"price\":349.99,\"rating\":{\"averageRating\":4.2,\"numberOfReviews\":151},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":8,\"itemStackPosition\":2,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-5-1\"}],\"layoutEnum\":\"CAROUSEL\"},{\"displayMessage\":null,\"meta\":{\"beacon\":\"{\\\"interpretations\\\":[{\\\"id\\\":\\\"0\\\",\\\"type\\\":\\\"primary\\\",\\\"sub_type\\\":\\\"exact\\\",\\\"query\\\":\\\"laptop\\\"}],\\\"exact\\\":true}\",\"suppressTitle\":true,\"isSponsored\":false,\"adsBeacon\":{\"adUuid\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\",\"moduleInfo\":\"{\\\"adUuid\\\":\\\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\\\",\\\"facet\\\":false,\\\"intent\\\":false,\\\"genAi\\\":false,\\\"affinity\\\":\\\"default\\\",\\\"sorting\\\":\\\"best_match\\\",\\\"bucketId\\\":\\\"ace1_default|ace2_default|ace3_default|bb_1_13745|bb_2_13747|coldstart_off|search_default\\\",\\\"engagementTraffic\\\":\\\"head_torso\\\",\\\"sessionTraffic\\\":\\\"head\\\",\\\"ghost\\\":[],\\\"brands\\\":[],\\\"ruleIds\\\":[],\\\"qc\\\":\\\"qenv\\\",\\\"rqs\\\":[],\\\"dc\\\":\\\"eus2\\\",\\\"ed\\\":\\\"u7OzqIMVMhydxZeIph2cdg\\\",\\\"sparky\\\":false,\\\"specificity\\\":\\\"broad\\\",\\\"models\\\":[{\\\"source\\\":\\\"dynamic-pcvr~main\\\",\\\"modelId\\\":\\\"sm-xgb-cvr-09122024-clara-v6\\\"},{\\\"source\\\":\\\"troas-pcvr~main\\\",\\\"modelId\\\":\\\"sm-xgb-cvr-20250625-troas-kate-v2\\\"},{\\\"source\\\":\\\"troas-pvpc~main\\\",\\\"modelId\\\":\\\"pvpc_direct_model_v9_direct_mleap\\\"}]}\",\"max_ads\":12,\"adSlots\":[]},\"spBeaconInfo\":null,\"query\":\"laptop\",\"isPartialResult\":false,\"stackId\":0,\"stackType\":\"DEFAULT\",\"stackName\":\"SBE_EMM_1\",\"title\":\"Results for \\\"laptop\\\"\",\"description\":null,\"subTitle\":null,\"titleKey\":\"resultsFor\",\"subType\":\"EXACT_MATCH\",\"queryUsedForSearchResults\":\"laptop\",\"layoutEnum\":\"GRID\",\"totalItemCount\":20656,\"totalItemCountDisplay\":\"(1000+)\",\"viewAllParams\":null,\"comparisonCart\":{\"product_type\":[\"Laptop Computers\"]},\"borderColor\":null,\"iconUrl\":null,\"initialCount\":0,\"fulfillmentIntent\":null},\"itemsV2\":null,\"content\":null,\"title\":\"Results for \\\"laptop\\\"\",\"titleKey\":\"resultsFor\",\"subTitle\":null,\"description\":\"\",\"queryUsedForSearchResults\":\"laptop\",\"totalItemCountDisplay\":\"(1000+)\",\"count\":20656,\"items\":[{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"5UHOWNMFD4V6\",\"usItemId\":\"13722470932\",\"isBadSplit\":false,\"catalogSellerId\":\"0\",\"fitmentLabel\":null,\"name\":\"ASUS Chromebook CX1, 15.6\\\" FHD, Intel Celeron N4500, 128GB eMMC, 4GB RAM, ChromeOS, Pure Gray\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"ASUS Chromebook CX1, 15.6\\\" FHD, Intel Celeron N4500, 128GB eMMC, 4GB RAM, ChromeOS, Pure Gray\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":8.757615,\\\"l2sf\\\":0.6283602103210908,\\\"l2se\\\":0.62836,\\\"l2sr\\\":0.981198,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"983C2DD67F02460F96C60461FECDDB2A\",\"name\":\"ASUS-Chromebook-CX1-15-6-FHD-Intel-Celeron-N4500-128GB-eMMC-4GB-RAM-ChromeOS-Pure-Gray_b0f893ee-be29-46c9-905b-04400c0dd231.671a1ba74b705db258ede344db840e4e.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/ASUS-Chromebook-CX1-15-6-FHD-Intel-Celeron-N4500-128GB-eMMC-4GB-RAM-ChromeOS-Pure-Gray_b0f893ee-be29-46c9-905b-04400c0dd231.671a1ba74b705db258ede344db840e4e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/ASUS-Chromebook-CX1-15-6-FHD-Intel-Celeron-N4500-128GB-eMMC-4GB-RAM-ChromeOS-Pure-Gray/13722470932?classType=VARIANT\\u0026athbdg=L1600\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:1230091:1103213:3484049\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"BESTSELLER\",\"text\":\"Best seller\",\"type\":\"LABEL\",\"id\":\"L1600\",\"styleId\":\"TERTIARY_BLUE_BOLD\"}],\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"tomorrow\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1600\",\"memStyleId\":\"TERTIARY_LAVENDER\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Best seller\",\"styleId\":\"HYPERBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.2,\"numberOfReviews\":6621,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"3015127AF6F53C50B77F75B900796D72\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-06T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$159.00\",\"linePriceDisplay\":\"$159.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":85,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $85.00\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"actual_color\",\"type\":\"LOCATOR\",\"id\":null,\"displayName\":\"options\",\"isVariantTypeSwatch\":true,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/53d8a6ca-720b-4948-976e-4171058d9395.3474e8bc1aeb02c17dc51215bcfa691c.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Fabric Blue\",\"rank\":10000000,\"displayName\":\"Fabric Blue\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/2004e399-d477-4bcc-8303-4e944499ea13.bc3bebb05083afc926ce4e66cc483f0c.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"6Z6NJ0M7QMO4\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/ASUS-Chromebook-CX1-15-6-FHD-Intel-Celeron-N4500-128GB-eMMC-4GB-RAM-ChromeOS-Fabric-Blue/13737005799?classType=undefined\",\"usItemId\":\"13737005799\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/b0f893ee-be29-46c9-905b-04400c0dd231.671a1ba74b705db258ede344db840e4e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Pure Gray\",\"rank\":10000001,\"displayName\":\"Pure Gray\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/f4fb6484-645b-42fb-8d49-682d687e47a0.4f4b76aa08b2069a4e246b8ac8f2f689.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"5XMAUAJWHV4Z\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/ASUS-Chromebook-CX1-15-6-FHD-Intel-Celeron-N4500-128GB-eMMC-4GB-RAM-ChromeOS-Pure-Gray/13722470932?classType=undefined\",\"usItemId\":\"13722470932\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"ASUS Chromebook CX1, 15.6\\\" FHD, Intel Celeron N4500, 128GB eMMC, 4GB RAM, ChromeOS, Pure Gray\",\"flag\":\"Best seller\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"BESTSELLER\",\"text\":\"Best seller\",\"type\":\"LABEL\",\"id\":\"L1600\",\"styleId\":\"TERTIARY_BLUE_BOLD\"},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1600\",\"memStyleId\":\"TERTIARY_LAVENDER\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Best seller\",\"styleId\":\"HYPERBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"tomorrow\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/ASUS-Chromebook-CX1-15-6-FHD-Intel-Celeron-N4500-128GB-eMMC-4GB-RAM-ChromeOS-Pure-Gray_b0f893ee-be29-46c9-905b-04400c0dd231.671a1ba74b705db258ede344db840e4e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"983C2DD67F02460F96C60461FECDDB2A\",\"imageName\":\"ASUS-Chromebook-CX1-15-6-FHD-Intel-Celeron-N4500-128GB-eMMC-4GB-RAM-ChromeOS-Pure-Gray_b0f893ee-be29-46c9-905b-04400c0dd231.671a1ba74b705db258ede344db840e4e.jpeg\",\"isOutOfStock\":false,\"price\":159,\"rating\":{\"averageRating\":4.2,\"numberOfReviews\":6621},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"Fabric Blue\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/2004e399-d477-4bcc-8303-4e944499ea13.bc3bebb05083afc926ce4e66cc483f0c.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/53d8a6ca-720b-4948-976e-4171058d9395.3474e8bc1aeb02c17dc51215bcfa691c.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"6Z6NJ0M7QMO4\",\"usItemId\":\"13737005799\",\"canonicalUrl\":\"/ip/ASUS-Chromebook-CX1-15-6-FHD-Intel-Celeron-N4500-128GB-eMMC-4GB-RAM-ChromeOS-Fabric-Blue/13737005799?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Pure Gray\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/f4fb6484-645b-42fb-8d49-682d687e47a0.4f4b76aa08b2069a4e246b8ac8f2f689.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/b0f893ee-be29-46c9-905b-04400c0dd231.671a1ba74b705db258ede344db840e4e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"5XMAUAJWHV4Z\",\"usItemId\":\"13722470932\",\"canonicalUrl\":\"/ip/ASUS-Chromebook-CX1-15-6-FHD-Intel-Celeron-N4500-128GB-eMMC-4GB-RAM-ChromeOS-Pure-Gray/13722470932?classType=undefined\\u0026variantFieldId=actual_color\"}],\"isVariantTypeSwatch\":true,\"displayName\":\"options\",\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":15,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"1MRAAWSO53FZ\",\"usItemId\":\"16651118643\",\"isBadSplit\":false,\"catalogSellerId\":\"102581704\",\"fitmentLabel\":null,\"name\":\"RNRUO 15.6\\\" Windows 11 Laptop, Dual 8GB RAM, 256GB SSD, AMD 3020e with 2 Cores up to 2.6GHz, With Office 2024, 1920x1080 Display WiFi5 BT5.0 for Student, Home Office, Business\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"AMD 3020e Processor: The RNRUO ultrabook features an Intel AMD 3020e processor (2 Cores, 4 Threads, up to 2.6GHz), offering reliable performance suitable for light gaming, web browsing, and document\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.933544,\\\"l2sf\\\":0.3102798384265901,\\\"l2se\\\":0.31028,\\\"l2sr\\\":0.968129,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"C91ADBEA07804DDBAC73F9DE1B38B3C5\",\"name\":\"RNRUO-15-6inch-Windows-11-Laptop-16GB-RAM-256GB-PCIE-3-0-NVME-SATA-AMD-3020e-2-Cores-2-6GHz-Fingerprint-Backlit-KB-Full-function-Type-C-WiFi5-BT5-0_3dca8eb5-3727-4822-b680-5e02d305eb92.38338d36dd18133df7a525b353c470c4.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/RNRUO-15-6inch-Windows-11-Laptop-16GB-RAM-256GB-PCIE-3-0-NVME-SATA-AMD-3020e-2-Cores-2-6GHz-Fingerprint-Backlit-KB-Full-function-Type-C-WiFi5-BT5-0_3dca8eb5-3727-4822-b680-5e02d305eb92.38338d36dd18133df7a525b353c470c4.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/RNRUO-15-6inch-Windows-11-Laptop-16GB-RAM-256GB-PCIE-3-0-NVME-SATA-AMD-3020e-2-Cores-2-6GHz-Fingerprint-Backlit-KB-Full-function-Type-C-WiFi5-BT5-0/16651118643?classType=VARIANT\\u0026athbdg=L1600\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:1230091:1091333\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"BESTSELLER\",\"text\":\"Best seller\",\"type\":\"LABEL\",\"id\":\"L1600\",\"styleId\":\"TERTIARY_BLUE_BOLD\"}],\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"Sat, Mar 7\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1600\",\"memStyleId\":\"TERTIARY_LAVENDER\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Best seller\",\"styleId\":\"HYPERBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":3.8,\"numberOfReviews\":324,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F2C87A285A934E2BAECD613A22390F63\",\"sellerName\":\"RNRUO\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"4BFEC42284F83BDBBCF870730CA78D12\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-07T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$489.00\",\"linePrice\":\"$199.69\",\"linePriceDisplay\":\"Now $199.69\",\"savings\":\"SAVE $289.31\",\"savingsAmt\":289.31,\"wasPrice\":\"$489.00\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":199.69,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $199.69 – $249.09\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"hard_drive_capacity\",\"type\":\"LOCATOR\",\"id\":null,\"displayName\":\"sizes\",\"isVariantTypeSwatch\":false,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/3dca8eb5-3727-4822-b680-5e02d305eb92.38338d36dd18133df7a525b353c470c4.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"256 GB\",\"rank\":10000000,\"displayName\":\"256 GB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/d5d9e732-0749-428b-aa93-32c4576fbe90.723dd721df9a98f247a437ee6cc1a82d.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"2ZVWGY5JHRIV\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/RNRUO-15-6inch-Windows-11-Laptop-16GB-RAM-256GB-PCIE-3-0-NVME-SATA-AMD-3020e-2-Cores-Up-2-6GHz-Fingerprint-Backlit-KB-Full-function-Type-C-WiFi5-BT5/16651118643?classType=undefined\",\"usItemId\":\"16651118643\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/ea059c96-b91d-43b8-a63b-740429fafef5.a33df29903a18296e6cc066f1a2cd0f3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"512 GB\",\"rank\":10000001,\"displayName\":\"512 GB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/7a482f6f-476d-4835-84b8-17987ddf5018.07e74de1ad57215c96eea871975991ec.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"2NIVRO25V8X2\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/RNRUO-15-6-Windows-11-Laptop-8GB-RAM-512GB-SSD-AMD-3020e-Processor-2-Cores-Up-2-6GHz-With-Office-2024-1920x1080-Display-WiFi5-BT5-0-Student-Home-Offi/17260259083?classType=undefined\",\"usItemId\":\"17260259083\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"AMD 3020e Processor: The RNRUO ultrabook features an Intel AMD 3020e processor (2 Cores, 4 Threads, up to 2.6GHz), offering reliable performance suitable for light gaming, web browsing, and document\",\"flag\":\"Best seller\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"BESTSELLER\",\"text\":\"Best seller\",\"type\":\"LABEL\",\"id\":\"L1600\",\"styleId\":\"TERTIARY_BLUE_BOLD\"},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1600\",\"memStyleId\":\"TERTIARY_LAVENDER\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Best seller\",\"styleId\":\"HYPERBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"Sat, Mar 7\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/RNRUO-15-6inch-Windows-11-Laptop-16GB-RAM-256GB-PCIE-3-0-NVME-SATA-AMD-3020e-2-Cores-2-6GHz-Fingerprint-Backlit-KB-Full-function-Type-C-WiFi5-BT5-0_3dca8eb5-3727-4822-b680-5e02d305eb92.38338d36dd18133df7a525b353c470c4.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"C91ADBEA07804DDBAC73F9DE1B38B3C5\",\"imageName\":\"RNRUO-15-6inch-Windows-11-Laptop-16GB-RAM-256GB-PCIE-3-0-NVME-SATA-AMD-3020e-2-Cores-2-6GHz-Fingerprint-Backlit-KB-Full-function-Type-C-WiFi5-BT5-0_3dca8eb5-3727-4822-b680-5e02d305eb92.38338d36dd18133df7a525b353c470c4.jpeg\",\"isOutOfStock\":false,\"price\":199.69,\"rating\":{\"averageRating\":3.8,\"numberOfReviews\":324},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"256 GB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/d5d9e732-0749-428b-aa93-32c4576fbe90.723dd721df9a98f247a437ee6cc1a82d.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/3dca8eb5-3727-4822-b680-5e02d305eb92.38338d36dd18133df7a525b353c470c4.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"2ZVWGY5JHRIV\",\"usItemId\":\"16651118643\",\"canonicalUrl\":\"/ip/RNRUO-15-6inch-Windows-11-Laptop-16GB-RAM-256GB-PCIE-3-0-NVME-SATA-AMD-3020e-2-Cores-Up-2-6GHz-Fingerprint-Backlit-KB-Full-function-Type-C-WiFi5-BT5/16651118643?classType=undefined\\u0026variantFieldId=hard_drive_capacity\"},{\"name\":\"512 GB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/7a482f6f-476d-4835-84b8-17987ddf5018.07e74de1ad57215c96eea871975991ec.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/ea059c96-b91d-43b8-a63b-740429fafef5.a33df29903a18296e6cc066f1a2cd0f3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"2NIVRO25V8X2\",\"usItemId\":\"17260259083\",\"canonicalUrl\":\"/ip/RNRUO-15-6-Windows-11-Laptop-8GB-RAM-512GB-SSD-AMD-3020e-Processor-2-Cores-Up-2-6GHz-With-Office-2024-1920x1080-Display-WiFi5-BT5-0-Student-Home-Offi/17260259083?classType=undefined\\u0026variantFieldId=hard_drive_capacity\"}],\"isVariantTypeSwatch\":false,\"displayName\":\"sizes\",\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":16,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"36UI820SV8R8\",\"usItemId\":\"5123764557\",\"isBadSplit\":false,\"catalogSellerId\":\"0\",\"fitmentLabel\":null,\"name\":\"HP Chromebook x360 14 inch FHD IPS Touch 2-in-1 Laptop Intel Processor N100 4GB RAM 64GB eMMC - Sky Blue\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":19,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.918277,\\\"l2sf\\\":0.5637098109414178,\\\"l2se\\\":0.56371,\\\"l2sr\\\":0.952437,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"CE5E60CFDD2D465A9EFFAFF1F7DDFCA3\",\"name\":\"HP-14-inch-x360-FHD-Touch-Chromebook-Laptop-Intel-Processor-N100-4GB-RAM-64GB-eMMC-Sky-Blue_383a420a-aabf-4aec-80e2-403238eefed1.da0d8583786edcfa7ae8047341285b72.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-14-inch-x360-FHD-Touch-Chromebook-Laptop-Intel-Processor-N100-4GB-RAM-64GB-eMMC-Sky-Blue_383a420a-aabf-4aec-80e2-403238eefed1.da0d8583786edcfa7ae8047341285b72.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-14-inch-x360-FHD-Touch-Chromebook-Laptop-Intel-Processor-N100-4GB-RAM-64GB-eMMC-Sky-Blue/5123764557?classType=REGULAR\\u0026athbdg=L1300\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:1230091:1103213:3484049\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"ROLLBACK\",\"text\":\"Rollback\",\"type\":\"ICON\",\"id\":\"L1300\",\"styleId\":\"PRIMARY_RED_BOLD\"}],\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"tomorrow\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1300\",\"memStyleId\":\"PRIMARY_ALIZARINRED_PL4\",\"content\":[{\"type\":\"ICON\",\"value\":null,\"styleId\":\"DOWNARROW_WHITE\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null},{\"type\":\"TEXT\",\"value\":\"Rollback\",\"styleId\":\"WHITE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4.4,\"numberOfReviews\":4524,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":[{\"serviceType\":\"SERVICES\",\"serviceTitle\":\"\",\"serviceSubTitle\":\"\",\"serviceProviders\":[],\"groups\":[{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"2855D6DD321237C8B75D085458BFD4AA\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"118BF9C4A858360B82FDBD974C86AE17\"}]}]}],\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"7076C784FDBD393682DDDC390DF3763F\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-06T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$299.00\",\"linePrice\":\"$219.00\",\"linePriceDisplay\":\"Now $219.00\",\"savings\":\"SAVE $80.00\",\"savingsAmt\":80,\"wasPrice\":\"$299.00\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"\",\"flag\":\"Rollback\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"ROLLBACK\",\"text\":\"Rollback\",\"type\":\"ICON\",\"id\":\"L1300\",\"styleId\":\"PRIMARY_RED_BOLD\"},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1300\",\"memStyleId\":\"PRIMARY_ALIZARINRED_PL4\",\"content\":[{\"type\":\"ICON\",\"value\":null,\"styleId\":\"DOWNARROW_WHITE\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null},{\"type\":\"TEXT\",\"value\":\"Rollback\",\"styleId\":\"WHITE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"tomorrow\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-14-inch-x360-FHD-Touch-Chromebook-Laptop-Intel-Processor-N100-4GB-RAM-64GB-eMMC-Sky-Blue_383a420a-aabf-4aec-80e2-403238eefed1.da0d8583786edcfa7ae8047341285b72.jpeg\",\"imageSize\":\"\",\"imageID\":\"CE5E60CFDD2D465A9EFFAFF1F7DDFCA3\",\"imageName\":\"HP-14-inch-x360-FHD-Touch-Chromebook-Laptop-Intel-Processor-N100-4GB-RAM-64GB-eMMC-Sky-Blue_383a420a-aabf-4aec-80e2-403238eefed1.da0d8583786edcfa7ae8047341285b72.jpeg\",\"isOutOfStock\":false,\"price\":219,\"rating\":{\"averageRating\":4.4,\"numberOfReviews\":4524},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":17,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"10P6CTB5V8FE\",\"usItemId\":\"17828556665\",\"isBadSplit\":false,\"catalogSellerId\":\"102581704\",\"fitmentLabel\":null,\"name\":\"RNRUO 15.6\\\" Pink Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y With 2 Cores, up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, PC Laptop for Business, Student, Office\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"Pentium Gold Processor: The RNRUO laptop features an Intel Pentium Gold 6500Y processor, 4MB Smart Cache and 5W TDP, offering reliable performance suitable for light gaming, web browsing, and document\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":8.882976,\\\"l2sf\\\":0.33503632091816,\\\"l2se\\\":0.335036,\\\"l2sr\\\":0.093364,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"3E291F9CD3A24722A0CE7E67D0C89A09\",\"name\":\"RNRUO-15-6-Laptop-Computer-8GB-RAM-256GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-FHD-Display-Office-2024-WiFi5-BT5-0-Windows-11-Laptop-Business-S_e4b3d77d-82bf-41c8-8724-7cf042199468.ee9bb54a464103f86ee919b4b1f77598.png\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/RNRUO-15-6-Laptop-Computer-8GB-RAM-256GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-FHD-Display-Office-2024-WiFi5-BT5-0-Windows-11-Laptop-Business-S_e4b3d77d-82bf-41c8-8724-7cf042199468.ee9bb54a464103f86ee919b4b1f77598.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/RNRUO-15-6-Laptop-Computer-8GB-RAM-256GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-FHD-Display-Office-2024-WiFi5-BT5-0-Windows-11-Laptop-Business-S/17828556665?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"Sat, Mar 7\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":3.8,\"numberOfReviews\":65,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F2C87A285A934E2BAECD613A22390F63\",\"sellerName\":\"RNRUO\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"0C9DC463DA103916935F3522A872C970\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-07T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$469.00\",\"linePrice\":\"$199.69\",\"linePriceDisplay\":\"Now $199.69\",\"savings\":\"SAVE $269.31\",\"savingsAmt\":269.31,\"wasPrice\":\"$469.00\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":199.69,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $199.69 – $259.39\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"hard_drive_capacity\",\"type\":\"LOCATOR\",\"id\":null,\"displayName\":\"sizes\",\"isVariantTypeSwatch\":false,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/e4b3d77d-82bf-41c8-8724-7cf042199468.ee9bb54a464103f86ee919b4b1f77598.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"256 GB\",\"rank\":10000000,\"displayName\":\"256 GB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/b7d9b2d9-7859-4cb1-8718-cd1f222ebb00.d79fdb093e4d8790578efcd1eb54ac0a.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"799M7XVXXNEU\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/RNRUO-15-6-Laptop-Computer-8GB-RAM-256GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-Up-3-4GHz-FHD-Display-Office-2024-WiFi5-BT5-0-Windows-11-Business-Stude/17828556665?classType=undefined\",\"usItemId\":\"17828556665\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/d1ecbe28-73f6-4d10-b394-3ce3c6914566.ef3f0b5a5dd6ae4d8ec16f25a7ef57df.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"512 GB\",\"rank\":10000001,\"displayName\":\"512 GB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/ae312399-0566-4333-98ef-31fa7686e500.e15208fcf23e67f5b404138e2bf49901.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"6WSYSRUVBJHD\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/RNRUO-15-6-Laptop-Computer-16GB-RAM-512GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-Up-3-4GHz-FHD-Display-Office-2024-WiFi5-BT5-0-Windows-11-Business-Stud/17759709551?classType=undefined\",\"usItemId\":\"17759709551\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"Pentium Gold Processor: The RNRUO laptop features an Intel Pentium Gold 6500Y processor, 4MB Smart Cache and 5W TDP, offering reliable performance suitable for light gaming, web browsing, and document\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"Sat, Mar 7\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/RNRUO-15-6-Laptop-Computer-8GB-RAM-256GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-FHD-Display-Office-2024-WiFi5-BT5-0-Windows-11-Laptop-Business-S_e4b3d77d-82bf-41c8-8724-7cf042199468.ee9bb54a464103f86ee919b4b1f77598.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"3E291F9CD3A24722A0CE7E67D0C89A09\",\"imageName\":\"RNRUO-15-6-Laptop-Computer-8GB-RAM-256GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-3-4GHz-FHD-Display-Office-2024-WiFi5-BT5-0-Windows-11-Laptop-Business-S_e4b3d77d-82bf-41c8-8724-7cf042199468.ee9bb54a464103f86ee919b4b1f77598.png\",\"isOutOfStock\":false,\"price\":199.69,\"rating\":{\"averageRating\":3.8,\"numberOfReviews\":65},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"256 GB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/b7d9b2d9-7859-4cb1-8718-cd1f222ebb00.d79fdb093e4d8790578efcd1eb54ac0a.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/e4b3d77d-82bf-41c8-8724-7cf042199468.ee9bb54a464103f86ee919b4b1f77598.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"799M7XVXXNEU\",\"usItemId\":\"17828556665\",\"canonicalUrl\":\"/ip/RNRUO-15-6-Laptop-Computer-8GB-RAM-256GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-Up-3-4GHz-FHD-Display-Office-2024-WiFi5-BT5-0-Windows-11-Business-Stude/17828556665?classType=undefined\\u0026variantFieldId=hard_drive_capacity\"},{\"name\":\"512 GB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/ae312399-0566-4333-98ef-31fa7686e500.e15208fcf23e67f5b404138e2bf49901.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/d1ecbe28-73f6-4d10-b394-3ce3c6914566.ef3f0b5a5dd6ae4d8ec16f25a7ef57df.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"6WSYSRUVBJHD\",\"usItemId\":\"17759709551\",\"canonicalUrl\":\"/ip/RNRUO-15-6-Laptop-Computer-16GB-RAM-512GB-SSD-Intel-Pentium-Gold-6500Y-2-Cores-Up-3-4GHz-FHD-Display-Office-2024-WiFi5-BT5-0-Windows-11-Business-Stud/17759709551?classType=undefined\\u0026variantFieldId=hard_drive_capacity\"}],\"isVariantTypeSwatch\":false,\"displayName\":\"sizes\",\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":18,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"28OLZB4HLS6B\",\"usItemId\":\"17874160865\",\"isBadSplit\":false,\"catalogSellerId\":\"5534\",\"fitmentLabel\":null,\"name\":\"Lenovo IdeaPad Slim 3i 15.6\\\" Laptop, Intel Processor N100, 4GB RAM, 128 SSD, Arctic Grey\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":\"Lenovo IdeaPad Slim 3i 15.6\\\" Laptop, Intel Processor N100, 4GB RAM, 128 SSD, Arctic Grey\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":12,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.885869,\\\"l2sf\\\":0.4476584692032133,\\\"l2se\\\":0.447658,\\\"l2sr\\\":0.099239,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"2BA88844F50C487CA41DDDA26F497BEF\",\"name\":\"Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Processor-N100-4GB-RAM-128-SSD-Aric-Grey_bbcf7b2a-9591-4bb7-859a-39654b54ef5b.f0f0a7bd518fa2f3ea8d70f9e14870fc.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Processor-N100-4GB-RAM-128-SSD-Aric-Grey_bbcf7b2a-9591-4bb7-859a-39654b54ef5b.f0f0a7bd518fa2f3ea8d70f9e14870fc.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Processor-N100-4GB-RAM-128-SSD-Aric-Grey/17874160865?classType=REGULAR\\u0026athbdg=L1103\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SOCIAL_PROOF_ATC_FLAG\",\"text\":\"In 200+ people's carts\",\"type\":\"LABEL\",\"id\":\"L1103\",\"styleId\":\"SECONDARY_BLUE_BOLD\"}],\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1103\",\"memStyleId\":\"SECONDARY_EPICBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"In 200+ people's carts\",\"styleId\":\"EPICBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4.4,\"numberOfReviews\":767,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"4DCFC35226B0441E90AD107B33FAE13E\",\"sellerName\":\"Tiger Tech\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"45164E78FB9D356C8B86AF6556EAAF1D\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-09T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$319.99\",\"linePrice\":\"$192.00\",\"linePriceDisplay\":\"Now $192.00\",\"savings\":\"SAVE $127.99\",\"savingsAmt\":127.99,\"wasPrice\":\"$319.99\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"Lenovo IdeaPad Slim 3i 15.6\\\" Laptop, Intel Processor N100, 4GB RAM, 128 SSD, Arctic Grey\",\"flag\":\"In 200+ people's carts\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"SOCIAL_PROOF_ATC_FLAG\",\"text\":\"In 200+ people's carts\",\"type\":\"LABEL\",\"id\":\"L1103\",\"styleId\":\"SECONDARY_BLUE_BOLD\"},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1103\",\"memStyleId\":\"SECONDARY_EPICBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"In 200+ people's carts\",\"styleId\":\"EPICBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Processor-N100-4GB-RAM-128-SSD-Aric-Grey_bbcf7b2a-9591-4bb7-859a-39654b54ef5b.f0f0a7bd518fa2f3ea8d70f9e14870fc.jpeg\",\"imageSize\":\"\",\"imageID\":\"2BA88844F50C487CA41DDDA26F497BEF\",\"imageName\":\"Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Processor-N100-4GB-RAM-128-SSD-Aric-Grey_bbcf7b2a-9591-4bb7-859a-39654b54ef5b.f0f0a7bd518fa2f3ea8d70f9e14870fc.jpeg\",\"isOutOfStock\":false,\"price\":192,\"rating\":{\"averageRating\":4.4,\"numberOfReviews\":767},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":19,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"6HUVMLFFX61Z\",\"usItemId\":\"5700202955\",\"isBadSplit\":false,\"catalogSellerId\":\"101027287\",\"fitmentLabel\":null,\"name\":\"HP 14 inch Windows Laptop Intel Celeron N4120 4GB RAM 64GB eMMC Silver (12-mo. Microsoft 365 Included)\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"HP 14 inch Windows Laptop Intel Celeron N4120 4GB RAM 64GB eMMC Silver (12-mo. Microsoft 365 Included)\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.410484,\\\"l2sf\\\":0.2619652238154767,\\\"l2se\\\":0.261965,\\\"l2sr\\\":0.990163,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"6B174344EA1D4AD4858A0EECABC9D740\",\"name\":\"HP-14-inch-Windows-Laptop-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Silver-12-mo-Microsoft-365-Included_b7fc3734-20cb-4150-9283-e8327cebc381.fae77bb4deaf2683e6aa9fbbdea88535.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-14-inch-Windows-Laptop-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Silver-12-mo-Microsoft-365-Included_b7fc3734-20cb-4150-9283-e8327cebc381.fae77bb4deaf2683e6aa9fbbdea88535.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-14-inch-Windows-Laptop-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Silver-12-mo-Microsoft-365-Included/5700202955?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.1,\"numberOfReviews\":20388,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"C30ECE8FFBC84E2B95ED1D21DDBD6F94\",\"sellerName\":\"VLT Distributor\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":[{\"serviceType\":\"SERVICES\",\"serviceTitle\":\"\",\"serviceSubTitle\":\"\",\"serviceProviders\":[],\"groups\":[{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"4BAAC15CD74F349D8ECF727DCE1C6051\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"FDD1718B056836F5B7A2CCBFC497F89B\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"2855D6DD321237C8B75D085458BFD4AA\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"092FC84A59823FB887939F62FD27FD9D\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"118BF9C4A858360B82FDBD974C86AE17\"}]}]}],\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"6D3A10CBF97336DE97C75C5B4E29A088\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-09T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$177.97\",\"linePriceDisplay\":\"$177.97\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":169.49,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $169.49\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"actual_color\",\"type\":\"LOCATOR\",\"id\":null,\"displayName\":\"options\",\"isVariantTypeSwatch\":true,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/075e0cd5-4e35-4fd8-a647-a6e3899f218d.e0766a4644927a337ad58c0a5b118e8b.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Blue\",\"rank\":10000000,\"displayName\":\"Blue\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/075e0cd5-4e35-4fd8-a647-a6e3899f218d.e0766a4644927a337ad58c0a5b118e8b.jpeg?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"3I95VCSQQPY8\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-Stream-14-inch-Laptop-Intel-Processor-N4102-4GB-RAM-64GB-eMMC-Blue-12-mo-Microsoft-365-included/166773164?classType=undefined\",\"usItemId\":\"166773164\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/b7fc3734-20cb-4150-9283-e8327cebc381.fae77bb4deaf2683e6aa9fbbdea88535.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Natural silver\",\"rank\":10000002,\"displayName\":\"Natural silver\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/b7fc3734-20cb-4150-9283-e8327cebc381.fae77bb4deaf2683e6aa9fbbdea88535.jpeg?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"23YOI7YCPQQU\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-Stream-14-Laptop-Intel-Celeron-N4120-Processor-4GB-RAM-64GB-eMMC-Silver-Windows-11-S-mode-with-Office-365-1-yr-14-cf2733wm/5700202955?classType=undefined\",\"usItemId\":\"5700202955\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/8584cc4a-da05-406d-b576-a7e0938fab7d.3d28163cfbd2819b97790a8914a5119c.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Pink\",\"rank\":10000003,\"displayName\":\"Pink\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/8584cc4a-da05-406d-b576-a7e0938fab7d.3d28163cfbd2819b97790a8914a5119c.jpeg?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"121VEFM85UC6\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-Stream-14-inch-Laptop-Intel-Processor-N4102-4GB-RAM-64GB-eMMC-Pink-12-mo-Microsoft-365-included/443153637?classType=undefined\",\"usItemId\":\"443153637\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"HP 14 inch Windows Laptop Intel Celeron N4120 4GB RAM 64GB eMMC Silver (12-mo. Microsoft 365 Included)\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-14-inch-Windows-Laptop-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Silver-12-mo-Microsoft-365-Included_b7fc3734-20cb-4150-9283-e8327cebc381.fae77bb4deaf2683e6aa9fbbdea88535.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"6B174344EA1D4AD4858A0EECABC9D740\",\"imageName\":\"HP-14-inch-Windows-Laptop-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Silver-12-mo-Microsoft-365-Included_b7fc3734-20cb-4150-9283-e8327cebc381.fae77bb4deaf2683e6aa9fbbdea88535.jpeg\",\"isOutOfStock\":false,\"price\":177.97,\"rating\":{\"averageRating\":4.1,\"numberOfReviews\":20388},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"Blue\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/075e0cd5-4e35-4fd8-a647-a6e3899f218d.e0766a4644927a337ad58c0a5b118e8b.jpeg?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/075e0cd5-4e35-4fd8-a647-a6e3899f218d.e0766a4644927a337ad58c0a5b118e8b.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"3I95VCSQQPY8\",\"usItemId\":\"166773164\",\"canonicalUrl\":\"/ip/HP-Stream-14-inch-Laptop-Intel-Processor-N4102-4GB-RAM-64GB-eMMC-Blue-12-mo-Microsoft-365-included/166773164?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Natural silver\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/b7fc3734-20cb-4150-9283-e8327cebc381.fae77bb4deaf2683e6aa9fbbdea88535.jpeg?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/b7fc3734-20cb-4150-9283-e8327cebc381.fae77bb4deaf2683e6aa9fbbdea88535.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"23YOI7YCPQQU\",\"usItemId\":\"5700202955\",\"canonicalUrl\":\"/ip/HP-Stream-14-Laptop-Intel-Celeron-N4120-Processor-4GB-RAM-64GB-eMMC-Silver-Windows-11-S-mode-with-Office-365-1-yr-14-cf2733wm/5700202955?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Pink\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/8584cc4a-da05-406d-b576-a7e0938fab7d.3d28163cfbd2819b97790a8914a5119c.jpeg?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/8584cc4a-da05-406d-b576-a7e0938fab7d.3d28163cfbd2819b97790a8914a5119c.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"121VEFM85UC6\",\"usItemId\":\"443153637\",\"canonicalUrl\":\"/ip/HP-Stream-14-inch-Laptop-Intel-Processor-N4102-4GB-RAM-64GB-eMMC-Pink-12-mo-Microsoft-365-included/443153637?classType=undefined\\u0026variantFieldId=actual_color\"}],\"isVariantTypeSwatch\":true,\"displayName\":\"options\",\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":20,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"64JEIM8BE3IH\",\"usItemId\":\"8650254741\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"【Win 11 Pro/MS Office 2019】16\\\" Purple Laptop,Ultra-Narrow Bezel 2.5K QHD IPS (2560x1600),Celeron N95 (3.4GHz), 16GB RAM 1T SSD,Color Backlit KB, Face Unlock, USB-C/HDMI/WiFi/BT, for Business Study\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Desktop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"608CF00626D84FA8B5ECF8C9E16029B0\",\"name\":\"Win-11-Pro-MS-Office-2019-16-Purple-Laptop-Ultra-Narrow-bezels-2-5K-FHD-2560x1600-IPS-Screen-Celeron-N5095-UPC-12G-RAM-960GB-SSD-with-Full-Size-Numer_a831bbcc-e065-46de-9ebe-11f3955103a6.b8eaf55191a34abdeb0bc8ae3285e99e.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/Win-11-Pro-MS-Office-2019-16-Purple-Laptop-Ultra-Narrow-bezels-2-5K-FHD-2560x1600-IPS-Screen-Celeron-N5095-UPC-12G-RAM-960GB-SSD-with-Full-Size-Numer_a831bbcc-e065-46de-9ebe-11f3955103a6.b8eaf55191a34abdeb0bc8ae3285e99e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Win-11-Pro-MS-Office-2019-16-Purple-Laptop-Ultra-Narrow-bezels-2-5K-FHD-2560x1600-IPS-Screen-Celeron-N5095-UPC-12G-RAM-960GB-SSD-with-Full-Size-Numer/8650254741?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:132982:1231618\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":3.9,\"numberOfReviews\":68,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"7854E2A7F69945FEA59BEE4D10DDEBD7\",\"sellerName\":\"Rumtuk\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"35EB90621041354CA85F2C6AD22AABE6\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-09T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$599.99\",\"linePrice\":\"$399.98\",\"linePriceDisplay\":\"Now $399.98\",\"savings\":\"SAVE $200.01\",\"savingsAmt\":200.01,\"wasPrice\":\"$599.99\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":369.98,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $369.98\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":{\"spQs\":\"Hg79Q5I1oyzH4LYOTYtInHOloKQH3N7jlHxE-JMFePIPwfEIx7Trz-BltqxGiGA3aTywbPexshFN54zXIkF0D0XDdoCLrBbmgrOt7CqXsKBBPJByoE7odDkuf977IFzf_ShhELo8gXw5zoq86OLo7g_yYO8z68tRmfRDN7jASB6q1uGzFfjwwJSsunIJYAeWWRNE9Rk-ADScYMFBdLZi7pwH3xifdXs9dFPgvooyjw_NNQEIEfUTMOs_wAHhMARn\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\\u0026pgId=laptop\\u0026spQs=Hg79Q5I1oyzH4LYOTYtInHOloKQH3N7jlHxE-JMFePIPwfEIx7Trz-BltqxGiGA3aTywbPexshFN54zXIkF0D0XDdoCLrBbmgrOt7CqXsKBBPJByoE7odDkuf977IFzf_ShhELo8gXw5zoq86OLo7g_yYO8z68tRmfRDN7jASB6q1uGzFfjwwJSsunIJYAeWWRNE9Rk-ADScYMFBdLZi7pwH3xifdXs9dFPgvooyjw_NNQEIEfUTMOs_wAHhMARn\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026qc=qenv\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"960 GB\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/Win-11-Pro-MS-Office-2019-16-Purple-Laptop-Ultra-Narrow-bezels-2-5K-FHD-2560x1600-IPS-Screen-Celeron-N5095-UPC-12G-RAM-960GB-SSD-with-Full-Size-Numer_a831bbcc-e065-46de-9ebe-11f3955103a6.b8eaf55191a34abdeb0bc8ae3285e99e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"608CF00626D84FA8B5ECF8C9E16029B0\",\"imageName\":\"Win-11-Pro-MS-Office-2019-16-Purple-Laptop-Ultra-Narrow-bezels-2-5K-FHD-2560x1600-IPS-Screen-Celeron-N5095-UPC-12G-RAM-960GB-SSD-with-Full-Size-Numer_a831bbcc-e065-46de-9ebe-11f3955103a6.b8eaf55191a34abdeb0bc8ae3285e99e.jpeg\",\"isOutOfStock\":false,\"price\":399.98,\"rating\":{\"averageRating\":3.9,\"numberOfReviews\":68},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":21,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"3GFQTFWRFMCG\",\"usItemId\":\"13683653981\",\"isBadSplit\":false,\"catalogSellerId\":\"0\",\"fitmentLabel\":null,\"name\":\"HP 15.6 inch Win 11 Laptop Intel Processor N200 4GB RAM 128GB UFS Moonlight Blue (12-mo. Microsoft 365 included)\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"HP 15.6 inch HD Windows 11 Laptop Intel Processor N200 4GB RAM 128GB UFS Glimmer Garnet\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":10.063519,\\\"l2sf\\\":0.4189322612708305,\\\"l2se\\\":0.418932,\\\"l2sr\\\":0.094665,\\\"src\\\":[\\\"SOLR\\\",\\\"ANN\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"B6F39FD8529E43DFB8486B3384138BCA\",\"name\":\"HP-15-6-inch-HD-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Moonlight-Blue_dc3079d7-80a5-4010-8fbc-4d397f96351f.b9d2bf6db8d7a800728cc795db09e911.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-15-6-inch-HD-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Moonlight-Blue_dc3079d7-80a5-4010-8fbc-4d397f96351f.b9d2bf6db8d7a800728cc795db09e911.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-15-6-inch-HD-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Moonlight-Blue/13683653981?classType=VARIANT\\u0026athbdg=L1103\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SOCIAL_PROOF_ATC_FLAG\",\"text\":\"In 200+ people's carts\",\"type\":\"LABEL\",\"id\":\"L1103\",\"styleId\":\"SECONDARY_BLUE_BOLD\"}],\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"tomorrow\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1103\",\"memStyleId\":\"SECONDARY_EPICBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"In 200+ people's carts\",\"styleId\":\"EPICBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.2,\"numberOfReviews\":4073,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"2CC3FBDF64523AAB9D3A78A38D07CF24\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-06T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$219.00\",\"linePriceDisplay\":\"$219.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":149,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $149.00\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"actual_color\",\"type\":\"LOCATOR\",\"id\":null,\"displayName\":\"options\",\"isVariantTypeSwatch\":true,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/dc3079d7-80a5-4010-8fbc-4d397f96351f.b9d2bf6db8d7a800728cc795db09e911.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Blue\",\"rank\":10000000,\"displayName\":\"Blue\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/5818f419-49af-4a9f-a125-e4ff0a44e2ed.295a726515a31b2c90d3e7c8eeeeee1e.png?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"23UQGPHJDHM4\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-15-6-inch-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Moonlight-Blue-12-mo-Microsoft-365-included/13683653981?classType=undefined\",\"usItemId\":\"13683653981\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/f0b6d112-5864-4e60-9042-5e63d455de45.9ba2e071b949215326db6f0940fefc2b.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Glimmer Garnet with a matte finish\",\"rank\":10000001,\"displayName\":\"Glimmer Garnet with a matte finish\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/f0b6d112-5864-4e60-9042-5e63d455de45.9ba2e071b949215326db6f0940fefc2b.jpeg?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"4OVSPDMP7VHZ\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-15-6-inch-HD-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Glimmer-Garnet/16568618338?classType=undefined\",\"usItemId\":\"16568618338\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/41b5c4cc-d67c-4dab-b169-fc1105fff9be.a571c6a1771ba2ca56e0bc5b6baa13c7.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Silver\",\"rank\":10000002,\"displayName\":\"Silver\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/d8e01eea-8d6f-47e6-9bf0-1ab98284edc8.2bfa90ff6f1068a8b8d6f782e575a910.png?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"5J8TH9S9TY83\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-15-6-inch-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Silver-12-mo-Microsoft-365-included/13660774419?classType=undefined\",\"usItemId\":\"13660774419\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"HP 15.6 inch HD Windows 11 Laptop Intel Processor N200 4GB RAM 128GB UFS Glimmer Garnet\",\"flag\":\"In 200+ people's carts\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"SOCIAL_PROOF_ATC_FLAG\",\"text\":\"In 200+ people's carts\",\"type\":\"LABEL\",\"id\":\"L1103\",\"styleId\":\"SECONDARY_BLUE_BOLD\"},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1103\",\"memStyleId\":\"SECONDARY_EPICBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"In 200+ people's carts\",\"styleId\":\"EPICBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"tomorrow\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-15-6-inch-HD-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Moonlight-Blue_dc3079d7-80a5-4010-8fbc-4d397f96351f.b9d2bf6db8d7a800728cc795db09e911.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"B6F39FD8529E43DFB8486B3384138BCA\",\"imageName\":\"HP-15-6-inch-HD-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Moonlight-Blue_dc3079d7-80a5-4010-8fbc-4d397f96351f.b9d2bf6db8d7a800728cc795db09e911.jpeg\",\"isOutOfStock\":false,\"price\":219,\"rating\":{\"averageRating\":4.2,\"numberOfReviews\":4073},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"Blue\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/5818f419-49af-4a9f-a125-e4ff0a44e2ed.295a726515a31b2c90d3e7c8eeeeee1e.png?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/dc3079d7-80a5-4010-8fbc-4d397f96351f.b9d2bf6db8d7a800728cc795db09e911.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"23UQGPHJDHM4\",\"usItemId\":\"13683653981\",\"canonicalUrl\":\"/ip/HP-15-6-inch-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Moonlight-Blue-12-mo-Microsoft-365-included/13683653981?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Glimmer Garnet with a matte finish\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/f0b6d112-5864-4e60-9042-5e63d455de45.9ba2e071b949215326db6f0940fefc2b.jpeg?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/f0b6d112-5864-4e60-9042-5e63d455de45.9ba2e071b949215326db6f0940fefc2b.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"4OVSPDMP7VHZ\",\"usItemId\":\"16568618338\",\"canonicalUrl\":\"/ip/HP-15-6-inch-HD-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Glimmer-Garnet/16568618338?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Silver\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/d8e01eea-8d6f-47e6-9bf0-1ab98284edc8.2bfa90ff6f1068a8b8d6f782e575a910.png?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/41b5c4cc-d67c-4dab-b169-fc1105fff9be.a571c6a1771ba2ca56e0bc5b6baa13c7.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"5J8TH9S9TY83\",\"usItemId\":\"13660774419\",\"canonicalUrl\":\"/ip/HP-15-6-inch-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Silver-12-mo-Microsoft-365-included/13660774419?classType=undefined\\u0026variantFieldId=actual_color\"}],\"isVariantTypeSwatch\":true,\"displayName\":\"options\",\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":22,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"6VD3BKC9CCJI\",\"usItemId\":\"13698855020\",\"isBadSplit\":false,\"catalogSellerId\":\"101027287\",\"fitmentLabel\":null,\"name\":\"HP 15.6 inch Windows 11 Laptop intel Core i3-N305 8GB RAM 256GB SSD Natural Silver\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":\"HP 15.6 inch Windows 11 Laptop intel Core i3-N305 8GB RAM 256GB SSD Natural Silver\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":14,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":10.079091,\\\"l2sf\\\":0.29859153306179265,\\\"l2se\\\":0.298592,\\\"l2sr\\\":0.978678,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":{\"otherConditionsMessage\":\"RESOLD\",\"minPriceDisplay\":\"$201.00\"},\"imageInfo\":{\"id\":\"066AAA8987EB477BA7FCFA5E50AA84D2\",\"name\":\"HP-15-6-inch-Windows-Laptop-Intel-Core-i3-N305-8GB-RAM-256GB-SSD-Natural-Silver_4f7122d2-612b-4618-b416-2fc2eb7b0186.958f8533e020e164e67c255c6d5774fc.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-15-6-inch-Windows-Laptop-Intel-Core-i3-N305-8GB-RAM-256GB-SSD-Natural-Silver_4f7122d2-612b-4618-b416-2fc2eb7b0186.958f8533e020e164e67c255c6d5774fc.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-15-6-inch-Windows-Laptop-Intel-Core-i3-N305-8GB-RAM-256GB-SSD-Natural-Silver/13698855020?classType=REGULAR\\u0026athbdg=L1600\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"BESTSELLER\",\"text\":\"Best seller\",\"type\":\"LABEL\",\"id\":\"L1600\",\"styleId\":\"TERTIARY_BLUE_BOLD\"}],\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"Sat, Mar 7\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1600\",\"memStyleId\":\"TERTIARY_LAVENDER\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Best seller\",\"styleId\":\"HYPERBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4.2,\"numberOfReviews\":2501,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"C30ECE8FFBC84E2B95ED1D21DDBD6F94\",\"sellerName\":\"VLT Distributor\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":[{\"serviceType\":\"SERVICES\",\"serviceTitle\":\"\",\"serviceSubTitle\":\"\",\"serviceProviders\":[],\"groups\":[{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"FDD1718B056836F5B7A2CCBFC497F89B\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"2855D6DD321237C8B75D085458BFD4AA\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"118BF9C4A858360B82FDBD974C86AE17\"}]}]}],\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"17E15E5AC9B8389185E9CCBD1ABECF49\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-07T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$332.90\",\"linePriceDisplay\":\"$332.90\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":201,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $201.00\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"HP 15.6 inch Windows 11 Laptop intel Core i3-N305 8GB RAM 256GB SSD Natural Silver\",\"flag\":\"Best seller\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"BESTSELLER\",\"text\":\"Best seller\",\"type\":\"LABEL\",\"id\":\"L1600\",\"styleId\":\"TERTIARY_BLUE_BOLD\"},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1600\",\"memStyleId\":\"TERTIARY_LAVENDER\",\"content\":[{\"type\":\"TEXT\",\"value\":\"Best seller\",\"styleId\":\"HYPERBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"Sat, Mar 7\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-15-6-inch-Windows-Laptop-Intel-Core-i3-N305-8GB-RAM-256GB-SSD-Natural-Silver_4f7122d2-612b-4618-b416-2fc2eb7b0186.958f8533e020e164e67c255c6d5774fc.jpeg\",\"imageSize\":\"\",\"imageID\":\"066AAA8987EB477BA7FCFA5E50AA84D2\",\"imageName\":\"HP-15-6-inch-Windows-Laptop-Intel-Core-i3-N305-8GB-RAM-256GB-SSD-Natural-Silver_4f7122d2-612b-4618-b416-2fc2eb7b0186.958f8533e020e164e67c255c6d5774fc.jpeg\",\"isOutOfStock\":false,\"price\":332.9,\"rating\":{\"averageRating\":4.2,\"numberOfReviews\":2501},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":23,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"43GND9HXAO3M\",\"usItemId\":\"13181111644\",\"isBadSplit\":false,\"catalogSellerId\":\"102581704\",\"fitmentLabel\":null,\"name\":\"RNRUO 15.6\\\" Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y with 2 Cores Up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, Windows 11 Laptop for Business, Student, Office, Dark Gray\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"Pentium Gold Processor: The RNRUO laptop features an Intel Pentium Gold 6500Y processor, 4MB Smart Cache and 5W TDP, offering reliable performance suitable for light gaming, web browsing, and document\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.15307,\\\"l2sf\\\":0.19956633692603445,\\\"l2se\\\":0.199566,\\\"l2sr\\\":0.979196,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"60300CD246324845B128579AA5234088\",\"name\":\"RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro_13769116-7795-469b-b472-90a8b51b7328.41341044ad27ff70a8994d40090837c3.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro_13769116-7795-469b-b472-90a8b51b7328.41341044ad27ff70a8994d40090837c3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro/13181111644?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:1427621\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"Sat, Mar 7\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":3.2,\"numberOfReviews\":799,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F2C87A285A934E2BAECD613A22390F63\",\"sellerName\":\"RNRUO\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"9B00988C17A6302DB726CF900586FE9B\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-07T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$409.00\",\"linePrice\":\"$196.99\",\"linePriceDisplay\":\"Now $196.99\",\"savings\":\"SAVE $212.01\",\"savingsAmt\":212.01,\"wasPrice\":\"$409.00\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":196.99,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $196.99 – $259.89\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"edition\",\"type\":\"LOCATOR\",\"id\":null,\"displayName\":\"options\",\"isVariantTypeSwatch\":false,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/13769116-7795-469b-b472-90a8b51b7328.41341044ad27ff70a8994d40090837c3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"8GB RAM+256GB SSD\",\"rank\":10000000,\"displayName\":\"8GB RAM+256GB SSD\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/2545d9c1-e58e-4baa-bcb2-a394f0f280ad.ab69784ba7664ca9d8ab0574eae6835e.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"7CK7620R0X9H\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/15-6-Inch-Laptop-for-Students-and-Business-Intel-Pentium-Processor-J3710-8GB-RAM-256GB-SSD-Windows-11-PRO/13181111644?classType=undefined\",\"usItemId\":\"13181111644\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/68902d8a-08a0-4065-8947-640ef4029ae3.5b3ed12fb1112b85a04e5013edc44595.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"16GB RAM+256GB SSD\",\"rank\":10000001,\"displayName\":\"16GB RAM+256GB SSD\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/1f41cfd3-a038-4d47-bd84-da3dc85ddd74.91ba0be4f5e006bdc3bcf14648c04068.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"3GMKBC2B5F4O\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/14-Inch-Laptop-for-Students-and-Business-Intel-Pentium-Processor-J3710-8GB-RAM-256GB-SSD-Windows-11-PRO/13175602251?classType=undefined\",\"usItemId\":\"13175602251\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/a596cbdc-3f5c-4888-b174-a29e3f9138bf.bd1c8cbbea2d37c96fec8a3c11af2d0f.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"16GB RAM+512GB SSD\",\"rank\":10000002,\"displayName\":\"16GB RAM+512GB SSD\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/4b93652b-3b50-4055-a1c7-444fe12c9356.90fb32a958b978079b0faac0a173ce07.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"66T9K0XAB9X8\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/RNRUO-15-6-inch-Laptop-Intel-Pentium-Processor-J3710-2-64-GHz-8GB-RAM-512GB-SSD-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-PRO-Students-Business/15080808241?classType=undefined\",\"usItemId\":\"15080808241\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"Pentium Gold Processor: The RNRUO laptop features an Intel Pentium Gold 6500Y processor, 4MB Smart Cache and 5W TDP, offering reliable performance suitable for light gaming, web browsing, and document\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"Sat, Mar 7\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro_13769116-7795-469b-b472-90a8b51b7328.41341044ad27ff70a8994d40090837c3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"60300CD246324845B128579AA5234088\",\"imageName\":\"RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro_13769116-7795-469b-b472-90a8b51b7328.41341044ad27ff70a8994d40090837c3.jpeg\",\"isOutOfStock\":false,\"price\":196.99,\"rating\":{\"averageRating\":3.2,\"numberOfReviews\":799},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"8GB RAM+256GB SSD\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/2545d9c1-e58e-4baa-bcb2-a394f0f280ad.ab69784ba7664ca9d8ab0574eae6835e.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/13769116-7795-469b-b472-90a8b51b7328.41341044ad27ff70a8994d40090837c3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"7CK7620R0X9H\",\"usItemId\":\"13181111644\",\"canonicalUrl\":\"/ip/15-6-Inch-Laptop-for-Students-and-Business-Intel-Pentium-Processor-J3710-8GB-RAM-256GB-SSD-Windows-11-PRO/13181111644?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"16GB RAM+256GB SSD\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/1f41cfd3-a038-4d47-bd84-da3dc85ddd74.91ba0be4f5e006bdc3bcf14648c04068.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/68902d8a-08a0-4065-8947-640ef4029ae3.5b3ed12fb1112b85a04e5013edc44595.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"3GMKBC2B5F4O\",\"usItemId\":\"13175602251\",\"canonicalUrl\":\"/ip/14-Inch-Laptop-for-Students-and-Business-Intel-Pentium-Processor-J3710-8GB-RAM-256GB-SSD-Windows-11-PRO/13175602251?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"16GB RAM+512GB SSD\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/4b93652b-3b50-4055-a1c7-444fe12c9356.90fb32a958b978079b0faac0a173ce07.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/a596cbdc-3f5c-4888-b174-a29e3f9138bf.bd1c8cbbea2d37c96fec8a3c11af2d0f.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"66T9K0XAB9X8\",\"usItemId\":\"15080808241\",\"canonicalUrl\":\"/ip/RNRUO-15-6-inch-Laptop-Intel-Pentium-Processor-J3710-2-64-GHz-8GB-RAM-512GB-SSD-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-PRO-Students-Business/15080808241?classType=undefined\\u0026variantFieldId=edition\"}],\"isVariantTypeSwatch\":false,\"displayName\":\"options\",\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":24,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"2KP0RBRHIM8A\",\"usItemId\":\"2706605807\",\"isBadSplit\":false,\"catalogSellerId\":\"9037\",\"fitmentLabel\":null,\"name\":\"HPI SOURCING - NEW 15.6\\\" Laptop, Intel N-Series N200, 4GB RAM, 128GB SSD, Windows 11 Home in S mode, 15-fd0083wm\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"Hewlett Packard Merchandise\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.432513,\\\"l2sf\\\":0.2848426665742348,\\\"l2se\\\":0.284843,\\\"l2sr\\\":0.990152,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":{\"otherConditionsMessage\":\"RESOLD\",\"minPriceDisplay\":\"$141.00\"},\"imageInfo\":{\"id\":\"F1CF55C06581456D827A83AB748C99CC\",\"name\":\"HP-15-6-inch-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Scarlet-Red-12-mo-Microsoft-365-included_c0297e29-0115-409f-aa99-55fc1cc11a42.52e867f5cebda83db7fbead6954655d3.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-15-6-inch-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Scarlet-Red-12-mo-Microsoft-365-included_c0297e29-0115-409f-aa99-55fc1cc11a42.52e867f5cebda83db7fbead6954655d3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-15-6-inch-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Scarlet-Red-12-mo-Microsoft-365-included/2706605807?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.2,\"numberOfReviews\":8896,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"33644C44C4134D55B8F56A7A94F69511\",\"sellerName\":\"RAPID RABBIT LLC\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"57BD9231C7143FFFB0FC966720B3719C\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-11T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$310.00\",\"linePriceDisplay\":\"$310.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":141,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $141.00\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"Hewlett Packard Merchandise\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-15-6-inch-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Scarlet-Red-12-mo-Microsoft-365-included_c0297e29-0115-409f-aa99-55fc1cc11a42.52e867f5cebda83db7fbead6954655d3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"F1CF55C06581456D827A83AB748C99CC\",\"imageName\":\"HP-15-6-inch-Windows-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Scarlet-Red-12-mo-Microsoft-365-included_c0297e29-0115-409f-aa99-55fc1cc11a42.52e867f5cebda83db7fbead6954655d3.jpeg\",\"isOutOfStock\":false,\"price\":310,\"rating\":{\"averageRating\":4.2,\"numberOfReviews\":8896},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":25,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"TileTakeOverProductPlaceholder\",\"type\":\"TileTakeOverProduct\",\"tileTakeOverTile\":{\"span\":\"1\",\"title\":\"Tax prep, no stress\",\"subtitle\":\"File with TurboTax, printers \\u0026 AI laptops.\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-f01b/k2-_fc078a89-be6c-40ba-b6d5-da95dcb9f339.v1.png\",\"alt\":\"A printer on a desk, a laptop and Intuit Turbo Tax filing software.\",\"assetId\":\"ceb1512d-9db5-4296-a28a-f5c6291ae617\",\"assetName\":\"8131451-203-ETS-2026TaxPrep-REG-ALL-SingleTTO-Null.png\"},\"logoImage\":null,\"backgroundColor\":null,\"titleTextColor\":null,\"subtitleTextColor\":null,\"tileCta\":[{\"ctaLink\":{\"clickThrough\":{\"value\":\"/shop/tax-prep?sort=best_seller?povid=ETS_D72_COMPUTING_TTO_CMPN_SB-TaxPrep_Laptops\"},\"linkText\":\"Shop now\",\"title\":\"Shop now\"},\"ctaType\":\"button\",\"ctaTextColor\":null}],\"adsEnabled\":\"False\",\"adCardLocation\":null,\"enableLazyLoad\":null}},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"3JBLOWO8NG7D\",\"usItemId\":\"13193314406\",\"isBadSplit\":false,\"catalogSellerId\":\"102581704\",\"fitmentLabel\":null,\"name\":\"RNRUO 15.6\\\" Laptop, Intel 6500Y up to 3.4GHz 16GB RAM 512GB SSD, With Office 2024, 1920*1080 IPS FHD Display Windows 11 for Student, Home Office, Business\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"15.6 inch Full HD Display: The 15.6 inch Full HD IPS screen delivers a stunning visual feast with an ultra-clear resolution of 19201080.Equipped with wide-viewing angle technology, this display\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":8.839779,\\\"l2sf\\\":0.2060145342396078,\\\"l2se\\\":0.206015,\\\"l2sr\\\":0.958034,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"2F800D8730F44CDF8E7A55024474D4FE\",\"name\":\"RNRUO-15-6-Windows-11-Pro-Laptop-Intel-Celeron-N5095-up-to-2-9GHz-16GB-RAM-512GB-SSD-Fingerprint-Backlit-Keyboard-1920-1080-IPS-FHD-Display_9be3df6f-ca6d-4335-8417-cdb4d170cc32.7ee850faef25d26011b1a596a683b1b7.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/RNRUO-15-6-Windows-11-Pro-Laptop-Intel-Celeron-N5095-up-to-2-9GHz-16GB-RAM-512GB-SSD-Fingerprint-Backlit-Keyboard-1920-1080-IPS-FHD-Display_9be3df6f-ca6d-4335-8417-cdb4d170cc32.7ee850faef25d26011b1a596a683b1b7.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/RNRUO-15-6-Windows-11-Pro-Laptop-Intel-Celeron-N5095-up-to-2-9GHz-16GB-RAM-512GB-SSD-Fingerprint-Backlit-Keyboard-1920-1080-IPS-FHD-Display/13193314406?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"Sat, Mar 7\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":3.8,\"numberOfReviews\":841,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F2C87A285A934E2BAECD613A22390F63\",\"sellerName\":\"RNRUO\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"787986EFE7473794BBFDEC9DD6766B59\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-07T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$509.00\",\"linePrice\":\"$259.99\",\"linePriceDisplay\":\"Now $259.99\",\"savings\":\"SAVE $249.01\",\"savingsAmt\":249.01,\"wasPrice\":\"$509.00\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":259.99,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $259.99 – $279.99\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"edition\",\"type\":\"LOCATOR\",\"id\":null,\"displayName\":\"options\",\"isVariantTypeSwatch\":false,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/9be3df6f-ca6d-4335-8417-cdb4d170cc32.7ee850faef25d26011b1a596a683b1b7.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"16GB RAM+512GB SSD\",\"rank\":10000000,\"displayName\":\"16GB RAM+512GB SSD\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/2d5807be-8cc4-41f0-bdec-a44c0f8fdf75.a870a21244144ade03bfe110ea858fb7.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"1RW28L06KMLO\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/15-6-Inch-Business-Laptop-Notebook-PC-CPU-N5095-16GB-RAM-512GB-SSD-Storage-Windows-11-Fingerprint-Recognition-Backlit-Keyboard/13193314406?classType=undefined\",\"usItemId\":\"13193314406\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/3f200c35-f7b2-45b5-a5d6-a95cf3f683cc.2727313de382559d2d42d3192e042a33.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"32GB RAM+512GB SSD\",\"rank\":10000001,\"displayName\":\"32GB RAM+512GB SSD\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/f9463515-924e-4b8a-b734-4482641bc425.e28e9da9991ae14a08a9cdd485f293f1.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"0YS1QBN1CNNT\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/RNRUO-15-6-Windows-11-Pro-Laptop-Intel-Celeron-N5095-2-9GHz-16GB-RAM-1TB-SSD-Fingerprint-1920-1080-IPS-FHD-Display-for-Student-Business-Gaming/15049173091?classType=undefined\",\"usItemId\":\"15049173091\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"15.6 inch Full HD Display: The 15.6 inch Full HD IPS screen delivers a stunning visual feast with an ultra-clear resolution of 19201080.Equipped with wide-viewing angle technology, this display\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"Sat, Mar 7\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/RNRUO-15-6-Windows-11-Pro-Laptop-Intel-Celeron-N5095-up-to-2-9GHz-16GB-RAM-512GB-SSD-Fingerprint-Backlit-Keyboard-1920-1080-IPS-FHD-Display_9be3df6f-ca6d-4335-8417-cdb4d170cc32.7ee850faef25d26011b1a596a683b1b7.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"2F800D8730F44CDF8E7A55024474D4FE\",\"imageName\":\"RNRUO-15-6-Windows-11-Pro-Laptop-Intel-Celeron-N5095-up-to-2-9GHz-16GB-RAM-512GB-SSD-Fingerprint-Backlit-Keyboard-1920-1080-IPS-FHD-Display_9be3df6f-ca6d-4335-8417-cdb4d170cc32.7ee850faef25d26011b1a596a683b1b7.jpeg\",\"isOutOfStock\":false,\"price\":259.99,\"rating\":{\"averageRating\":3.8,\"numberOfReviews\":841},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"16GB RAM+512GB SSD\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/2d5807be-8cc4-41f0-bdec-a44c0f8fdf75.a870a21244144ade03bfe110ea858fb7.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/9be3df6f-ca6d-4335-8417-cdb4d170cc32.7ee850faef25d26011b1a596a683b1b7.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"1RW28L06KMLO\",\"usItemId\":\"13193314406\",\"canonicalUrl\":\"/ip/15-6-Inch-Business-Laptop-Notebook-PC-CPU-N5095-16GB-RAM-512GB-SSD-Storage-Windows-11-Fingerprint-Recognition-Backlit-Keyboard/13193314406?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"32GB RAM+512GB SSD\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/f9463515-924e-4b8a-b734-4482641bc425.e28e9da9991ae14a08a9cdd485f293f1.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/3f200c35-f7b2-45b5-a5d6-a95cf3f683cc.2727313de382559d2d42d3192e042a33.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"0YS1QBN1CNNT\",\"usItemId\":\"15049173091\",\"canonicalUrl\":\"/ip/RNRUO-15-6-Windows-11-Pro-Laptop-Intel-Celeron-N5095-2-9GHz-16GB-RAM-1TB-SSD-Fingerprint-1920-1080-IPS-FHD-Display-for-Student-Business-Gaming/15049173091?classType=undefined\\u0026variantFieldId=edition\"}],\"isVariantTypeSwatch\":false,\"displayName\":\"options\",\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":26,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"22FQEDQ48XB3\",\"usItemId\":\"6144300102\",\"isBadSplit\":false,\"catalogSellerId\":\"101196098\",\"fitmentLabel\":null,\"name\":\"Windows 11 Pro Laptop 15.6inch, 12GB RAM 512GB SSD, 12th Gen Intel N100 Processor, 1920x1080, Webacm\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":\"\\u003cli\\u003e12th Gen Intel Alder Lake N100 Experience the ultimate performance of the TEMLICOLO laptop with the 12th Gen Intel Alder Lake N100 CPU. Enjoy lightning-fast performance and smooth multitasking\\u003c/li\\u003e\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":8.853339,\\\"l2sf\\\":0.22601458818808942,\\\"l2se\\\":0.226015,\\\"l2sr\\\":0.911805,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"0787783358444515BC17A767E1CF9DFA\",\"name\":\"Windows-11-Pro-Laptop-15-6inch-12GB-RAM-512GB-SSD-12th-Gen-Intel-N100-Processor-1920x1080-Webacm_5824e102-a508-4b0b-b087-de1ccffb7f81.70efd51e0b08d50e1e56c75588c3ea26.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/Windows-11-Pro-Laptop-15-6inch-12GB-RAM-512GB-SSD-12th-Gen-Intel-N100-Processor-1920x1080-Webacm_5824e102-a508-4b0b-b087-de1ccffb7f81.70efd51e0b08d50e1e56c75588c3ea26.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Windows-11-Pro-Laptop-15-6inch-12GB-RAM-512GB-SSD-12th-Gen-Intel-N100-Processor-1920x1080-Webacm/6144300102?classType=REGULAR\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4,\"numberOfReviews\":342,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"7B4EED0CFCC74A01829CABD714195773\",\"sellerName\":\"TEMLICOLO STORE\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"52A5C6E203D23DB5B462AEAC7E381779\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-09T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$549.99\",\"linePrice\":\"$289.99\",\"linePriceDisplay\":\"Now $289.99\",\"savings\":\"SAVE $260.00\",\"savingsAmt\":260,\"wasPrice\":\"$549.99\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"\\u003cli\\u003e12th Gen Intel Alder Lake N100 Experience the ultimate performance of the TEMLICOLO laptop with the 12th Gen Intel Alder Lake N100 CPU. Enjoy lightning-fast performance and smooth multitasking\\u003c/li\\u003e\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/Windows-11-Pro-Laptop-15-6inch-12GB-RAM-512GB-SSD-12th-Gen-Intel-N100-Processor-1920x1080-Webacm_5824e102-a508-4b0b-b087-de1ccffb7f81.70efd51e0b08d50e1e56c75588c3ea26.jpeg\",\"imageSize\":\"\",\"imageID\":\"0787783358444515BC17A767E1CF9DFA\",\"imageName\":\"Windows-11-Pro-Laptop-15-6inch-12GB-RAM-512GB-SSD-12th-Gen-Intel-N100-Processor-1920x1080-Webacm_5824e102-a508-4b0b-b087-de1ccffb7f81.70efd51e0b08d50e1e56c75588c3ea26.jpeg\",\"isOutOfStock\":false,\"price\":289.99,\"rating\":{\"averageRating\":4,\"numberOfReviews\":342},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":27,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"3O2E0RNVESL8\",\"usItemId\":\"13374211754\",\"isBadSplit\":false,\"catalogSellerId\":\"0\",\"fitmentLabel\":null,\"name\":\"Lenovo IdeaPad Slim 3i 15.6\\\" Laptop, Intel Core i3-N305, 8GB, 256 SSD, 82XB00BMUS\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":\"Lenovo IdeaPad Slim 3i 15.6\\\" Laptop, Intel Core i3-N305, 8GB, 256 SSD, 82XB00BMUS\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":1,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":11.094208,\\\"l2sf\\\":0.27700477925080585,\\\"l2se\\\":0.277005,\\\"l2sr\\\":0.98776,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"BBE4B9E1F53E4BF08E9B763F7F68D733\",\"name\":\"Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Core-i3-N305-8GB-256-SSD-82XB00BMUS_0cf51be0-e420-4bc8-a1c7-3110cb00db01.4cd90c47e4e33ebf32c7c679866b73cd.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Core-i3-N305-8GB-256-SSD-82XB00BMUS_0cf51be0-e420-4bc8-a1c7-3110cb00db01.4cd90c47e4e33ebf32c7c679866b73cd.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Core-i3-N305-8GB-256-SSD-82XB00BMUS/13374211754?classType=REGULAR\\u0026athbdg=L1102\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:1230091:1091333\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SOCIAL_PROOF_PURCHASES_FLAG\",\"text\":\"50+ bought since yesterday\",\"type\":\"LABEL\",\"id\":\"L1102\",\"styleId\":\"SECONDARY_BLUE_BOLD\"}],\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"tomorrow\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1102\",\"memStyleId\":\"SECONDARY_EPICBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"50+ bought since yesterday\",\"styleId\":\"EPICBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4.3,\"numberOfReviews\":1996,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":[{\"serviceType\":\"SERVICES\",\"serviceTitle\":\"\",\"serviceSubTitle\":\"\",\"serviceProviders\":[],\"groups\":[{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"FDD1718B056836F5B7A2CCBFC497F89B\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"2855D6DD321237C8B75D085458BFD4AA\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"118BF9C4A858360B82FDBD974C86AE17\"}]}]}],\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"C8C41CC5C3733A5587C8628A64A7EDBA\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-06T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$329.00\",\"linePriceDisplay\":\"$329.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"Lenovo IdeaPad Slim 3i 15.6\\\" Laptop, Intel Core i3-N305, 8GB, 256 SSD, 82XB00BMUS\",\"flag\":\"50+ bought since yesterday\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"SOCIAL_PROOF_PURCHASES_FLAG\",\"text\":\"50+ bought since yesterday\",\"type\":\"LABEL\",\"id\":\"L1102\",\"styleId\":\"SECONDARY_BLUE_BOLD\"},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1102\",\"memStyleId\":\"SECONDARY_EPICBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"50+ bought since yesterday\",\"styleId\":\"EPICBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"tomorrow\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Core-i3-N305-8GB-256-SSD-82XB00BMUS_0cf51be0-e420-4bc8-a1c7-3110cb00db01.4cd90c47e4e33ebf32c7c679866b73cd.jpeg\",\"imageSize\":\"\",\"imageID\":\"BBE4B9E1F53E4BF08E9B763F7F68D733\",\"imageName\":\"Lenovo-IdeaPad-Slim-3i-15-6-Laptop-Intel-Core-i3-N305-8GB-256-SSD-82XB00BMUS_0cf51be0-e420-4bc8-a1c7-3110cb00db01.4cd90c47e4e33ebf32c7c679866b73cd.jpeg\",\"isOutOfStock\":false,\"price\":329,\"rating\":{\"averageRating\":4.3,\"numberOfReviews\":1996},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":28,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"786WYFDQ0X0H\",\"usItemId\":\"13542163431\",\"isBadSplit\":false,\"catalogSellerId\":\"0\",\"fitmentLabel\":null,\"name\":\"ASUS Vivobook Go 15.6” Laptop, Intel i3-N305, 8GB, 256GB, Windows 11 Home in S mode, Cool Silver, E1504GA-WS35\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"ASUS Vivobook Go 15.6 Laptop, Intel i3-N305, 8GB, 256GB, Windows 11 Home in S mode, Cool Silver, E1504GA-WS35\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":10.038136,\\\"l2sf\\\":0.22325736300034843,\\\"l2se\\\":0.223257,\\\"l2sr\\\":0.976704,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"DF2CC50254DD40958DE86A586DB4D6CA\",\"name\":\"ASUS-Vivobook-Go-15-6-Laptop-Intel-i3-N305-8GB-256GB-Windows-11-Home-in-S-mode-Cool-Silver-E1504GA-WS35_a36e0438-f6f8-45e7-9494-938be6d7bffe.1c34ed81b72299aaa180ef7e0a5bced0.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/ASUS-Vivobook-Go-15-6-Laptop-Intel-i3-N305-8GB-256GB-Windows-11-Home-in-S-mode-Cool-Silver-E1504GA-WS35_a36e0438-f6f8-45e7-9494-938be6d7bffe.1c34ed81b72299aaa180ef7e0a5bced0.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/ASUS-Vivobook-Go-15-6-Laptop-Intel-i3-N305-8GB-256GB-Windows-11-Home-in-S-mode-Cool-Silver-E1504GA-WS35/13542163431?classType=VARIANT\\u0026athbdg=L1102\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SOCIAL_PROOF_PURCHASES_FLAG\",\"text\":\"100+ bought since yesterday\",\"type\":\"LABEL\",\"id\":\"L1102\",\"styleId\":\"SECONDARY_BLUE_BOLD\"}],\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"urgency\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1071\",\"key\":\"LOW_INVENTORY\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":null,\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"RED_BOLD\",\"text\":\"Only 8 left\",\"type\":\"LABEL\",\"iconId\":null,\"templates\":null,\"badgeContent\":null}]},{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"tomorrow\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1102\",\"memStyleId\":\"SECONDARY_EPICBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"100+ bought since yesterday\",\"styleId\":\"EPICBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.3,\"numberOfReviews\":669,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"B00BB6A34330387D9BD84B93B7AD4464\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-06T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$269.00\",\"linePriceDisplay\":\"$269.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"ASUS Vivobook Go 15.6 Laptop, Intel i3-N305, 8GB, 256GB, Windows 11 Home in S mode, Cool Silver, E1504GA-WS35\",\"flag\":\"100+ bought since yesterday\",\"badge\":{\"__typename\":\"BaseBadge\",\"key\":\"SOCIAL_PROOF_PURCHASES_FLAG\",\"text\":\"100+ bought since yesterday\",\"type\":\"LABEL\",\"id\":\"L1102\",\"styleId\":\"SECONDARY_BLUE_BOLD\"},\"groupsV2\":[{\"name\":\"flags\",\"pos\":\"ProdTileBadgeModule1\",\"flow\":\"HORIZONTAL\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1102\",\"memStyleId\":\"SECONDARY_EPICBLUE\",\"content\":[{\"type\":\"TEXT\",\"value\":\"100+ bought since yesterday\",\"styleId\":\"EPICBLUE_BOLD\",\"contDesc\":null,\"url\":null,\"actionId\":null,\"actionContent\":null}]}]}],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"tomorrow\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/ASUS-Vivobook-Go-15-6-Laptop-Intel-i3-N305-8GB-256GB-Windows-11-Home-in-S-mode-Cool-Silver-E1504GA-WS35_a36e0438-f6f8-45e7-9494-938be6d7bffe.1c34ed81b72299aaa180ef7e0a5bced0.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"DF2CC50254DD40958DE86A586DB4D6CA\",\"imageName\":\"ASUS-Vivobook-Go-15-6-Laptop-Intel-i3-N305-8GB-256GB-Windows-11-Home-in-S-mode-Cool-Silver-E1504GA-WS35_a36e0438-f6f8-45e7-9494-938be6d7bffe.1c34ed81b72299aaa180ef7e0a5bced0.jpeg\",\"isOutOfStock\":false,\"price\":269,\"rating\":{\"averageRating\":4.3,\"numberOfReviews\":669},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":29,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"6QVMXQEDJCYS\",\"usItemId\":\"11739907604\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"HP Stream 14\\\" HD BrightView Laptop, Intel Celeron N4120, 16GB RAM, 416GB Storage (128GB eMMC + 288GB Docking Station Set), Intel UHD Graphics, 720p Camera, Wi-Fi, 1 Year Office 365, Win 11 S, Gold\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"0096AB5747B8404DA915BEE64E492B77\",\"name\":\"HP-Stream-14-HD-BrightView-Laptop-Intel-Celeron-N4120-16GB-RAM-416GB-Storage-128GB-eMMC-288GB-Docking-Station-Set-Intel-UHD-Graphics-720p-Camera-Wi-F_22050529-6b94-49a0-8723-dc31f8aa6cef.43dfa074b0aed5a184636b202fd98e02.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-Stream-14-HD-BrightView-Laptop-Intel-Celeron-N4120-16GB-RAM-416GB-Storage-128GB-eMMC-288GB-Docking-Station-Set-Intel-UHD-Graphics-720p-Camera-Wi-F_22050529-6b94-49a0-8723-dc31f8aa6cef.43dfa074b0aed5a184636b202fd98e02.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-Stream-14-HD-BrightView-Laptop-Intel-Celeron-N4120-16GB-RAM-416GB-Storage-128GB-eMMC-288GB-Docking-Station-Set-Intel-UHD-Graphics-720p-Camera-Wi-F/11739907604?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.6,\"numberOfReviews\":37,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"5A7BBCA292B74CB4B2868698B870BEA5\",\"sellerName\":\"Piety Tech LLC\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"22B73543A61E31788B60AE04FB611AAC\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-10T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$399.00\",\"linePrice\":\"$359.00\",\"linePriceDisplay\":\"Now $359.00\",\"savings\":\"SAVE $40.00\",\"savingsAmt\":40,\"wasPrice\":\"$399.00\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":359,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $359.00 – $389.00\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":{\"spQs\":\"WLPwFsMwztWXF2fNeQFGiO1PzlOSbVTGnHJeWNOo76QUCHpuxkkF4I7O1g-vCvoOeF9XAF74jkrcWu_jm1-pHAnXjrzL9EAtC4l9VYXb1vQhHo0J20WTKqyPFcu3mFcM9Z-zYeHaYzZIY5BdKZFqU4zHie2Il0nhjrCmsKSCnL-6W5_8J4-SYIfHPnHYQyaaYf3CB8nOwS3REyxV5oKxKOpyMb0PVFVwDHlCBuFpbyNNVuJ6RdAoEFUFjdiRtuLg21MdHKCsizG5wPNwiCokFg\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\\u0026pgId=laptop\\u0026spQs=WLPwFsMwztWXF2fNeQFGiO1PzlOSbVTGnHJeWNOo76QUCHpuxkkF4I7O1g-vCvoOeF9XAF74jkrcWu_jm1-pHAnXjrzL9EAtC4l9VYXb1vQhHo0J20WTKqyPFcu3mFcM9Z-zYeHaYzZIY5BdKZFqU4zHie2Il0nhjrCmsKSCnL-6W5_8J4-SYIfHPnHYQyaaYf3CB8nOwS3REyxV5oKxKOpyMb0PVFVwDHlCBuFpbyNNVuJ6RdAoEFUFjdiRtuLg21MdHKCsizG5wPNwiCokFg\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026qc=qenv\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"14 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-Stream-14-HD-BrightView-Laptop-Intel-Celeron-N4120-16GB-RAM-416GB-Storage-128GB-eMMC-288GB-Docking-Station-Set-Intel-UHD-Graphics-720p-Camera-Wi-F_22050529-6b94-49a0-8723-dc31f8aa6cef.43dfa074b0aed5a184636b202fd98e02.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"0096AB5747B8404DA915BEE64E492B77\",\"imageName\":\"HP-Stream-14-HD-BrightView-Laptop-Intel-Celeron-N4120-16GB-RAM-416GB-Storage-128GB-eMMC-288GB-Docking-Station-Set-Intel-UHD-Graphics-720p-Camera-Wi-F_22050529-6b94-49a0-8723-dc31f8aa6cef.43dfa074b0aed5a184636b202fd98e02.jpeg\",\"isOutOfStock\":false,\"price\":359,\"rating\":{\"averageRating\":4.6,\"numberOfReviews\":37},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":30,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"TileTakeOverProductPlaceholder\",\"type\":\"TileTakeOverProduct\",\"tileTakeOverTile\":{\"span\":\"1\",\"title\":\"Up to $50 off top tech\",\"subtitle\":\"Level up with laptops \\u0026 more. \",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-2c96/k2-_36475b8e-64b9-49b4-8447-e3aef60c869f.v1.jpg\",\"alt\":\"Laptop, camera, iPhone.  \",\"assetId\":\"f9c2aca2-6edb-4445-bc83-fbdc378a839d\",\"assetName\":\"8043395-003-MP-ElevateYourTechnology-REG-ALL-SingleTTO-Null.jpg\"},\"logoImage\":null,\"backgroundColor\":null,\"titleTextColor\":null,\"subtitleTextColor\":null,\"tileCta\":[{\"ctaLink\":{\"clickThrough\":{\"value\":\"/shop/savings/elevate-your-tech?cat_id=3944_1089430_3951_1230091_1094888\\u0026XCAT_MPSpotlights_ElevateyourTech_Shop_TTO_Sav_ETS\"},\"linkText\":\"Shop now\",\"title\":\"Shop now\"},\"ctaType\":\"button\",\"ctaTextColor\":null}],\"adsEnabled\":\"False\",\"adCardLocation\":null,\"enableLazyLoad\":null}},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"7CK7620R0X9H\",\"usItemId\":\"13181111644\",\"isBadSplit\":false,\"fitmentLabel\":null,\"name\":\"RNRUO 15.6\\\" Laptop Computer, 8GB RAM 256GB SSD, Intel Pentium Gold 6500Y with 2 Cores Up to 3.4GHz, FHD Display, Office 2024, WiFi5 BT5.0, Windows 11 Laptop for Business, Student, Office, Dark Gray\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":null,\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":null,\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":null,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"60300CD246324845B128579AA5234088\",\"name\":\"RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro_13769116-7795-469b-b472-90a8b51b7328.41341044ad27ff70a8994d40090837c3.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro_13769116-7795-469b-b472-90a8b51b7328.41341044ad27ff70a8994d40090837c3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro/13181111644?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:1427621\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"Sat, Mar 7\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":3.2,\"numberOfReviews\":799,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F2C87A285A934E2BAECD613A22390F63\",\"sellerName\":\"RNRUO\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"9B00988C17A6302DB726CF900586FE9B\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-07T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$409.00\",\"linePrice\":\"$196.99\",\"linePriceDisplay\":\"Now $196.99\",\"savings\":\"SAVE $212.01\",\"savingsAmt\":212.01,\"wasPrice\":\"$409.00\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":196.99,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $196.99 – $259.89\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":{\"spQs\":\"YoaotNoQtbgpvnCoeFB-yeZH9_ULcZUZJcmuXo_frFvEfANW_RMBD8TxsBXnh6unA0U9A4FC1lZUyH1-0_7OmgnXjrzL9EAtC4l9VYXb1vQhHo0J20WTKqyPFcu3mFcMOMkbzj9L8U8k4ZtlkuE8tYb9AtU50rKHI0m0IyinJgboj3BMpRAq8DVZAkGjBs9PKMe5P4DX_QpMW5u4L5EoCBpCqojXdNN-czena9K8kIqlTUMDa1fgjW7POpEXzNfYhNFvwP5tGrnpAE8blk3pzvIIgApoZ7PD5N719u1EOE0\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\\u0026pgId=laptop\\u0026spQs=YoaotNoQtbgpvnCoeFB-yeZH9_ULcZUZJcmuXo_frFvEfANW_RMBD8TxsBXnh6unA0U9A4FC1lZUyH1-0_7OmgnXjrzL9EAtC4l9VYXb1vQhHo0J20WTKqyPFcu3mFcMOMkbzj9L8U8k4ZtlkuE8tYb9AtU50rKHI0m0IyinJgboj3BMpRAq8DVZAkGjBs9PKMe5P4DX_QpMW5u4L5EoCBpCqojXdNN-czena9K8kIqlTUMDa1fgjW7POpEXzNfYhNFvwP5tGrnpAE8blk3pzvIIgApoZ7PD5N719u1EOE0\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sp-search-middle\\u0026bkt=ace1_default%7Cace2_default%7Cace3_default%7Cbb_1_13745%7Cbb_2_13747%7Ccoldstart_off%7Csearch_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026qc=qenv\\u0026et=head_torso\\u0026st=head\",\"spTags\":null,\"viewBeacon\":null},\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[{\"displayEnum\":\"other\",\"value\":\"15.6 in\"}],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"Sat, Mar 7\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro_13769116-7795-469b-b472-90a8b51b7328.41341044ad27ff70a8994d40090837c3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"60300CD246324845B128579AA5234088\",\"imageName\":\"RNRUO-15-6-inch-1080p-Laptop-Computer-8GB-RAM-256GB-SSD-with-4-Core-Intel-Pentium-J3710-2-64-GHz-1920-1080-IPS-WiFi-5-BT5-0-Windows-11-Pro_13769116-7795-469b-b472-90a8b51b7328.41341044ad27ff70a8994d40090837c3.jpeg\",\"isOutOfStock\":false,\"price\":196.99,\"rating\":{\"averageRating\":3.2,\"numberOfReviews\":799},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":true,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":31,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"4FGUVW0BDJO5\",\"usItemId\":\"436432207\",\"isBadSplit\":false,\"catalogSellerId\":\"101002329\",\"fitmentLabel\":null,\"name\":\"Restored Apple Macbook Air 13.3\\\" Laptop Core i5 128Gb Gold (2019).\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":\"\\u003cli\\u003eThis Certified Refurbished product is tested and certified to look and work like new. The refurbishing process includes functionality testing, basic cleaning, inspection, and repackaging. The\\u003c/li\\u003e\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":8.88379,\\\"l2sf\\\":0.27098992819704215,\\\"l2se\\\":0.27099,\\\"l2sr\\\":0.193102,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":2,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"1B4A377AADD7445E9A23FAF1CDC57622\",\"name\":\"f56e563d-c946-4b57-9c0f-8a61cdf5abfc.321dc32e9e7cd78e62637c991a0c4c72.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/asr/f56e563d-c946-4b57-9c0f-8a61cdf5abfc.321dc32e9e7cd78e62637c991a0c4c72.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Apple-Macbook-Air-13-3-Laptop-Core-i5-128Gb-Gold-2019-USED/436432207?conditionGroupCode=2\\u0026classType=REGULAR\",\"conditionV2\":{\"code\":5,\"groupCode\":2},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8945805:4302526\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"product_condition\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1095\",\"key\":\"PREOWNED\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":null,\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"REFURB_ICON_BLACK_TXT\",\"text\":\"Restored: Like New\",\"type\":\"ICON\",\"iconId\":null,\"templates\":null,\"badgeContent\":null}]},{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":null,\"numberOfReviews\":null,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"9E1C2F11C1F0459EB7FE84F2FBD988C0\",\"sellerName\":\"JVCOM\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"BC2382641B31486F82F3A6D2843A97C1\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-10T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$369.99\",\"linePriceDisplay\":\"$369.99\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":true,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":\"Restored: Like New\",\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"\\u003cli\\u003eThis Certified Refurbished product is tested and certified to look and work like new. The refurbishing process includes functionality testing, basic cleaning, inspection, and repackaging. The\\u003c/li\\u003e\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/asr/f56e563d-c946-4b57-9c0f-8a61cdf5abfc.321dc32e9e7cd78e62637c991a0c4c72.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"1B4A377AADD7445E9A23FAF1CDC57622\",\"imageName\":\"f56e563d-c946-4b57-9c0f-8a61cdf5abfc.321dc32e9e7cd78e62637c991a0c4c72.jpeg\",\"isOutOfStock\":false,\"price\":369.99,\"rating\":{\"averageRating\":0,\"numberOfReviews\":0},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":32,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"5U60Z39ALT7O\",\"usItemId\":\"13566207291\",\"isBadSplit\":false,\"catalogSellerId\":\"0\",\"fitmentLabel\":null,\"name\":\"ASUS Vivobook 15.6” FHD Laptop with Intel i5-1334U, Intel UHD Graphics, 8GB RAM, 512GB SSD, Cool Silver\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"ASUS Vivobook 15 15.6 FHD Laptop Intel i5 8GB RAM 512GB SSD, Cool Silver\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.413699,\\\"l2sf\\\":0.19205527941448794,\\\"l2se\\\":0.192055,\\\"l2sr\\\":0.983793,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"1672CFC1E3054FB3B680CECB958A2294\",\"name\":\"ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver_ec382747-3630-476f-b757-27850fd5268d.1cb2e27459fdb9f8d341c4c0b104c191.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver_ec382747-3630-476f-b757-27850fd5268d.1cb2e27459fdb9f8d341c4c0b104c191.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver/13566207291?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"tomorrow\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.1,\"numberOfReviews\":188,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":[{\"serviceType\":\"SERVICES\",\"serviceTitle\":\"\",\"serviceSubTitle\":\"\",\"serviceProviders\":[],\"groups\":[{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"FDD1718B056836F5B7A2CCBFC497F89B\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"2855D6DD321237C8B75D085458BFD4AA\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"118BF9C4A858360B82FDBD974C86AE17\"}]}]}],\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"3BF7098CD3F235CCB77C273D728CC4D2\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-06T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$399.00\",\"linePriceDisplay\":\"$399.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":399,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $399.00 – $459.00\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"edition\",\"type\":\"DEFAULT\",\"id\":null,\"displayName\":\"options\",\"isVariantTypeSwatch\":false,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/b8c3a2c9-b6a0-4eae-afc8-70857d8e1e4a.732b58511390bce810d6e00a8e15dee3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Intel  i3-1315U\",\"rank\":10000000,\"displayName\":\"Intel  i3-1315U\",\"swatchImageUrl\":null,\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"7EMAXKONBV2A\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/ASUS-Newest-Vivobook-14-FHD-Lightweight-Laptop-16GB-RAM-1TB-PCIe-SSD-Intel-Core-i3-1315U-Beat-i5-1135G7-WiFi-HDMI-Win-11-Quiet-Blue/17128169940?classType=undefined\",\"usItemId\":\"17128169940\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/ec382747-3630-476f-b757-27850fd5268d.1cb2e27459fdb9f8d341c4c0b104c191.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Intel i5-1334U\",\"rank\":10000001,\"displayName\":\"Intel i5-1334U\",\"swatchImageUrl\":null,\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"6RV1A9BOYMVA\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/ASUS-Vivobook-15-6-Laptop-Intel-i5-U15-8GB-512GB-Windows-11-Home-Cool-Silver-F1504VA-WS51/13566207291?classType=undefined\",\"usItemId\":\"13566207291\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"ASUS Vivobook 15 15.6 FHD Laptop Intel i5 8GB RAM 512GB SSD, Cool Silver\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"tomorrow\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver_ec382747-3630-476f-b757-27850fd5268d.1cb2e27459fdb9f8d341c4c0b104c191.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"1672CFC1E3054FB3B680CECB958A2294\",\"imageName\":\"ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver_ec382747-3630-476f-b757-27850fd5268d.1cb2e27459fdb9f8d341c4c0b104c191.jpeg\",\"isOutOfStock\":false,\"price\":399,\"rating\":{\"averageRating\":4.1,\"numberOfReviews\":188},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"Intel  i3-1315U\",\"swatchImageUrl\":\"\",\"image\":\"https://i5.walmartimages.com/asr/b8c3a2c9-b6a0-4eae-afc8-70857d8e1e4a.732b58511390bce810d6e00a8e15dee3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"7EMAXKONBV2A\",\"usItemId\":\"17128169940\",\"canonicalUrl\":\"/ip/ASUS-Newest-Vivobook-14-FHD-Lightweight-Laptop-16GB-RAM-1TB-PCIe-SSD-Intel-Core-i3-1315U-Beat-i5-1135G7-WiFi-HDMI-Win-11-Quiet-Blue/17128169940?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"Intel i5-1334U\",\"swatchImageUrl\":\"\",\"image\":\"https://i5.walmartimages.com/asr/ec382747-3630-476f-b757-27850fd5268d.1cb2e27459fdb9f8d341c4c0b104c191.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"6RV1A9BOYMVA\",\"usItemId\":\"13566207291\",\"canonicalUrl\":\"/ip/ASUS-Vivobook-15-6-Laptop-Intel-i5-U15-8GB-512GB-Windows-11-Home-Cool-Silver-F1504VA-WS51/13566207291?classType=undefined\\u0026variantFieldId=edition\"}],\"isVariantTypeSwatch\":false,\"displayName\":\"options\",\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":33,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"6VXEAJODT4EG\",\"usItemId\":\"9143614208\",\"isBadSplit\":false,\"catalogSellerId\":\"101245527\",\"fitmentLabel\":null,\"name\":\"Auusda 15.6\\\" Business Laptop, 32GB RAM 1TB SSD, Windows 11 Pro Computers, Intel N5100 CPU, Pink\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"\\u003cli\\u003eUP TO 3.4 GHz CPU: Fast and smooth performance for work and play, with Intel Alder Lake-N N95 processor with cooling fan, 4 cores, 4 threads, 6MB Cache, and Intel UHD Graphics\\u003c/li\\u003e\\u003cli\\u003e32GB RAM 1TB\\u003c/li\\u003e\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":8.369103,\\\"l2sf\\\":0.25827044880056427,\\\"l2se\\\":0.25827,\\\"l2sr\\\":0.992313,\\\"src\\\":[\\\"ANN\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"AB1F92885D924C78A36591884C923FA1\",\"name\":\"Auusda-15-6-Business-Laptop-32GB-RAM-1TB-SSD-Windows-11-Pro-Computers-Intel-N95-CPU-Pink_730c87d9-120a-4f52-80cf-2c78468ecd61.5a90dc9e62da5ccc10c9a50162a179f5.png\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/Auusda-15-6-Business-Laptop-32GB-RAM-1TB-SSD-Windows-11-Pro-Computers-Intel-N95-CPU-Pink_730c87d9-120a-4f52-80cf-2c78468ecd61.5a90dc9e62da5ccc10c9a50162a179f5.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Auusda-15-6-Business-Laptop-32GB-RAM-1TB-SSD-Windows-11-Pro-Computers-Intel-N95-CPU-Pink/9143614208?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":3.8,\"numberOfReviews\":467,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"5C6E8CD92A9641C08331848D3CBE2AFF\",\"sellerName\":\"Auusda Laptop\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"82DE4C22B57F3EBA9B06717BCDB9F471\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-09T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$499.99\",\"linePriceDisplay\":\"$499.99\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"\\u003cli\\u003eUP TO 3.4 GHz CPU: Fast and smooth performance for work and play, with Intel Alder Lake-N N95 processor with cooling fan, 4 cores, 4 threads, 6MB Cache, and Intel UHD Graphics\\u003c/li\\u003e\\u003cli\\u003e32GB RAM 1TB\\u003c/li\\u003e\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/Auusda-15-6-Business-Laptop-32GB-RAM-1TB-SSD-Windows-11-Pro-Computers-Intel-N95-CPU-Pink_730c87d9-120a-4f52-80cf-2c78468ecd61.5a90dc9e62da5ccc10c9a50162a179f5.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"AB1F92885D924C78A36591884C923FA1\",\"imageName\":\"Auusda-15-6-Business-Laptop-32GB-RAM-1TB-SSD-Windows-11-Pro-Computers-Intel-N95-CPU-Pink_730c87d9-120a-4f52-80cf-2c78468ecd61.5a90dc9e62da5ccc10c9a50162a179f5.png\",\"isOutOfStock\":false,\"price\":499.99,\"rating\":{\"averageRating\":3.8,\"numberOfReviews\":467},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":false,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":34,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"5TQR57HJLVUY\",\"usItemId\":\"13742500959\",\"isBadSplit\":false,\"catalogSellerId\":\"0\",\"fitmentLabel\":null,\"name\":\"ASUS Vivobook 16\\\" WUXGA Laptop Intel Core i7-1355U 16GB RAM 512GB SSD Black\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"ASUS Vivobook 16 16\\\" WUXGA Laptop Intel Core i7-1355U 16GB RAM 512GB SSD Black\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.700077,\\\"l2sf\\\":0.19972760509366494,\\\"l2se\\\":0.199728,\\\"l2sr\\\":0.990579,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"766BF5D5FE32479AB0915C36E01397DB\",\"name\":\"ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i7-1355U-16GB-RAM-512GB-SSD-Black_7f1c7476-8e15-4525-8cf3-0429092961a5.a551b608e39fe613ebb15e6c6fd71bbc.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i7-1355U-16GB-RAM-512GB-SSD-Black_7f1c7476-8e15-4525-8cf3-0429092961a5.a551b608e39fe613ebb15e6c6fd71bbc.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i7-1355U-16GB-RAM-512GB-SSD-Black/13742500959?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"urgency\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1071\",\"key\":\"LOW_INVENTORY\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":null,\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"RED_BOLD\",\"text\":\"Low stock\",\"type\":\"LABEL\",\"iconId\":null,\"templates\":null,\"badgeContent\":null}]},{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"tomorrow\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.3,\"numberOfReviews\":817,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"87044AA215E533BB985BC08F94439FFE\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-06T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$649.99\",\"linePrice\":\"$499.00\",\"linePriceDisplay\":\"Now $499.00\",\"savings\":\"SAVE $150.99\",\"savingsAmt\":150.99,\"wasPrice\":\"$649.99\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":499,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $499.00 – $629.99\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"actual_color\",\"type\":\"LOCATOR\",\"id\":null,\"displayName\":\"options\",\"isVariantTypeSwatch\":true,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/121f31b6-2130-40d9-9d4a-334a29afbd04.4ae956f3869e21445b03f56283aa9587.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Cool Silver\",\"rank\":10000000,\"displayName\":\"Cool Silver\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/121f31b6-2130-40d9-9d4a-334a29afbd04.4ae956f3869e21445b03f56283aa9587.jpeg?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"5QFGWBHHJLE0\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/ASUS-VivoBook-16-IPS-WUXGA-Notebook-Intel-Core-i7-13620H-16GB-DDR4-RAM-512GB-SSD-Cool-Silver-Deca-core-60Hz-Display-Up-To-8-Hours-Bat/17377463164?classType=undefined\",\"usItemId\":\"17377463164\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/7f1c7476-8e15-4525-8cf3-0429092961a5.a551b608e39fe613ebb15e6c6fd71bbc.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Indie Black\",\"rank\":10000001,\"displayName\":\"Indie Black\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/7f1c7476-8e15-4525-8cf3-0429092961a5.a551b608e39fe613ebb15e6c6fd71bbc.jpeg?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"2Q3E2H5E4WS8\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/ASUS-Vivobook-16-Laptop-Intel-Core-i7-1355U-16GB-512GB-Windows-11-Home-Indie-Black-F1605VA-WS74/13742500959?classType=undefined\",\"usItemId\":\"13742500959\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"ASUS Vivobook 16 16\\\" WUXGA Laptop Intel Core i7-1355U 16GB RAM 512GB SSD Black\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"tomorrow\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i7-1355U-16GB-RAM-512GB-SSD-Black_7f1c7476-8e15-4525-8cf3-0429092961a5.a551b608e39fe613ebb15e6c6fd71bbc.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"766BF5D5FE32479AB0915C36E01397DB\",\"imageName\":\"ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i7-1355U-16GB-RAM-512GB-SSD-Black_7f1c7476-8e15-4525-8cf3-0429092961a5.a551b608e39fe613ebb15e6c6fd71bbc.jpeg\",\"isOutOfStock\":false,\"price\":499,\"rating\":{\"averageRating\":4.3,\"numberOfReviews\":817},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"Cool Silver\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/121f31b6-2130-40d9-9d4a-334a29afbd04.4ae956f3869e21445b03f56283aa9587.jpeg?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/121f31b6-2130-40d9-9d4a-334a29afbd04.4ae956f3869e21445b03f56283aa9587.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"5QFGWBHHJLE0\",\"usItemId\":\"17377463164\",\"canonicalUrl\":\"/ip/ASUS-VivoBook-16-IPS-WUXGA-Notebook-Intel-Core-i7-13620H-16GB-DDR4-RAM-512GB-SSD-Cool-Silver-Deca-core-60Hz-Display-Up-To-8-Hours-Bat/17377463164?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Indie Black\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/7f1c7476-8e15-4525-8cf3-0429092961a5.a551b608e39fe613ebb15e6c6fd71bbc.jpeg?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/7f1c7476-8e15-4525-8cf3-0429092961a5.a551b608e39fe613ebb15e6c6fd71bbc.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"2Q3E2H5E4WS8\",\"usItemId\":\"13742500959\",\"canonicalUrl\":\"/ip/ASUS-Vivobook-16-Laptop-Intel-Core-i7-1355U-16GB-512GB-Windows-11-Home-Indie-Black-F1605VA-WS74/13742500959?classType=undefined\\u0026variantFieldId=actual_color\"}],\"isVariantTypeSwatch\":true,\"displayName\":\"options\",\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":35,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"6Y38P1JFP0AR\",\"usItemId\":\"18656262897\",\"isBadSplit\":false,\"catalogSellerId\":\"102900738\",\"fitmentLabel\":null,\"name\":\"HP 14 inch Laptop Light \\u0026 Slim, Microsoft Office 365 included, Intel N-Series Processor, 4GB RAM, 64GB SSD, Free DVD Drive \\u0026 Flash Drive, Windows 11 S (Rose Gold)\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":\"\\u003cli\\u003eSmart Tools Built-InComes with Windows 11, Microsoft Copilot AI assistant, and a 1-year Microsoft 365 subscription.\\u003c/li\\u003e\\u003cli\\u003eSmooth Everyday PerformancePowered by an Intel Celeron N4500 dual-core\\u003c/li\\u003e\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":8.942625,\\\"l2sf\\\":0.24367306272766706,\\\"l2se\\\":0.243673,\\\"l2sr\\\":0.124301,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"619DACF8D3544CB3AA4C21C96C7CECCA\",\"name\":\"HP-14-inch-Laptop-Light-Slim-Microsoft-Office-365-included-Intel-N-Series-Processor-4GB-RAM-64GB-SSD-Free-DVD-Drive-Flash-Drive-Windows-11-S-Rose-Gol_0b673634-fdd9-467c-8df9-718f5181d725.3b538805e8c75f819f4f3997422bd035.png\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-14-inch-Laptop-Light-Slim-Microsoft-Office-365-included-Intel-N-Series-Processor-4GB-RAM-64GB-SSD-Free-DVD-Drive-Flash-Drive-Windows-11-S-Rose-Gol_0b673634-fdd9-467c-8df9-718f5181d725.3b538805e8c75f819f4f3997422bd035.png\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-14-inch-Laptop-Light-Slim-Microsoft-Office-365-included-Intel-N-Series-Processor-4GB-RAM-64GB-SSD-Free-DVD-Drive-Flash-Drive-Windows-11-S-Rose-Gol/18656262897?classType=REGULAR\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:1230091:1091333\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":null,\"numberOfReviews\":null,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"4958CB65D02A431CA7CC114A73C37BCB\",\"sellerName\":\"ProTech \",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"4E0BFD12A62733848359435CCAD1AD68\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-12T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$249.00\",\"linePriceDisplay\":\"$249.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"\\u003cli\\u003eSmart Tools Built-InComes with Windows 11, Microsoft Copilot AI assistant, and a 1-year Microsoft 365 subscription.\\u003c/li\\u003e\\u003cli\\u003eSmooth Everyday PerformancePowered by an Intel Celeron N4500 dual-core\\u003c/li\\u003e\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-14-inch-Laptop-Light-Slim-Microsoft-Office-365-included-Intel-N-Series-Processor-4GB-RAM-64GB-SSD-Free-DVD-Drive-Flash-Drive-Windows-11-S-Rose-Gol_0b673634-fdd9-467c-8df9-718f5181d725.3b538805e8c75f819f4f3997422bd035.png\",\"imageSize\":\"\",\"imageID\":\"619DACF8D3544CB3AA4C21C96C7CECCA\",\"imageName\":\"HP-14-inch-Laptop-Light-Slim-Microsoft-Office-365-included-Intel-N-Series-Processor-4GB-RAM-64GB-SSD-Free-DVD-Drive-Flash-Drive-Windows-11-S-Rose-Gol_0b673634-fdd9-467c-8df9-718f5181d725.3b538805e8c75f819f4f3997422bd035.png\",\"isOutOfStock\":false,\"price\":249,\"rating\":{\"averageRating\":0,\"numberOfReviews\":0},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":36,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"3YWCTC8ZR7XV\",\"usItemId\":\"13172611709\",\"isBadSplit\":false,\"catalogSellerId\":\"102581704\",\"fitmentLabel\":null,\"name\":\"RNRUO 15.6 inch Windows 11 Laptops New Intel 6500Y 8GB RAM 256GB ROM, FHD Display Type-C PD WiFi 5 BT5.0, Long Battery Life Netbook Laptop Computer for Kids, Student, Business\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"\\u003cli\\u003e14 inch laptop features a spacious 1920x1080 Full HD display, delivering stunning clarity and vibrant colors. The large screen laptops allows for full immersion while engaging in productivity\\u003c/li\\u003e\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":8.756325,\\\"l2sf\\\":0.19048421919694208,\\\"l2se\\\":0.190484,\\\"l2sr\\\":0.983591,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"7A1EF99928474A0296F34E0A48CDFB1A\",\"name\":\"RNRUO-14-inch-Windows-11-Laptops-New-Intel-N4000-2-6Ghz-8GB-RAM-256GB-ROM-Notebook-PC-Computer-Laptop_49f93b7e-f698-4b24-b150-afd0bbdfd6a1.1795f3d5fbd47fa5f7c43a9eb72b56b3.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/RNRUO-14-inch-Windows-11-Laptops-New-Intel-N4000-2-6Ghz-8GB-RAM-256GB-ROM-Notebook-PC-Computer-Laptop_49f93b7e-f698-4b24-b150-afd0bbdfd6a1.1795f3d5fbd47fa5f7c43a9eb72b56b3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/RNRUO-14-inch-Windows-11-Laptops-New-Intel-N4000-2-6Ghz-8GB-RAM-256GB-ROM-Notebook-PC-Computer-Laptop/13172611709?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:1230091:4342021\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"Sat, Mar 7\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":3.5,\"numberOfReviews\":1346,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F2C87A285A934E2BAECD613A22390F63\",\"sellerName\":\"RNRUO\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"2AC3E3DFB0E43F2EAE3F44FA2EB4B4FC\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-07T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$429.00\",\"linePrice\":\"$196.49\",\"linePriceDisplay\":\"Now $196.49\",\"savings\":\"SAVE $232.51\",\"savingsAmt\":232.51,\"wasPrice\":\"$429.00\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":196.49,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $196.49 – $209.99\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"hard_drive_capacity\",\"type\":\"LOCATOR\",\"id\":null,\"displayName\":\"sizes\",\"isVariantTypeSwatch\":false,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/49f93b7e-f698-4b24-b150-afd0bbdfd6a1.1795f3d5fbd47fa5f7c43a9eb72b56b3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"256 GB\",\"rank\":10000000,\"displayName\":\"256 GB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/ec3b530a-ea9a-45ed-938d-2573d0255855.18db89c0e4a41f9283cbd5de11786af7.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"1NHZ6QD0J465\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/14-Inch-Windows-11-Laptops-New-N4000-2-6Ghz-8GB-RAM-256GB-ROM-Notbook-Pc-Computer-Laptop/13172611709?classType=undefined\",\"usItemId\":\"13172611709\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/7d1e1a3a-1905-47ab-a68d-8550b28b4197.718e38dafd0f107862753b25c2ce88e2.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"512 GB\",\"rank\":10000001,\"displayName\":\"512 GB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/e2060a4f-2ab7-4d4e-9fb2-90026f8868e4.b8a93b67a08915edaf6ac4d3bf341cb7.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"3DOAL6DU4WZ4\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/RNRUO-14-inch-Windows-11-Laptops-New-Intel-N4000-2-6Ghz-8GB-RAM-512GB-ROM-WiFi5-BT5-0-Notebook-PC-Computer-Laptop-for-Business-Student/15039707241?classType=undefined\",\"usItemId\":\"15039707241\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\\u003cli\\u003e14 inch laptop features a spacious 1920x1080 Full HD display, delivering stunning clarity and vibrant colors. The large screen laptops allows for full immersion while engaging in productivity\\u003c/li\\u003e\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"Sat, Mar 7\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/RNRUO-14-inch-Windows-11-Laptops-New-Intel-N4000-2-6Ghz-8GB-RAM-256GB-ROM-Notebook-PC-Computer-Laptop_49f93b7e-f698-4b24-b150-afd0bbdfd6a1.1795f3d5fbd47fa5f7c43a9eb72b56b3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"7A1EF99928474A0296F34E0A48CDFB1A\",\"imageName\":\"RNRUO-14-inch-Windows-11-Laptops-New-Intel-N4000-2-6Ghz-8GB-RAM-256GB-ROM-Notebook-PC-Computer-Laptop_49f93b7e-f698-4b24-b150-afd0bbdfd6a1.1795f3d5fbd47fa5f7c43a9eb72b56b3.jpeg\",\"isOutOfStock\":false,\"price\":196.49,\"rating\":{\"averageRating\":3.5,\"numberOfReviews\":1346},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"256 GB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/ec3b530a-ea9a-45ed-938d-2573d0255855.18db89c0e4a41f9283cbd5de11786af7.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/49f93b7e-f698-4b24-b150-afd0bbdfd6a1.1795f3d5fbd47fa5f7c43a9eb72b56b3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"1NHZ6QD0J465\",\"usItemId\":\"13172611709\",\"canonicalUrl\":\"/ip/14-Inch-Windows-11-Laptops-New-N4000-2-6Ghz-8GB-RAM-256GB-ROM-Notbook-Pc-Computer-Laptop/13172611709?classType=undefined\\u0026variantFieldId=hard_drive_capacity\"},{\"name\":\"512 GB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/e2060a4f-2ab7-4d4e-9fb2-90026f8868e4.b8a93b67a08915edaf6ac4d3bf341cb7.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/7d1e1a3a-1905-47ab-a68d-8550b28b4197.718e38dafd0f107862753b25c2ce88e2.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"3DOAL6DU4WZ4\",\"usItemId\":\"15039707241\",\"canonicalUrl\":\"/ip/RNRUO-14-inch-Windows-11-Laptops-New-Intel-N4000-2-6Ghz-8GB-RAM-512GB-ROM-WiFi5-BT5-0-Notebook-PC-Computer-Laptop-for-Business-Student/15039707241?classType=undefined\\u0026variantFieldId=hard_drive_capacity\"}],\"isVariantTypeSwatch\":false,\"displayName\":\"sizes\",\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":37,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"7796EOSWQGY0\",\"usItemId\":\"13987763030\",\"isBadSplit\":false,\"catalogSellerId\":\"0\",\"fitmentLabel\":null,\"name\":\"HP Victus 15.6 inch FHD 144Hz IPS Win 11 Gaming Laptop Intel Core i5-13420H 16GB RAM 512GB SSD RTX 4050 Mica Silver\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"\\u003cli\\u003eHP Victus 15.6 inch FHD 144Hz\\u003c/li\\u003e\\u003cli\\u003e16 GB RAM\\u003c/li\\u003e\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":11.18292,\\\"l2sf\\\":0.23242699436162623,\\\"l2se\\\":0.232427,\\\"l2sr\\\":0.993137,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"550551BE6F6F4313A6D6C2F9AABBEB57\",\"name\":\"HP-Victus-15-6-inch-FHD-144Hz-IPS-Windows-Laptop-Intel-Core-i5-13420H-16GB-RAM-512GB-SSD-Mica-Silver_e08e5b03-5a7c-41e2-94ba-93244e8eb704.0c9b69afc9aee9a9e89cde921391a757.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-Victus-15-6-inch-FHD-144Hz-IPS-Windows-Laptop-Intel-Core-i5-13420H-16GB-RAM-512GB-SSD-Mica-Silver_e08e5b03-5a7c-41e2-94ba-93244e8eb704.0c9b69afc9aee9a9e89cde921391a757.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-Victus-15-6-inch-FHD-144Hz-IPS-Windows-Laptop-Intel-Core-i5-13420H-16GB-RAM-512GB-SSD-Mica-Silver/13987763030?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:7052607:1849032:9181128\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"tomorrow\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.2,\"numberOfReviews\":1238,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"F4F8A245B2EE33F7BF2B503F108C2EB2\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-06T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$649.00\",\"linePriceDisplay\":\"$649.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":649,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $649.00 – $1,099.99\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"edition\",\"type\":\"DEFAULT\",\"id\":null,\"displayName\":\"options\",\"isVariantTypeSwatch\":false,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/e08e5b03-5a7c-41e2-94ba-93244e8eb704.0c9b69afc9aee9a9e89cde921391a757.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Gaming Laptop Intel Core i5-13420H\",\"rank\":10000000,\"displayName\":\"Gaming Laptop Intel Core i5-13420H\",\"swatchImageUrl\":null,\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"3EEMTG8R3CGO\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-Victus-15-6-FHD-Laptop-Intel-Corei5-13420H-16GB-RAM-512GB-SSD-RTX-4050-Windows-11-Home/13987763030?classType=undefined\",\"usItemId\":\"13987763030\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/91418eb4-7b5c-4d2f-9e2b-49e95fc15744.6d19c0a9d0568240714d08d5743fa708.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Gaming Notebook Intel Core i7-13620H\",\"rank\":10000001,\"displayName\":\"Gaming Notebook Intel Core i7-13620H\",\"swatchImageUrl\":null,\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"1H920I3VA3WQ\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-Victus-15-6-FHD-IPS-144Hz-Gaming-Notebook-Intel-Core-i7-13620H-16GB-512GB-SSD-NVIDIA-GeForce-RTX-5060-Meca-Silver/16280007108?classType=undefined\",\"usItemId\":\"16280007108\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\\u003cli\\u003eHP Victus 15.6 inch FHD 144Hz\\u003c/li\\u003e\\u003cli\\u003e16 GB RAM\\u003c/li\\u003e\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"tomorrow\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-Victus-15-6-inch-FHD-144Hz-IPS-Windows-Laptop-Intel-Core-i5-13420H-16GB-RAM-512GB-SSD-Mica-Silver_e08e5b03-5a7c-41e2-94ba-93244e8eb704.0c9b69afc9aee9a9e89cde921391a757.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"550551BE6F6F4313A6D6C2F9AABBEB57\",\"imageName\":\"HP-Victus-15-6-inch-FHD-144Hz-IPS-Windows-Laptop-Intel-Core-i5-13420H-16GB-RAM-512GB-SSD-Mica-Silver_e08e5b03-5a7c-41e2-94ba-93244e8eb704.0c9b69afc9aee9a9e89cde921391a757.jpeg\",\"isOutOfStock\":false,\"price\":649,\"rating\":{\"averageRating\":4.2,\"numberOfReviews\":1238},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"Gaming Laptop Intel Core i5-13420H\",\"swatchImageUrl\":\"\",\"image\":\"https://i5.walmartimages.com/asr/e08e5b03-5a7c-41e2-94ba-93244e8eb704.0c9b69afc9aee9a9e89cde921391a757.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"3EEMTG8R3CGO\",\"usItemId\":\"13987763030\",\"canonicalUrl\":\"/ip/HP-Victus-15-6-FHD-Laptop-Intel-Corei5-13420H-16GB-RAM-512GB-SSD-RTX-4050-Windows-11-Home/13987763030?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"Gaming Notebook Intel Core i7-13620H\",\"swatchImageUrl\":\"\",\"image\":\"https://i5.walmartimages.com/asr/91418eb4-7b5c-4d2f-9e2b-49e95fc15744.6d19c0a9d0568240714d08d5743fa708.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"1H920I3VA3WQ\",\"usItemId\":\"16280007108\",\"canonicalUrl\":\"/ip/HP-Victus-15-6-FHD-IPS-144Hz-Gaming-Notebook-Intel-Core-i7-13620H-16GB-512GB-SSD-NVIDIA-GeForce-RTX-5060-Meca-Silver/16280007108?classType=undefined\\u0026variantFieldId=edition\"}],\"isVariantTypeSwatch\":false,\"displayName\":\"options\",\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":38,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"1WYY6XDYANSD\",\"usItemId\":\"16611011097\",\"isBadSplit\":false,\"catalogSellerId\":\"101244877\",\"fitmentLabel\":null,\"name\":\"Lenovo IdeaPad Slim 3i 15.6\\\" FHD Touch Laptop, AMD Ryzen 5 7520U, 8GB RAM, 512 SSD, Artic Grey\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":\"Lenovo IdeaPad Slim 3i 15.6\\\" FHD Touch Laptop, AMD Ryzen 5 7520U, 8GB RAM, 512 SSD, Artic Grey\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":9,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":11.473186,\\\"l2sf\\\":0.22419592330530586,\\\"l2se\\\":0.224196,\\\"l2sr\\\":0.089732,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":{\"otherConditionsMessage\":\"RESOLD\",\"minPriceDisplay\":\"$270.00\"},\"imageInfo\":{\"id\":\"67AA2D55DECE4CEF9A8C78E98848A758\",\"name\":\"Lenovo-IdeaPad-Slim-3i-15-6-FHD-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-512-SSD-Artic-Grey_b5bbf229-b48e-4da5-a923-a66bb6f326c9.0efbc7daf4427bdd56d74ad96384fdf3.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/Lenovo-IdeaPad-Slim-3i-15-6-FHD-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-512-SSD-Artic-Grey_b5bbf229-b48e-4da5-a923-a66bb6f326c9.0efbc7daf4427bdd56d74ad96384fdf3.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Lenovo-IdeaPad-Slim-3i-15-6-FHD-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-512-SSD-Artic-Grey/16611011097?classType=REGULAR\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:6163033:8301259:9966361\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4.5,\"numberOfReviews\":888,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"B70F3576E56648239E05D0D66FCC23C2\",\"sellerName\":\"GAMES FOR LESS\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"8E7E9CEF391134C1A4E7A45FFB95998A\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-09T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$549.99\",\"linePrice\":\"$374.49\",\"linePriceDisplay\":\"Now $374.49\",\"savings\":\"SAVE $175.50\",\"savingsAmt\":175.5,\"wasPrice\":\"$549.99\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":270,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $270.00\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"Lenovo IdeaPad Slim 3i 15.6\\\" FHD Touch Laptop, AMD Ryzen 5 7520U, 8GB RAM, 512 SSD, Artic Grey\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/Lenovo-IdeaPad-Slim-3i-15-6-FHD-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-512-SSD-Artic-Grey_b5bbf229-b48e-4da5-a923-a66bb6f326c9.0efbc7daf4427bdd56d74ad96384fdf3.jpeg\",\"imageSize\":\"\",\"imageID\":\"67AA2D55DECE4CEF9A8C78E98848A758\",\"imageName\":\"Lenovo-IdeaPad-Slim-3i-15-6-FHD-Touch-Laptop-AMD-Ryzen-5-7520U-8GB-RAM-512-SSD-Artic-Grey_b5bbf229-b48e-4da5-a923-a66bb6f326c9.0efbc7daf4427bdd56d74ad96384fdf3.jpeg\",\"isOutOfStock\":false,\"price\":374.49,\"rating\":{\"averageRating\":4.5,\"numberOfReviews\":888},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":39,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"2JILGC2ECQXS\",\"usItemId\":\"17732351446\",\"isBadSplit\":false,\"catalogSellerId\":\"102581704\",\"fitmentLabel\":null,\"name\":\"RNRUO 15.6\\\" Windonws 11 Laptop, 12GB DDR5 512G SSD, Up to 3.6GHz Intel N150 Quad-Core, Office 2024 WiFi 6 BT 5.2, 1080 FHD Display for Student, Business, Home Office, Pink\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"\\u003cli\\u003eIntel N150 Processor: The RNRUO PC laptop features an Intel N150 processor (4 Cores, 4 Threads, up to 3.6GHz), delivering reliable performance for light gaming, web browsing, and document editing.\\u003c/li\\u003e\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":10.003614,\\\"l2sf\\\":0.16012625013109888,\\\"l2se\\\":0.160126,\\\"l2sr\\\":0.991296,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"73A62044997A446A88F8E2D0EC4839B9\",\"name\":\"RNRUO-15-6-Windonws-11-Laptop-12GB-DDR5-512G-SSD-3-6GHz-Intel-N150-Quad-Core-Office-2024-WiFi-6-BT-5-2-1080-FHD-Display-Student-Business-Home-Office_57bbd6ea-004e-42eb-8bc8-e6ab04a2cdc5.92c1d670287de45f4c34ea170300bc82.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/RNRUO-15-6-Windonws-11-Laptop-12GB-DDR5-512G-SSD-3-6GHz-Intel-N150-Quad-Core-Office-2024-WiFi-6-BT-5-2-1080-FHD-Display-Student-Business-Home-Office_57bbd6ea-004e-42eb-8bc8-e6ab04a2cdc5.92c1d670287de45f4c34ea170300bc82.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/RNRUO-15-6-Windonws-11-Laptop-12GB-DDR5-512G-SSD-3-6GHz-Intel-N150-Quad-Core-Office-2024-WiFi-6-BT-5-2-1080-FHD-Display-Student-Business-Home-Office/17732351446?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:1230091:1091333\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"Sat, Mar 7\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":3.9,\"numberOfReviews\":459,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F2C87A285A934E2BAECD613A22390F63\",\"sellerName\":\"RNRUO\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"491A51592B4631A2972F3BC67DBCA83A\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-07T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$289.99\",\"linePriceDisplay\":\"$289.99\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"edition\",\"type\":\"LOCATOR\",\"id\":null,\"displayName\":\"options\",\"isVariantTypeSwatch\":false,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/e7289308-08fe-4ae4-b3f8-b5aa675bd74b.20358a5a07e0b47ad28beb9049d65ff3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"With Fingerprint Backlit KB\",\"rank\":10000000,\"displayName\":\"With Fingerprint Backlit KB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/64715804-2359-4dcf-988e-90a1873c528f.0e5a85b13ab6760fb5a938155a01625c.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"NOT_AVAILABLE\",\"products\":[\"5NDQA3PX4K86\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/RNRUO-15-6-Windonws-11-Laptop-12GB-DDR5-512G-SSD-Up-3-6GHz-Intel-N150-Quad-Core-WiFi-6-BT-5-2-1080-FHD-Display-Student-Business-Home-Office-Pink/15430666902?classType=undefined\",\"usItemId\":\"15430666902\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/57bbd6ea-004e-42eb-8bc8-e6ab04a2cdc5.92c1d670287de45f4c34ea170300bc82.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Without Fingerprint Backlit KB\",\"rank\":10000001,\"displayName\":\"Without Fingerprint Backlit KB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/1a93607e-d856-4b3a-b18b-90288df9ce90.8d20d819c8370bd6b6d4862e11097f2c.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"1HZPZFZUFA26\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/RNRUO-15-6-Windonws-11-Laptop-12GB-DDR5-512G-SSD-Up-3-6GHz-Intel-N150-Quad-Core-Office-2024-WiFi-6-BT-5-2-1080-FHD-Display-Student-Business-Home-Offi/17732351446?classType=undefined\",\"usItemId\":\"17732351446\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\\u003cli\\u003eIntel N150 Processor: The RNRUO PC laptop features an Intel N150 processor (4 Cores, 4 Threads, up to 3.6GHz), delivering reliable performance for light gaming, web browsing, and document editing.\\u003c/li\\u003e\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"Sat, Mar 7\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/RNRUO-15-6-Windonws-11-Laptop-12GB-DDR5-512G-SSD-3-6GHz-Intel-N150-Quad-Core-Office-2024-WiFi-6-BT-5-2-1080-FHD-Display-Student-Business-Home-Office_57bbd6ea-004e-42eb-8bc8-e6ab04a2cdc5.92c1d670287de45f4c34ea170300bc82.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"73A62044997A446A88F8E2D0EC4839B9\",\"imageName\":\"RNRUO-15-6-Windonws-11-Laptop-12GB-DDR5-512G-SSD-3-6GHz-Intel-N150-Quad-Core-Office-2024-WiFi-6-BT-5-2-1080-FHD-Display-Student-Business-Home-Office_57bbd6ea-004e-42eb-8bc8-e6ab04a2cdc5.92c1d670287de45f4c34ea170300bc82.jpeg\",\"isOutOfStock\":false,\"price\":289.99,\"rating\":{\"averageRating\":3.9,\"numberOfReviews\":459},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"With Fingerprint Backlit KB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/64715804-2359-4dcf-988e-90a1873c528f.0e5a85b13ab6760fb5a938155a01625c.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/e7289308-08fe-4ae4-b3f8-b5aa675bd74b.20358a5a07e0b47ad28beb9049d65ff3.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"5NDQA3PX4K86\",\"usItemId\":\"15430666902\",\"canonicalUrl\":\"/ip/RNRUO-15-6-Windonws-11-Laptop-12GB-DDR5-512G-SSD-Up-3-6GHz-Intel-N150-Quad-Core-WiFi-6-BT-5-2-1080-FHD-Display-Student-Business-Home-Office-Pink/15430666902?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"Without Fingerprint Backlit KB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/1a93607e-d856-4b3a-b18b-90288df9ce90.8d20d819c8370bd6b6d4862e11097f2c.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/57bbd6ea-004e-42eb-8bc8-e6ab04a2cdc5.92c1d670287de45f4c34ea170300bc82.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"1HZPZFZUFA26\",\"usItemId\":\"17732351446\",\"canonicalUrl\":\"/ip/RNRUO-15-6-Windonws-11-Laptop-12GB-DDR5-512G-SSD-Up-3-6GHz-Intel-N150-Quad-Core-Office-2024-WiFi-6-BT-5-2-1080-FHD-Display-Student-Business-Home-Offi/17732351446?classType=undefined\\u0026variantFieldId=edition\"}],\"isVariantTypeSwatch\":false,\"displayName\":\"options\",\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":40,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"3V48XIIY7PF7\",\"usItemId\":\"18262123769\",\"isBadSplit\":false,\"catalogSellerId\":\"10541\",\"fitmentLabel\":null,\"name\":\"HP 14\\\" Ultra Thin 2026 Laptop with Copilot, Intel Quad-Core N150, 4GB RAM, 384GB(128GB eMMC+256GB SD Card), Windows 11 Pro,1 Year Office 365, Lightweight Rose Gold Notebook for Work and School\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"\\u003cli\\u003e[DESIGN \\u0026 PORTABILITY] Ultra thin and lightweight 14-inch body with a stylish silver finish, easy to carry anywhere ideal for students, professionals, and daily travel.\\u003c/li\\u003e\\u003cli\\u003e[Processor \\u0026\\u003c/li\\u003e\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.238014,\\\"l2sf\\\":0.3535008558073553,\\\"l2se\\\":0.353501,\\\"l2sr\\\":0.19401,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"5A3BCD926EDE44F493083E396B4868A4\",\"name\":\"HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-4GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Rose-Go_0c69958a-fc25-410d-9ce5-1d06531c2523.0d011c3e4f30235e98707733356d7ef7.png\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-4GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Rose-Go_0c69958a-fc25-410d-9ce5-1d06531c2523.0d011c3e4f30235e98707733356d7ef7.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-4GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Rose-Go/18262123769?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:1230091:1091333\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":3.3,\"numberOfReviews\":35,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"531021E771DA4019924CB6C2BAF63660\",\"sellerName\":\"LoneStar COMPUTER\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"B8C6E200ABEA3DE4ADA0FF5EE918E99B\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-12T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$256.88\",\"linePriceDisplay\":\"$256.88\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":256.88,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $256.88 – $409.77\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"actual_color\",\"type\":\"LOCATOR\",\"id\":null,\"displayName\":\"options\",\"isVariantTypeSwatch\":true,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/1f35f1b7-8a60-4bc2-8996-d99638bf9268.d742614afb6204f32d791718657f286d.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Blue\",\"rank\":10000000,\"displayName\":\"Blue\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/1f35f1b7-8a60-4bc2-8996-d99638bf9268.d742614afb6204f32d791718657f286d.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"3U5VFEQAAOTX\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-4GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Blue-No/18272221761?classType=undefined\",\"usItemId\":\"18272221761\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/0c69958a-fc25-410d-9ce5-1d06531c2523.0d011c3e4f30235e98707733356d7ef7.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Gold\",\"rank\":10000001,\"displayName\":\"Gold\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/0c69958a-fc25-410d-9ce5-1d06531c2523.0d011c3e4f30235e98707733356d7ef7.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"7IK9KP1XYYSP\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-8GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Rose-Go/18295650901?classType=undefined\",\"usItemId\":\"18295650901\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/fe5aebc8-e478-4090-a51d-9ef585b65bd0.cdf33c00b5b3a08fee676014d584b737.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Green\",\"rank\":10000002,\"displayName\":\"Green\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/fe5aebc8-e478-4090-a51d-9ef585b65bd0.cdf33c00b5b3a08fee676014d584b737.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"6QQNJCOL1CZL\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-16GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Green/18262123266?classType=undefined\",\"usItemId\":\"18262123266\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/c0fca463-2aae-4db5-a549-f60fdfab268f.3873e88558e03a9299e6039a7e58b291.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Lavender\",\"rank\":10000003,\"displayName\":\"Lavender\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/c0fca463-2aae-4db5-a549-f60fdfab268f.3873e88558e03a9299e6039a7e58b291.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"4NOZ2BJWLDBS\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-8GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Lavende/18262272953?classType=undefined\",\"usItemId\":\"18262272953\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/ef5f800b-4ca6-401d-8e15-90ff1b47cffd.e30fcd37b94e8ff3ed1179ab82750fdd.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Silver\",\"rank\":10000004,\"displayName\":\"Silver\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/ef5f800b-4ca6-401d-8e15-90ff1b47cffd.e30fcd37b94e8ff3ed1179ab82750fdd.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"4WWE0FOWGK2U\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-16GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Silver/18300720766?classType=undefined\",\"usItemId\":\"18300720766\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\\u003cli\\u003e[DESIGN \\u0026 PORTABILITY] Ultra thin and lightweight 14-inch body with a stylish silver finish, easy to carry anywhere ideal for students, professionals, and daily travel.\\u003c/li\\u003e\\u003cli\\u003e[Processor \\u0026\\u003c/li\\u003e\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-4GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Rose-Go_0c69958a-fc25-410d-9ce5-1d06531c2523.0d011c3e4f30235e98707733356d7ef7.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"5A3BCD926EDE44F493083E396B4868A4\",\"imageName\":\"HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-4GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Rose-Go_0c69958a-fc25-410d-9ce5-1d06531c2523.0d011c3e4f30235e98707733356d7ef7.png\",\"isOutOfStock\":false,\"price\":256.88,\"rating\":{\"averageRating\":3.3,\"numberOfReviews\":35},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"Blue\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/1f35f1b7-8a60-4bc2-8996-d99638bf9268.d742614afb6204f32d791718657f286d.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/1f35f1b7-8a60-4bc2-8996-d99638bf9268.d742614afb6204f32d791718657f286d.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"3U5VFEQAAOTX\",\"usItemId\":\"18272221761\",\"canonicalUrl\":\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-4GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Blue-No/18272221761?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Gold\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/0c69958a-fc25-410d-9ce5-1d06531c2523.0d011c3e4f30235e98707733356d7ef7.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/0c69958a-fc25-410d-9ce5-1d06531c2523.0d011c3e4f30235e98707733356d7ef7.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"7IK9KP1XYYSP\",\"usItemId\":\"18295650901\",\"canonicalUrl\":\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-8GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Rose-Go/18295650901?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Green\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/fe5aebc8-e478-4090-a51d-9ef585b65bd0.cdf33c00b5b3a08fee676014d584b737.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/fe5aebc8-e478-4090-a51d-9ef585b65bd0.cdf33c00b5b3a08fee676014d584b737.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"6QQNJCOL1CZL\",\"usItemId\":\"18262123266\",\"canonicalUrl\":\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-16GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Green/18262123266?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Lavender\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/c0fca463-2aae-4db5-a549-f60fdfab268f.3873e88558e03a9299e6039a7e58b291.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/c0fca463-2aae-4db5-a549-f60fdfab268f.3873e88558e03a9299e6039a7e58b291.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"4NOZ2BJWLDBS\",\"usItemId\":\"18262272953\",\"canonicalUrl\":\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-8GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Lavende/18262272953?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Silver\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/ef5f800b-4ca6-401d-8e15-90ff1b47cffd.e30fcd37b94e8ff3ed1179ab82750fdd.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/ef5f800b-4ca6-401d-8e15-90ff1b47cffd.e30fcd37b94e8ff3ed1179ab82750fdd.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"4WWE0FOWGK2U\",\"usItemId\":\"18300720766\",\"canonicalUrl\":\"/ip/HP-14-Ultra-Thin-2026-Laptop-Copilot-Intel-Quad-Core-N150-16GB-RAM-384GB-128GB-eMMC-256GB-SD-Card-Windows-11-Pro-1-Year-Office-365-Lightweight-Silver/18300720766?classType=undefined\\u0026variantFieldId=actual_color\"}],\"isVariantTypeSwatch\":true,\"displayName\":\"options\",\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":41,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"6VZ4TK392NT7\",\"usItemId\":\"15625551829\",\"isBadSplit\":false,\"catalogSellerId\":\"102581704\",\"fitmentLabel\":null,\"name\":\"\\\"RNRUO 13.5\\\"\\\" Business Laptop, Intel i3-1115G4, 8GB RAM, 256GB SSD, 2.5K UHD, Windows 11 Pro, Fingerprint Reader\\\"\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"Intel Core Processor: Intel Core i3-1005G1 processor of RNRUO laptop with 2 Cores, 4 Threads, 4M Cache maxes out at 3.4GHz and provides decent performance for light gaming, web-related tasks and\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.628835,\\\"l2sf\\\":0.240578556625428,\\\"l2se\\\":0.240579,\\\"l2sr\\\":0.960901,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"A20B8296C90E4E8C8D74D240B1065A6D\",\"name\":\"RNRUO-13-5-Windows-11-Pro-Laptop-8GB-RAM-256GB-SSD-Intel-Core-i3-1115G4-4-1GHz-16-10-2-5K-UHD-Display-Fingerprint-Backlit-Keyboard-Wifi5-BT-5-0-Stude_586d0ce8-980d-454c-b619-e4b1e8be2414.6b32a631c79cabd0561e2339ca1a66b7.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/RNRUO-13-5-Windows-11-Pro-Laptop-8GB-RAM-256GB-SSD-Intel-Core-i3-1115G4-4-1GHz-16-10-2-5K-UHD-Display-Fingerprint-Backlit-Keyboard-Wifi5-BT-5-0-Stude_586d0ce8-980d-454c-b619-e4b1e8be2414.6b32a631c79cabd0561e2339ca1a66b7.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/RNRUO-13-5-Windows-11-Pro-Laptop-8GB-RAM-256GB-SSD-Intel-Core-i3-1115G4-4-1GHz-16-10-2-5K-UHD-Display-Fingerprint-Backlit-Keyboard-Wifi5-BT-5-0-Stude/15625551829?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:1230091:1091333\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":2.8,\"numberOfReviews\":29,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F2C87A285A934E2BAECD613A22390F63\",\"sellerName\":\"RNRUO\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"732D4B62DA0D3774B20DC2D6AB1E1A14\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-09T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$259.99\",\"linePrice\":\"$219.99\",\"linePriceDisplay\":\"Now $219.99\",\"savings\":\"SAVE $40.00\",\"savingsAmt\":40,\"wasPrice\":\"$259.99\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":219.99,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $219.99 – $249.99\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"edition\",\"type\":\"LOCATOR\",\"id\":null,\"displayName\":\"options\",\"isVariantTypeSwatch\":false,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/586d0ce8-980d-454c-b619-e4b1e8be2414.6b32a631c79cabd0561e2339ca1a66b7.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"i3-1115G4\",\"rank\":10000001,\"displayName\":\"i3-1115G4\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/fb0b1307-2e0d-4291-92fd-335d9a782c04.4cfdd47fa908f8dbddfa367b8eae1592.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"6LWXWFCPHSAU\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/RNRUO-13-5-Windows-11-Pro-Laptop-8GB-RAM-256GB-SSD-Intel-Core-i3-1115G4-Up-4-1GHz-16-10-2-5K-UHD-Display-Fingerprint-Backlit-Keyboard-Wifi5-BT-5-0-St/15625551829?classType=undefined\",\"usItemId\":\"15625551829\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/b831611a-6630-4bbb-8aba-d51c4c8fd1e3.d7b46c576813c6183b799d5581bfa251.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"i7-1065G7\",\"rank\":10000003,\"displayName\":\"i7-1065G7\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/5a0026e7-f861-40ff-8a1b-26944e2b7319.c45e51ac5b2f3d57519d526f1e3fe75f.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"2P6NCFJFEKQF\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/RNRUO-13-5-Windows-11-Pro-Business-Laptop-8GB-RAM-256GB-SSD-3-9GHz-Intel-Core-i7-1065G7-2-Core-2256x1504-UHD-Fingerprint-Backlit-Keyboard-Wifi5-BT-5/15397961952?classType=undefined\",\"usItemId\":\"15397961952\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"Intel Core Processor: Intel Core i3-1005G1 processor of RNRUO laptop with 2 Cores, 4 Threads, 4M Cache maxes out at 3.4GHz and provides decent performance for light gaming, web-related tasks and\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/RNRUO-13-5-Windows-11-Pro-Laptop-8GB-RAM-256GB-SSD-Intel-Core-i3-1115G4-4-1GHz-16-10-2-5K-UHD-Display-Fingerprint-Backlit-Keyboard-Wifi5-BT-5-0-Stude_586d0ce8-980d-454c-b619-e4b1e8be2414.6b32a631c79cabd0561e2339ca1a66b7.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"A20B8296C90E4E8C8D74D240B1065A6D\",\"imageName\":\"RNRUO-13-5-Windows-11-Pro-Laptop-8GB-RAM-256GB-SSD-Intel-Core-i3-1115G4-4-1GHz-16-10-2-5K-UHD-Display-Fingerprint-Backlit-Keyboard-Wifi5-BT-5-0-Stude_586d0ce8-980d-454c-b619-e4b1e8be2414.6b32a631c79cabd0561e2339ca1a66b7.jpeg\",\"isOutOfStock\":false,\"price\":219.99,\"rating\":{\"averageRating\":2.8,\"numberOfReviews\":29},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"i3-1115G4\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/fb0b1307-2e0d-4291-92fd-335d9a782c04.4cfdd47fa908f8dbddfa367b8eae1592.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/586d0ce8-980d-454c-b619-e4b1e8be2414.6b32a631c79cabd0561e2339ca1a66b7.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"6LWXWFCPHSAU\",\"usItemId\":\"15625551829\",\"canonicalUrl\":\"/ip/RNRUO-13-5-Windows-11-Pro-Laptop-8GB-RAM-256GB-SSD-Intel-Core-i3-1115G4-Up-4-1GHz-16-10-2-5K-UHD-Display-Fingerprint-Backlit-Keyboard-Wifi5-BT-5-0-St/15625551829?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"i7-1065G7\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/5a0026e7-f861-40ff-8a1b-26944e2b7319.c45e51ac5b2f3d57519d526f1e3fe75f.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/b831611a-6630-4bbb-8aba-d51c4c8fd1e3.d7b46c576813c6183b799d5581bfa251.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"2P6NCFJFEKQF\",\"usItemId\":\"15397961952\",\"canonicalUrl\":\"/ip/RNRUO-13-5-Windows-11-Pro-Business-Laptop-8GB-RAM-256GB-SSD-3-9GHz-Intel-Core-i7-1065G7-2-Core-2256x1504-UHD-Fingerprint-Backlit-Keyboard-Wifi5-BT-5/15397961952?classType=undefined\\u0026variantFieldId=edition\"}],\"isVariantTypeSwatch\":false,\"displayName\":\"options\",\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":42,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"1PNRT247HHPS\",\"usItemId\":\"5098188136\",\"isBadSplit\":false,\"catalogSellerId\":\"101450489\",\"fitmentLabel\":null,\"name\":\"HP 14 inch HD Chromebook Laptop Intel Processor N200 4GB RAM 128GB UFS Glacier Silver\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":\"\\u003cli\\u003eHP Chromebook 14\\\" inch N200\\u003c/li\\u003e\\u003cli\\u003e4GB RAM / 128GB Universal Flash Storage\\u003c/li\\u003e\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":27,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.79855,\\\"l2sf\\\":0.21493770588825667,\\\"l2se\\\":0.214938,\\\"l2sr\\\":0.982277,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":{\"otherConditionsMessage\":\"RESOLD\",\"minPriceDisplay\":\"$109.00\"},\"imageInfo\":{\"id\":\"36A42D0744CC415EB5EEF1364E436DE1\",\"name\":\"HP14-inch-HD-Chromebook-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Glacier-Silver_df386dee-277c-4942-8028-021189a667c9.ce365491aaafe9c160204db398857c17.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP14-inch-HD-Chromebook-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Glacier-Silver_df386dee-277c-4942-8028-021189a667c9.ce365491aaafe9c160204db398857c17.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP14-inch-HD-Chromebook-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Glacier-Silver/5098188136?classType=REGULAR\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:1230091:1103213:3484049\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"urgency\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1071\",\"key\":\"LOW_INVENTORY\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":null,\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"RED_BOLD\",\"text\":\"Only 4 left\",\"type\":\"LABEL\",\"iconId\":null,\"templates\":null,\"badgeContent\":null}]},{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4.2,\"numberOfReviews\":7314,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"0A1A1ACE55FE4288909F09C60A8921A8\",\"sellerName\":\"BDR LLC\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":[{\"serviceType\":\"SERVICES\",\"serviceTitle\":\"\",\"serviceSubTitle\":\"\",\"serviceProviders\":[],\"groups\":[{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"2855D6DD321237C8B75D085458BFD4AA\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"118BF9C4A858360B82FDBD974C86AE17\"}]}]}],\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"02FD9BE97FA036B7BB1F23B51E5554E6\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-09T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$175.80\",\"linePriceDisplay\":\"$175.80\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":109,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $109.00\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\\u003cli\\u003eHP Chromebook 14\\\" inch N200\\u003c/li\\u003e\\u003cli\\u003e4GB RAM / 128GB Universal Flash Storage\\u003c/li\\u003e\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP14-inch-HD-Chromebook-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Glacier-Silver_df386dee-277c-4942-8028-021189a667c9.ce365491aaafe9c160204db398857c17.jpeg\",\"imageSize\":\"\",\"imageID\":\"36A42D0744CC415EB5EEF1364E436DE1\",\"imageName\":\"HP14-inch-HD-Chromebook-Laptop-Intel-Processor-N200-4GB-RAM-128GB-UFS-Glacier-Silver_df386dee-277c-4942-8028-021189a667c9.ce365491aaafe9c160204db398857c17.jpeg\",\"isOutOfStock\":false,\"price\":175.8,\"rating\":{\"averageRating\":4.2,\"numberOfReviews\":7314},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":43,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"2WHH8GCJR18H\",\"usItemId\":\"939731827\",\"isBadSplit\":false,\"catalogSellerId\":\"100001344\",\"fitmentLabel\":null,\"name\":\"Restored Apple MacBook Air MJVM2LL/A 11.6-Inch laptop(1.6 GHz Intel i5, 128 GB SSD, Integrated Intel HD Graphics 6000, Mac OS)\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":\"1.6 GHz dual-core Intel Core i5 (Turbo Boost up to 2.7 GHz) with 3 MB shared L3 cache4 GB of 1600 MHz LPDDR3 RAM; 128 GB PCIe-based flash storage11.6-Inch (diagonal) LED-backlit Glossy Widescreen\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.022341,\\\"l2sf\\\":0.2136852793162145,\\\"l2se\\\":0.213685,\\\"l2sr\\\":0.106064,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":2,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"D4A8B47D2C884FC2BFA3269C3A042AF0\",\"name\":\"Apple-MacBook-Air-MJVM2LL-A-11-6-Inch-laptop-1-6-GHz-Intel-i5-128-GB-SSD-Integrated-Intel-HD-Graphics-6000-Mac-OS_644e2cbb-290a-4574-94f2-650eaa8a5cd9_1.c944fa351e93df7713017c7b737c0480.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/Apple-MacBook-Air-MJVM2LL-A-11-6-Inch-laptop-1-6-GHz-Intel-i5-128-GB-SSD-Integrated-Intel-HD-Graphics-6000-Mac-OS_644e2cbb-290a-4574-94f2-650eaa8a5cd9_1.c944fa351e93df7713017c7b737c0480.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Apple-MacBook-Air-MJVM2LL-A-11-6-Inch-laptop-1-6-GHz-Intel-i5-128-GB-SSD-Integrated-Intel-HD-Graphics-6000-Mac-OS/939731827?conditionGroupCode=2\\u0026classType=REGULAR\",\"conditionV2\":{\"code\":5,\"groupCode\":2},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8945805:4302526\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"product_condition\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1095\",\"key\":\"PREOWNED\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":null,\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"REFURB_ICON_BLACK_TXT\",\"text\":\"Restored: Like New\",\"type\":\"ICON\",\"iconId\":null,\"templates\":null,\"badgeContent\":null}]},{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":5,\"numberOfReviews\":1,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"41A59D3D222548A7AE171769B2F538FE\",\"sellerName\":\"ASN Depot, Inc.\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"B4855B9D7DC13B0FAD265C99ED2328B1\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-13T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$174.98\",\"linePriceDisplay\":\"$174.98\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"1.6 GHz dual-core Intel Core i5 (Turbo Boost up to 2.7 GHz) with 3 MB shared L3 cache4 GB of 1600 MHz LPDDR3 RAM; 128 GB PCIe-based flash storage11.6-Inch (diagonal) LED-backlit Glossy Widescreen\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/Apple-MacBook-Air-MJVM2LL-A-11-6-Inch-laptop-1-6-GHz-Intel-i5-128-GB-SSD-Integrated-Intel-HD-Graphics-6000-Mac-OS_644e2cbb-290a-4574-94f2-650eaa8a5cd9_1.c944fa351e93df7713017c7b737c0480.jpeg\",\"imageSize\":\"\",\"imageID\":\"D4A8B47D2C884FC2BFA3269C3A042AF0\",\"imageName\":\"Apple-MacBook-Air-MJVM2LL-A-11-6-Inch-laptop-1-6-GHz-Intel-i5-128-GB-SSD-Integrated-Intel-HD-Graphics-6000-Mac-OS_644e2cbb-290a-4574-94f2-650eaa8a5cd9_1.c944fa351e93df7713017c7b737c0480.jpeg\",\"isOutOfStock\":false,\"price\":174.98,\"rating\":{\"averageRating\":5,\"numberOfReviews\":1},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":44,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"26AQROWJ3N81\",\"usItemId\":\"18988906689\",\"isBadSplit\":false,\"catalogSellerId\":\"101027287\",\"fitmentLabel\":null,\"name\":\"HP 14\\\" N150 Laptop, Intel Quad-Core, 4GB RAM, 192GB Storage (128GB eMMC + 64GB SD), Windows 11 Home Copilot \\u0026 1 Year Microsoft Office 365, Ultra Thin Lightweight Green Notebook for Work and School\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"\\u003cli\\u003e[Powerful Performance] Equipped with an Intel Quad-Core N150 processor and 4GB RAM for smooth multitasking, fast browsing, and efficient everyday computing.\\u003c/li\\u003e\\u003cli\\u003e[Ample Storage Space] Total of\\u003c/li\\u003e\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":8.902777,\\\"l2sf\\\":0.18976340838696684,\\\"l2se\\\":0.189763,\\\"l2sr\\\":0.197581,\\\"src\\\":[\\\"SOLR\\\",\\\"ANN\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"4CB4646D24B94DA09550BBC5A6D298E8\",\"name\":\"HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-192GB-Storage-128GB-eMMC-64GB-SD-Windows-11-Home-Copilot-1-Year-Microsoft-Office-365-Ultra-Thin-Lightweight_d6736aa3-c987-4ae3-b814-d21cde39c426.6cbe18f040a6421fb12531d4a3c51757.png\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-192GB-Storage-128GB-eMMC-64GB-SD-Windows-11-Home-Copilot-1-Year-Microsoft-Office-365-Ultra-Thin-Lightweight_d6736aa3-c987-4ae3-b814-d21cde39c426.6cbe18f040a6421fb12531d4a3c51757.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-192GB-Storage-128GB-eMMC-64GB-SD-Windows-11-Home-Copilot-1-Year-Microsoft-Office-365-Ultra-Thin-Lightweight/18988906689?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:1230091:1091333\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.5,\"numberOfReviews\":2,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"C30ECE8FFBC84E2B95ED1D21DDBD6F94\",\"sellerName\":\"VLT Distributor\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"C578B627600B34BCA60E969634C2BF9B\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-09T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$269.79\",\"linePrice\":\"$239.78\",\"linePriceDisplay\":\"Now $239.78\",\"savings\":\"SAVE $30.01\",\"savingsAmt\":30.01,\"wasPrice\":\"$269.79\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":226.88,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $226.88\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"actual_color\",\"type\":\"LOCATOR\",\"id\":null,\"displayName\":\"options\",\"isVariantTypeSwatch\":true,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/d6736aa3-c987-4ae3-b814-d21cde39c426.6cbe18f040a6421fb12531d4a3c51757.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Green\",\"rank\":10000000,\"displayName\":\"Green\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/d6736aa3-c987-4ae3-b814-d21cde39c426.6cbe18f040a6421fb12531d4a3c51757.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"7ES2BC45955W\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-256GB-Storage-128GB-eMMC-128GB-SD-Windows-11-Home-Copilot-1-Year-Microsoft-Office-365-Ultra-Thin-Lightweigh/18985404671?classType=undefined\",\"usItemId\":\"18985404671\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/6e24bce7-70e2-4101-8ee9-b938ecfe8b02.90bef95b4eec4d8a1a13ddc6f09839d2.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Purple\",\"rank\":10000001,\"displayName\":\"Purple\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/6e24bce7-70e2-4101-8ee9-b938ecfe8b02.90bef95b4eec4d8a1a13ddc6f09839d2.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"6B33PFASNVFM\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-256GB-Storage-128GB-eMMC-128GB-SD-Windows-11-Home-Copilot-1-Year-MS-Office-365-Ultra-Thin-Lightweight-Purpl/19080813512?classType=undefined\",\"usItemId\":\"19080813512\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/4e0d88c9-c1ea-4d73-badb-4ef70e16e805.9be6ea1be7c274142a2d4c2fa0b3020a.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Rose Gold\",\"rank\":10000002,\"displayName\":\"Rose Gold\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/4e0d88c9-c1ea-4d73-badb-4ef70e16e805.9be6ea1be7c274142a2d4c2fa0b3020a.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"71NS0H68CDBA\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-192GB-Storage-128GB-eMMC-64GB-SD-Windows-11-Home-Copilot-1-Year-MS-Office-365-Ultra-Thin-Lightweight-Rose-G/19101506616?classType=undefined\",\"usItemId\":\"19101506616\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/994cbd80-d290-41d5-9107-69b12a6b8a0f.ae01f1d2e4caf9ebd67ba24317c9757b.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"Silver\",\"rank\":10000003,\"displayName\":\"Silver\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/994cbd80-d290-41d5-9107-69b12a6b8a0f.ae01f1d2e4caf9ebd67ba24317c9757b.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"5T7BAP42QYIU\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-192GB-Storage-128GB-eMMC-64GB-SD-Windows-11-Home-Copilot-1-Year-MS-Office-365-Ultra-Thin-Lightweight-Silver/19071150760?classType=undefined\",\"usItemId\":\"19071150760\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\\u003cli\\u003e[Powerful Performance] Equipped with an Intel Quad-Core N150 processor and 4GB RAM for smooth multitasking, fast browsing, and efficient everyday computing.\\u003c/li\\u003e\\u003cli\\u003e[Ample Storage Space] Total of\\u003c/li\\u003e\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-192GB-Storage-128GB-eMMC-64GB-SD-Windows-11-Home-Copilot-1-Year-Microsoft-Office-365-Ultra-Thin-Lightweight_d6736aa3-c987-4ae3-b814-d21cde39c426.6cbe18f040a6421fb12531d4a3c51757.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"4CB4646D24B94DA09550BBC5A6D298E8\",\"imageName\":\"HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-192GB-Storage-128GB-eMMC-64GB-SD-Windows-11-Home-Copilot-1-Year-Microsoft-Office-365-Ultra-Thin-Lightweight_d6736aa3-c987-4ae3-b814-d21cde39c426.6cbe18f040a6421fb12531d4a3c51757.png\",\"isOutOfStock\":false,\"price\":239.78,\"rating\":{\"averageRating\":4.5,\"numberOfReviews\":2},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"Green\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/d6736aa3-c987-4ae3-b814-d21cde39c426.6cbe18f040a6421fb12531d4a3c51757.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/d6736aa3-c987-4ae3-b814-d21cde39c426.6cbe18f040a6421fb12531d4a3c51757.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"7ES2BC45955W\",\"usItemId\":\"18985404671\",\"canonicalUrl\":\"/ip/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-256GB-Storage-128GB-eMMC-128GB-SD-Windows-11-Home-Copilot-1-Year-Microsoft-Office-365-Ultra-Thin-Lightweigh/18985404671?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Purple\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/6e24bce7-70e2-4101-8ee9-b938ecfe8b02.90bef95b4eec4d8a1a13ddc6f09839d2.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/6e24bce7-70e2-4101-8ee9-b938ecfe8b02.90bef95b4eec4d8a1a13ddc6f09839d2.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"6B33PFASNVFM\",\"usItemId\":\"19080813512\",\"canonicalUrl\":\"/ip/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-256GB-Storage-128GB-eMMC-128GB-SD-Windows-11-Home-Copilot-1-Year-MS-Office-365-Ultra-Thin-Lightweight-Purpl/19080813512?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Rose Gold\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/4e0d88c9-c1ea-4d73-badb-4ef70e16e805.9be6ea1be7c274142a2d4c2fa0b3020a.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/4e0d88c9-c1ea-4d73-badb-4ef70e16e805.9be6ea1be7c274142a2d4c2fa0b3020a.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"71NS0H68CDBA\",\"usItemId\":\"19101506616\",\"canonicalUrl\":\"/ip/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-192GB-Storage-128GB-eMMC-64GB-SD-Windows-11-Home-Copilot-1-Year-MS-Office-365-Ultra-Thin-Lightweight-Rose-G/19101506616?classType=undefined\\u0026variantFieldId=actual_color\"},{\"name\":\"Silver\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/994cbd80-d290-41d5-9107-69b12a6b8a0f.ae01f1d2e4caf9ebd67ba24317c9757b.png?odnBg=FFFFFF\\u0026odnHeight=30\\u0026odnWidth=30\",\"image\":\"https://i5.walmartimages.com/asr/994cbd80-d290-41d5-9107-69b12a6b8a0f.ae01f1d2e4caf9ebd67ba24317c9757b.png?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"5T7BAP42QYIU\",\"usItemId\":\"19071150760\",\"canonicalUrl\":\"/ip/HP-14-N150-Laptop-Intel-Quad-Core-4GB-RAM-192GB-Storage-128GB-eMMC-64GB-SD-Windows-11-Home-Copilot-1-Year-MS-Office-365-Ultra-Thin-Lightweight-Silver/19071150760?classType=undefined\\u0026variantFieldId=actual_color\"}],\"isVariantTypeSwatch\":true,\"displayName\":\"options\",\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":45,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"1AKA1J2RVS9D\",\"usItemId\":\"16611706375\",\"isBadSplit\":false,\"catalogSellerId\":\"0\",\"fitmentLabel\":null,\"name\":\"MSI Cyborg 15.6 inch FHD 144Hz Gaming Laptop Intel Core 7 240H NVIDIA GeForce RTX 5060 - 16GB RAM 512GB SSD Black (2025)\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":\"MSI Cyborg 15.6 inch FHD 144Hz Gaming Laptop Intel Core 7 240H NVIDIA GeForce RTX 5060 - 16GB RAM 512GB SSD Black (2025)\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":1,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.5322275,\\\"l2sf\\\":0.21342385969250788,\\\"l2se\\\":0.213424,\\\"l2sr\\\":0.075187,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"0C4B381D5E6843B29AD2E2C85F80C7FA\",\"name\":\"MSI-Cyborg-15-6-inch-FHD-144Hz-Gaming-Laptop-Intel-Core-7-240H-NVIDIA-GeForce-RTX-5060-16GB-DDR7-512GB-SSD-Black-2025_26b22f7e-a04d-458f-b425-43b98a2bd5e9.fb1c6b6db3de36b3454afcd1b0e8bdb4.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/MSI-Cyborg-15-6-inch-FHD-144Hz-Gaming-Laptop-Intel-Core-7-240H-NVIDIA-GeForce-RTX-5060-16GB-DDR7-512GB-SSD-Black-2025_26b22f7e-a04d-458f-b425-43b98a2bd5e9.fb1c6b6db3de36b3454afcd1b0e8bdb4.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/MSI-Cyborg-15-6-inch-FHD-144Hz-Gaming-Laptop-Intel-Core-7-240H-NVIDIA-GeForce-RTX-5060-16GB-DDR7-512GB-SSD-Black-2025/16611706375?classType=REGULAR\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:7052607:1849032:5249261\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"tomorrow\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4.7,\"numberOfReviews\":54,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"E469A0F991F934389CD5B9404D722274\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-06T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"$1,199.99\",\"linePrice\":\"$899.00\",\"linePriceDisplay\":\"Now $899.00\",\"savings\":\"SAVE $300.99\",\"savingsAmt\":300.99,\"wasPrice\":\"$1,199.99\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"MSI Cyborg 15.6 inch FHD 144Hz Gaming Laptop Intel Core 7 240H NVIDIA GeForce RTX 5060 - 16GB RAM 512GB SSD Black (2025)\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"tomorrow\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/MSI-Cyborg-15-6-inch-FHD-144Hz-Gaming-Laptop-Intel-Core-7-240H-NVIDIA-GeForce-RTX-5060-16GB-DDR7-512GB-SSD-Black-2025_26b22f7e-a04d-458f-b425-43b98a2bd5e9.fb1c6b6db3de36b3454afcd1b0e8bdb4.jpeg\",\"imageSize\":\"\",\"imageID\":\"0C4B381D5E6843B29AD2E2C85F80C7FA\",\"imageName\":\"MSI-Cyborg-15-6-inch-FHD-144Hz-Gaming-Laptop-Intel-Core-7-240H-NVIDIA-GeForce-RTX-5060-16GB-DDR7-512GB-SSD-Black-2025_26b22f7e-a04d-458f-b425-43b98a2bd5e9.fb1c6b6db3de36b3454afcd1b0e8bdb4.jpeg\",\"isOutOfStock\":false,\"price\":899,\"rating\":{\"averageRating\":4.7,\"numberOfReviews\":54},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":46,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"7HH95U34AQDA\",\"usItemId\":\"9963221656\",\"isBadSplit\":false,\"catalogSellerId\":\"101392409\",\"fitmentLabel\":null,\"name\":\"ASUS Vivobook 15.6 inch Windows Laptop Intel Core i5-1235U 8GB RAM 256GB SSD Quiet Blue\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":\"ASUS Vivobook 15.6 inch Windows Laptop Intel Core i5-1235U 8GB RAM 256GB SSD Quiet Blue\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.164467,\\\"l2sf\\\":0.21266950565022966,\\\"l2se\\\":0.21267,\\\"l2sr\\\":0.97932,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"73FBFB01BE374FAB96670C569788E564\",\"name\":\"ASUS-Vivobook-15-6-inch-Windows-Laptop-Intel-Core-i5-1235U-8GB-RAM-256GB-SSD-Quiet-Blue_7852d0d9-8614-4c88-8a3e-3a23b4855ef8.9ef0c556e481911f845b03a449251695.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/ASUS-Vivobook-15-6-inch-Windows-Laptop-Intel-Core-i5-1235U-8GB-RAM-256GB-SSD-Quiet-Blue_7852d0d9-8614-4c88-8a3e-3a23b4855ef8.9ef0c556e481911f845b03a449251695.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/ASUS-Vivobook-15-6-inch-Windows-Laptop-Intel-Core-i5-1235U-8GB-RAM-256GB-SSD-Quiet-Blue/9963221656?classType=REGULAR\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":4.4,\"numberOfReviews\":394,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"5010793ACC1A49FDB9764E3F20E09BD7\",\"sellerName\":\"deal catcher\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":[{\"serviceType\":\"SERVICES\",\"serviceTitle\":\"\",\"serviceSubTitle\":\"\",\"serviceProviders\":[],\"groups\":[{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"4BAAC15CD74F349D8ECF727DCE1C6051\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"FDD1718B056836F5B7A2CCBFC497F89B\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"2855D6DD321237C8B75D085458BFD4AA\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"092FC84A59823FB887939F62FD27FD9D\"}]},{\"groupType\":\"INCLUDED_SERVICES\",\"groupTitle\":\"\",\"assetUrl\":\"\",\"shortDescription\":null,\"unavailabilityReason\":null,\"nearByStores\":null,\"services\":[{\"offerId\":\"118BF9C4A858360B82FDBD974C86AE17\"}]}]}],\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"A4BAFD0F44C93270A720149E361AACA7\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-12T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$398.99\",\"linePriceDisplay\":\"$398.99\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"ASUS Vivobook 15.6 inch Windows Laptop Intel Core i5-1235U 8GB RAM 256GB SSD Quiet Blue\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/ASUS-Vivobook-15-6-inch-Windows-Laptop-Intel-Core-i5-1235U-8GB-RAM-256GB-SSD-Quiet-Blue_7852d0d9-8614-4c88-8a3e-3a23b4855ef8.9ef0c556e481911f845b03a449251695.jpeg\",\"imageSize\":\"\",\"imageID\":\"73FBFB01BE374FAB96670C569788E564\",\"imageName\":\"ASUS-Vivobook-15-6-inch-Windows-Laptop-Intel-Core-i5-1235U-8GB-RAM-256GB-SSD-Quiet-Blue_7852d0d9-8614-4c88-8a3e-3a23b4855ef8.9ef0c556e481911f845b03a449251695.jpeg\",\"isOutOfStock\":false,\"price\":398.99,\"rating\":{\"averageRating\":4.4,\"numberOfReviews\":394},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":47,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"6JEJ9DOT3FPT\",\"usItemId\":\"609040889\",\"isBadSplit\":false,\"catalogSellerId\":\"19007\",\"fitmentLabel\":null,\"name\":\"Restored Apple MacBook Air 13.3-inch Laptop-Space Gray, M1 Chip, Built for Apple Intelligence, 8GB RAM, 256GB storage\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"Take on everything from professional-quality editing to action-packed gaming with ease. The Apple M1 chip with an 8-core CPU delivers up to 3.5x faster performance than the previous generation while\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":10.972605,\\\"l2sf\\\":0.1850003532731025,\\\"l2se\\\":0.185,\\\"l2sr\\\":0.992047,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":2,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"FFCB5C33EF6A439D9E076ABB9C406D48\",\"name\":\"32c1d0da-c997-44ce-9214-88f502874319.586816deac62efaef95675ab97296f0a.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/asr/32c1d0da-c997-44ce-9214-88f502874319.586816deac62efaef95675ab97296f0a.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/Apple-MacBook-Air-13-3-inch-Laptop-Space-Gray-M1-Chip-Built-for-Apple-Intelligence-8GB-RAM-256GB-storage/609040889?conditionGroupCode=2\\u0026classType=VARIANT\",\"conditionV2\":{\"code\":6,\"groupCode\":2},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8945805:4302526\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"product_condition\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1095\",\"key\":\"PREOWNED\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":null,\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"REFURB_ICON_BLACK_TXT\",\"text\":\"Restored: Good\",\"type\":\"ICON\",\"iconId\":null,\"templates\":null,\"badgeContent\":null}]},{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"urgency\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1071\",\"key\":\"LOW_INVENTORY\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":null,\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"RED_BOLD\",\"text\":\"Only 1 left\",\"type\":\"LABEL\",\"iconId\":null,\"templates\":null,\"badgeContent\":null}]},{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":4.1,\"numberOfReviews\":22,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"72EF059B28364F87A618DD2BFB96C8F7\",\"sellerName\":\"Device Refresh LLC\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"ADBC1535E0CC35C589C46C48BDB21802\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-11T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$379.99\",\"linePriceDisplay\":\"$379.99\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"Take on everything from professional-quality editing to action-packed gaming with ease. The Apple M1 chip with an 8-core CPU delivers up to 3.5x faster performance than the previous generation while\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/asr/32c1d0da-c997-44ce-9214-88f502874319.586816deac62efaef95675ab97296f0a.jpeg\",\"imageSize\":\"\",\"imageID\":\"FFCB5C33EF6A439D9E076ABB9C406D48\",\"imageName\":\"32c1d0da-c997-44ce-9214-88f502874319.586816deac62efaef95675ab97296f0a.jpeg\",\"isOutOfStock\":false,\"price\":379.99,\"rating\":{\"averageRating\":4.1,\"numberOfReviews\":22},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":48,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"4C7APMFZ2BRK\",\"usItemId\":\"15016650262\",\"isBadSplit\":false,\"catalogSellerId\":\"102581704\",\"fitmentLabel\":null,\"name\":\"RNRUO 15.6\\\" Laptop Computer, 12GB DDR5 256G SSD, Intel N95 Quad-Core up to 3.6GHz, Office 2024 Fingerprint Backlit KB WiFi 6 BT5.3, 1080 FHD Display for Student, Business, Home Office\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":\"\\u003cli\\u003eIntel N95 Processor: The RNRUO PC laptop features an Intel N95 processor (4 Cores, 4 Threads, up to 3.6GHz), delivering reliable performance for light gaming, web browsing, and document editing.\\u003c/li\\u003e\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":9.685782,\\\"l2sf\\\":0.20965196186881493,\\\"l2se\\\":0.209652,\\\"l2sr\\\":0.113381,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"2EE17A58D5014FEE83FBA5F206B91AA1\",\"name\":\"RNRUO-14-inch-Laptop-Intel-Celeron-N3350-6GB-RAM-64GB-256GB-SSD-Windows-10-WiFi-5-BT5-0-HD-Camera_ed856a7c-6c58-428d-a0d9-59c50b840537.0ee6adafbdc0735b1e5337db055f5023.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/RNRUO-14-inch-Laptop-Intel-Celeron-N3350-6GB-RAM-64GB-256GB-SSD-Windows-10-WiFi-5-BT5-0-HD-Camera_ed856a7c-6c58-428d-a0d9-59c50b840537.0ee6adafbdc0735b1e5337db055f5023.jpeg\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/RNRUO-14-inch-Laptop-Intel-Celeron-N3350-6GB-RAM-64GB-256GB-SSD-Windows-10-WiFi-5-BT5-0-HD-Camera/15016650262?classType=REGULAR\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:1230091:1091333\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[{\"__typename\":\"BaseBadge\",\"key\":\"SAVE_WITH_W_PLUS\",\"text\":\"Save with\",\"type\":\"ICON\"}],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"Sat, Mar 7\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":3.1,\"numberOfReviews\":105,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"F2C87A285A934E2BAECD613A22390F63\",\"sellerName\":\"RNRUO\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"C4F381C1376030C3B1E677FC656EB4A8\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-07T22:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$229.09\",\"linePriceDisplay\":\"$229.09\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"FC\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"\\u003cli\\u003eIntel N95 Processor: The RNRUO PC laptop features an Intel N95 processor (4 Cores, 4 Threads, up to 3.6GHz), delivering reliable performance for light gaming, web browsing, and document editing.\\u003c/li\\u003e\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"Sat, Mar 7\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"fulfillmentIcon\":{\"key\":\"SAVE_WITH_W_PLUS\",\"label\":\"Save with\"},\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/RNRUO-14-inch-Laptop-Intel-Celeron-N3350-6GB-RAM-64GB-256GB-SSD-Windows-10-WiFi-5-BT5-0-HD-Camera_ed856a7c-6c58-428d-a0d9-59c50b840537.0ee6adafbdc0735b1e5337db055f5023.jpeg\",\"imageSize\":\"\",\"imageID\":\"2EE17A58D5014FEE83FBA5F206B91AA1\",\"imageName\":\"RNRUO-14-inch-Laptop-Intel-Celeron-N3350-6GB-RAM-64GB-256GB-SSD-Windows-10-WiFi-5-BT5-0-HD-Camera_ed856a7c-6c58-428d-a0d9-59c50b840537.0ee6adafbdc0735b1e5337db055f5023.jpeg\",\"isOutOfStock\":false,\"price\":229.09,\"rating\":{\"averageRating\":3.1,\"numberOfReviews\":105},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":49,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"0YCGO215BLSG\",\"usItemId\":\"19556211776\",\"isBadSplit\":false,\"catalogSellerId\":\"102900738\",\"fitmentLabel\":null,\"name\":\"HP 14 Laptop Thin \\u0026 Light, Microsoft Office 365(one year), Intel Quad-Core Processor, 4GB Memory, 128GB Storage, Windows 11 Home (Green)\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"REGULAR\",\"shortDescription\":\"\\u003cli\\u003eCompact \\u0026 Portable: 14-inch ultra-portle laptop with micro-edge HD display (1366x768, BrightView) for easy mobility.\\u003c/li\\u003e\\u003cli\\u003eQuad-Core Performance: Intel N150 quad-core processor (4 threads, up to\\u003c/li\\u003e\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":8.858734,\\\"l2sf\\\":0.14856578636690781,\\\"l2se\\\":0.148566,\\\"l2sr\\\":0.111104,\\\"src\\\":[\\\"SOLR\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"B4B59C06D01D4D8686E0429A854A8BB1\",\"name\":\"HP-14-Laptop-Thin-Light-Microsoft-Office-365-one-year-Intel-Quad-Core-Processor-4GB-Memory-128GB-Storage-Windows-11-Home-Green_6460abb1-f23c-4b57-801f-fc81aa9ed966.25f350aa59b3858a108dd027c4c9479d.png\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-14-Laptop-Thin-Light-Microsoft-Office-365-one-year-Intel-Quad-Core-Processor-4GB-Memory-128GB-Storage-Windows-11-Home-Green_6460abb1-f23c-4b57-801f-fc81aa9ed966.25f350aa59b3858a108dd027c4c9479d.png\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-14-Laptop-Thin-Light-Microsoft-Office-365-one-year-Intel-Quad-Core-Processor-4GB-Memory-128GB-Storage-Windows-11-Home-Green/19556211776?classType=REGULAR\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:1230091:1091333\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"REGULAR\",\"averageRating\":null,\"numberOfReviews\":null,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"4958CB65D02A431CA7CC114A73C37BCB\",\"sellerName\":\"ProTech \",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"5B96A94D452137659CEDE790780DCC7F\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-12T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$229.00\",\"linePriceDisplay\":\"$229.00\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":0,\"minPriceForVariant\":\"\",\"priceRangeString\":\"\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":true,\"sponsoredProduct\":null,\"showOptions\":false,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":false,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":true,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":true,\"description\":\"\\u003cli\\u003eCompact \\u0026 Portable: 14-inch ultra-portle laptop with micro-edge HD display (1366x768, BrightView) for easy mobility.\\u003c/li\\u003e\\u003cli\\u003eQuad-Core Performance: Intel N150 quad-core processor (4 threads, up to\\u003c/li\\u003e\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-14-Laptop-Thin-Light-Microsoft-Office-365-one-year-Intel-Quad-Core-Processor-4GB-Memory-128GB-Storage-Windows-11-Home-Green_6460abb1-f23c-4b57-801f-fc81aa9ed966.25f350aa59b3858a108dd027c4c9479d.png\",\"imageSize\":\"\",\"imageID\":\"B4B59C06D01D4D8686E0429A854A8BB1\",\"imageName\":\"HP-14-Laptop-Thin-Light-Microsoft-Office-365-one-year-Intel-Quad-Core-Processor-4GB-Memory-128GB-Storage-Windows-11-Home-Green_6460abb1-f23c-4b57-801f-fc81aa9ed966.25f350aa59b3858a108dd027c4c9479d.png\",\"isOutOfStock\":false,\"price\":229,\"rating\":{\"averageRating\":0,\"numberOfReviews\":0},\"salesUnit\":\"EACH\",\"variantList\":[],\"isVariantTypeSwatch\":false,\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":false,\"productAttributes\":{},\"productIndex\":50,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"},{\"__typename\":\"Product\",\"buyBoxSuppression\":false,\"similarItems\":false,\"id\":\"29GQTTNEM978\",\"usItemId\":\"7987319291\",\"isBadSplit\":false,\"catalogSellerId\":\"101027287\",\"fitmentLabel\":null,\"name\":\"HP 14\\\" HD Laptop for Students and Business,Intel Celeron N4120, 4GB RAM, 64GB eMMC, Long Battery Life, UHD Graphics, Webcam, HDMI, Wi-Fi,Windows 11 Home in S Mode, Snowflake White\",\"checkStoreAvailabilityATC\":false,\"seeShippingEligibility\":false,\"brand\":null,\"type\":\"VARIANT\",\"shortDescription\":\"\\u003cli\\u003e[Processor]:Intel Celeron N4120 Processor (4 Cores, 4 Threads, Base Frequency at 1.1GHz, Up to 2.6GHz at Max Turbo Frequency)\\u003c/li\\u003e\\u003cli\\u003e[Screen] 14\\\" diagonal, HD (1366 x 768), micro-edge,\\u003c/li\\u003e\",\"averageWeight\":null,\"weightIncrement\":1,\"topResult\":null,\"additionalOfferCount\":null,\"availabilityInNearbyStore\":null,\"itemBeacon\":\"{\\\"l1s\\\":8.606218,\\\"l2sf\\\":0.3344221461882029,\\\"l2se\\\":0.334422,\\\"l2sr\\\":0.990074,\\\"src\\\":[\\\"ANN\\\"],\\\"iu\\\":[\\\"laptop\\\"],\\\"plb\\\":0}\",\"catalogProductType\":\"Laptop Computers\",\"collectibles\":null,\"gradingTypeCode\":1,\"conditionPriceRange\":null,\"imageInfo\":{\"id\":\"1B790EE9364B4DD88F4B5ABDE171B085\",\"name\":\"HP-14-HD-Laptop-Students-Business-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Long-Battery-Life-UHD-Graphics-Webcam-HDMI-Wi-Fi-Windows-11-Home-S-Mode-Snowf_27caba4b-bfe2-4ca3-8369-c3a7b0f3ee01.9d92b3d26e5d8d60427afb49169dada9.jpeg\",\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/HP-14-HD-Laptop-Students-Business-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Long-Battery-Life-UHD-Graphics-Webcam-HDMI-Wi-Fi-Windows-11-Home-S-Mode-Snowf_27caba4b-bfe2-4ca3-8369-c3a7b0f3ee01.9d92b3d26e5d8d60427afb49169dada9.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"size\":\"104-104\",\"allImages\":[]},\"aspectInfo\":{\"name\":null,\"header\":null,\"id\":null,\"snippet\":null},\"plItem\":{\"isPLItemToBoost\":false,\"plItemTagString\":\"\"},\"canonicalUrl\":\"/ip/HP-14-HD-Laptop-Students-Business-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Long-Battery-Life-UHD-Graphics-Webcam-HDMI-Wi-Fi-Windows-11-Home-S-Mode-Snowf/7987319291?classType=VARIANT\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"externalInfo\":null,\"itemType\":null,\"category\":{\"categoryPathId\":\"0:3944:1089430:3951:8835131:1737838:1315601\",\"path\":null},\"returnPolicy\":{\"returnable\":null,\"freeReturns\":null,\"returnWindow\":{\"value\":null,\"unitType\":\"Day\"},\"returnPolicyText\":null},\"badges\":{\"flags\":null,\"tags\":[],\"groups\":[{\"__typename\":\"UnifiedBadgeGroup\",\"name\":\"fulfillment\",\"members\":[{\"__typename\":\"BadgeGroupMember\",\"id\":\"L1053\",\"key\":\"FF_SHIPPING\",\"memberType\":\"badge\",\"otherInfo\":null,\"rank\":1,\"textTemplate\":null,\"textValues\":null,\"slaText\":\"in 3+ days\",\"slaDate\":null,\"slaDateISO\":null,\"sla\":null,\"styleId\":\"FF_STYLE\",\"text\":\"Free shipping, arrives \",\"type\":null,\"iconId\":null,\"templates\":null,\"badgeContent\":null}]}],\"groupsV2\":[]},\"buyNowEligible\":true,\"classType\":\"VARIANT\",\"averageRating\":3.8,\"numberOfReviews\":1362,\"esrb\":null,\"mediaRating\":null,\"salesUnitType\":\"EACH\",\"sellerId\":\"C30ECE8FFBC84E2B95ED1D21DDBD6F94\",\"sellerName\":\"VLT Distributor\",\"sellerType\":null,\"hasSellerBadge\":null,\"isEarlyAccessItem\":false,\"preEarlyAccessEvent\":false,\"earlyAccessEvent\":false,\"blitzItem\":false,\"annualEvent\":false,\"annualEventV2\":false,\"availabilityStatusV2\":{\"display\":\"In stock\",\"value\":\"IN_STOCK\"},\"groupMetaData\":{\"groupType\":null,\"groupSubType\":null,\"numberOfComponents\":0,\"groupComponents\":null},\"addOnServices\":null,\"productLocation\":null,\"fulfillmentSpeed\":null,\"offerId\":\"F73FD406F1CA3DE0948AA2737526CFBF\",\"preOrder\":{\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null,\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"releaseDate\":null},\"pac\":null,\"droneAttributes\":null,\"fulfillmentSummary\":[{\"fulfillment\":\"DELIVERY\",\"storeId\":\"0\",\"deliveryDate\":\"2026-03-09T21:59:00.000Z\",\"fulfillmentMethods\":[\"UNSCHEDULED\"],\"fulfillmentBadge\":null,\"outOfCountryEligible\":null}],\"priceInfo\":{\"itemPrice\":\"\",\"linePrice\":\"$185.24\",\"linePriceDisplay\":\"$185.24\",\"savings\":\"\",\"savingsAmt\":0,\"wasPrice\":\"\",\"wasPriceSupportText\":\"\",\"unitPrice\":\"\",\"shipPrice\":\"\",\"minPrice\":179.99,\"minPriceForVariant\":\"\",\"priceRangeString\":\"Options from $179.99\",\"subscriptionPrice\":\"\",\"subscriptionString\":\"\",\"subscriptionDiscountPrice\":\"\",\"priceDisplayCondition\":\"\",\"finalCostByWeight\":false,\"submapType\":\"\",\"eaPricingText\":\"\",\"eaPricingPreText\":\"\",\"memberPriceString\":\"\",\"subscriptionDualPrice\":null,\"subscriptionPercentage\":null,\"isB2BPrice\":false,\"dutyFee\":null,\"priceDisplayType\":\"UNKNOWN\"},\"variantCriteria\":[{\"name\":\"edition\",\"type\":\"DEFAULT\",\"id\":null,\"displayName\":\"options\",\"isVariantTypeSwatch\":false,\"isVariantTypeAllowed\":false,\"variantList\":[{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/82439943-c284-4a26-bb3b-e49599b3c448.80a113370086eef116651fc565ccf0b6.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"none\",\"rank\":10000000,\"displayName\":\"none\",\"swatchImageUrl\":null,\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"0RJ5XZVGXGSG\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/New-HP-14-Laptop-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Long-Battery-Life-Rose-Gold/14510510684?classType=undefined\",\"usItemId\":\"14510510684\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/27caba4b-bfe2-4ca3-8369-c3a7b0f3ee01.9d92b3d26e5d8d60427afb49169dada9.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"4GB RAM| 64GB eMMC|White\",\"rank\":10000001,\"displayName\":\"4GB RAM| 64GB eMMC|White\",\"swatchImageUrl\":null,\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"6DR7NYVJ6XE1\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-HD-Laptop-Students-Business-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Long-Battery-Life-UHD-Graphics-Webcam-HDMI-Wi-Fi-Windows-11-Home-S-Mode-Snowf/7987319291?classType=undefined\",\"usItemId\":\"7987319291\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/8f6ca5c0-2244-460c-b185-70489964c5d5.efc471fbfa80cfdf4c471b92767940d6.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"4GB |32GB\",\"rank\":10000002,\"displayName\":\"4GB |32GB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/69a40f2e-cdaf-4082-a54c-12ef38844d46.cdf4ea6464bc2db68ea95a8d44375508.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"availabilityStatus\":\"NOT_AVAILABLE\",\"products\":[\"3YKJ2O9HIWW6\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-Chromebook-Laptop-Computer/592161882?classType=undefined\",\"usItemId\":\"592161882\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/703e8f73-a7ab-4fa6-8265-13b0c3be2078.d37f28cfb0a913dcf812107b5377755a.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"blue|4GB RAM| 64GB eMMC\",\"rank\":10000003,\"displayName\":\"blue|4GB RAM| 64GB eMMC\",\"swatchImageUrl\":null,\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"5JCWPLA5YBC9\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-Series-14-Laptop-Intel-Celeron-N4020-4GB-RAM-64GB-eMMC-Windows-11-Home-Blue-nbsp/15300057766?classType=undefined\",\"usItemId\":\"15300057766\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/80f656a9-7117-4940-8b83-badccd9695de.68026cb410eca7fa29cea02489a9bbb2.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"8GB RAM| 64GB eMMC|White\",\"rank\":10000004,\"displayName\":\"8GB RAM| 64GB eMMC|White\",\"swatchImageUrl\":null,\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"5R3VO7V4EZLY\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-HD-Laptop-Students-Business-Intel-Celeron-N4120-8GB-RAM-64GB-eMMC-Long-Battery-Life-UHD-Graphics-Webcam-HDMI-Wi-Fi-Windows-11-Home-S-Mode-Snowf/7976259456?classType=undefined\",\"usItemId\":\"7976259456\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/1ec0d02a-0147-4767-a8e6-290b2dc373d2.c6a3b831c2d4eeea72483a751c773efd.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"blue|8GB RAM| 64GB eMMC\",\"rank\":10000005,\"displayName\":\"blue|8GB RAM| 64GB eMMC\",\"swatchImageUrl\":null,\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"4H0AF7D51A0S\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-Series-14-Laptop-Intel-Celeron-N4020-8GB-RAM-64GB-eMMC-Windows-11-Home-Blue-nbsp/15290813023?classType=undefined\",\"usItemId\":\"15290813023\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/db19cb2d-5404-43e8-a378-2d5023cc8dc4.4cbd6fa45d8c883d9fbaf5e1d3f932ba.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"touch|8GB RAM| 64GB eMMC\",\"rank\":10000006,\"displayName\":\"touch|8GB RAM| 64GB eMMC\",\"swatchImageUrl\":null,\"availabilityStatus\":\"NOT_AVAILABLE\",\"products\":[\"524X4FE011KO\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-inch-Touchscreen-Laptop-Intel-Celeron-N4020-8GB-RAM-64GB-eMMC-One-Year-of-Microsoft-365-Pale-Rose-Gold/16029552655?classType=undefined\",\"usItemId\":\"16029552655\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/788dd7e3-1a8d-4830-828a-bb8dfe0caa40.f09e81dd5e2864e8509ae14cdfada933.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"16GB RAM| 64GB eMMC|White\",\"rank\":10000007,\"displayName\":\"16GB RAM| 64GB eMMC|White\",\"swatchImageUrl\":null,\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"6WS0TAJGRR54\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-HD-Laptop-Students-Business-Intel-Celeron-N4120-16GB-RAM-64GB-eMMC-Long-Battery-Life-UHD-Graphics-Webcam-HDMI-Wi-Fi-Windows-11-Home-S-Mode-Snow/7987116463?classType=undefined\",\"usItemId\":\"7987116463\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/525aeea7-5df5-4c23-819a-491572887e38.90664aaf215e966ca532a6482d1e53ce.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"16GB RAM|64GB eMMC|Rose Gold\",\"rank\":10000008,\"displayName\":\"16GB RAM|64GB eMMC|Rose Gold\",\"swatchImageUrl\":null,\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"6IYX1QS3N7A3\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/New-HP-14-Laptop-Intel-Celeron-N4120-16GB-RAM-64GB-eMMC-Long-Battery-Life-Rose-Gold/14457823639?classType=undefined\",\"usItemId\":\"14457823639\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/1ec0d02a-0147-4767-a8e6-290b2dc373d2.c6a3b831c2d4eeea72483a751c773efd.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"blue|16GB RAM| 64GB eMMC\",\"rank\":10000009,\"displayName\":\"blue|16GB RAM| 64GB eMMC\",\"swatchImageUrl\":null,\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"2Z1U5OY5KBPW\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-Series-14-Laptop-Intel-Celeron-N4020-16GB-RAM-64GB-eMMC-Windows-11-Home-Blue-nbsp/15292770421?classType=undefined\",\"usItemId\":\"15292770421\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/c22a1215-b6bf-4a5e-a23f-17335c5acb1c.73028506a270a53488942e95ed38db2e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"N4500-white|16GB RAM| 64GB eMMC\",\"rank\":10000010,\"displayName\":\"N4500-white|16GB RAM| 64GB eMMC\",\"swatchImageUrl\":null,\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"3VFXZCYNHTJ8\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-Student-Business-Laptop-14-0-HD-Display-Intel-Celeron-N4500-16GB-RAM-64GB-eMMC-Intel-UHD-WiFi-6-Webcam-BT-5-4-Snowflake-White-Windows-11-Home-S/18973511671?classType=undefined\",\"usItemId\":\"18973511671\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/c22a1215-b6bf-4a5e-a23f-17335c5acb1c.73028506a270a53488942e95ed38db2e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"N4500-white|4GB RAM| 64GB eMMC\",\"rank\":10000011,\"displayName\":\"N4500-white|4GB RAM| 64GB eMMC\",\"swatchImageUrl\":null,\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"7JZTS8YQ8UXY\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-Student-Business-Laptop-14-0-HD-Display-Intel-Celeron-N4500-4GB-RAM-64GB-eMMC-Intel-UHD-WiFi-6-Webcam-BT-5-4-Snowflake-White-Windows-11-Home-S/18973461855?classType=undefined\",\"usItemId\":\"18973461855\"}},{\"id\":null,\"images\":[\"https://i5.walmartimages.com/asr/c22a1215-b6bf-4a5e-a23f-17335c5acb1c.73028506a270a53488942e95ed38db2e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\"],\"name\":\"N4500-white|8GB RAM| 64GB eMMC\",\"rank\":10000012,\"displayName\":\"N4500-white|8GB RAM| 64GB eMMC\",\"swatchImageUrl\":null,\"availabilityStatus\":\"AVAILABLE\",\"products\":[\"1SI722ZEGZZG\"],\"selectedProduct\":{\"canonicalUrl\":\"/ip/HP-14-Student-Business-Laptop-14-0-HD-Display-Intel-Celeron-N4500-8GB-RAM-64GB-eMMC-Intel-UHD-WiFi-6-Webcam-BT-5-4-Snowflake-White-Windows-11-Home-S/19005856953?classType=undefined\",\"usItemId\":\"19005856953\"}}]}],\"snapEligible\":false,\"fulfillmentTitle\":\"title_shipToHome_not_available\",\"fulfillmentType\":\"MARKETPLACE\",\"manufacturerName\":null,\"showAtc\":false,\"sponsoredProduct\":null,\"showOptions\":true,\"showBuyNow\":false,\"quickShop\":null,\"quickShopCTALabel\":null,\"rewards\":null,\"promoData\":[],\"promoDiscount\":null,\"arExperiences\":{\"isARHome\":true,\"isZeekit\":false,\"isAROptical\":false},\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"subscription\":{\"__typename\":\"SubscriptionData\",\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"hasCarePlans\":false,\"petRx\":{\"eligible\":false,\"singleDispense\":null},\"vision\":{\"ageGroup\":null,\"visionCenterApproved\":false},\"showExploreOtherConditionsCTA\":false,\"isPreowned\":false,\"pglsCondition\":null,\"newConditionProductId\":null,\"preownedCondition\":null,\"keyAttributes\":[],\"mhmdFlag\":false,\"seeSimilar\":false,\"isQSRItem\":false,\"isCustomizable\":false,\"availabilityStatusDisplayValue\":\"In stock\",\"carrierDownpaymentPrice\":\"\",\"productLocationDisplayValue\":null,\"externalInfoUrl\":\"\",\"canAddToCart\":false,\"description\":\"\\u003cli\\u003e[Processor]:Intel Celeron N4120 Processor (4 Cores, 4 Threads, Base Frequency at 1.1GHz, Up to 2.6GHz at Max Turbo Frequency)\\u003c/li\\u003e\\u003cli\\u003e[Screen] 14\\\" diagonal, HD (1366 x 768), micro-edge,\\u003c/li\\u003e\",\"flag\":\"\",\"badge\":{\"text\":\"\",\"id\":\"\",\"type\":\"\",\"key\":\"\",\"bundleId\":\"\"},\"groupsV2\":[],\"swipeableImages\":[],\"socialProofBadges\":null,\"fulfillmentBadges\":[],\"preOrderBadge\":null,\"fulfillmentBadgeGroups\":[{\"text\":\"Free shipping, arrives \",\"slaText\":\"in 3+ days\",\"isSlaTextBold\":true,\"templates\":null,\"textTemplate\":null,\"textValues\":null,\"sla\":null,\"className\":\"dark-gray\",\"key\":\"FF_SHIPPING\"}],\"specialBuy\":false,\"priceFlip\":false,\"image\":\"https://i5.walmartimages.com/seo/HP-14-HD-Laptop-Students-Business-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Long-Battery-Life-UHD-Graphics-Webcam-HDMI-Wi-Fi-Windows-11-Home-S-Mode-Snowf_27caba4b-bfe2-4ca3-8369-c3a7b0f3ee01.9d92b3d26e5d8d60427afb49169dada9.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"imageSize\":\"\",\"imageID\":\"1B790EE9364B4DD88F4B5ABDE171B085\",\"imageName\":\"HP-14-HD-Laptop-Students-Business-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Long-Battery-Life-UHD-Graphics-Webcam-HDMI-Wi-Fi-Windows-11-Home-S-Mode-Snowf_27caba4b-bfe2-4ca3-8369-c3a7b0f3ee01.9d92b3d26e5d8d60427afb49169dada9.jpeg\",\"isOutOfStock\":false,\"price\":185.24,\"rating\":{\"averageRating\":3.8,\"numberOfReviews\":1362},\"salesUnit\":\"EACH\",\"variantList\":[{\"name\":\"none\",\"swatchImageUrl\":\"\",\"image\":\"https://i5.walmartimages.com/asr/82439943-c284-4a26-bb3b-e49599b3c448.80a113370086eef116651fc565ccf0b6.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"0RJ5XZVGXGSG\",\"usItemId\":\"14510510684\",\"canonicalUrl\":\"/ip/New-HP-14-Laptop-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Long-Battery-Life-Rose-Gold/14510510684?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"4GB RAM| 64GB eMMC|White\",\"swatchImageUrl\":\"\",\"image\":\"https://i5.walmartimages.com/asr/27caba4b-bfe2-4ca3-8369-c3a7b0f3ee01.9d92b3d26e5d8d60427afb49169dada9.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"6DR7NYVJ6XE1\",\"usItemId\":\"7987319291\",\"canonicalUrl\":\"/ip/HP-14-HD-Laptop-Students-Business-Intel-Celeron-N4120-4GB-RAM-64GB-eMMC-Long-Battery-Life-UHD-Graphics-Webcam-HDMI-Wi-Fi-Windows-11-Home-S-Mode-Snowf/7987319291?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"4GB |32GB\",\"swatchImageUrl\":\"https://i5.walmartimages.com/asr/69a40f2e-cdaf-4082-a54c-12ef38844d46.cdf4ea6464bc2db68ea95a8d44375508.jpeg?odnHeight=30\\u0026odnWidth=30\\u0026odnBg=FFFFFF\",\"image\":\"https://i5.walmartimages.com/asr/8f6ca5c0-2244-460c-b185-70489964c5d5.efc471fbfa80cfdf4c471b92767940d6.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"3YKJ2O9HIWW6\",\"usItemId\":\"592161882\",\"canonicalUrl\":\"/ip/HP-Chromebook-Laptop-Computer/592161882?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"blue|4GB RAM| 64GB eMMC\",\"swatchImageUrl\":\"\",\"image\":\"https://i5.walmartimages.com/asr/703e8f73-a7ab-4fa6-8265-13b0c3be2078.d37f28cfb0a913dcf812107b5377755a.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"5JCWPLA5YBC9\",\"usItemId\":\"15300057766\",\"canonicalUrl\":\"/ip/HP-14-Series-14-Laptop-Intel-Celeron-N4020-4GB-RAM-64GB-eMMC-Windows-11-Home-Blue-nbsp/15300057766?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"8GB RAM| 64GB eMMC|White\",\"swatchImageUrl\":\"\",\"image\":\"https://i5.walmartimages.com/asr/80f656a9-7117-4940-8b83-badccd9695de.68026cb410eca7fa29cea02489a9bbb2.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"5R3VO7V4EZLY\",\"usItemId\":\"7976259456\",\"canonicalUrl\":\"/ip/HP-14-HD-Laptop-Students-Business-Intel-Celeron-N4120-8GB-RAM-64GB-eMMC-Long-Battery-Life-UHD-Graphics-Webcam-HDMI-Wi-Fi-Windows-11-Home-S-Mode-Snowf/7976259456?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"blue|8GB RAM| 64GB eMMC\",\"swatchImageUrl\":\"\",\"image\":\"https://i5.walmartimages.com/asr/1ec0d02a-0147-4767-a8e6-290b2dc373d2.c6a3b831c2d4eeea72483a751c773efd.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"4H0AF7D51A0S\",\"usItemId\":\"15290813023\",\"canonicalUrl\":\"/ip/HP-14-Series-14-Laptop-Intel-Celeron-N4020-8GB-RAM-64GB-eMMC-Windows-11-Home-Blue-nbsp/15290813023?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"touch|8GB RAM| 64GB eMMC\",\"swatchImageUrl\":\"\",\"image\":\"https://i5.walmartimages.com/asr/db19cb2d-5404-43e8-a378-2d5023cc8dc4.4cbd6fa45d8c883d9fbaf5e1d3f932ba.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"524X4FE011KO\",\"usItemId\":\"16029552655\",\"canonicalUrl\":\"/ip/HP-14-inch-Touchscreen-Laptop-Intel-Celeron-N4020-8GB-RAM-64GB-eMMC-One-Year-of-Microsoft-365-Pale-Rose-Gold/16029552655?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"16GB RAM| 64GB eMMC|White\",\"swatchImageUrl\":\"\",\"image\":\"https://i5.walmartimages.com/asr/788dd7e3-1a8d-4830-828a-bb8dfe0caa40.f09e81dd5e2864e8509ae14cdfada933.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"6WS0TAJGRR54\",\"usItemId\":\"7987116463\",\"canonicalUrl\":\"/ip/HP-14-HD-Laptop-Students-Business-Intel-Celeron-N4120-16GB-RAM-64GB-eMMC-Long-Battery-Life-UHD-Graphics-Webcam-HDMI-Wi-Fi-Windows-11-Home-S-Mode-Snow/7987116463?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"16GB RAM|64GB eMMC|Rose Gold\",\"swatchImageUrl\":\"\",\"image\":\"https://i5.walmartimages.com/asr/525aeea7-5df5-4c23-819a-491572887e38.90664aaf215e966ca532a6482d1e53ce.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"6IYX1QS3N7A3\",\"usItemId\":\"14457823639\",\"canonicalUrl\":\"/ip/New-HP-14-Laptop-Intel-Celeron-N4120-16GB-RAM-64GB-eMMC-Long-Battery-Life-Rose-Gold/14457823639?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"blue|16GB RAM| 64GB eMMC\",\"swatchImageUrl\":\"\",\"image\":\"https://i5.walmartimages.com/asr/1ec0d02a-0147-4767-a8e6-290b2dc373d2.c6a3b831c2d4eeea72483a751c773efd.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"2Z1U5OY5KBPW\",\"usItemId\":\"15292770421\",\"canonicalUrl\":\"/ip/HP-14-Series-14-Laptop-Intel-Celeron-N4020-16GB-RAM-64GB-eMMC-Windows-11-Home-Blue-nbsp/15292770421?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"N4500-white|16GB RAM| 64GB eMMC\",\"swatchImageUrl\":\"\",\"image\":\"https://i5.walmartimages.com/asr/c22a1215-b6bf-4a5e-a23f-17335c5acb1c.73028506a270a53488942e95ed38db2e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"3VFXZCYNHTJ8\",\"usItemId\":\"18973511671\",\"canonicalUrl\":\"/ip/HP-14-Student-Business-Laptop-14-0-HD-Display-Intel-Celeron-N4500-16GB-RAM-64GB-eMMC-Intel-UHD-WiFi-6-Webcam-BT-5-4-Snowflake-White-Windows-11-Home-S/18973511671?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"N4500-white|4GB RAM| 64GB eMMC\",\"swatchImageUrl\":\"\",\"image\":\"https://i5.walmartimages.com/asr/c22a1215-b6bf-4a5e-a23f-17335c5acb1c.73028506a270a53488942e95ed38db2e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"7JZTS8YQ8UXY\",\"usItemId\":\"18973461855\",\"canonicalUrl\":\"/ip/HP-14-Student-Business-Laptop-14-0-HD-Display-Intel-Celeron-N4500-4GB-RAM-64GB-eMMC-Intel-UHD-WiFi-6-Webcam-BT-5-4-Snowflake-White-Windows-11-Home-S/18973461855?classType=undefined\\u0026variantFieldId=edition\"},{\"name\":\"N4500-white|8GB RAM| 64GB eMMC\",\"swatchImageUrl\":\"\",\"image\":\"https://i5.walmartimages.com/asr/c22a1215-b6bf-4a5e-a23f-17335c5acb1c.73028506a270a53488942e95ed38db2e.jpeg?odnHeight=180\\u0026odnWidth=180\\u0026odnBg=FFFFFF\",\"productId\":\"1SI722ZEGZZG\",\"usItemId\":\"19005856953\",\"canonicalUrl\":\"/ip/HP-14-Student-Business-Laptop-14-0-HD-Display-Intel-Celeron-N4500-8GB-RAM-64GB-eMMC-Intel-UHD-WiFi-6-Webcam-BT-5-4-Snowflake-White-Windows-11-Home-S/19005856953?classType=undefined\\u0026variantFieldId=edition\"}],\"isVariantTypeSwatch\":false,\"displayName\":\"options\",\"shouldLazyLoad\":true,\"isSponsoredFlag\":false,\"moqText\":null,\"isLeftSideGridItem\":true,\"productAttributes\":{},\"productIndex\":51,\"itemStackPosition\":3,\"modularStackKey\":\"cdb9e63b-a34e-49ef-8a64-4d73dbe24931-0-0\"}],\"layoutEnum\":\"GRID\"}],\"nonProduct\":null,\"categoryNavigation\":[],\"pageMetadata\":{\"categoryNavigationMetaData\":{\"experienceType\":\"tempoNups\"},\"storeSelectionHeader\":null,\"title\":\"laptop\",\"canonical\":null,\"source\":\"PRESO\",\"description\":null,\"location\":{\"addressId\":\"\"},\"subscriptionEligible\":false,\"noIndex\":true},\"paginationV2\":{\"maxPage\":15,\"pageProperties\":{\"adSlot\":\"WSpread\",\"affinityOverride\":\"default\",\"cat_id\":\"0\",\"department\":\"/3944/1089430/3951/8835131/1737838\",\"displayGuidedNav\":true,\"grid\":\"true\",\"itemStacks\":{\"13722470932\":{\"usItemId\":\"13722470932\"},\"13943258180\":{\"pinnedTo\":2,\"usItemId\":\"13943258180\"},\"13968860429\":{\"pinnedTo\":5,\"usItemId\":\"13968860429\"},\"13982958746\":{\"pinnedTo\":6,\"usItemId\":\"13982958746\"},\"15377670482\":{\"usItemId\":\"15377670482\"},\"16651118643\":{\"usItemId\":\"16651118643\"},\"16884610221\":{\"usItemId\":\"16884610221\"},\"17066350050\":{\"usItemId\":\"17066350050\"},\"17586673039\":{\"usItemId\":\"17586673039\"},\"17828556665\":{\"usItemId\":\"17828556665\"},\"17874160865\":{\"usItemId\":\"17874160865\"},\"17939462069\":{\"usItemId\":\"17939462069\"},\"17963105552\":{\"pinnedTo\":4,\"usItemId\":\"17963105552\"},\"18280852708\":{\"usItemId\":\"18280852708\"},\"19699754154\":{\"pinnedTo\":1,\"usItemId\":\"19699754154\"},\"5123764557\":{\"usItemId\":\"5123764557\"},\"5370677533\":{\"usItemId\":\"5370677533\"},\"5700202955\":{\"usItemId\":\"5700202955\"},\"8458658151\":{\"usItemId\":\"8458658151\"},\"9929511078\":{\"usItemId\":\"9929511078\"}},\"itemStacksInterleavePosition\":[{\"stackId\":0},{\"stackId\":-11},{\"stackId\":0},{\"stackId\":1}],\"page\":1,\"pageType\":\"SearchPage\",\"pap\":{\"polaris\":{\"ms_triggered\":true}},\"prg\":\"desktop\",\"primaryStacksToMatch\":[{\"isPrimaryStack\":true,\"matchIndex\":0},{\"isPrimaryStack\":true,\"matchIndex\":2}],\"ps\":\"40\",\"query\":\"laptop\",\"sort\":\"best_match\",\"spelling\":\"true\",\"stores\":\"3081\"}},\"spelling\":{\"correctedTerm\":null,\"spellingModule\":null},\"translation\":null,\"requestContext\":{\"vertical\":\"ets\",\"hasGicIntent\":false,\"isFitmentFilterQueryApplied\":false,\"searchMatchType\":\"{\\\"tkc\\\":1,\\\"dept\\\":\\\"/3944/1089430/3951/8835131/1737838\\\",\\\"g\\\":\\\"S\\\",\\\"s\\\":\\\"b\\\",\\\"trf\\\":\\\"ht\\\",\\\"tpt\\\":\\\"Laptop Computers\\\",\\\"pts\\\":\\\"Laptop Computers:0.998046875\\\",\\\"sps\\\":0.25884318,\\\"qa\\\":\\\"default\\\",\\\"sp_elig\\\":false,\\\"p\\\":2,\\\"as\\\":\\\"a|0|0\\\",\\\"cqp\\\":0,\\\"cqe\\\":0,\\\"src\\\":\\\"CORE\\\",\\\"qcr\\\":\\\"ht\\\",\\\"pbk\\\":true,\\\"ptb\\\":\\\"htt\\\",\\\"trn\\\":0,\\\"ft\\\":\\\"qu\\\",\\\"offann\\\":true,\\\"vann\\\":true,\\\"mr\\\":0,\\\"ee\\\":\\\"Xt\\\",\\\"pq_flag\\\":true,\\\"nvs\\\":\\\"t\\\",\\\"ss\\\":\\\"209|209|-1\\\",\\\"sf\\\":\\\"1\\\",\\\"ett\\\":\\\"0\\\",\\\"evt\\\":\\\"0\\\",\\\"ent\\\":\\\"1\\\",\\\"mt\\\":\\\"2\\\",\\\"emt\\\":\\\"0\\\",\\\"id\\\":\\\"df0daaa2-5ee6-4e7c-a483-b3c32fcdee75\\\",\\\"eo\\\":\\\"N\\\",\\\"mso\\\":2,\\\"msf\\\":1,\\\"msov\\\":1,\\\"ms\\\":0,\\\"emm\\\":\\\"1\\\",\\\"emm_vers\\\":\\\"ms_new_layout\\\",\\\"hrs\\\":\\\"true\\\",\\\"stk\\\":\\\"hrs\\\",\\\"gve\\\":false,\\\"ff\\\":\\\"trig:N|opt:N\\\",\\\"alt\\\":\\\"elig:Y|trig:Y|emlr:N|altph:1\\\",\\\"v\\\":\\\"6|2\\\",\\\"slc_stacks\\\":\\\"[{\\\\\\\"stack\\\\\\\":\\\\\\\"hrs\\\\\\\",\\\\\\\"score\\\\\\\":0.8384939335836052,\\\\\\\"pos\\\\\\\":40}]\\\",\\\"comp_stacks\\\":\\\"[{\\\\\\\"stack\\\\\\\":\\\\\\\"ts\\\\\\\",\\\\\\\"score\\\\\\\":0.744891412777201},{\\\\\\\"stack\\\\\\\":\\\\\\\"SBE_RMM\\\\\\\",\\\\\\\"score\\\\\\\":0.6407365928697993},{\\\\\\\"stack\\\\\\\":\\\\\\\"vls\\\\\\\",\\\\\\\"score\\\\\\\":0.607273014348418},{\\\\\\\"stack\\\\\\\":\\\\\\\"hrs\\\\\\\",\\\\\\\"score\\\\\\\":0.8384939335836052}]\\\"}\",\"selectedFacetCount\":0,\"showComparisonCart\":false,\"categories\":{\"id\":\"0\",\"name\":\"laptop\"}},\"errorResponse\":{\"correlationId\":\"00-5657fc8271d468dcfdd9b7f5a1c07d03-a97d29d20afbfafc-01\",\"source\":\"sis\",\"errorCodes\":null,\"errors\":[]},\"relatedSearch\":[{\"title\":\"hp laptop\",\"url\":\"q=hp%20laptop\",\"imageUrl\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png\"},{\"title\":\"laptop computers under $200\",\"url\":\"q=laptop%20computers%20under%20%24200\",\"imageUrl\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png\"},{\"title\":\"macbook\",\"url\":\"q=macbook\",\"imageUrl\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png\"},{\"title\":\"printer\",\"url\":\"q=printer\",\"imageUrl\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png\"},{\"title\":\"laptop touchscreen\",\"url\":\"q=laptop%20touchscreen\",\"imageUrl\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png\"},{\"title\":\"tablets\",\"url\":\"q=tablets\",\"imageUrl\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png\"},{\"title\":\"wireless mouse\",\"url\":\"q=wireless%20mouse\",\"imageUrl\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png\"},{\"title\":\"gaming laptop\",\"url\":\"q=gaming%20laptop\",\"imageUrl\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png\"},{\"title\":\"lenovo laptop\",\"url\":\"q=lenovo%20laptop\",\"imageUrl\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png\"},{\"title\":\"chromebook\",\"url\":\"q=chromebook\",\"imageUrl\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-492b/k2-_d364fa80-6c6b-4a89-88ea-beaaf53a606e.v1.png\"}],\"modules\":null,\"pac\":null,\"navigationTokens\":{\"type\":null,\"navigationBeacon\":null,\"tokens\":null},\"isModularSearch\":false,\"hasMorePages\":false,\"count\":65,\"gridItemsCount\":56,\"catInfo\":{\"catId\":\"0\",\"name\":\"laptop\"}},\"pageMetadata\":{\"location\":{\"pickupStore\":\"3081\",\"deliveryStore\":\"3081\",\"intent\":\"SHIPPING\",\"postalCode\":\"95829\",\"stateOrProvinceCode\":\"CA\",\"city\":\"Sacramento\",\"storeId\":\"3081\",\"accessPointId\":null,\"accessType\":null,\"spokeNodeId\":null,\"storeFrontIds\":[{\"anchorStore\":true,\"deliveryStore\":true,\"deliveryWICAgencies\":[\"CA\"],\"pickupStore\":true,\"pickupWICAgencies\":[\"CA\"],\"stateOrProvinceCode\":\"CA\",\"storeId\":\"3081\"}],\"intentStrength\":\"IMPLICIT\"},\"pageContext\":{\"customerContext\":{\"customerId\":null,\"isActiveMember\":false,\"isPaidMember\":false,\"paymentMethodMetaData\":[],\"purseTags\":[]},\"searchNormalize\":{\"analytics_log\":{\"fe_log\":{\"dept\":\"/3944/1089430/3951/8835131/1737838\",\"g\":\"S\",\"ms\":0,\"msf\":2,\"mso\":2,\"msov\":0,\"pts\":\"Laptop Computers:0.998046875\",\"qa\":\"default\",\"s\":\"b\",\"sp_elig\":false,\"sps\":0.25884318,\"tkc\":1,\"tpt\":\"Laptop Computers\",\"trf\":\"ht\"},\"sot_log\":{},\"substitute_log\":{\"altph\":\"1\",\"elig\":\"Y\",\"trig\":\"Y\"}},\"normalized_query\":\"laptop\",\"original_query\":\"laptop\",\"productTypeSpecificityScore\":{\"quantile\":0.5559,\"score\":0.8485761},\"product_type\":[{\"name\":\"Laptop Computers\",\"score\":0.998046875,\"source\":\"classifier\"}],\"rewritten_query\":\"laptop\",\"specificity\":\"broad\",\"specificityScore\":{\"quantile\":0.1458,\"score\":0.25884318},\"top_query_cat_path\":\"/3944/1089430/3951/8835131/1737838\",\"top_query_cat_path_name\":\"/Electronics/Computers, Laptops and Tablets/Laptops/Laptops by Operating System/Windows OS Laptops\",\"verticalId\":\"ets\"}}},\"contentLayout\":{\"modules\":[{\"__typename\":\"TempoModule\",\"type\":\"PillsModule\",\"name\":\"0825 Guided Nav Pills\",\"version\":3,\"moduleId\":\"d80c120b-3158-42ac-9525-9b22e6c4fbac\",\"schedule\":{\"priority\":1},\"matchedTrigger\":{\"zone\":\"pillsTopZone\"},\"configs\":{\"__typename\":\"TempoWM_GLASSWWWPillsModuleConfigs\",\"moduleSource\":\"chipModuleWithImages\",\"pillsV2\":[{\"title\":\"Laptop Savings\",\"titleColor\":\"#000000\",\"url\":\"/shop/savings/electronics/computers?cat_id=3944_1089430_3951_132960\\u0026povid=ETS_D72_Computing_NA_VF_SAV_SB-AllLaptopComputers_ComputerSavings\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-efeb/k2-_dbf1a207-8dac-4862-982e-f7ed93e55bc2.v1.jpg\",\"alt\":\"Laptop Savings\",\"assetId\":\"b1ad34ac-ceed-4a78-b6b6-348ab09330f2\",\"assetName\":\"5850101-020-FAS-Deals-REG-ALL-HubSpoke-Null.jpg\"}},{\"title\":\"Get it Today\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/all-laptop-computers/3944_1089430_3951_132960?facet=fulfillment_speed%3AToday\\u0026povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_GetitTodayLaptops\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-4ad6/k2-_cafd4fcd-05a4-4639-950f-e5dd6ce46be3.v1.png\",\"alt\":\"Get it Today\",\"assetId\":\"Get It Today_Sandals_MM.png\",\"assetName\":\"Get It Today_Sandals_MM.png\"}},{\"title\":\"Laptop Editors' Picks\",\"titleColor\":\"#000000\",\"url\":\"/shop/tech/editors-picks?catId=3944_1089430_132960\\u0026povid=ETS_computing_facet_searchbrowse_editorspicks\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-c2f3/k2-_ab7bf06f-b9f6-4977-9d78-0f0dc9e00c78.v1.jpg\",\"alt\":\"Editors' Picks\",\"assetId\":\"69e0e3c8-63d1-4d8d-92c2-d49540a3d6dc\",\"assetName\":\"6277157-017-ETS-NewAndTrendingTechEditorsPicks-REG-ALL-HubSpoke-Null.jpg\"}},{\"title\":\"Windows Laptops\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/windows-os-laptops/3944_1089430_3951_8835131_1737838?povid=ETS_computing_facet_searchbrowse_windowslaptops\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-b87b/k2-_73247cc3-8ae2-49d6-a711-ac9602e450ea.v1.jpg\",\"alt\":\"Windows Laptops\",\"assetId\":\"d861abb8-53f7-494e-b5a8-7df4967cee1b\",\"assetName\":\"windows laptop pill.jpeg\"}},{\"title\":\"Gaming Laptops\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/gaming-laptops/3944_1089430_3951_1230091_1094888?povid=ETS_computing_facet_searchbrowse_gaminglaptops\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-200a/k2-_58a9cea1-5629-4b47-807b-d4974b1c761d.v1.jpg\",\"alt\":\"Gaming Laptop\",\"assetId\":\"acaceac9-d10a-486f-fd0b-40158427ce8d\",\"assetName\":\"MSI Gaming Laptop Black.jpeg\"}},{\"title\":\"Chromebooks\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/google-chromebooks/3944_1089430_3951_1230091_1103213?povid=ETS_computing_facet_searchbrowse_chromebooks\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-aea4/k2-_95a85f70-32c6-49c2-aeff-c5680998e52e.v1.jpg\",\"alt\":\"Chromebooks\",\"assetId\":\"5628ed88-af59-47fa-671d-e9b8151d8fad\",\"assetName\":\"Chromebook category NUP.jpeg\"}},{\"title\":\"MacBooks\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/all-apple-macbook/3944_1089430_3951_8945805_4431341?povid=ETS_computing_facet_searchbrowse_macbooks\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-9f4a/k2-_f7789819-f2ee-4af4-9ac6-94dc41d29727.v1.png\",\"alt\":\"MacBook Neo\",\"assetId\":\"MacBook Neo.png\",\"assetName\":\"MacBook Neo.png\"}},{\"title\":\"Touchscreen Laptops\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/touchscreen-laptops/3944_1089430_3951_1230091_1101633?povid=ETS_computing_facet_searchbrowse_touchscreenlaptops\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-3b2a/k2-_47328139-c08e-43fa-add1-6b870ff06d41.v1.jpg\",\"alt\":\"Touchscreen Laptops\",\"assetId\":\"b7c81630-d53c-4263-7244-fda7a4df1a1f\",\"assetName\":\"touchscreen nav pill image.jpeg\"}},{\"title\":\"Everyday Laptops\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/essential-laptops/3944_1089430_3951_1427621?povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_EssentialLaptops\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-7757/k2-_db8a7f1d-ffdb-4062-88ca-62e40c89fb5c.v1.jpg\",\"alt\":\"Everyday Laptops\",\"assetId\":\"Essential Laptops.jpg\",\"assetName\":\"Essential Laptops.jpg\"}},{\"title\":\"Student Laptops\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/laptops-for-students/3944_1089430_3951_1230091_1155872_5825707?povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_StudentLaptops\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-a6a1/k2-_e616ea26-66ef-4f4f-8d67-f27cab40e1b1.v1.jpg\",\"alt\":\"Student Laptops\",\"assetId\":\"Creator Laptops.jpg\",\"assetName\":\"Creator Laptops.jpg\"}},{\"title\":\"Work \\u0026 Business Laptops\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/work-business-laptops/3944_1089430_3951_4426560?povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_WorkBusinessLaptops\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-9983/k2-_0db497f5-2a8b-4f75-a96c-555689560cbb.v1.jpg\",\"alt\":\"Work \\u0026 Business Laptops\",\"assetId\":\"Work Laptops.jpg\",\"assetName\":\"Work Laptops.jpg\"}},{\"title\":\"AI Laptops\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/ai-laptop/3944_1089430_3951_1230091_2871426?seo=electronics\\u0026seo=ai-laptop\\u0026seo=3944_1089430_3951_1230091_2871426\\u0026page=1\\u0026affinityOverride=default\\u0026povid=ETS_D72_Computing_LAPTOP_VF_EVGN_SB-AllLaptopComputers_AILaptopsNUp\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-9d77/k2-_36367a27-e824-47be-bb09-40681249b476.v1.jpg\",\"alt\":\"AI Laptops\",\"assetId\":\"New AI Laptop Pill.jpg\",\"assetName\":\"New AI Laptop Pill.jpg\"}},{\"title\":\"Resold Laptops\",\"titleColor\":\"#000000\",\"url\":\"/browse/electronics/walmart-restored-laptops/3944_9332706_7782955_2916436_5359799?povid=ETS_computing_facet_searchbrowse_resoldlaptops\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-7b75/k2-_b9f95189-cee8-41a3-a766-8e329968e931.v1.jpg\",\"alt\":\"Resold\",\"assetId\":\"e8e6b865-df78-4794-bcf0-43f85774fcd2\",\"assetName\":\"6423955-009-ETS-ResoldAtWalmart-REG-ALL-MMFacet-Null.jpg\"}},{\"title\":\"All Computers\",\"titleColor\":\"#000000\",\"url\":\"/search?q=computers\\u0026povid=ETS_D72_Computing_NA_VF_EVGN_SB-AllLaptopComputers_AllComputers\",\"image\":{\"src\":\"https://i5.walmartimages.com/dfw/4ff9c6c9-d000/k2-_0290f89f-5e37-4b56-851b-a8bc17dac759.v1.jpg\",\"alt\":\"All Computers\",\"assetId\":\"3b42d2d9-db04-4a52-ad5e-0b5df84cebf3\",\"assetName\":\"5732653-204-ETS-TrackingDevices-REG-D-MMFacet-Null.jpg\"}}]}},{\"__typename\":\"TempoModule\",\"type\":\"DynamicAdContainer\",\"name\":\"DAC with Gallery-\\u003eMarquee\",\"version\":3,\"moduleId\":\"7d661833-d81c-44e8-b168-e24fbc33ec61\",\"schedule\":{\"priority\":1},\"matchedTrigger\":{\"zone\":\"bottomZone1\"},\"configs\":{\"__typename\":\"TempoWM_GLASSWWWDynamicAdContainerConfigs\",\"_rawConfigs\":{\"adModules\":[{\"adServers\":[{\"adServer\":\"DISPLAY_ADS\",\"uid\":\"pop36MjK\"},{\"adServer\":\"DISPLAY_ADS_DSP\",\"uid\":\"p7rFOAKX\"}],\"moduleLocation\":\"galleryBottom\",\"moduleType\":\"GalleryDisplayAd\",\"priority\":\"1\",\"uid\":\"EQSg5yJB\"},{\"adServers\":[{\"adServer\":\"DISPLAY_ADS\",\"uid\":\"EtJtoWNS\"},{\"adServer\":\"DISPLAY_ADS_DSP\",\"uid\":\"XTFBNP6E\"}],\"moduleLocation\":\"marquee2\",\"moduleType\":\"MarqueeDisplayAd\",\"priority\":\"2\",\"uid\":\"XBDPPez3\"}],\"lazy\":\"1500\",\"zoneLocation\":\"zonebottom\"},\"adModules\":[{\"moduleType\":\"GalleryDisplayAd\",\"moduleLocation\":\"galleryBottom\",\"priority\":\"1\",\"title\":null,\"viewAgainLogo\":null,\"viewAgainText\":null,\"viewAgainCTA\":null},{\"moduleType\":\"MarqueeDisplayAd\",\"moduleLocation\":\"marquee2\",\"priority\":\"2\",\"title\":null,\"viewAgainLogo\":null,\"viewAgainText\":null,\"viewAgainCTA\":null}],\"zoneLocation\":\"zonebottom\",\"lazy\":\"1500\"}},{\"__typename\":\"TempoModule\",\"type\":\"SearchSortFilterModule\",\"name\":\"Default Sort \\u0026 Filter\",\"version\":6,\"moduleId\":\"8d6b5e69-db36-453a-bd8a-fcf0de045072\",\"schedule\":{\"priority\":1},\"matchedTrigger\":{\"zone\":\"topZone3\"},\"configs\":{\"__typename\":\"_TempoWM_GLASSWWWSearchSortFilterModuleConfigs\",\"topNavFacets\":[{\"title\":\"In-store\",\"name\":\"In-store\",\"expandOnLoad\":null,\"type\":\"fulfillment_method_in_store\",\"displayType\":\"TOGGLE\",\"urlParams\":null,\"url\":\"facet=fulfillment_method_in_store%3AIn-store\\u0026query=laptop\\u0026cat_id=0\\u0026stores=3081\\u0026ps=80\",\"layout\":\"pill\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":null,\"hasPopularValues\":null,\"popularValues\":null,\"values\":null},{\"title\":\"Get it fast\",\"name\":\"Get it fast\",\"expandOnLoad\":null,\"type\":\"fulfillment_speed\",\"displayType\":\"TOGGLE\",\"urlParams\":null,\"url\":\"facet=fulfillment_speed%3ATomorrow\\u0026query=laptop\\u0026cat_id=0\\u0026stores=3081\\u0026ps=80\",\"layout\":\"pill\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":null,\"hasPopularValues\":null,\"popularValues\":null,\"values\":null},{\"title\":\"All deals\",\"name\":\"All deals\",\"expandOnLoad\":null,\"type\":\"all_deals\",\"displayType\":\"TOGGLE\",\"urlParams\":null,\"url\":\"facet=all_deals%3Anon_event\\u0026query=laptop\\u0026cat_id=0\\u0026stores=3081\\u0026ps=80\",\"layout\":\"pill\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":null,\"hasPopularValues\":null,\"popularValues\":null,\"values\":null},{\"title\":\"Price\",\"name\":\"Price\",\"expandOnLoad\":false,\"type\":\"price\",\"displayType\":\"DROPDOWN\",\"urlParams\":null,\"url\":null,\"layout\":\"pill\",\"min\":0,\"max\":1200,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":true,\"stepSize\":12,\"isSelected\":null,\"valueDisplayLimit\":null,\"hasPopularValues\":false,\"popularValues\":null,\"values\":null},{\"title\":\"Brand\",\"name\":\"Brand\",\"expandOnLoad\":false,\"type\":\"brand\",\"displayType\":\"DROPDOWN\",\"urlParams\":null,\"url\":null,\"layout\":\"pill\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":50,\"hasPopularValues\":true,\"popularValues\":null,\"values\":[{\"id\":\"HP\",\"title\":\"HP\",\"name\":\"HP\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:HP\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Acer\",\"title\":\"Acer\",\"name\":\"Acer\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Acer\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Lenovo\",\"title\":\"Lenovo\",\"name\":\"Lenovo\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Lenovo\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ASUS\",\"title\":\"ASUS\",\"name\":\"ASUS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ASUS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Apple\",\"title\":\"Apple\",\"name\":\"Apple\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Apple\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"MSI\",\"title\":\"MSI\",\"name\":\"MSI\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:MSI\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Dell\",\"title\":\"Dell\",\"name\":\"Dell\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Dell\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft\",\"title\":\"Microsoft\",\"name\":\"Microsoft\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Microsoft\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hillside Planter\",\"title\":\"Hillside Planter\",\"name\":\"Hillside Planter\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Hillside%20Planter\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"RNRUO\",\"title\":\"RNRUO\",\"name\":\"RNRUO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:RNRUO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AEEZO\",\"title\":\"AEEZO\",\"name\":\"AEEZO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AEEZO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Nimo\",\"title\":\"Nimo\",\"name\":\"Nimo\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Nimo\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"HYYUO\",\"title\":\"HYYUO\",\"name\":\"HYYUO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:HYYUO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"SANPTENT\",\"title\":\"SANPTENT\",\"name\":\"SANPTENT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:SANPTENT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"onn\",\"title\":\"onn\",\"name\":\"onn\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:onn\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TEMLICOLO\",\"title\":\"TEMLICOLO\",\"name\":\"TEMLICOLO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TEMLICOLO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ACEMAGIC\",\"title\":\"ACEMAGIC\",\"name\":\"ACEMAGIC\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ACEMAGIC\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Toemaagic\",\"title\":\"Toemaagic\",\"name\":\"Toemaagic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Toemaagic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TPV\",\"title\":\"TPV\",\"name\":\"TPV\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TPV\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Gateway\",\"title\":\"Gateway\",\"name\":\"Gateway\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Gateway\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Samsung\",\"title\":\"Samsung\",\"name\":\"Samsung\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Samsung\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Rumtuk\",\"title\":\"Rumtuk\",\"name\":\"Rumtuk\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Rumtuk\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Akocrsiy\",\"title\":\"Akocrsiy\",\"name\":\"Akocrsiy\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Akocrsiy\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"SGIN\",\"title\":\"SGIN\",\"name\":\"SGIN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:SGIN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"KurieTim\",\"title\":\"KurieTim\",\"name\":\"KurieTim\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:KurieTim\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NIPOGI\",\"title\":\"NIPOGI\",\"name\":\"NIPOGI\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NIPOGI\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NoteCraft\",\"title\":\"NoteCraft\",\"name\":\"NoteCraft\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NoteCraft\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"EYY\",\"title\":\"EYY\",\"name\":\"EYY\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:EYY\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Exsurf\",\"title\":\"Exsurf\",\"name\":\"Exsurf\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Exsurf\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Easy-Goes Tech\",\"title\":\"Easy-Goes Tech\",\"name\":\"Easy-Goes Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Easy-Goes%20Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"HBESTORE\",\"title\":\"HBESTORE\",\"name\":\"HBESTORE\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:HBESTORE\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Coolby\",\"title\":\"Coolby\",\"name\":\"Coolby\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Coolby\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"LG\",\"title\":\"LG\",\"name\":\"LG\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:LG\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Molegar\",\"title\":\"Molegar\",\"name\":\"Molegar\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Molegar\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"VOZIZOV\",\"title\":\"VOZIZOV\",\"name\":\"VOZIZOV\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:VOZIZOV\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BULANUO\",\"title\":\"BULANUO\",\"name\":\"BULANUO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BULANUO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ESOOR\",\"title\":\"ESOOR\",\"name\":\"ESOOR\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ESOOR\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ownbrand\",\"title\":\"ownbrand\",\"name\":\"ownbrand\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ownbrand\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Golzer\",\"title\":\"Golzer\",\"name\":\"Golzer\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Golzer\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"JUPETE\",\"title\":\"JUPETE\",\"name\":\"JUPETE\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:JUPETE\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"LOSFTES\",\"title\":\"LOSFTES\",\"name\":\"LOSFTES\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:LOSFTES\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Blackview\",\"title\":\"Blackview\",\"name\":\"Blackview\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Blackview\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Colour Talk\",\"title\":\"Colour Talk\",\"name\":\"Colour Talk\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Colour%20Talk\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"VAIO\",\"title\":\"VAIO\",\"name\":\"VAIO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:VAIO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Teclast\",\"title\":\"Teclast\",\"name\":\"Teclast\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Teclast\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Ningmei\",\"title\":\"Ningmei\",\"name\":\"Ningmei\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Ningmei\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"iTech Deals\",\"title\":\"iTech Deals\",\"name\":\"iTech Deals\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:iTech%20Deals\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Elepad\",\"title\":\"Elepad\",\"name\":\"Elepad\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Elepad\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Chheart\",\"title\":\"Chheart\",\"name\":\"Chheart\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Chheart\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Oyzzraze\",\"title\":\"Oyzzraze\",\"name\":\"Oyzzraze\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Oyzzraze\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Pryloxen\",\"title\":\"Pryloxen\",\"name\":\"Pryloxen\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Pryloxen\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"UHIPPO\",\"title\":\"UHIPPO\",\"name\":\"UHIPPO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:UHIPPO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Toshiba\",\"title\":\"Toshiba\",\"name\":\"Toshiba\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Toshiba\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Latitude\",\"title\":\"Latitude\",\"name\":\"Latitude\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Latitude\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Core Innovations\",\"title\":\"Core Innovations\",\"name\":\"Core Innovations\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Core%20Innovations\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"CHIBBS\",\"title\":\"CHIBBS\",\"name\":\"CHIBBS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:CHIBBS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Unbranded\",\"title\":\"Unbranded\",\"name\":\"Unbranded\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Unbranded\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"XIKEJI\",\"title\":\"XIKEJI\",\"name\":\"XIKEJI\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:XIKEJI\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DACHUAN\",\"title\":\"DACHUAN\",\"name\":\"DACHUAN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DACHUAN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Panasonic\",\"title\":\"Panasonic\",\"name\":\"Panasonic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Panasonic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Alienware\",\"title\":\"Alienware\",\"name\":\"Alienware\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Alienware\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"RULY\",\"title\":\"RULY\",\"name\":\"RULY\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:RULY\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Deluxe PCs\",\"title\":\"Deluxe PCs\",\"name\":\"Deluxe PCs\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Deluxe%20PCs\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Panasonic Toughbook\",\"title\":\"Panasonic Toughbook\",\"name\":\"Panasonic Toughbook\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Panasonic%20Toughbook\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Yustda\",\"title\":\"Yustda\",\"name\":\"Yustda\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Yustda\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"REIXCA\",\"title\":\"REIXCA\",\"name\":\"REIXCA\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:REIXCA\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Guy-Tech\",\"title\":\"Guy-Tech\",\"name\":\"Guy-Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Guy-Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Joy Systems - Dell\",\"title\":\"Joy Systems - Dell\",\"name\":\"Joy Systems - Dell\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Joy%20Systems%20-%20Dell\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TOPOSH\",\"title\":\"TOPOSH\",\"name\":\"TOPOSH\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TOPOSH\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ThundeRobot\",\"title\":\"ThundeRobot\",\"name\":\"ThundeRobot\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ThundeRobot\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AJANTA INDUSTRIAL\",\"title\":\"AJANTA INDUSTRIAL\",\"name\":\"AJANTA INDUSTRIAL\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AJANTA%20INDUSTRIAL\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Dynabook\",\"title\":\"Dynabook\",\"name\":\"Dynabook\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Dynabook\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"GIGABYTE\",\"title\":\"GIGABYTE\",\"name\":\"GIGABYTE\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:GIGABYTE\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ME2\",\"title\":\"ME2\",\"name\":\"ME2\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ME2\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Fsjun\",\"title\":\"Fsjun\",\"name\":\"Fsjun\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Fsjun\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BiTECOOL\",\"title\":\"BiTECOOL\",\"name\":\"BiTECOOL\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BiTECOOL\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Generic\",\"title\":\"Generic\",\"name\":\"Generic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Generic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel\",\"title\":\"Intel\",\"name\":\"Intel\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Intel\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Tulasi\",\"title\":\"Tulasi\",\"name\":\"Tulasi\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Tulasi\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"7KeTree\",\"title\":\"7KeTree\",\"name\":\"7KeTree\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:7KeTree\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"JYXCN\",\"title\":\"JYXCN\",\"name\":\"JYXCN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:JYXCN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Mavark\",\"title\":\"Mavark\",\"name\":\"Mavark\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Mavark\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Acmine\",\"title\":\"Acmine\",\"name\":\"Acmine\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Acmine\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"JYXOIHUB\",\"title\":\"JYXOIHUB\",\"name\":\"JYXOIHUB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:JYXOIHUB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"panasonics\",\"title\":\"panasonics\",\"name\":\"panasonics\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:panasonics\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Goldengulf\",\"title\":\"Goldengulf\",\"name\":\"Goldengulf\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Goldengulf\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Onerbl\",\"title\":\"Onerbl\",\"name\":\"Onerbl\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Onerbl\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"7ketree\",\"title\":\"7ketree\",\"name\":\"7ketree\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:7ketree\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"FEEEMAHA\",\"title\":\"FEEEMAHA\",\"name\":\"FEEEMAHA\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:FEEEMAHA\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"IST Computers\",\"title\":\"IST Computers\",\"name\":\"IST Computers\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:IST%20Computers\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BELNET\",\"title\":\"BELNET\",\"name\":\"BELNET\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BELNET\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DELL NOTEBOOKS\",\"title\":\"DELL NOTEBOOKS\",\"name\":\"DELL NOTEBOOKS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DELL%20NOTEBOOKS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hasee\",\"title\":\"Hasee\",\"name\":\"Hasee\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Hasee\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Joy Systems - HP\",\"title\":\"Joy Systems - HP\",\"name\":\"Joy Systems - HP\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Joy%20Systems%20-%20HP\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Predator\",\"title\":\"Predator\",\"name\":\"Predator\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Predator\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"[P].[amz_brand]\",\"title\":\"[P].[amz_brand]\",\"name\":\"[P].[amz_brand]\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:%5BP%5D.%5Bamz_brand%5D\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"eN-Tech\",\"title\":\"eN-Tech\",\"name\":\"eN-Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:eN-Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"hidevolution\",\"title\":\"hidevolution\",\"name\":\"hidevolution\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:hidevolution\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AORUS\",\"title\":\"AORUS\",\"name\":\"AORUS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AORUS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BREB\",\"title\":\"BREB\",\"name\":\"BREB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BREB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Discount Computer Depot\",\"title\":\"Discount Computer Depot\",\"name\":\"Discount Computer Depot\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Discount%20Computer%20Depot\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Elo\",\"title\":\"Elo\",\"name\":\"Elo\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Elo\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"FIREBAT\",\"title\":\"FIREBAT\",\"name\":\"FIREBAT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:FIREBAT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"GhostManta\",\"title\":\"GhostManta\",\"name\":\"GhostManta\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:GhostManta\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hi-Tec\",\"title\":\"Hi-Tec\",\"name\":\"Hi-Tec\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Hi-Tec\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"K-Mains\",\"title\":\"K-Mains\",\"name\":\"K-Mains\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:K-Mains\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TUF\",\"title\":\"TUF\",\"name\":\"TUF\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TUF\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Toughbook\",\"title\":\"Toughbook\",\"name\":\"Toughbook\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Toughbook\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Weiboer\",\"title\":\"Weiboer\",\"name\":\"Weiboer\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Weiboer\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"XPG\",\"title\":\"XPG\",\"name\":\"XPG\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:XPG\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"dadypet\",\"title\":\"dadypet\",\"name\":\"dadypet\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:dadypet\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"7keTree\",\"title\":\"7keTree\",\"name\":\"7keTree\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:7keTree\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Avita\",\"title\":\"Avita\",\"name\":\"Avita\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Avita\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BRE NUC\",\"title\":\"BRE NUC\",\"name\":\"BRE NUC\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BRE%20NUC\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Bisofice\",\"title\":\"Bisofice\",\"name\":\"Bisofice\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Bisofice\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Black Diamond Memory\",\"title\":\"Black Diamond Memory\",\"name\":\"Black Diamond Memory\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Black%20Diamond%20Memory\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DARZU\",\"title\":\"DARZU\",\"name\":\"DARZU\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DARZU\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Dr. Battery\",\"title\":\"Dr. Battery\",\"name\":\"Dr. Battery\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Dr.%20Battery\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Ghostmanta\",\"title\":\"Ghostmanta\",\"name\":\"Ghostmanta\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Ghostmanta\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NOBRAND\",\"title\":\"NOBRAND\",\"name\":\"NOBRAND\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NOBRAND\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Orbic\",\"title\":\"Orbic\",\"name\":\"Orbic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Orbic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Skytech Gaming\",\"title\":\"Skytech Gaming\",\"name\":\"Skytech Gaming\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Skytech%20Gaming\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Sleeping Phoenix\",\"title\":\"Sleeping Phoenix\",\"name\":\"Sleeping Phoenix\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Sleeping%20Phoenix\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TechMagnet\",\"title\":\"TechMagnet\",\"name\":\"TechMagnet\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TechMagnet\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Thunderb\",\"title\":\"Thunderb\",\"name\":\"Thunderb\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Thunderb\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Ubisoft\",\"title\":\"Ubisoft\",\"name\":\"Ubisoft\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Ubisoft\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"XMHEIRD\",\"title\":\"XMHEIRD\",\"name\":\"XMHEIRD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:XMHEIRD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"estock\",\"title\":\"estock\",\"name\":\"estock\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:estock\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"zdtodz\",\"title\":\"zdtodz\",\"name\":\"zdtodz\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:zdtodz\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AOPEN\",\"title\":\"AOPEN\",\"name\":\"AOPEN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AOPEN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Activision\",\"title\":\"Activision\",\"name\":\"Activision\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Activision\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BDF\",\"title\":\"BDF\",\"name\":\"BDF\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BDF\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Bioworld\",\"title\":\"Bioworld\",\"name\":\"Bioworld\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Bioworld\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Broage\",\"title\":\"Broage\",\"name\":\"Broage\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Broage\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DynamicFunction\",\"title\":\"DynamicFunction\",\"name\":\"DynamicFunction\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DynamicFunction\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Flora\",\"title\":\"Flora\",\"name\":\"Flora\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Flora\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Getac Technology\",\"title\":\"Getac Technology\",\"name\":\"Getac Technology\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Getac%20Technology\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Good\",\"title\":\"Good\",\"name\":\"Good\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Good\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"HP Refurb\",\"title\":\"HP Refurb\",\"name\":\"HP Refurb\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:HP%20Refurb\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hoovy\",\"title\":\"Hoovy\",\"name\":\"Hoovy\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Hoovy\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"IVIEW\",\"title\":\"IVIEW\",\"name\":\"IVIEW\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:IVIEW\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Jenzora\",\"title\":\"Jenzora\",\"name\":\"Jenzora\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Jenzora\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"KIRCUIT\",\"title\":\"KIRCUIT\",\"name\":\"KIRCUIT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:KIRCUIT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"LENOVO DCG SOURCING\",\"title\":\"LENOVO DCG SOURCING\",\"name\":\"LENOVO DCG SOURCING\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:LENOVO%20DCG%20SOURCING\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Labtec\",\"title\":\"Labtec\",\"name\":\"Labtec\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Labtec\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Laptop Buddy\",\"title\":\"Laptop Buddy\",\"name\":\"Laptop Buddy\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Laptop%20Buddy\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Lexibook\",\"title\":\"Lexibook\",\"name\":\"Lexibook\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Lexibook\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Memorex\",\"title\":\"Memorex\",\"name\":\"Memorex\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Memorex\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Mightyskins\",\"title\":\"Mightyskins\",\"name\":\"Mightyskins\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Mightyskins\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Moobody\",\"title\":\"Moobody\",\"name\":\"Moobody\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Moobody\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NATNO\",\"title\":\"NATNO\",\"name\":\"NATNO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NATNO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NIPOG\",\"title\":\"NIPOG\",\"name\":\"NIPOG\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NIPOG\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"OTVOC\",\"title\":\"OTVOC\",\"name\":\"OTVOC\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:OTVOC\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Pc Wholesale Exclusive\",\"title\":\"Pc Wholesale Exclusive\",\"name\":\"Pc Wholesale Exclusive\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Pc%20Wholesale%20Exclusive\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"THTRO\",\"title\":\"THTRO\",\"name\":\"THTRO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:THTRO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"VIVIDCRAFT\",\"title\":\"VIVIDCRAFT\",\"name\":\"VIVIDCRAFT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:VIVIDCRAFT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Victus\",\"title\":\"Victus\",\"name\":\"Victus\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Victus\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ViewSonic\",\"title\":\"ViewSonic\",\"name\":\"ViewSonic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ViewSonic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"WAVLINK\",\"title\":\"WAVLINK\",\"name\":\"WAVLINK\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:WAVLINK\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Yeastar\",\"title\":\"Yeastar\",\"name\":\"Yeastar\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Yeastar\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Yolmary\",\"title\":\"Yolmary\",\"name\":\"Yolmary\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Yolmary\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"generic\",\"title\":\"generic\",\"name\":\"generic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:generic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"lkx\",\"title\":\"lkx\",\"name\":\"lkx\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:lkx\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"temellsan\",\"title\":\"temellsan\",\"name\":\"temellsan\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:temellsan\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"203 Trading\",\"title\":\"203 Trading\",\"name\":\"203 Trading\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:203%20Trading\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"2K\",\"title\":\"2K\",\"name\":\"2K\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:2K\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"3M\",\"title\":\"3M\",\"name\":\"3M\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:3M\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"A-Premium\",\"title\":\"A-Premium\",\"name\":\"A-Premium\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:A-Premium\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ADHART\",\"title\":\"ADHART\",\"name\":\"ADHART\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ADHART\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD\",\"title\":\"AMD\",\"name\":\"AMD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AMD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"APPLE - SYSTEMS\",\"title\":\"APPLE - SYSTEMS\",\"name\":\"APPLE - SYSTEMS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:APPLE%20-%20SYSTEMS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ARCADORA\",\"title\":\"ARCADORA\",\"name\":\"ARCADORA\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ARCADORA\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AUSU\",\"title\":\"AUSU\",\"name\":\"AUSU\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AUSU\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Abacus\",\"title\":\"Abacus\",\"name\":\"Abacus\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Abacus\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Acadia\",\"title\":\"Acadia\",\"name\":\"Acadia\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Acadia\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Amazon Renewed\",\"title\":\"Amazon Renewed\",\"name\":\"Amazon Renewed\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Amazon%20Renewed\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Asuss\",\"title\":\"Asuss\",\"name\":\"Asuss\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Asuss\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Azpen\",\"title\":\"Azpen\",\"name\":\"Azpen\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Azpen\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BOOX\",\"title\":\"BOOX\",\"name\":\"BOOX\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BOOX\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BalconyBliss\",\"title\":\"BalconyBliss\",\"name\":\"BalconyBliss\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BalconyBliss\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Baoblaze\",\"title\":\"Baoblaze\",\"name\":\"Baoblaze\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Baoblaze\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Blair Tech\",\"title\":\"Blair Tech\",\"name\":\"Blair Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Blair%20Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Blarkrus\",\"title\":\"Blarkrus\",\"name\":\"Blarkrus\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Blarkrus\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"CQLDYWXDY\",\"title\":\"CQLDYWXDY\",\"name\":\"CQLDYWXDY\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:CQLDYWXDY\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"CTI Tech\",\"title\":\"CTI Tech\",\"name\":\"CTI Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:CTI%20Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Cbzote\",\"title\":\"Cbzote\",\"name\":\"Cbzote\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Cbzote\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Ccdes\",\"title\":\"Ccdes\",\"name\":\"Ccdes\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Ccdes\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Computers 4 Less TN\",\"title\":\"Computers 4 Less TN\",\"name\":\"Computers 4 Less TN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Computers%204%20Less%20TN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Custom Ascent\",\"title\":\"Custom Ascent\",\"name\":\"Custom Ascent\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Custom%20Ascent\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"CyberGeek\",\"title\":\"CyberGeek\",\"name\":\"CyberGeek\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:CyberGeek\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DMKAOLLK\",\"title\":\"DMKAOLLK\",\"name\":\"DMKAOLLK\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DMKAOLLK\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Darzheoy\",\"title\":\"Darzheoy\",\"name\":\"Darzheoy\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Darzheoy\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]}],\"allSortAndFilterFacets\":[{\"title\":\"Sort by\",\"name\":\"Sort by\",\"expandOnLoad\":false,\"type\":\"sort\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":null,\"hasPopularValues\":null,\"popularValues\":null,\"values\":[{\"id\":\"best_match\",\"title\":\"Best Match\",\"name\":\"Best Match\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=sort:Best%20Match\",\"isSelected\":true,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"price_low\",\"title\":\"Price: Low to High\",\"name\":\"Price: Low to High\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=sort:Price:%20Low%20to%20High\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"price_high\",\"title\":\"Price: High to Low\",\"name\":\"Price: High to Low\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=sort:Price:%20High%20to%20Low\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"best_seller\",\"title\":\"Best Seller\",\"name\":\"Best Seller\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=sort:Best%20Seller\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"rating_high\",\"title\":\"Highly Rated\",\"name\":\"Highly Rated\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=sort:Highly%20Rated\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Price\",\"name\":\"Price\",\"expandOnLoad\":false,\"type\":\"price\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":0,\"max\":1200,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":true,\"stepSize\":12,\"isSelected\":null,\"valueDisplayLimit\":null,\"hasPopularValues\":false,\"popularValues\":null,\"values\":null},{\"title\":\"Brand\",\"name\":\"Brand\",\"expandOnLoad\":false,\"type\":\"brand\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":50,\"hasPopularValues\":true,\"popularValues\":null,\"values\":[{\"id\":\"HP\",\"title\":\"HP\",\"name\":\"HP\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:HP\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Acer\",\"title\":\"Acer\",\"name\":\"Acer\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Acer\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Lenovo\",\"title\":\"Lenovo\",\"name\":\"Lenovo\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Lenovo\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ASUS\",\"title\":\"ASUS\",\"name\":\"ASUS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ASUS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Apple\",\"title\":\"Apple\",\"name\":\"Apple\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Apple\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"MSI\",\"title\":\"MSI\",\"name\":\"MSI\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:MSI\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Dell\",\"title\":\"Dell\",\"name\":\"Dell\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Dell\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft\",\"title\":\"Microsoft\",\"name\":\"Microsoft\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Microsoft\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hillside Planter\",\"title\":\"Hillside Planter\",\"name\":\"Hillside Planter\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Hillside%20Planter\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"RNRUO\",\"title\":\"RNRUO\",\"name\":\"RNRUO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:RNRUO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AEEZO\",\"title\":\"AEEZO\",\"name\":\"AEEZO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AEEZO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Nimo\",\"title\":\"Nimo\",\"name\":\"Nimo\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Nimo\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"HYYUO\",\"title\":\"HYYUO\",\"name\":\"HYYUO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:HYYUO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"SANPTENT\",\"title\":\"SANPTENT\",\"name\":\"SANPTENT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:SANPTENT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"onn\",\"title\":\"onn\",\"name\":\"onn\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:onn\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TEMLICOLO\",\"title\":\"TEMLICOLO\",\"name\":\"TEMLICOLO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TEMLICOLO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ACEMAGIC\",\"title\":\"ACEMAGIC\",\"name\":\"ACEMAGIC\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ACEMAGIC\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Toemaagic\",\"title\":\"Toemaagic\",\"name\":\"Toemaagic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Toemaagic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TPV\",\"title\":\"TPV\",\"name\":\"TPV\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TPV\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Gateway\",\"title\":\"Gateway\",\"name\":\"Gateway\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Gateway\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Samsung\",\"title\":\"Samsung\",\"name\":\"Samsung\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Samsung\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Rumtuk\",\"title\":\"Rumtuk\",\"name\":\"Rumtuk\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Rumtuk\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Akocrsiy\",\"title\":\"Akocrsiy\",\"name\":\"Akocrsiy\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Akocrsiy\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"SGIN\",\"title\":\"SGIN\",\"name\":\"SGIN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:SGIN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"KurieTim\",\"title\":\"KurieTim\",\"name\":\"KurieTim\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:KurieTim\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NIPOGI\",\"title\":\"NIPOGI\",\"name\":\"NIPOGI\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NIPOGI\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NoteCraft\",\"title\":\"NoteCraft\",\"name\":\"NoteCraft\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NoteCraft\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"EYY\",\"title\":\"EYY\",\"name\":\"EYY\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:EYY\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Exsurf\",\"title\":\"Exsurf\",\"name\":\"Exsurf\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Exsurf\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Easy-Goes Tech\",\"title\":\"Easy-Goes Tech\",\"name\":\"Easy-Goes Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Easy-Goes%20Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"HBESTORE\",\"title\":\"HBESTORE\",\"name\":\"HBESTORE\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:HBESTORE\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Coolby\",\"title\":\"Coolby\",\"name\":\"Coolby\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Coolby\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"LG\",\"title\":\"LG\",\"name\":\"LG\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:LG\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Molegar\",\"title\":\"Molegar\",\"name\":\"Molegar\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Molegar\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"VOZIZOV\",\"title\":\"VOZIZOV\",\"name\":\"VOZIZOV\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:VOZIZOV\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BULANUO\",\"title\":\"BULANUO\",\"name\":\"BULANUO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BULANUO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ESOOR\",\"title\":\"ESOOR\",\"name\":\"ESOOR\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ESOOR\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ownbrand\",\"title\":\"ownbrand\",\"name\":\"ownbrand\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ownbrand\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Golzer\",\"title\":\"Golzer\",\"name\":\"Golzer\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Golzer\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"JUPETE\",\"title\":\"JUPETE\",\"name\":\"JUPETE\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:JUPETE\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"LOSFTES\",\"title\":\"LOSFTES\",\"name\":\"LOSFTES\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:LOSFTES\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Blackview\",\"title\":\"Blackview\",\"name\":\"Blackview\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Blackview\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Colour Talk\",\"title\":\"Colour Talk\",\"name\":\"Colour Talk\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Colour%20Talk\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"VAIO\",\"title\":\"VAIO\",\"name\":\"VAIO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:VAIO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Teclast\",\"title\":\"Teclast\",\"name\":\"Teclast\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Teclast\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Ningmei\",\"title\":\"Ningmei\",\"name\":\"Ningmei\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Ningmei\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"iTech Deals\",\"title\":\"iTech Deals\",\"name\":\"iTech Deals\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:iTech%20Deals\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Elepad\",\"title\":\"Elepad\",\"name\":\"Elepad\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Elepad\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Chheart\",\"title\":\"Chheart\",\"name\":\"Chheart\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Chheart\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Oyzzraze\",\"title\":\"Oyzzraze\",\"name\":\"Oyzzraze\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Oyzzraze\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Pryloxen\",\"title\":\"Pryloxen\",\"name\":\"Pryloxen\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Pryloxen\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"UHIPPO\",\"title\":\"UHIPPO\",\"name\":\"UHIPPO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:UHIPPO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Toshiba\",\"title\":\"Toshiba\",\"name\":\"Toshiba\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Toshiba\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Latitude\",\"title\":\"Latitude\",\"name\":\"Latitude\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Latitude\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Core Innovations\",\"title\":\"Core Innovations\",\"name\":\"Core Innovations\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Core%20Innovations\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"CHIBBS\",\"title\":\"CHIBBS\",\"name\":\"CHIBBS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:CHIBBS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Unbranded\",\"title\":\"Unbranded\",\"name\":\"Unbranded\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Unbranded\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"XIKEJI\",\"title\":\"XIKEJI\",\"name\":\"XIKEJI\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:XIKEJI\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DACHUAN\",\"title\":\"DACHUAN\",\"name\":\"DACHUAN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DACHUAN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Panasonic\",\"title\":\"Panasonic\",\"name\":\"Panasonic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Panasonic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Alienware\",\"title\":\"Alienware\",\"name\":\"Alienware\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Alienware\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"RULY\",\"title\":\"RULY\",\"name\":\"RULY\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:RULY\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Deluxe PCs\",\"title\":\"Deluxe PCs\",\"name\":\"Deluxe PCs\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Deluxe%20PCs\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Panasonic Toughbook\",\"title\":\"Panasonic Toughbook\",\"name\":\"Panasonic Toughbook\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Panasonic%20Toughbook\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Yustda\",\"title\":\"Yustda\",\"name\":\"Yustda\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Yustda\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"REIXCA\",\"title\":\"REIXCA\",\"name\":\"REIXCA\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:REIXCA\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Guy-Tech\",\"title\":\"Guy-Tech\",\"name\":\"Guy-Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Guy-Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Joy Systems - Dell\",\"title\":\"Joy Systems - Dell\",\"name\":\"Joy Systems - Dell\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Joy%20Systems%20-%20Dell\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TOPOSH\",\"title\":\"TOPOSH\",\"name\":\"TOPOSH\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TOPOSH\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ThundeRobot\",\"title\":\"ThundeRobot\",\"name\":\"ThundeRobot\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ThundeRobot\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AJANTA INDUSTRIAL\",\"title\":\"AJANTA INDUSTRIAL\",\"name\":\"AJANTA INDUSTRIAL\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AJANTA%20INDUSTRIAL\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Dynabook\",\"title\":\"Dynabook\",\"name\":\"Dynabook\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Dynabook\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"GIGABYTE\",\"title\":\"GIGABYTE\",\"name\":\"GIGABYTE\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:GIGABYTE\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ME2\",\"title\":\"ME2\",\"name\":\"ME2\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ME2\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Fsjun\",\"title\":\"Fsjun\",\"name\":\"Fsjun\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Fsjun\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BiTECOOL\",\"title\":\"BiTECOOL\",\"name\":\"BiTECOOL\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BiTECOOL\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Generic\",\"title\":\"Generic\",\"name\":\"Generic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Generic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel\",\"title\":\"Intel\",\"name\":\"Intel\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Intel\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Tulasi\",\"title\":\"Tulasi\",\"name\":\"Tulasi\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Tulasi\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"7KeTree\",\"title\":\"7KeTree\",\"name\":\"7KeTree\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:7KeTree\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"JYXCN\",\"title\":\"JYXCN\",\"name\":\"JYXCN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:JYXCN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Mavark\",\"title\":\"Mavark\",\"name\":\"Mavark\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Mavark\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Acmine\",\"title\":\"Acmine\",\"name\":\"Acmine\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Acmine\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"JYXOIHUB\",\"title\":\"JYXOIHUB\",\"name\":\"JYXOIHUB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:JYXOIHUB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"panasonics\",\"title\":\"panasonics\",\"name\":\"panasonics\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:panasonics\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Goldengulf\",\"title\":\"Goldengulf\",\"name\":\"Goldengulf\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Goldengulf\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Onerbl\",\"title\":\"Onerbl\",\"name\":\"Onerbl\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Onerbl\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"7ketree\",\"title\":\"7ketree\",\"name\":\"7ketree\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:7ketree\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"FEEEMAHA\",\"title\":\"FEEEMAHA\",\"name\":\"FEEEMAHA\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:FEEEMAHA\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"IST Computers\",\"title\":\"IST Computers\",\"name\":\"IST Computers\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:IST%20Computers\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BELNET\",\"title\":\"BELNET\",\"name\":\"BELNET\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BELNET\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DELL NOTEBOOKS\",\"title\":\"DELL NOTEBOOKS\",\"name\":\"DELL NOTEBOOKS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DELL%20NOTEBOOKS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hasee\",\"title\":\"Hasee\",\"name\":\"Hasee\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Hasee\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Joy Systems - HP\",\"title\":\"Joy Systems - HP\",\"name\":\"Joy Systems - HP\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Joy%20Systems%20-%20HP\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Predator\",\"title\":\"Predator\",\"name\":\"Predator\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Predator\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"[P].[amz_brand]\",\"title\":\"[P].[amz_brand]\",\"name\":\"[P].[amz_brand]\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:%5BP%5D.%5Bamz_brand%5D\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"eN-Tech\",\"title\":\"eN-Tech\",\"name\":\"eN-Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:eN-Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"hidevolution\",\"title\":\"hidevolution\",\"name\":\"hidevolution\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:hidevolution\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AORUS\",\"title\":\"AORUS\",\"name\":\"AORUS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AORUS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BREB\",\"title\":\"BREB\",\"name\":\"BREB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BREB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Discount Computer Depot\",\"title\":\"Discount Computer Depot\",\"name\":\"Discount Computer Depot\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Discount%20Computer%20Depot\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Elo\",\"title\":\"Elo\",\"name\":\"Elo\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Elo\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"FIREBAT\",\"title\":\"FIREBAT\",\"name\":\"FIREBAT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:FIREBAT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"GhostManta\",\"title\":\"GhostManta\",\"name\":\"GhostManta\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:GhostManta\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hi-Tec\",\"title\":\"Hi-Tec\",\"name\":\"Hi-Tec\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Hi-Tec\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"K-Mains\",\"title\":\"K-Mains\",\"name\":\"K-Mains\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:K-Mains\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TUF\",\"title\":\"TUF\",\"name\":\"TUF\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TUF\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Toughbook\",\"title\":\"Toughbook\",\"name\":\"Toughbook\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Toughbook\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Weiboer\",\"title\":\"Weiboer\",\"name\":\"Weiboer\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Weiboer\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"XPG\",\"title\":\"XPG\",\"name\":\"XPG\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:XPG\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"dadypet\",\"title\":\"dadypet\",\"name\":\"dadypet\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:dadypet\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"7keTree\",\"title\":\"7keTree\",\"name\":\"7keTree\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:7keTree\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Avita\",\"title\":\"Avita\",\"name\":\"Avita\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Avita\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BRE NUC\",\"title\":\"BRE NUC\",\"name\":\"BRE NUC\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BRE%20NUC\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Bisofice\",\"title\":\"Bisofice\",\"name\":\"Bisofice\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Bisofice\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Black Diamond Memory\",\"title\":\"Black Diamond Memory\",\"name\":\"Black Diamond Memory\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Black%20Diamond%20Memory\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DARZU\",\"title\":\"DARZU\",\"name\":\"DARZU\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DARZU\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Dr. Battery\",\"title\":\"Dr. Battery\",\"name\":\"Dr. Battery\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Dr.%20Battery\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Ghostmanta\",\"title\":\"Ghostmanta\",\"name\":\"Ghostmanta\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Ghostmanta\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NOBRAND\",\"title\":\"NOBRAND\",\"name\":\"NOBRAND\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NOBRAND\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Orbic\",\"title\":\"Orbic\",\"name\":\"Orbic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Orbic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Skytech Gaming\",\"title\":\"Skytech Gaming\",\"name\":\"Skytech Gaming\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Skytech%20Gaming\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Sleeping Phoenix\",\"title\":\"Sleeping Phoenix\",\"name\":\"Sleeping Phoenix\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Sleeping%20Phoenix\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TechMagnet\",\"title\":\"TechMagnet\",\"name\":\"TechMagnet\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:TechMagnet\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Thunderb\",\"title\":\"Thunderb\",\"name\":\"Thunderb\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Thunderb\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Ubisoft\",\"title\":\"Ubisoft\",\"name\":\"Ubisoft\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Ubisoft\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"XMHEIRD\",\"title\":\"XMHEIRD\",\"name\":\"XMHEIRD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:XMHEIRD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"estock\",\"title\":\"estock\",\"name\":\"estock\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:estock\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"zdtodz\",\"title\":\"zdtodz\",\"name\":\"zdtodz\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:zdtodz\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AOPEN\",\"title\":\"AOPEN\",\"name\":\"AOPEN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AOPEN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Activision\",\"title\":\"Activision\",\"name\":\"Activision\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Activision\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BDF\",\"title\":\"BDF\",\"name\":\"BDF\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BDF\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Bioworld\",\"title\":\"Bioworld\",\"name\":\"Bioworld\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Bioworld\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Broage\",\"title\":\"Broage\",\"name\":\"Broage\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Broage\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DynamicFunction\",\"title\":\"DynamicFunction\",\"name\":\"DynamicFunction\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DynamicFunction\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Flora\",\"title\":\"Flora\",\"name\":\"Flora\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Flora\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Getac Technology\",\"title\":\"Getac Technology\",\"name\":\"Getac Technology\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Getac%20Technology\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Good\",\"title\":\"Good\",\"name\":\"Good\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Good\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"HP Refurb\",\"title\":\"HP Refurb\",\"name\":\"HP Refurb\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:HP%20Refurb\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hoovy\",\"title\":\"Hoovy\",\"name\":\"Hoovy\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Hoovy\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"IVIEW\",\"title\":\"IVIEW\",\"name\":\"IVIEW\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:IVIEW\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Jenzora\",\"title\":\"Jenzora\",\"name\":\"Jenzora\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Jenzora\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"KIRCUIT\",\"title\":\"KIRCUIT\",\"name\":\"KIRCUIT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:KIRCUIT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"LENOVO DCG SOURCING\",\"title\":\"LENOVO DCG SOURCING\",\"name\":\"LENOVO DCG SOURCING\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:LENOVO%20DCG%20SOURCING\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Labtec\",\"title\":\"Labtec\",\"name\":\"Labtec\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Labtec\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Laptop Buddy\",\"title\":\"Laptop Buddy\",\"name\":\"Laptop Buddy\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Laptop%20Buddy\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Lexibook\",\"title\":\"Lexibook\",\"name\":\"Lexibook\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Lexibook\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Memorex\",\"title\":\"Memorex\",\"name\":\"Memorex\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Memorex\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Mightyskins\",\"title\":\"Mightyskins\",\"name\":\"Mightyskins\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Mightyskins\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Moobody\",\"title\":\"Moobody\",\"name\":\"Moobody\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Moobody\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NATNO\",\"title\":\"NATNO\",\"name\":\"NATNO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NATNO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NIPOG\",\"title\":\"NIPOG\",\"name\":\"NIPOG\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:NIPOG\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"OTVOC\",\"title\":\"OTVOC\",\"name\":\"OTVOC\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:OTVOC\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Pc Wholesale Exclusive\",\"title\":\"Pc Wholesale Exclusive\",\"name\":\"Pc Wholesale Exclusive\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Pc%20Wholesale%20Exclusive\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"THTRO\",\"title\":\"THTRO\",\"name\":\"THTRO\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:THTRO\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"VIVIDCRAFT\",\"title\":\"VIVIDCRAFT\",\"name\":\"VIVIDCRAFT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:VIVIDCRAFT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Victus\",\"title\":\"Victus\",\"name\":\"Victus\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Victus\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ViewSonic\",\"title\":\"ViewSonic\",\"name\":\"ViewSonic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ViewSonic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"WAVLINK\",\"title\":\"WAVLINK\",\"name\":\"WAVLINK\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:WAVLINK\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Yeastar\",\"title\":\"Yeastar\",\"name\":\"Yeastar\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Yeastar\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Yolmary\",\"title\":\"Yolmary\",\"name\":\"Yolmary\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Yolmary\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"generic\",\"title\":\"generic\",\"name\":\"generic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:generic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"lkx\",\"title\":\"lkx\",\"name\":\"lkx\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:lkx\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"temellsan\",\"title\":\"temellsan\",\"name\":\"temellsan\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:temellsan\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"203 Trading\",\"title\":\"203 Trading\",\"name\":\"203 Trading\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:203%20Trading\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"2K\",\"title\":\"2K\",\"name\":\"2K\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:2K\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"3M\",\"title\":\"3M\",\"name\":\"3M\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:3M\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"A-Premium\",\"title\":\"A-Premium\",\"name\":\"A-Premium\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:A-Premium\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ADHART\",\"title\":\"ADHART\",\"name\":\"ADHART\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ADHART\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD\",\"title\":\"AMD\",\"name\":\"AMD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AMD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"APPLE - SYSTEMS\",\"title\":\"APPLE - SYSTEMS\",\"name\":\"APPLE - SYSTEMS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:APPLE%20-%20SYSTEMS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ARCADORA\",\"title\":\"ARCADORA\",\"name\":\"ARCADORA\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:ARCADORA\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AUSU\",\"title\":\"AUSU\",\"name\":\"AUSU\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:AUSU\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Abacus\",\"title\":\"Abacus\",\"name\":\"Abacus\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Abacus\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Acadia\",\"title\":\"Acadia\",\"name\":\"Acadia\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Acadia\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Amazon Renewed\",\"title\":\"Amazon Renewed\",\"name\":\"Amazon Renewed\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Amazon%20Renewed\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Asuss\",\"title\":\"Asuss\",\"name\":\"Asuss\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Asuss\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Azpen\",\"title\":\"Azpen\",\"name\":\"Azpen\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Azpen\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BOOX\",\"title\":\"BOOX\",\"name\":\"BOOX\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BOOX\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"BalconyBliss\",\"title\":\"BalconyBliss\",\"name\":\"BalconyBliss\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:BalconyBliss\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Baoblaze\",\"title\":\"Baoblaze\",\"name\":\"Baoblaze\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Baoblaze\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Blair Tech\",\"title\":\"Blair Tech\",\"name\":\"Blair Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Blair%20Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Blarkrus\",\"title\":\"Blarkrus\",\"name\":\"Blarkrus\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Blarkrus\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"CQLDYWXDY\",\"title\":\"CQLDYWXDY\",\"name\":\"CQLDYWXDY\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:CQLDYWXDY\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"CTI Tech\",\"title\":\"CTI Tech\",\"name\":\"CTI Tech\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:CTI%20Tech\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Cbzote\",\"title\":\"Cbzote\",\"name\":\"Cbzote\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Cbzote\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Ccdes\",\"title\":\"Ccdes\",\"name\":\"Ccdes\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Ccdes\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Computers 4 Less TN\",\"title\":\"Computers 4 Less TN\",\"name\":\"Computers 4 Less TN\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Computers%204%20Less%20TN\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Custom Ascent\",\"title\":\"Custom Ascent\",\"name\":\"Custom Ascent\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Custom%20Ascent\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"CyberGeek\",\"title\":\"CyberGeek\",\"name\":\"CyberGeek\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:CyberGeek\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DMKAOLLK\",\"title\":\"DMKAOLLK\",\"name\":\"DMKAOLLK\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:DMKAOLLK\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Darzheoy\",\"title\":\"Darzheoy\",\"name\":\"Darzheoy\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=brand:Darzheoy\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Item Conditions\",\"name\":\"Item Conditions\",\"expandOnLoad\":false,\"type\":\"offer_condition_group_codes_filter_v0\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"1\",\"title\":\"New\",\"name\":\"New\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=offer_condition_group_codes_filter_v0:New\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"3\",\"title\":\"Pre-Owned\",\"name\":\"Pre-Owned\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=offer_condition_group_codes_filter_v0:Pre-Owned\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"2\",\"title\":\"Restored\",\"name\":\"Restored\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=offer_condition_group_codes_filter_v0:Restored\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Screen Size\",\"name\":\"Screen Size\",\"expandOnLoad\":false,\"type\":\"screen_size_laptop\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":50,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"10\\\" - 12\\\"\",\"title\":\"10\\\" - 12\\\"\",\"name\":\"10\\\" - 12\\\"\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=screen_size_laptop:10%22%20-%2012%22\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"11\\\" - 14\\\"\",\"title\":\"11\\\" - 14\\\"\",\"name\":\"11\\\" - 14\\\"\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=screen_size_laptop:11%22%20-%2014%22\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"15\\\" - 16\\\"\",\"title\":\"15\\\" - 16\\\"\",\"name\":\"15\\\" - 16\\\"\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=screen_size_laptop:15%22%20-%2016%22\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"16\\\" \\u0026 Up\",\"title\":\"16\\\" \\u0026 Up\",\"name\":\"16\\\" \\u0026 Up\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=screen_size_laptop:16%22%20%26%20Up\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Processor Type\",\"name\":\"Processor Type\",\"expandOnLoad\":false,\"type\":\"processor_type\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":true,\"popularValues\":null,\"values\":[{\"id\":\"Intel Core i7\",\"title\":\"Intel Core i7\",\"name\":\"Intel Core i7\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Core%20i7\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Core i5\",\"title\":\"Intel Core i5\",\"name\":\"Intel Core i5\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Core%20i5\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Ryzen 7\",\"title\":\"AMD Ryzen 7\",\"name\":\"AMD Ryzen 7\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:AMD%20Ryzen%207\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Ryzen 5\",\"title\":\"AMD Ryzen 5\",\"name\":\"AMD Ryzen 5\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:AMD%20Ryzen%205\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Core i9\",\"title\":\"Intel Core i9\",\"name\":\"Intel Core i9\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Core%20i9\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Core i3\",\"title\":\"Intel Core i3\",\"name\":\"Intel Core i3\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Core%20i3\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Ryzen 9\",\"title\":\"AMD Ryzen 9\",\"name\":\"AMD Ryzen 9\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:AMD%20Ryzen%209\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Core i7-10750H\",\"title\":\"Intel Core i7-10750H\",\"name\":\"Intel Core i7-10750H\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Core%20i7-10750H\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Core i7-1355U\",\"title\":\"Intel Core i7-1355U\",\"name\":\"Intel Core i7-1355U\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Core%20i7-1355U\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Core i5-1035G1\",\"title\":\"Intel Core i5-1035G1\",\"name\":\"Intel Core i5-1035G1\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Core%20i5-1035G1\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Ryzen 7 7730U\",\"title\":\"AMD Ryzen 7 7730U\",\"name\":\"AMD Ryzen 7 7730U\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:AMD%20Ryzen%207%207730U\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Ryzen 3\",\"title\":\"AMD Ryzen 3\",\"name\":\"AMD Ryzen 3\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:AMD%20Ryzen%203\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Core i5-13420H\",\"title\":\"Intel Core i5-13420H\",\"name\":\"Intel Core i5-13420H\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Core%20i5-13420H\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel\",\"title\":\"Intel\",\"name\":\"Intel\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Apple M1\",\"title\":\"Apple M1\",\"name\":\"Apple M1\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Apple%20M1\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Apple M2\",\"title\":\"Apple M2\",\"name\":\"Apple M2\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Apple%20M2\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Ryzen\",\"title\":\"AMD Ryzen\",\"name\":\"AMD Ryzen\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:AMD%20Ryzen\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Celeron\",\"title\":\"Intel Celeron\",\"name\":\"Intel Celeron\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Celeron\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel Pentium Gold\",\"title\":\"Intel Pentium Gold\",\"name\":\"Intel Pentium Gold\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:Intel%20Pentium%20Gold\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"i7-11800H\",\"title\":\"i7-11800H\",\"name\":\"i7-11800H\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_type:i7-11800H\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Data Storage\",\"name\":\"Data Storage\",\"expandOnLoad\":false,\"type\":\"data_storage_computers\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"256 GB and Under\",\"title\":\"256 GB and Under\",\"name\":\"256 GB and Under\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=data_storage_computers:256%20GB%20and%20Under\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"256 GB - 500 GB\",\"title\":\"256 GB - 500 GB\",\"name\":\"256 GB - 500 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=data_storage_computers:256%20GB%20-%20500%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"500 GB - 1 TB\",\"title\":\"500 GB - 1 TB\",\"name\":\"500 GB - 1 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=data_storage_computers:500%20GB%20-%201%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1 TB - 2 TB\",\"title\":\"1 TB - 2 TB\",\"name\":\"1 TB - 2 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=data_storage_computers:1%20TB%20-%202%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"2 TB and Up\",\"title\":\"2 TB and Up\",\"name\":\"2 TB and Up\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=data_storage_computers:2%20TB%20and%20Up\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Operating System\",\"name\":\"Operating System\",\"expandOnLoad\":false,\"type\":\"operating_system\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":true,\"popularValues\":null,\"values\":[{\"id\":\"Microsoft Windows 11\",\"title\":\"Microsoft Windows 11\",\"name\":\"Microsoft Windows 11\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2011\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows\",\"title\":\"Microsoft Windows\",\"name\":\"Microsoft Windows\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Windows\",\"title\":\"Windows\",\"name\":\"Windows\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Windows\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 11 Professional\",\"title\":\"Microsoft Windows 11 Professional\",\"name\":\"Microsoft Windows 11 Professional\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2011%20Professional\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Windows 10\",\"title\":\"Windows 10\",\"name\":\"Windows 10\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Windows%2010\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 11 Home (64-bit)\",\"title\":\"Microsoft Windows 11 Home (64-bit)\",\"name\":\"Microsoft Windows 11 Home (64-bit)\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2011%20Home%20(64-bit)\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 11 Professional (64-bit)\",\"title\":\"Microsoft Windows 11 Professional (64-bit)\",\"name\":\"Microsoft Windows 11 Professional (64-bit)\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2011%20Professional%20(64-bit)\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 10\",\"title\":\"Microsoft Windows 10\",\"name\":\"Microsoft Windows 10\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2010\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 11 Home\",\"title\":\"Microsoft Windows 11 Home\",\"name\":\"Microsoft Windows 11 Home\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2011%20Home\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Windows 10 Pro\",\"title\":\"Windows 10 Pro\",\"name\":\"Windows 10 Pro\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Windows%2010%20Pro\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Windows 10 Home\",\"title\":\"Windows 10 Home\",\"name\":\"Windows 10 Home\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Windows%2010%20Home\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 10 Professional\",\"title\":\"Microsoft Windows 10 Professional\",\"name\":\"Microsoft Windows 10 Professional\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2010%20Professional\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Chrome OS\",\"title\":\"Chrome OS\",\"name\":\"Chrome OS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Chrome%20OS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 10 Home\",\"title\":\"Microsoft Windows 10 Home\",\"name\":\"Microsoft Windows 10 Home\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2010%20Home\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 10 Professional (64-bit)\",\"title\":\"Microsoft Windows 10 Professional (64-bit)\",\"name\":\"Microsoft Windows 10 Professional (64-bit)\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2010%20Professional%20(64-bit)\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 10 Pro 64-Bit\",\"title\":\"Microsoft Windows 10 Pro 64-Bit\",\"name\":\"Microsoft Windows 10 Pro 64-Bit\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2010%20Pro%2064-Bit\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 10Professional\",\"title\":\"Microsoft Windows 10Professional\",\"name\":\"Microsoft Windows 10Professional\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2010Professional\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Apple iOS\",\"title\":\"Apple iOS\",\"name\":\"Apple iOS\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Apple%20iOS\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Windows 7\",\"title\":\"Windows 7\",\"name\":\"Windows 7\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Windows%207\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Microsoft Windows 10 S\",\"title\":\"Microsoft Windows 10 S\",\"name\":\"Microsoft Windows 10 S\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=operating_system:Microsoft%20Windows%2010%20S\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Graphics Card\",\"name\":\"Graphics Card\",\"expandOnLoad\":false,\"type\":\"graphic_card\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":true,\"popularValues\":null,\"values\":[{\"id\":\"NVIDIA GeForce RTX 4070\",\"title\":\"NVIDIA GeForce RTX 4070\",\"name\":\"NVIDIA GeForce RTX 4070\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%204070\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 4060\",\"title\":\"NVIDIA GeForce RTX 4060\",\"name\":\"NVIDIA GeForce RTX 4060\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%204060\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 4050\",\"title\":\"NVIDIA GeForce RTX 4050\",\"name\":\"NVIDIA GeForce RTX 4050\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%204050\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 4080\",\"title\":\"NVIDIA GeForce RTX 4080\",\"name\":\"NVIDIA GeForce RTX 4080\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%204080\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 3050\",\"title\":\"NVIDIA GeForce RTX 3050\",\"name\":\"NVIDIA GeForce RTX 3050\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%203050\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 3060\",\"title\":\"NVIDIA GeForce RTX 3060\",\"name\":\"NVIDIA GeForce RTX 3060\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%203060\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 3050 Ti\",\"title\":\"NVIDIA GeForce RTX 3050 Ti\",\"name\":\"NVIDIA GeForce RTX 3050 Ti\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%203050%20Ti\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 3070\",\"title\":\"NVIDIA GeForce RTX 3070\",\"name\":\"NVIDIA GeForce RTX 3070\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%203070\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Radeon RX 7900 XTX\",\"title\":\"AMD Radeon RX 7900 XTX\",\"name\":\"AMD Radeon RX 7900 XTX\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:AMD%20Radeon%20RX%207900%20XTX\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 3070 Ti\",\"title\":\"NVIDIA GeForce RTX 3070 Ti\",\"name\":\"NVIDIA GeForce RTX 3070 Ti\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%203070%20Ti\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Radeon\",\"title\":\"AMD Radeon\",\"name\":\"AMD Radeon\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:AMD%20Radeon\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 3080\",\"title\":\"NVIDIA GeForce RTX 3080\",\"name\":\"NVIDIA GeForce RTX 3080\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%203080\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel UHD Graphics\",\"title\":\"Intel UHD Graphics\",\"name\":\"Intel UHD Graphics\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:Intel%20UHD%20Graphics\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD Radeon RX 6800 XT\",\"title\":\"AMD Radeon RX 6800 XT\",\"name\":\"AMD Radeon RX 6800 XT\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:AMD%20Radeon%20RX%206800%20XT\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce GTX 1650\",\"title\":\"NVIDIA GeForce GTX 1650\",\"name\":\"NVIDIA GeForce GTX 1650\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20GTX%201650\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 2060\",\"title\":\"NVIDIA GeForce RTX 2060\",\"name\":\"NVIDIA GeForce RTX 2060\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%202060\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce RTX 2050\",\"title\":\"NVIDIA GeForce RTX 2050\",\"name\":\"NVIDIA GeForce RTX 2050\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20RTX%202050\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA GeForce MX550\",\"title\":\"NVIDIA GeForce MX550\",\"name\":\"NVIDIA GeForce MX550\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:NVIDIA%20GeForce%20MX550\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel HD Graphics\",\"title\":\"Intel HD Graphics\",\"name\":\"Intel HD Graphics\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:Intel%20HD%20Graphics\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Intel UHD Graphics 600\",\"title\":\"Intel UHD Graphics 600\",\"name\":\"Intel UHD Graphics 600\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=graphic_card:Intel%20UHD%20Graphics%20600\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Processor Brand\",\"name\":\"Processor Brand\",\"expandOnLoad\":false,\"type\":\"processor_brand\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"Intel\",\"title\":\"Intel\",\"name\":\"Intel\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_brand:Intel\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMD\",\"title\":\"AMD\",\"name\":\"AMD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_brand:AMD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Apple\",\"title\":\"Apple\",\"name\":\"Apple\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_brand:Apple\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"NVIDIA\",\"title\":\"NVIDIA\",\"name\":\"NVIDIA\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_brand:NVIDIA\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"ARM\",\"title\":\"ARM\",\"name\":\"ARM\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=processor_brand:ARM\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Features\",\"name\":\"Features\",\"expandOnLoad\":false,\"type\":\"features\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":true,\"popularValues\":null,\"values\":[{\"id\":\"Touchscreen\",\"title\":\"Touchscreen\",\"name\":\"Touchscreen\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Touchscreen\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Wireless\",\"title\":\"Wireless\",\"name\":\"Wireless\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Wireless\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Water-Resistant\",\"title\":\"Water-Resistant\",\"name\":\"Water-Resistant\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Water-Resistant\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Portable\",\"title\":\"Portable\",\"name\":\"Portable\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Portable\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Waterproof\",\"title\":\"Waterproof\",\"name\":\"Waterproof\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Waterproof\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Automatic Shut-Off\",\"title\":\"Automatic Shut-Off\",\"name\":\"Automatic Shut-Off\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Automatic%20Shut-Off\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Automatic Shutoff\",\"title\":\"Automatic Shutoff\",\"name\":\"Automatic Shutoff\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Automatic%20Shutoff\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hypoallergenic\",\"title\":\"Hypoallergenic\",\"name\":\"Hypoallergenic\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Hypoallergenic\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Removable\",\"title\":\"Removable\",\"name\":\"Removable\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=features:Removable\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Hard Drive Type\",\"name\":\"Hard Drive Type\",\"expandOnLoad\":false,\"type\":\"hard_drive_type\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"HDD\",\"title\":\"HDD\",\"name\":\"HDD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=hard_drive_type:HDD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"SSD\",\"title\":\"SSD\",\"name\":\"SSD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=hard_drive_type:SSD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Hybrid\",\"title\":\"Hybrid\",\"name\":\"Hybrid\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=hard_drive_type:Hybrid\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"No Drive\",\"title\":\"No Drive\",\"name\":\"No Drive\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=hard_drive_type:No%20Drive\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Solid State Drive Capacity\",\"name\":\"Solid State Drive Capacity\",\"expandOnLoad\":false,\"type\":\"solid_state_drive_capacity\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":50,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"1 TB\",\"title\":\"1 TB\",\"name\":\"1 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:1%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"512 GB\",\"title\":\"512 GB\",\"name\":\"512 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:512%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"2 TB\",\"title\":\"2 TB\",\"name\":\"2 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:2%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"256 GB\",\"title\":\"256 GB\",\"name\":\"256 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:256%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"500 GB\",\"title\":\"500 GB\",\"name\":\"500 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:500%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"4 TB\",\"title\":\"4 TB\",\"name\":\"4 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:4%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1.0 TB\",\"title\":\"1.0 TB\",\"name\":\"1.0 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:1.0%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1.02 TB\",\"title\":\"1.02 TB\",\"name\":\"1.02 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:1.02%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1000 GB\",\"title\":\"1000 GB\",\"name\":\"1000 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:1000%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"128 GB\",\"title\":\"128 GB\",\"name\":\"128 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:128%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1.5 TB\",\"title\":\"1.5 TB\",\"name\":\"1.5 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:1.5%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1024 GB\",\"title\":\"1024 GB\",\"name\":\"1024 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:1024%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"512 TB\",\"title\":\"512 TB\",\"name\":\"512 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:512%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"512.0 GB\",\"title\":\"512.0 GB\",\"name\":\"512.0 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:512.0%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"16 GB\",\"title\":\"16 GB\",\"name\":\"16 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:16%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1.51 TB\",\"title\":\"1.51 TB\",\"name\":\"1.51 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:1.51%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1 GB\",\"title\":\"1 GB\",\"name\":\"1 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:1%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"128 TB\",\"title\":\"128 TB\",\"name\":\"128 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:128%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"256 TB\",\"title\":\"256 TB\",\"name\":\"256 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:256%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"64 GB\",\"title\":\"64 GB\",\"name\":\"64 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:64%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"32 GB\",\"title\":\"32 GB\",\"name\":\"32 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:32%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"8 TB\",\"title\":\"8 TB\",\"name\":\"8 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:8%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"320 GB\",\"title\":\"320 GB\",\"name\":\"320 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:320%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"250 GB\",\"title\":\"250 GB\",\"name\":\"250 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:250%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"240 GB\",\"title\":\"240 GB\",\"name\":\"240 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:240%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"180 GB\",\"title\":\"180 GB\",\"name\":\"180 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:180%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"192 GB\",\"title\":\"192 GB\",\"name\":\"192 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:192%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"384 GB\",\"title\":\"384 GB\",\"name\":\"384 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:384%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"120 GB\",\"title\":\"120 GB\",\"name\":\"120 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:120%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"16 TB\",\"title\":\"16 TB\",\"name\":\"16 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:16%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"750 GB\",\"title\":\"750 GB\",\"name\":\"750 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:750%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"160 GB\",\"title\":\"160 GB\",\"name\":\"160 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:160%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"256.0 GB\",\"title\":\"256.0 GB\",\"name\":\"256.0 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:256.0%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"448 GB\",\"title\":\"448 GB\",\"name\":\"448 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:448%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"640 GB\",\"title\":\"640 GB\",\"name\":\"640 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:640%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"480 GB\",\"title\":\"480 GB\",\"name\":\"480 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:480%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"500 TB\",\"title\":\"500 TB\",\"name\":\"500 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:500%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"768 GB\",\"title\":\"768 GB\",\"name\":\"768 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:768%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"576 GB\",\"title\":\"576 GB\",\"name\":\"576 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:576%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"512gb ssd\",\"title\":\"512gb ssd\",\"name\":\"512gb ssd\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:512gb%20ssd\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"64.0 GB\",\"title\":\"64.0 GB\",\"name\":\"64.0 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:64.0%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"704 GB\",\"title\":\"704 GB\",\"name\":\"704 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:704%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"8 GB\",\"title\":\"8 GB\",\"name\":\"8 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:8%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"832 GB\",\"title\":\"832 GB\",\"name\":\"832 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:832%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"64 TB\",\"title\":\"64 TB\",\"name\":\"64 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:64%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"960 GB\",\"title\":\"960 GB\",\"name\":\"960 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:960%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"128.0 GB\",\"title\":\"128.0 GB\",\"name\":\"128.0 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:128.0%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"6 TB\",\"title\":\"6 TB\",\"name\":\"6 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:6%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"32 TB\",\"title\":\"32 TB\",\"name\":\"32 TB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:32%20TB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"0 GB\",\"title\":\"0 GB\",\"name\":\"0 GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=solid_state_drive_capacity:0%20GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Color\",\"name\":\"Color\",\"expandOnLoad\":false,\"type\":\"color\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":50,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"Pink\",\"title\":\"Pink\",\"name\":\"Pink\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Pink\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Black\",\"title\":\"Black\",\"name\":\"Black\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Black\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Blue\",\"title\":\"Blue\",\"name\":\"Blue\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Blue\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Silver\",\"title\":\"Silver\",\"name\":\"Silver\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Silver\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Purple\",\"title\":\"Purple\",\"name\":\"Purple\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Purple\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"White\",\"title\":\"White\",\"name\":\"White\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:White\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Red\",\"title\":\"Red\",\"name\":\"Red\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Red\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Gray\",\"title\":\"Gray\",\"name\":\"Gray\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Gray\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Gold\",\"title\":\"Gold\",\"name\":\"Gold\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Gold\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Green\",\"title\":\"Green\",\"name\":\"Green\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Green\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Multicolor\",\"title\":\"Multicolor\",\"name\":\"Multicolor\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Multicolor\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Beige\",\"title\":\"Beige\",\"name\":\"Beige\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Beige\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Brown\",\"title\":\"Brown\",\"name\":\"Brown\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Brown\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Clear\",\"title\":\"Clear\",\"name\":\"Clear\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Clear\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Yellow\",\"title\":\"Yellow\",\"name\":\"Yellow\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Yellow\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Orange\",\"title\":\"Orange\",\"name\":\"Orange\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Orange\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Other\",\"title\":\"Other\",\"name\":\"Other\",\"expandOnLoad\":null,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Other\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Off-White\",\"title\":\"Off-White\",\"name\":\"Off-White\",\"expandOnLoad\":null,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Off-White\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Assorted\",\"title\":\"Assorted\",\"name\":\"Assorted\",\"expandOnLoad\":null,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=color:Assorted\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Resolution\",\"name\":\"Resolution\",\"expandOnLoad\":false,\"type\":\"resolution\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":true,\"popularValues\":null,\"values\":[{\"id\":\"4K UHD\",\"title\":\"4K UHD\",\"name\":\"4K UHD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:4K%20UHD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1080p\",\"title\":\"1080p\",\"name\":\"1080p\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1080p\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"720p\",\"title\":\"720p\",\"name\":\"720p\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:720p\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"FHD (1080P)\",\"title\":\"FHD (1080P)\",\"name\":\"FHD (1080P)\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:FHD%20(1080P)\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"4K (2160P)\",\"title\":\"4K (2160P)\",\"name\":\"4K (2160P)\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:4K%20(2160P)\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1920 x 1200\",\"title\":\"1920 x 1200\",\"name\":\"1920 x 1200\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1920%20x%201200\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"2560 x 1600\",\"title\":\"2560 x 1600\",\"name\":\"2560 x 1600\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:2560%20x%201600\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"FHD (1920 x 1080)\",\"title\":\"FHD (1920 x 1080)\",\"name\":\"FHD (1920 x 1080)\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:FHD%20(1920%20x%201080)\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"2880 x 1800\",\"title\":\"2880 x 1800\",\"name\":\"2880 x 1800\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:2880%20x%201800\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1080p+\",\"title\":\"1080p+\",\"name\":\"1080p+\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1080p+\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"2560x1600\",\"title\":\"2560x1600\",\"name\":\"2560x1600\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:2560x1600\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1920 x 1080 (Full HD)\",\"title\":\"1920 x 1080 (Full HD)\",\"name\":\"1920 x 1080 (Full HD)\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1920%20x%201080%20(Full%20HD)\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1440p QHD\",\"title\":\"1440p QHD\",\"name\":\"1440p QHD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1440p%20QHD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"FHD (1920x1080)\",\"title\":\"FHD (1920x1080)\",\"name\":\"FHD (1920x1080)\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:FHD%20(1920x1080)\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"FHD\",\"title\":\"FHD\",\"name\":\"FHD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:FHD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1920x1200\",\"title\":\"1920x1200\",\"name\":\"1920x1200\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1920x1200\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1080p; FHD; 1920x1080\",\"title\":\"1080p; FHD; 1920x1080\",\"name\":\"1080p; FHD; 1920x1080\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1080p;%20FHD;%201920x1080\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"WUXGA\",\"title\":\"WUXGA\",\"name\":\"WUXGA\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:WUXGA\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1200p\",\"title\":\"1200p\",\"name\":\"1200p\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1200p\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"1080 FHD\",\"title\":\"1080 FHD\",\"name\":\"1080 FHD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=resolution:1080%20FHD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Display Technology\",\"name\":\"Display Technology\",\"expandOnLoad\":false,\"type\":\"display_technology\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":true,\"popularValues\":null,\"values\":[{\"id\":\"OLED\",\"title\":\"OLED\",\"name\":\"OLED\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:OLED\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Backlit\",\"title\":\"Backlit\",\"name\":\"Backlit\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:Backlit\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"LED\",\"title\":\"LED\",\"name\":\"LED\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:LED\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"IPS LCD\",\"title\":\"IPS LCD\",\"name\":\"IPS LCD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:IPS%20LCD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"AMOLED\",\"title\":\"AMOLED\",\"name\":\"AMOLED\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:AMOLED\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"LCD\",\"title\":\"LCD\",\"name\":\"LCD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:LCD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"QLED\",\"title\":\"QLED\",\"name\":\"QLED\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:QLED\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"HDR\",\"title\":\"HDR\",\"name\":\"HDR\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:HDR\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"TFT LCD\",\"title\":\"TFT LCD\",\"name\":\"TFT LCD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:TFT%20LCD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Retina Display\",\"title\":\"Retina Display\",\"name\":\"Retina Display\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:Retina%20Display\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Super LCD\",\"title\":\"Super LCD\",\"name\":\"Super LCD\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:Super%20LCD\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Digital\",\"title\":\"Digital\",\"name\":\"Digital\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:Digital\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Analog\",\"title\":\"Analog\",\"name\":\"Analog\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:Analog\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"No Display\",\"title\":\"No Display\",\"name\":\"No Display\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:No%20Display\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"DLP\",\"title\":\"DLP\",\"name\":\"DLP\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:DLP\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"E-Ink\",\"title\":\"E-Ink\",\"name\":\"E-Ink\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=display_technology:E-Ink\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"RAM\",\"name\":\"RAM\",\"expandOnLoad\":false,\"type\":\"ram_memory_general\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"3GB \\u0026 Under\",\"title\":\"3GB \\u0026 Under\",\"name\":\"3GB \\u0026 Under\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=ram_memory_general:3GB%20%26%20Under\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"4GB\",\"title\":\"4GB\",\"name\":\"4GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=ram_memory_general:4GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"6GB\",\"title\":\"6GB\",\"name\":\"6GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=ram_memory_general:6GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"8GB\",\"title\":\"8GB\",\"name\":\"8GB\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=ram_memory_general:8GB\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"12GB \\u0026 Up\",\"title\":\"12GB \\u0026 Up\",\"name\":\"12GB \\u0026 Up\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=ram_memory_general:12GB%20%26%20Up\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Availability\",\"name\":\"Availability\",\"expandOnLoad\":false,\"type\":\"exclude_oos\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":null,\"hasPopularValues\":null,\"popularValues\":null,\"values\":[{\"id\":\"Show available items only\",\"title\":\"Show available items only\",\"name\":\"Show available items only\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=exclude_oos:Show%20available%20items%20only\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Departments\",\"name\":\"Departments\",\"expandOnLoad\":null,\"type\":\"cat_id\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":null,\"hasPopularValues\":null,\"popularValues\":null,\"values\":[{\"id\":\"3944\",\"title\":\"Electronics\",\"name\":\"Electronics\",\"expandOnLoad\":true,\"description\":null,\"type\":\"cat_id\",\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=3944\\u0026stores=3081\\u0026grid=true\\u0026spelling=true\\u0026ps=40\",\"isSelected\":null,\"baseSeoURL\":\"/browse/electronics/3944\",\"catPathName\":\"/Electronics\",\"values\":null},{\"id\":\"6163033\",\"title\":\"Services\",\"name\":\"Services\",\"expandOnLoad\":true,\"description\":null,\"type\":\"cat_id\",\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=6163033\\u0026stores=3081\\u0026grid=true\\u0026spelling=true\\u0026ps=40\",\"isSelected\":null,\"baseSeoURL\":\"/browse/services/6163033\",\"catPathName\":\"/Services\",\"values\":null}]},{\"title\":\"Deals\",\"name\":\"Deals\",\"expandOnLoad\":false,\"type\":\"special_offers\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"Reduced Price\",\"title\":\"Reduced Price\",\"name\":\"Reduced Price\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=special_offers:Reduced%20Price\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Clearance\",\"title\":\"Clearance\",\"name\":\"Clearance\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=special_offers:Clearance\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Rollback\",\"title\":\"Rollback\",\"name\":\"Rollback\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=special_offers:Rollback\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Customer Rating\",\"name\":\"Customer Rating\",\"expandOnLoad\":false,\"type\":\"customer_rating\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"4 - 5 Stars\",\"title\":\"4 - 5 Stars\",\"name\":\"4 - 5 Stars\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=customer_rating:4%20-%205%20Stars\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"3 - 3.9 Stars\",\"title\":\"3 - 3.9 Stars\",\"name\":\"3 - 3.9 Stars\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=customer_rating:3%20-%203.9%20Stars\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Retailer\",\"name\":\"Retailer\",\"expandOnLoad\":false,\"type\":\"retailer_type\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"Walmart\",\"title\":\"Walmart\",\"name\":\"Walmart\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=retailer_type:Walmart\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Pro Sellers\",\"title\":\"Pro Sellers\",\"name\":\"Pro Sellers\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=retailer_type:Pro%20Sellers\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null},{\"id\":\"Marketplace Sellers fulfilled by Walmart\",\"title\":\"Marketplace Sellers fulfilled by Walmart\",\"name\":\"Marketplace Sellers fulfilled by Walmart\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=retailer_type:Marketplace%20Sellers%20fulfilled%20by%20Walmart\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]},{\"title\":\"Gifting\",\"name\":\"Gifting\",\"expandOnLoad\":false,\"type\":\"Gifting\",\"displayType\":null,\"urlParams\":null,\"url\":null,\"layout\":\"default\",\"min\":null,\"max\":null,\"selectedMin\":null,\"selectedMax\":null,\"unboundedMax\":null,\"stepSize\":null,\"isSelected\":null,\"valueDisplayLimit\":20,\"hasPopularValues\":false,\"popularValues\":null,\"values\":[{\"id\":\"Gift eligible\",\"title\":\"Gift eligible\",\"name\":\"Gift eligible\",\"expandOnLoad\":true,\"description\":null,\"type\":null,\"itemCount\":null,\"url\":\"query=laptop\\u0026sort=best_match\\u0026cat_id=0\\u0026stores=3081\\u0026spelling=true\\u0026ps=40\\u0026facet=Gifting:Gift%20eligible\",\"isSelected\":null,\"baseSeoURL\":null,\"catPathName\":null,\"values\":null}]}],\"sortByColor\":\"#2e2f32\"}},{\"__typename\":\"TempoModule\",\"type\":\"BrandAmplifierAd\",\"name\":\"Search Brand Amplifier Ad\",\"version\":6,\"moduleId\":\"ce73cb9e-2029-4083-80c4-d6aced706cf0\",\"schedule\":{\"priority\":1},\"matchedTrigger\":{\"zone\":\"sponsoredBrandZone\"},\"configs\":{\"__typename\":\"TempoWM_GLASSWWWBrandAmplifierAdConfigs\",\"_rawConfigs\":{\"lazy\":null,\"moduleLocation\":\"top\"},\"moduleLocation\":\"top\",\"ad\":{\"status\":\"SUCCESS\",\"moduleType\":\"BrandAmplifierAd\",\"platform\":\"DESKTOP\",\"pageId\":\"laptop\",\"pageType\":\"SEARCH\",\"storeId\":\"3081\",\"stateCode\":\"CA\",\"zipCode\":\"95829\",\"pageContext\":{\"customerContext\":{\"customerId\":null,\"isActiveMember\":false,\"isPaidMember\":false,\"paymentMethodMetaData\":[],\"purseTags\":[]},\"searchNormalize\":{\"analytics_log\":{\"fe_log\":{\"dept\":\"/3944/1089430/3951/8835131/1737838\",\"g\":\"S\",\"ms\":0,\"msf\":2,\"mso\":2,\"msov\":0,\"pts\":\"Laptop Computers:0.998046875\",\"qa\":\"default\",\"s\":\"b\",\"sp_elig\":false,\"sps\":0.25884318,\"tkc\":1,\"tpt\":\"Laptop Computers\",\"trf\":\"ht\"},\"sot_log\":{},\"substitute_log\":{\"altph\":\"1\",\"elig\":\"Y\",\"trig\":\"Y\"}},\"normalized_query\":\"laptop\",\"original_query\":\"laptop\",\"productTypeSpecificityScore\":{\"quantile\":0.5559,\"score\":0.8485761},\"product_type\":[{\"name\":\"Laptop Computers\",\"score\":0.998046875,\"source\":\"classifier\"}],\"rewritten_query\":\"laptop\",\"specificity\":\"broad\",\"specificityScore\":{\"quantile\":0.1458,\"score\":0.25884318},\"top_query_cat_path\":\"/3944/1089430/3951/8835131/1737838\",\"top_query_cat_path_name\":\"/Electronics/Computers, Laptops and Tablets/Laptops/Laptops by Operating System/Windows OS Laptops\",\"verticalId\":\"ets\"}},\"moduleConfigs\":{\"lazy\":null,\"moduleLocation\":\"top\"},\"adsContext\":{\"brand\":\"\",\"categoryId\":\"3944_1089430_3951_8835131_1737838\",\"categoryName\":\"Electronics/Computers, Laptops and Tablets/Laptops/Laptops by Operating System/Windows OS Laptops\",\"dedupeList\":[\"\"],\"itemId\":\"\",\"locationContext\":{\"deliveryStore\":\"3081\",\"incatchment\":true,\"intent\":\"SHIPPING\",\"intentStrength\":\"IMPLICIT\",\"pickupStore\":\"3081\",\"stateCode\":\"CA\",\"storeFrontIds\":[{\"anchorStore\":true,\"deliveryStore\":true,\"deliveryWICAgencies\":[\"CA\"],\"pickupStore\":true,\"pickupWICAgencies\":[\"CA\"],\"stateOrProvinceCode\":\"CA\",\"storeId\":\"3081\"}],\"storeId\":\"3081\",\"zipCode\":\"95829\"},\"normKeyword\":\"laptop\",\"productName\":\"\",\"productTypeId\":\"\",\"verticalId\":\"ets\"},\"adRequestComposite\":{\"adsConfig\":\"{}\",\"categoryId\":\"\",\"facets\":\"\",\"isDebug\":false,\"isManualShelf\":false,\"keyword\":\"laptop\"},\"adContent\":{\"type\":\"SPONSORED_PRODUCTS\",\"dataV1\":{\"__typename\":\"SponsoredBrandsV1\",\"adUuid\":\"567fa63e-8e48-4a23-9bd5-1e563d6313ad\",\"adExpInfo\":null,\"moduleInfo\":\"{\\\"adExpId\\\":\\\"\\\",\\\"bucketId\\\":\\\"ace1_13644|ace2_default|ace3_default\\\",\\\"ghost\\\":[],\\\"brands\\\":[],\\\"dc\\\":\\\"eus2\\\",\\\"ed\\\":\\\"u7OzqIMVMhydxZeIph2cdg\\\"}\",\"brands\":[{\"logo\":{\"featuredHeadline\":\"Discover to latest from Windows\",\"featuredImage\":\"https://i5.walmartimages.com/dfw/f4368c8c-a7e5/k2-_f4fb10ee-1b1d-41e6-8ca9-f3a80522deca.v1.png\",\"featuredImageName\":\"Windows 11\",\"featuredUrl\":\"https://www.walmart.com/browse/windows-11/0?_refineresult=true\\u0026_be_shelf_id=8168629\\u0026search_sort=100\\u0026facet=shelf_id%3A8168629%7C%7Cretailer_type%3AWalmart\",\"logoClickTrackUrl\":\"https://www.walmart.com/sp/track?adUid=567fa63e-8e48-4a23-9bd5-1e563d6313ad\\u0026pgId=laptop\\u0026spQs=B-0ORuQ6BMVYu5ErviP0wtvLNeZ7zCQrsRq11qyo3B7qj4DCOTc4BRXtwMG4wY2qwca2aGn6I3vdZLCuF3Ka4mSJM_Nw7vFdGcq_Yd8rHL_rSaukVFCHigTX5chSdBRKEr61fpnu3xguuDezpqCR_tbZVQcA1cUiOLoKzOCRwmX4o0sq8PCQs5mxfTJ1ZwXLvQVqmXSsXMuO5BhMYWDGfhJYQopp8oJZLPpywhQUiKA\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sb-search-top\\u0026bkt=ace1_13644%7Cace2_default%7Cace3_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\\u0026addlInfo=%7EsbaItems%7C13566207291%7C13736423867%7C13509901545%7E\"},\"products\":[{\"usItemId\":\"13566207291\",\"offerId\":\"3BF7098CD3F235CCB77C273D728CC4D2\",\"badges\":{\"flags\":null,\"labels\":null,\"tags\":[],\"groups\":null,\"groupsV2\":[]},\"priceInfo\":{\"priceDisplayCodes\":{\"rollback\":null,\"reducedPrice\":null,\"eligibleForAssociateDiscount\":true,\"clearance\":null,\"strikethrough\":null,\"submapType\":null,\"priceDisplayCondition\":null,\"unitOfMeasure\":null,\"pricePerUnitUom\":null},\"currentPrice\":{\"price\":399,\"priceString\":\"$399.00\",\"priceDisplay\":\"$399.00\"},\"wasPrice\":null,\"listPrice\":null,\"priceRange\":null,\"unitPrice\":null,\"savingsAmount\":null,\"comparisonPrice\":null,\"subscriptionPrice\":null,\"subscriptionDiscountPrice\":null,\"wPlusEarlyAccessPrice\":null},\"preOrder\":{\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null},\"annualEventV2\":false,\"earlyAccessEvent\":false,\"isEarlyAccessItem\":false,\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"snapEligible\":false,\"showOptions\":false,\"sponsoredProduct\":{\"spQs\":\"EqUAAe56SwyHso94Uj7FEV2wH2jGVkQgIXSSlOq8yGK-e4xiXpJTM-magQE5DBHCxQBCXQ5xBon5e6yc1QUnASTgpKbS2GXZISXpA8yB62MAPSmgq94Vcnz4N3hoqxg1CKS6rrQ-mufZoxaRMS9QRBQmjr0xbf_D85st4e5BQiQRwLrNik0EN6YEN2MUGpESxHj4PqRhI5BiyHHtrMt-3zWnCrxMvenaM866OtIfCsk\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=567fa63e-8e48-4a23-9bd5-1e563d6313ad\\u0026pgId=laptop\\u0026spQs=EqUAAe56SwyHso94Uj7FEV2wH2jGVkQgIXSSlOq8yGK-e4xiXpJTM-magQE5DBHCxQBCXQ5xBon5e6yc1QUnASTgpKbS2GXZISXpA8yB62MAPSmgq94Vcnz4N3hoqxg1CKS6rrQ-mufZoxaRMS9QRBQmjr0xbf_D85st4e5BQiQRwLrNik0EN6YEN2MUGpESxHj4PqRhI5BiyHHtrMt-3zWnCrxMvenaM866OtIfCsk\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sb-search-top\\u0026bkt=ace1_13644%7Cace2_default%7Cace3_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\",\"spTags\":null},\"subscription\":{\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"canonicalUrl\":\"/ip/ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver/13566207291\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"numberOfReviews\":188,\"averageRating\":4.1,\"availabilityStatus\":\"IN_STOCK\",\"imageInfo\":{\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/ASUS-Vivobook-15-15-6-FHD-Laptop-Intel-i5-U15-8GB-RAM-512GB-SSD-Cool-Silver_ec382747-3630-476f-b757-27850fd5268d.1cb2e27459fdb9f8d341c4c0b104c191.jpeg\",\"allImages\":null},\"name\":\"ASUS Vivobook 15.6” FHD Laptop with Intel i5-1334U, Intel UHD Graphics, 8GB RAM, 512GB SSD, Cool Silver\",\"fulfillmentBadge\":null,\"classType\":\"REGULAR\",\"type\":\"REGULAR\",\"showAtc\":true,\"brand\":\"ASUS\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null},{\"usItemId\":\"13736423867\",\"offerId\":\"412854AAB1FA32C5B30E4FCE999D2AB1\",\"badges\":{\"flags\":[{\"__typename\":\"BaseBadge\",\"id\":\"L1300\",\"text\":\"Rollback\",\"key\":\"ROLLBACK\",\"query\":null,\"type\":\"ICON\",\"styleId\":\"PRIMARY_RED_BOLD\"}],\"labels\":null,\"tags\":[],\"groups\":null,\"groupsV2\":[{\"name\":\"flags\",\"flow\":\"HORIZONTAL\",\"pos\":\"ProdTileBadgeModule1\",\"members\":[{\"memType\":\"badge\",\"memId\":\"L1300\",\"memStyleId\":\"PRIMARY_ALIZARINRED_PL4\",\"fbMemStyleId\":null,\"content\":[{\"type\":\"ICON\",\"value\":null,\"styleId\":\"DOWNARROW_WHITE\",\"fbStyleId\":null,\"contDesc\":null,\"url\":null,\"actionId\":null},{\"type\":\"TEXT\",\"value\":\"Rollback\",\"styleId\":\"WHITE_BOLD\",\"fbStyleId\":null,\"contDesc\":null,\"url\":null,\"actionId\":null}]}]}]},\"priceInfo\":{\"priceDisplayCodes\":{\"rollback\":true,\"reducedPrice\":null,\"eligibleForAssociateDiscount\":true,\"clearance\":null,\"strikethrough\":true,\"submapType\":null,\"priceDisplayCondition\":null,\"unitOfMeasure\":null,\"pricePerUnitUom\":null},\"currentPrice\":{\"price\":719,\"priceString\":\"$719.00\",\"priceDisplay\":\"Now $719.00\"},\"wasPrice\":{\"price\":849.99,\"priceString\":\"$849.99\"},\"listPrice\":null,\"priceRange\":{\"minPrice\":719,\"maxPrice\":719,\"priceString\":\"From $719.00\"},\"unitPrice\":null,\"savingsAmount\":{\"amount\":130.99,\"priceString\":\"SAVE $130.99\"},\"comparisonPrice\":null,\"subscriptionPrice\":null,\"subscriptionDiscountPrice\":null,\"wPlusEarlyAccessPrice\":null},\"preOrder\":{\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null},\"annualEventV2\":false,\"earlyAccessEvent\":false,\"isEarlyAccessItem\":false,\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"snapEligible\":false,\"showOptions\":false,\"sponsoredProduct\":{\"spQs\":\"mUqqChUvHrigGvsjKHjXcJxxOMHMrqSzi0sgrNxa0Fi-e4xiXpJTM-magQE5DBHCxQBCXQ5xBon5e6yc1QUnASTgpKbS2GXZISXpA8yB62MAPSmgq94Vcnz4N3hoqxg1CKS6rrQ-mufZoxaRMS9QRBQmjr0xbf_D85st4e5BQiQRwLrNik0EN6YEN2MUGpESxHj4PqRhI5BiyHHtrMt-3zWnCrxMvenaM866OtIfCsk\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=567fa63e-8e48-4a23-9bd5-1e563d6313ad\\u0026pgId=laptop\\u0026spQs=mUqqChUvHrigGvsjKHjXcJxxOMHMrqSzi0sgrNxa0Fi-e4xiXpJTM-magQE5DBHCxQBCXQ5xBon5e6yc1QUnASTgpKbS2GXZISXpA8yB62MAPSmgq94Vcnz4N3hoqxg1CKS6rrQ-mufZoxaRMS9QRBQmjr0xbf_D85st4e5BQiQRwLrNik0EN6YEN2MUGpESxHj4PqRhI5BiyHHtrMt-3zWnCrxMvenaM866OtIfCsk\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sb-search-top\\u0026bkt=ace1_13644%7Cace2_default%7Cace3_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\",\"spTags\":null},\"subscription\":{\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"canonicalUrl\":\"/ip/ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i9-13900H-16GB-RAM-1TB-NVMe-SSD-Cool-Silver/13736423867\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"numberOfReviews\":110,\"averageRating\":4.6,\"availabilityStatus\":\"IN_STOCK\",\"imageInfo\":{\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/ASUS-Vivobook-16-16-WUXGA-Laptop-Intel-Core-i9-13900H-16GB-RAM-1TB-NVMe-SSD-Cool-Silver_95b455b3-cf70-4603-8ef0-529c8eb322fd.80b7caac4a8472d8fd43dbd3b5a4d5e4.jpeg\",\"allImages\":null},\"name\":\"ASUS Vivobook 16 Laptop, Intel® Core™ i9-13900H, 16GB, 1TB, Windows 11 Home, Cool Silver, F1605VA-WS96\",\"fulfillmentBadge\":null,\"classType\":\"REGULAR\",\"type\":\"REGULAR\",\"showAtc\":true,\"brand\":\"ASUS\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null},{\"usItemId\":\"13509901545\",\"offerId\":\"BDCD81AFF6C03DDA84EAFA2F550C3A62\",\"badges\":{\"flags\":null,\"labels\":null,\"tags\":[],\"groups\":null,\"groupsV2\":[]},\"priceInfo\":{\"priceDisplayCodes\":{\"rollback\":null,\"reducedPrice\":null,\"eligibleForAssociateDiscount\":true,\"clearance\":null,\"strikethrough\":null,\"submapType\":null,\"priceDisplayCondition\":null,\"unitOfMeasure\":null,\"pricePerUnitUom\":null},\"currentPrice\":{\"price\":979,\"priceString\":\"$979.00\",\"priceDisplay\":\"$979.00\"},\"wasPrice\":null,\"listPrice\":null,\"priceRange\":{\"minPrice\":979,\"maxPrice\":979,\"priceString\":\"From $979.00\"},\"unitPrice\":null,\"savingsAmount\":null,\"comparisonPrice\":null,\"subscriptionPrice\":null,\"subscriptionDiscountPrice\":null,\"wPlusEarlyAccessPrice\":null},\"preOrder\":{\"streetDate\":null,\"streetDateDisplayable\":null,\"streetDateType\":null,\"isPreOrder\":false,\"preOrderMessage\":null,\"preOrderStreetDateMessage\":null},\"annualEventV2\":false,\"earlyAccessEvent\":false,\"isEarlyAccessItem\":false,\"eventAttributes\":{\"priceFlip\":false,\"specialBuy\":false},\"snapEligible\":false,\"showOptions\":false,\"sponsoredProduct\":{\"spQs\":\"q8cJDqNIMRrVbfEJl3gTSkt9Tln4CxCOOxRR9Cg8_vq-e4xiXpJTM-magQE5DBHCxQBCXQ5xBon5e6yc1QUnASTgpKbS2GXZISXpA8yB62MAPSmgq94Vcnz4N3hoqxg1CKS6rrQ-mufZoxaRMS9QRBQmjr0xbf_D85st4e5BQiQRwLrNik0EN6YEN2MUGpESxHj4PqRhI5BiyHHtrMt-3zWnCrxMvenaM866OtIfCsk\",\"clickBeacon\":\"https://www.walmart.com/sp/track?adUid=567fa63e-8e48-4a23-9bd5-1e563d6313ad\\u0026pgId=laptop\\u0026spQs=q8cJDqNIMRrVbfEJl3gTSkt9Tln4CxCOOxRR9Cg8_vq-e4xiXpJTM-magQE5DBHCxQBCXQ5xBon5e6yc1QUnASTgpKbS2GXZISXpA8yB62MAPSmgq94Vcnz4N3hoqxg1CKS6rrQ-mufZoxaRMS9QRBQmjr0xbf_D85st4e5BQiQRwLrNik0EN6YEN2MUGpESxHj4PqRhI5BiyHHtrMt-3zWnCrxMvenaM866OtIfCsk\\u0026storeId=3081\\u0026pt=search\\u0026mloc=sb-search-top\\u0026bkt=ace1_13644%7Cace2_default%7Cace3_default\\u0026pltfm=desktop\\u0026rdf=0\\u0026plmt=__plmt__\\u0026eventST=__eventST__\\u0026pos=__pos__\\u0026bt=__bt__\\u0026tn=WMT\\u0026wtn=elh9ie\\u0026tax=3944_1089430_3951_8835131_1737838\",\"spTags\":null},\"subscription\":{\"subscriptionEligible\":false,\"showSubscriptionCTA\":false,\"subscriptionTransactable\":false},\"canonicalUrl\":\"/ip/ASUS-Zenbook-14-14-WUXGA-OLED-Touch-Laptop-Copilot-PC-with-AMD-Ryzen-AI-7-350-AMD-Radeon-Graphics-32GB-RAM-1TB-NVMe-SSD-Jade-Black/13509901545\",\"conditionV2\":{\"code\":1,\"groupCode\":1},\"numberOfReviews\":251,\"averageRating\":4.2,\"availabilityStatus\":\"IN_STOCK\",\"imageInfo\":{\"thumbnailUrl\":\"https://i5.walmartimages.com/seo/ASUS-Zenbook-14-14-WUXGA-OLED-Touch-Laptop-Copilot-PC-with-AMD-Ryzen-AI-7-350-AMD-Radeon-Graphics-32GB-RAM-1TB-NVMe-SSD-Jade-Black_85116be3-1e71-4878-8086-2c9cb82e07d7.c019b15a0da057e6b80e2da3f2b1d08a.jpeg\",\"allImages\":null},\"name\":\"ASUS Zenbook 14 inch OLED WUXGA Touch Windows Laptop AMD Ryzen AI7 32GB RAM 1TB SSD Jade Black\",\"fulfillmentBadge\":null,\"classType\":\"REGULAR\",\"type\":\"REGULAR\",\"showAtc\":true,\"brand\":\"ASUS\",\"sellerId\":\"F55CDC31AB754BB68FE0B39041159D63\",\"sellerName\":\"Walmart.com\",\"sellerType\":null}],\"customInfo\":{\"images\":[]}}]}}}}},{\"__typename\":\"TempoModule\",\"type\":\"SearchFitment\",\"name\":\"Search Fitment Module\",\"version\":8,\"moduleId\":\"4e756e28-80b7-499d-aae4-b46bbc21b554\",\"schedule\":{\"priority\":1},\"matchedTrigger\":{\"zone\":\"topZone5\"},\"configs\":{\"__typename\":\"TempoWM_GLASSWWWSearchFitmentModuleConfigs\",\"fitments\":null}},{\"__typename\":\"TempoModule\",\"type\":\"SearchNonItem\",\"name\":\"Search Non Item Module\",\"version\":1,\"moduleId\":\"8a6208c9-6ee9-4d9e-96a3-3b2cad2d690e\",\"schedule\":{\"priority\":1},\"matchedTrigger\":{\"zone\":\"topZone6\"},\"configs\":{\"__typename\":\"TempoWM_GLASSWWWSearchNonItemConfigs\",\"title\":null,\"subTitle\":null,\"urlLinkText\":null,\"url\":null}},{\"__typename\":\"TempoModule\",\"type\":\"SkylineDisplayAd\",\"name\":\"Skyline Display Ad\",\"version\":9,\"moduleId\":\"d82a07bd-471a-46ef-9926-63ae0bd7dbc2\",\"schedule\":{\"priority\":1},\"matchedTrigger\":{\"zone\":\"skylineZone\"},\"configs\":{\"__typename\":\"TempoWM_GLASSWWWSkylineDisplayAdConfigs\",\"_rawConfigs\":{\"clientCapabilities\":null,\"lazy\":\"400\",\"moduleLocation\":\"top\"},\"ad\":null}},{\"__typename\":\"TempoModule\",\"type\":\"SponsoredProductCarousel\",\"name\":\"Sponsored Product Carousel - rweb\",\"version\":5,\"moduleId\":\"304f501d-075d-4a59-89aa-6e23bf0fdb64\",\"schedule\":{\"priority\":1},\"matchedTrigger\":{\"zone\":\"bottomZone2\"},\"configs\":{\"__typename\":\"TempoWM_GLASSWWWSponsoredProductCarouselConfigs\",\"_rawConfigs\":{\"CarouselType\":\"default\",\"lazy\":\"1000\",\"moduleLocation\":\"bottom\",\"title\":\"Products you may also like\"}}},{\"__typename\":\"TempoModule\",\"type\":\"EnricherModule\",\"name\":\"Enricher Static Module\",\"version\":5,\"moduleId\":\"enricher-static-module-id\",\"schedule\":{\"priority\":0},\"matchedTrigger\":{\"zone\":\"INVALID\"},\"configs\":{\"__typename\":\"EnricherModuleConfigsV1\",\"zoneV1\":[{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"extraData\":{\"cov\":[],\"isBadSplitItem\":false,\"p13nError\":null,\"seeSimilarButtonText\":null,\"shopSimilarCoverage\":null,\"showSeeSimilarButton\":null,\"sizeReferer\":null},\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"f97639d6-f314-44fb-8a03-d73b1d334569\",\"zone\":\"pillsTopZone\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"d80c120b-3158-42ac-9525-9b22e6c4fbac\",\"zone\":\"pillsTopZone\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"2d12082a-7a86-42d2-ae8f-38e9fe37f014\",\"zone\":\"tileTakeOverProductZone\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"7d661833-d81c-44e8-b168-e24fbc33ec61\",\"zone\":\"bottomZone1\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"8d6b5e69-db36-453a-bd8a-fcf0de045072\",\"zone\":\"topZone3\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"ce73cb9e-2029-4083-80c4-d6aced706cf0\",\"zone\":\"sponsoredBrandZone\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"4e756e28-80b7-499d-aae4-b46bbc21b554\",\"zone\":\"topZone5\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"8a6208c9-6ee9-4d9e-96a3-3b2cad2d690e\",\"zone\":\"topZone6\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"d82a07bd-471a-46ef-9926-63ae0bd7dbc2\",\"zone\":\"skylineZone\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"6c1838e4-a302-47ba-87c1-6c5ab213c928\",\"zone\":\"sponsoredVideoAdZone\"},{\"aeMessageId\":\"f50b278c-41aa-4961-b2b9-76e052e6940c\",\"isNativeLazyLoaded\":false,\"isP13nBtfModule\":false,\"moduleId\":\"304f501d-075d-4a59-89aa-6e23bf0fdb64\",\"zone\":\"bottomZone2\"}]}}],\"layouts\":[{\"id\":\"searchDesktop\",\"layout\":{\"channel\":{\"id\":\"87674fe3-1742-4650-8e11-8d0c6acfe836\",\"status\":\"ACTIVE\"},\"definition\":{\"content\":[{\"content\":{\"id\":\"top\",\"mapping\":[{\"options\":{\"refId\":\"skylineZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"sponsoredBrandZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"adPlaceholderModuleZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone1\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone2\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone3\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"pillsTopZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone4\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone5\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"nonProductTopZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone6\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone7\"},\"type\":\"ZONE\"}],\"type\":\"slot\"},\"flow\":\"vertical\",\"type\":\"container\"},{\"content\":{\"id\":\"stacks\",\"mapping\":[{\"options\":{\"refId\":\"benefitProgramBannerZone\"},\"type\":\"ZONE\"},{\"options\":{\"displayInTempo\":true,\"refId\":\"stacks1\",\"tempoLabel\":\"Stacks Zone\"},\"type\":\"EXTERNAL\"},{\"options\":{\"refId\":\"browsingHistoryZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"bottomZone1\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"bottomZone2\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"bottomZone3\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"bottomZone4\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"bottomZone5\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"tileTakeOverProductZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"tileDisplayAdZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"sponsoredVideoAdZone\"},\"type\":\"ZONE\"}],\"type\":\"slot\"},\"flow\":\"vertical\",\"type\":\"container\"}],\"flow\":\"vertical\",\"type\":\"container\"},\"name\":\"Search Page - Desktop\",\"status\":\"ACTIVE\",\"type\":\"searchDesktop\",\"version\":\"1.279-SNAPSHOT 1770617859210 looper\"}},{\"id\":\"base\",\"layout\":{\"channel\":{\"id\":\"87674fe3-1742-4650-8e11-8d0c6acfe836\",\"status\":\"ACTIVE\"},\"definition\":{\"content\":[{\"content\":{\"id\":\"mainContentSlot\",\"mapping\":[{\"options\":{\"refId\":\"skylineZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"sponsoredBrandZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"adPlaceholderModuleZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone1\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone2\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone3\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"pillsTopZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone4\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone5\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"nonProductTopZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone6\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"topZone7\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"benefitProgramBannerZone\"},\"type\":\"ZONE\"},{\"options\":{\"displayInTempo\":true,\"refId\":\"stacks1\",\"tempoLabel\":\"Stacks Zone\"},\"type\":\"EXTERNAL\"},{\"options\":{\"refId\":\"browsingHistoryZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"bottomZone1\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"bottomZone2\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"bottomZone3\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"bottomZone4\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"bottomZone5\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"tileTakeOverProductZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"tileDisplayAdZone\"},\"type\":\"ZONE\"},{\"options\":{\"refId\":\"sponsoredVideoAdZone\"},\"type\":\"ZONE\"}],\"type\":\"slot\"},\"flow\":\"vertical\",\"type\":\"container\"}],\"flow\":\"vertical\",\"type\":\"container\"},\"name\":\"Base\",\"status\":\"ACTIVE\",\"type\":\"base\",\"version\":\"1.279-SNAPSHOT 1770617859210 looper\"}}],\"pageMetadata\":{\"location\":{\"pickupStore\":\"3081\",\"deliveryStore\":\"3081\",\"intent\":\"SHIPPING\",\"postalCode\":\"95829\",\"stateOrProvinceCode\":\"CA\",\"city\":\"Sacramento\",\"storeId\":\"3081\",\"accessPointId\":null,\"accessType\":null,\"spokeNodeId\":null,\"storeFrontIds\":[{\"anchorStore\":true,\"deliveryStore\":true,\"deliveryWICAgencies\":[\"CA\"],\"pickupStore\":true,\"pickupWICAgencies\":[\"CA\"],\"stateOrProvinceCode\":\"CA\",\"storeId\":\"3081\"}],\"intentStrength\":\"IMPLICIT\"},\"pageContext\":{\"customerContext\":{\"customerId\":null,\"isActiveMember\":false,\"isPaidMember\":false,\"paymentMethodMetaData\":[],\"purseTags\":[]},\"searchNormalize\":{\"analytics_log\":{\"fe_log\":{\"dept\":\"/3944/1089430/3951/8835131/1737838\",\"g\":\"S\",\"ms\":0,\"msf\":2,\"mso\":2,\"msov\":0,\"pts\":\"Laptop Computers:0.998046875\",\"qa\":\"default\",\"s\":\"b\",\"sp_elig\":false,\"sps\":0.25884318,\"tkc\":1,\"tpt\":\"Laptop Computers\",\"trf\":\"ht\"},\"sot_log\":{},\"substitute_log\":{\"altph\":\"1\",\"elig\":\"Y\",\"trig\":\"Y\"}},\"normalized_query\":\"laptop\",\"original_query\":\"laptop\",\"productTypeSpecificityScore\":{\"quantile\":0.5559,\"score\":0.8485761},\"product_type\":[{\"name\":\"Laptop Computers\",\"score\":0.998046875,\"source\":\"classifier\"}],\"rewritten_query\":\"laptop\",\"specificity\":\"broad\",\"specificityScore\":{\"quantile\":0.1458,\"score\":0.25884318},\"top_query_cat_path\":\"/3944/1089430/3951/8835131/1737838\",\"top_query_cat_path_name\":\"/Electronics/Computers, Laptops and Tablets/Laptops/Laptops by Operating System/Windows OS Laptops\",\"verticalId\":\"ets\"}}}}},\"initialSearchQueryVariables\":{\"id\":\"\",\"dealsId\":\"\",\"query\":\"laptop\",\"nudgeContext\":\"\",\"page\":1,\"prg\":\"desktop\",\"catId\":\"\",\"facet\":\"\",\"sort\":\"best_match\",\"rawFacet\":\"\",\"seoPath\":\"\",\"ps\":40,\"limit\":40,\"ptss\":\"\",\"trsp\":\"\",\"beShelfId\":\"\",\"recall_set\":\"\",\"module_search\":\"\",\"min_price\":\"\",\"max_price\":\"\",\"storeSlotBooked\":\"\",\"additionalQueryParams\":{\"hidden_facet\":null,\"translation\":null,\"isMoreOptionsTileEnabled\":true,\"isGenAiEnabled\":true,\"rootDimension\":\"\",\"altQuery\":\"\",\"selectedFilter\":\"\",\"neuralSearchSeeAll\":false,\"isModuleArrayReq\":false,\"isLMPBrowsePage\":false},\"searchArgs\":{\"query\":\"laptop\",\"cat_id\":\"\",\"prg\":\"desktop\",\"facet\":\"\"},\"ffAwareSearchOptOut\":false,\"enableDesktopHighlights\":false,\"enableVolumePricing\":false,\"enableCopyBlock\":true,\"enableVariantCount\":false,\"enableSlaBadgeV2\":false,\"fitmentFieldParams\":{\"powerSportEnabled\":true,\"dynamicFitmentEnabled\":true,\"extendedAttributesEnabled\":true,\"extendedAttributesV2Enabled\":false,\"fuelTypeEnabled\":true},\"fitmentSearchParams\":{\"id\":\"\",\"dealsId\":\"\",\"query\":\"laptop\",\"nudgeContext\":\"\",\"page\":1,\"prg\":\"desktop\",\"catId\":\"\",\"facet\":\"\",\"sort\":\"best_match\",\"rawFacet\":\"\",\"seoPath\":\"\",\"ps\":40,\"limit\":40,\"ptss\":\"\",\"trsp\":\"\",\"beShelfId\":\"\",\"recall_set\":\"\",\"module_search\":\"\",\"min_price\":\"\",\"max_price\":\"\",\"storeSlotBooked\":\"\",\"additionalQueryParams\":{\"hidden_facet\":null,\"translation\":null,\"isMoreOptionsTileEnabled\":true,\"isGenAiEnabled\":true,\"rootDimension\":\"\",\"altQuery\":\"\",\"selectedFilter\":\"\",\"neuralSearchSeeAll\":false,\"isModuleArrayReq\":false,\"isLMPBrowsePage\":false},\"searchArgs\":{\"query\":\"laptop\",\"cat_id\":\"\",\"prg\":\"desktop\",\"facet\":\"\"},\"ffAwareSearchOptOut\":false,\"enableDesktopHighlights\":false,\"enableVolumePricing\":false,\"enableCopyBlock\":true,\"enableVariantCount\":false,\"cat_id\":\"\",\"_be_shelf_id\":\"\"},\"searchParams\":{\"id\":\"\",\"dealsId\":\"\",\"query\":\"laptop\",\"nudgeContext\":\"\",\"page\":1,\"prg\":\"desktop\",\"catId\":\"\",\"facet\":\"\",\"sort\":\"best_match\",\"rawFacet\":\"\",\"seoPath\":\"\",\"ps\":40,\"limit\":40,\"ptss\":\"\",\"trsp\":\"\",\"beShelfId\":\"\",\"recall_set\":\"\",\"module_search\":\"\",\"min_price\":\"\",\"max_price\":\"\",\"storeSlotBooked\":\"\",\"additionalQueryParams\":{\"hidden_facet\":null,\"translation\":null,\"isMoreOptionsTileEnabled\":true,\"isGenAiEnabled\":true,\"rootDimension\":\"\",\"altQuery\":\"\",\"selectedFilter\":\"\",\"neuralSearchSeeAll\":false,\"isModuleArrayReq\":false,\"isLMPBrowsePage\":false},\"searchArgs\":{\"query\":\"laptop\",\"cat_id\":\"\",\"prg\":\"desktop\",\"facet\":\"\"},\"ffAwareSearchOptOut\":false,\"enableDesktopHighlights\":false,\"enableVolumePricing\":false,\"enableCopyBlock\":true,\"enableVariantCount\":false,\"cat_id\":\"\",\"_be_shelf_id\":\"\"},\"fetchMarquee\":true,\"fetchSkyline\":true,\"fetchGallery\":false,\"fetchSbaTop\":true,\"fetchDac\":true,\"tenant\":\"WM_GLASS\",\"customerIntent\":null,\"enablePortableFacets\":true,\"enableCachingOnEmptyResultsForBrowseAndSearch\":true,\"enableFacetCount\":true,\"enableFashionTopNav\":false,\"enableRelatedSearches\":true,\"enableMultiSave\":false,\"enableInStoreShelfMessage\":false,\"enableSellerType\":false,\"enableItemRank\":false,\"enableOptimisticWeightUpdate\":false,\"enableAdditionalSearchDepartmentAnalytics\":true,\"enableFulfillmentTagsEnhacements\":false,\"enableRxDrugScheduleModal\":false,\"enablePromoData\":true,\"enableAdsPromoData\":false,\"enablePromotionMessages\":false,\"enableDebugAnalyticsTags\":false,\"enableShopSimilarBottomSheet\":false,\"fetchSBAV1\":true,\"fungibilityEnabled\":false,\"enableCanAddToList\":false,\"enableIsFreeWarranty\":false,\"enableSignInToSeePrice\":false,\"enableItemLimits\":false},\"dehydratedSearchCv\":{\"enableLCPHighFetchPriority\":true,\"enableLCPSingleImagePrefetch\":false},\"countryRegion\":{\"countryCode\":\"not-available\",\"regionCode\":\"IDF\"},\"ssrTraceparent\":\"00-5657fc8271d468dcfdd9b7f5a1c07d03-cfee2aa74afd2a25-01\",\"headerObj\":{},\"renderViewIdFromHeader\":\"941accdc-f602-4d3e-be12-c30f0fa6d5a1\",\"traceParents\":[\"00-5657fc8271d468dcfdd9b7f5a1c07d03-e1d934c981f86e55-01\",\"00-258fab6c8a1f8ccaf82a58bddd0fee93-bd3e5997999ba297-01\",\"00-5657fc8271d468dcfdd9b7f5a1c07d03-cfee2aa74afd2a25-01\"],\"psych\":{\"isDesktop\":true,\"isBot\":false,\"isMobile\":false,\"trafficType\":\"customer\",\"browserName\":\"Chrome\",\"isAkamaiBot\":\"1\",\"visitType\":\"fv\"},\"isomorphicSessionId\":\"-wU3ZEvo2ebBPfBuk15xM\",\"trace\":{\"traceId\":\"5657fc8271d468dcfdd9b7f5a1c07d03\",\"spanId\":\"511fffbcae73a436\",\"traceFlags\":1},\"isCaching\":false,\"queryContextCacheId\":9029,\"bootstrapData\":{\"account\":{\"data\":{\"account\":null}},\"cart\":null,\"header\":{\"data\":{\"contentLayout\":{\"modules\":[]}},\"headers\":{}},\"footer\":{\"data\":{\"contentLayout\":{\"modules\":[{\"moduleId\":\"c5a1e58b-fe47-49be-a46d-fba6fc474311\",\"name\":\"Full Footer Module -  03.04.2026 Privacy URL Update\",\"type\":\"GlobalFooterLinks\",\"matchedTrigger\":{\"zone\":\"footerZone1\"},\"configs\":{\"subLinks\":[{\"link\":{\"linkText\":\"All Departments\",\"title\":\"All Departments\",\"clickThrough\":{\"type\":\"url\",\"value\":\"/all-departments\",\"rawValue\":\"/all-departments\"},\"uid\":\"p_0rZRrZ\"},\"isSFLink\":\"False\",\"openInNewTab\":\"False\"},{\"link\":{\"linkText\":\"Store Directory\",\"title\":\"Store Directory\",\"clickThrough\":{\"type\":\"url\",\"value\":\"/store/directory\",\"rawValue\":\"/store/directory\"},\"uid\":\"WMS8mvl1\"},\"isSFLink\":\"False\",\"openInNewTab\":\"True\"},{\"link\":{\"linkText\":\"Careers\",\"title\":\"Careers\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://careers.walmart.com/\",\"rawValue\":\"https://careers.walmart.com/\"},\"uid\":\"rEeiEOZQ\"},\"isSFLink\":\"False\",\"openInNewTab\":\"True\"},{\"link\":{\"linkText\":\"Our Company\",\"title\":\"Our Company\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://corporate.walmart.com/\",\"rawValue\":\"https://corporate.walmart.com/\"},\"uid\":\"z45mcDRb\"},\"isSFLink\":\"False\",\"openInNewTab\":\"True\"},{\"link\":{\"linkText\":\"Sell on Walmart.com\",\"title\":\"Sell on Walmart.com\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://marketplace.walmart.com/?utm_source=Walmart.com\\u0026utm_medium=link\\u0026utm_campaign=footer\",\"rawValue\":\"https://marketplace.walmart.com/?utm_source=Walmart.com\\u0026utm_medium=link\\u0026utm_campaign=footer\"},\"uid\":\"zHqLVrQb\"},\"isSFLink\":\"False\",\"openInNewTab\":\"True\"},{\"link\":{\"linkText\":\"Help\",\"title\":\"Help\",\"clickThrough\":{\"type\":\"url\",\"value\":\"/help\",\"rawValue\":\"/help\"},\"uid\":\"zSye7Ysa\"},\"isSFLink\":\"False\",\"openInNewTab\":\"False\"},{\"link\":{\"linkText\":\"Product Recalls\",\"title\":\"Product Recalls\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://corporate.walmart.com/recalls\",\"rawValue\":\"https://corporate.walmart.com/recalls\"},\"uid\":\"j_rVS_Ch\"},\"isSFLink\":\"False\",\"openInNewTab\":\"True\"},{\"link\":{\"linkText\":\"Accessibility\",\"title\":\"Accessibility\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://www.walmart.com/help/article/responsible-disclosure-and-accessibility-policies/0f173dab8bd942da84b1cd7ab5ffc3cb\",\"rawValue\":\"https://www.walmart.com/help/article/responsible-disclosure-and-accessibility-policies/0f173dab8bd942da84b1cd7ab5ffc3cb\"},\"uid\":\"MnVfX6Zt\"},\"isSFLink\":\"False\",\"openInNewTab\":\"True\"},{\"link\":{\"linkText\":\"Tax Exempt Program\",\"title\":\"Tax Exempt Program\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://www.walmart.com/cp/tax-exemption-program/8480422\",\"rawValue\":\"https://www.walmart.com/cp/tax-exemption-program/8480422\"},\"uid\":\"C0zSGOeJ\"},\"isSFLink\":\"False\",\"openInNewTab\":\"False\"},{\"link\":{\"linkText\":\"Get the Walmart App\",\"title\":\"Get the Walmart App\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://walmart.onelink.me/UIev?pid=walmart.com\\u0026af_web_dp=https%3A%2F%2Fwww.walmart.com%2Fcp%2Fwalmart-mobile-app%2F1087865\\u0026c=Walmart.com%20Site%20Footer\\u0026af_dp=walmart%3A%2F%2F\",\"rawValue\":\"https://walmart.onelink.me/UIev?pid=walmart.com\\u0026af_web_dp=https%3A%2F%2Fwww.walmart.com%2Fcp%2Fwalmart-mobile-app%2F1087865\\u0026c=Walmart.com%20Site%20Footer\\u0026af_dp=walmart%3A%2F%2F\"},\"uid\":\"HA_fU6mB\"},\"isSFLink\":\"False\",\"openInNewTab\":\"False\"},{\"link\":{\"linkText\":\"Safety Data Sheet\",\"title\":\"Safety Data Sheet\",\"clickThrough\":{\"type\":\"url\",\"value\":\"http://msds.walmartstores.com/\",\"rawValue\":\"http://msds.walmartstores.com/\"},\"uid\":\"ooHTvu5n\"},\"isSFLink\":\"False\",\"openInNewTab\":\"False\"},{\"link\":{\"linkText\":\"Terms of Use\",\"title\":\"Terms of Use\",\"clickThrough\":{\"type\":\"url\",\"value\":\"/help/article/walmart-com-terms-of-use/3b75080af40340d6bbd596f116fae5a0\",\"rawValue\":\"/help/article/walmart-com-terms-of-use/3b75080af40340d6bbd596f116fae5a0\"},\"uid\":\"6qtVgyYW\"},\"isSFLink\":\"True\",\"openInNewTab\":\"False\"},{\"link\":{\"linkText\":\"Privacy Notice\",\"title\":\"Privacy Notice\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://corporate.walmart.com/privacy-security/walmart-privacy-notice\",\"rawValue\":\"https://corporate.walmart.com/privacy-security/walmart-privacy-notice\"},\"uid\":\"S59VNqei\"},\"isSFLink\":\"True\",\"openInNewTab\":\"True\"},{\"link\":{\"linkText\":\"California Supply Chain Act\",\"title\":\"California Supply Chain Act\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://corporate.walmart.com/california-transparency\",\"rawValue\":\"https://corporate.walmart.com/california-transparency\"},\"uid\":\"7VlriVVU\"},\"isSFLink\":\"True\",\"openInNewTab\":\"True\"},{\"link\":{\"linkText\":\"Your Privacy Choices\",\"title\":\"Your Privacy Choices\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://www.walmart.com/account/api/ccpa-intake?native=false\\u0026app=gm\\u0026type=sod\",\"rawValue\":\"https://www.walmart.com/account/api/ccpa-intake?native=false\\u0026app=gm\\u0026type=sod\"},\"uid\":\"hPhhkd2N\"},\"isSFLink\":\"True\",\"openInNewTab\":\"True\"},{\"link\":{\"linkText\":\"Customer Privacy Center\",\"title\":\"Customer Privacy Center\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://www.walmart.com/privacy-center\",\"rawValue\":\"https://www.walmart.com/privacy-center\"},\"uid\":\"TMu7pXGK\"},\"isSFLink\":\"True\",\"openInNewTab\":\"True\"},{\"link\":{\"linkText\":\"Notice at Collection\",\"title\":\"Notice at Collection\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://corporate.walmart.com/privacy-security/california-privacy-rights#what-are-the-categories-of-personal-information-collected\",\"rawValue\":\"https://corporate.walmart.com/privacy-security/california-privacy-rights#what-are-the-categories-of-personal-information-collected\"},\"uid\":\"fwq0ESNx\"},\"isSFLink\":\"True\",\"openInNewTab\":\"True\"},{\"link\":{\"linkText\":\"AdChoices\",\"title\":\"AdChoices\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://corporate.walmart.com/privacy-security/walmart-privacy-notice#interest-based-advertising\",\"rawValue\":\"https://corporate.walmart.com/privacy-security/walmart-privacy-notice#interest-based-advertising\"},\"uid\":\"2MC4OX3b\"},\"isSFLink\":\"False\",\"openInNewTab\":\"False\"},{\"link\":{\"linkText\":\"Consumer Health Data Privacy Notices\",\"title\":\"Consumer Health Data Privacy Notices\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://corporate.walmart.com/privacy-security/walmart-consumer-health-data-privacy-notices\",\"rawValue\":\"https://corporate.walmart.com/privacy-security/walmart-consumer-health-data-privacy-notices\"},\"uid\":\"BFEfDk8O\"},\"isSFLink\":\"False\",\"openInNewTab\":\"False\"},{\"link\":{\"linkText\":\"Brand Shop Directory\",\"title\":\"Brand Shop Directory\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://www.walmart.com/brand/branddirectory\",\"rawValue\":\"https://www.walmart.com/brand/branddirectory\"},\"uid\":\"kRUNYUfV\"},\"isSFLink\":\"False\",\"openInNewTab\":\"False\"},{\"link\":{\"linkText\":\"Pharmacy\",\"title\":\"Pharmacy\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://www.walmart.com/cp/pharmacy/5431?povid=HWS_GlobalFooter_Pharmacy\",\"rawValue\":\"https://www.walmart.com/cp/pharmacy/5431?povid=HWS_GlobalFooter_Pharmacy\"},\"uid\":\"_75tDuFD\"},\"isSFLink\":\"False\",\"openInNewTab\":\"False\"},{\"link\":{\"linkText\":\"Walmart Business\",\"title\":\"Walmart Business\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://www.walmart.com/cp/walmart-business/7810722?povid=7810722_POV_WMTfooter\",\"rawValue\":\"https://www.walmart.com/cp/walmart-business/7810722?povid=7810722_POV_WMTfooter\"},\"uid\":\"4J9yuD3n\"},\"isSFLink\":\"False\",\"openInNewTab\":\"False\"},{\"link\":{\"linkText\":\"#IYWYK\",\"title\":\"Walmart In the Know is a social media photo feed\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://www.walmart.com/cp/walmart-in-the-know/7781927\",\"rawValue\":\"https://www.walmart.com/cp/walmart-in-the-know/7781927\"},\"uid\":\"aBOKS005\"},\"isSFLink\":\"False\",\"openInNewTab\":\"False\"},{\"link\":{\"linkText\":\"Delete Account\",\"title\":\"Delete Account\",\"clickThrough\":{\"type\":\"url\",\"value\":\"https://www.walmart.com/account/login?vid=oaoh\\u0026tid=0\\u0026returnUrl=%2Faccount%2Fdelete-account\",\"rawValue\":\"https://www.walmart.com/account/login?vid=oaoh\\u0026tid=0\\u0026returnUrl=%2Faccount%2Fdelete-account\"},\"uid\":\"R0fwIvXe\"},\"isSFLink\":\"False\",\"openInNewTab\":\"False\"}]}}]}},\"headers\":{}},\"cv\":{\"reviews\":{\"_all_\":{\"enableSellerReviewsOnTop\":false,\"disablePDPWriteReview\":false,\"enableRedirectToRCButton\":false,\"enableOptimizedLegalDisclosure\":false,\"enableWarEnhancementV2\":false,\"enableAccountReviewsCount\":true,\"enableReviewerCommunityDesktop\":true,\"disableDublicateSubmission\":true,\"enableRecognizedReviewer\":true,\"enableUnpublishedErrorHandling\":true,\"enableSkipSellerReviews\":true,\"enableEnhancedWriteReview\":true,\"enableVoiceReview\":true,\"enableInp_delayRouterTransitionForOneFrame\":true,\"enableRevampedHistogram\":true,\"enableHideZeroReviews\":false,\"enableSamplingTaxFlow\":true,\"enableRatingsAndReviews\":false,\"reviewSummaryVariation\":4,\"enableReviewSummaryFeedbackCount\":false,\"hideReviewerNameSelection\":true,\"termsConditionUrl\":\"https://www.walmart.com/help/article/ratings-and-reviews-terms-of-use/0048b13a848c47279cf37023d6ef536d\",\"enableReviewSummary\":true,\"disableLegacyWriteReview\":true,\"enableReviewHeaderRedesign\":false,\"enableRevampedReviewCard\":true,\"enableReviewTranslation\":false,\"enableDraftReviews\":false,\"enableEnhancedSellerReviews\":true,\"enableItemConditionsV2\":true,\"enableCustomerFeedbackLoop\":true,\"enableReviewSummaryHeader\":false,\"enableSocialProofSentiment\":false,\"enableReviewerCommunityTempoModules\":false,\"enableItemConditions\":true,\"enableUgcSellerInfo\":true,\"enableReviewStrikethrough\":true,\"enableReviewImageUpload\":true,\"displayMarketDisclaimerTC\":false,\"enableHarmfulReviewFeedback\":true,\"enableServerSideRedirection\":true,\"enableReviewSummaryFooter\":false,\"enableRatingsOnlyReview\":true,\"enableTopReviewerBadge\":true,\"enableMultiItemReviews\":true,\"enableFrequentMentions\":true,\"enableSorting\":true,\"enableFilterRating\":true,\"iovationUrl\":\"https://mpsnare.iesnare.com/snare.js\",\"enablePhotosInReviews\":true,\"endpointReviewImageUploadApiKey\":\"baev9cc0r5lrngfhfq5esq8xl\",\"ratingsOnlyEnabledList\":\"PH,WAR,ODP\",\"enableFeatureTest\":false,\"enableConvAIVoiceReview\":false,\"enableWriteReview\":false,\"enableQuestionAndAnswer\":false,\"enableReviewMore\":true,\"enableReviewBadges\":true,\"ugcRelayServiceUrl\":\"wss://www.walmart.com/mmrs\",\"clientFetchTimeoutMs\":2000}},\"marketplace\":{\"_all_\":{\"enableMobileDialog\":false,\"enableSellerTileV2\":false,\"enableProgramCardRedesign\":true,\"enableSubCategory\":true,\"isWicEnabled\":true,\"enableMpPickupAtcIntent\":false,\"enableMoreSellerReviews\":false,\"enableLMPExperience\":true,\"enableItemCommentValidation\":false,\"enableLocalMarketplaceDGFv2\":true,\"enableSellerFacetLink\":false,\"enableResoldOffersCarousel\":true,\"enableDeliverySlaDateISO\":true,\"enableSellerFulfillmentDistance\":true,\"enableSellerTileV2Rating\":false,\"enableSlaBadgeV2\":false,\"isSellerStoreUXEnhancementEnabled\":true,\"sellerPageLinkEnable\":true,\"sellerWriteReviewLinkEnable\":false,\"lmpDGFv2AllowedPageList\":\"ShopLocalCategoryPage,ShopLocalGlobalPage,ShopLocalSellers\",\"enableRevampedReviewCard\":true,\"enableMPLegalRequirements\":true,\"marketplaceEnable\":true,\"enableUgcSellerResponses\":true,\"enableMoreSellerOptionsEnhancements\":true,\"itemConditionBottomSheetEnabled\":true,\"sellerPageEnable\":true,\"enableLMPAlcohol\":true,\"shippingOptionsEnable\":true,\"enableLMPPickupEnhancement\":true}},\"amends\":{\"_all_\":{\"enableHistoricalCC\":true,\"enableSmallOrderFee\":true,\"enableExistingAlcoholLogic\":false,\"enableOrderPaymentV3\":false,\"enableIntentControl\":false,\"enableAmendOrderWcp\":false,\"enableReservationWcp\":false,\"enableOrderPaymentV2\":false,\"enableAmendFulfillmentGroupOverride\":true,\"enableReshopSnapIneligible\":true,\"enableAmendsItemFFConvertAlert\":false,\"enableAmendsBannerForThankYouPage\":true,\"enableEditGDI\":true,\"enableProductWicBadging\":true,\"enableUpdatedDiscountPrice\":false,\"enableAddToOrderWcp\":false,\"disableStartNewOrderForScGroupOnly\":false,\"minOrderForDFCPlusFreeDelivery\":\"$50\",\"enableTippingWcpV3\":false,\"useAmendableGroupId\":false,\"enableUnifiedBadging\":true,\"enableReshopV2StandardErrors\":true,\"enableAmendsStartNewOrder\":false,\"enableWcpAmendEditItem\":false,\"enableAmendGdiPinDrop\":true,\"enableEstimatedTotalAndUpdateOrder\":false,\"enableAmendSubmitOrderWcp\":false,\"enableGdiPhaseTwo\":true,\"enablePickupPeopleV2\":false,\"disableAmendableOrderRefetchOnFocus\":true,\"enablePassCartId\":true,\"enableEditItemsSubscriptionDiscountMsg\":false,\"enableSkipAlcoholDisclosure\":false,\"enableTokenScopeError\":false,\"enablePharmacyFatov\":false,\"enableSingleScGroupCard\":false,\"enableSubscriptionTwoClickAddToOrder\":false,\"enableCartSubscriptionDiscountMsg\":false,\"enableAmendsBannerRequest\":false,\"enableAmendStoreAddressWcp\":false,\"enableFatovCartFulfillmentOptions\":true,\"enableAcceptRejectSubstitutionsV2\":true,\"enablePassDelayState\":true,\"enableFatovPriceFormat\":false,\"enableAcceptRejectSubStdErr\":false,\"enableAmendsCartFulfillmentOption\":true,\"enableAmendShippingAddressWcp\":false,\"enableMinimumBasketStaticMessage\":false,\"enableDelaySparkShopperEnhancedExp\":true,\"enableReshopV2\":true,\"enableEditOrder\":true,\"enableToHandleExtraErrorCodes\":false,\"enableTYAmendsBannerForExpressSlots\":false,\"enableFrChangesForEditPage\":false,\"enableDeliveryDetailsV2\":false,\"enableCheckWcpOrder\":false,\"enableRealtimeAmends\":false,\"enableWcpAmendAddToOrder\":false,\"enableWcpAmendReservation\":false,\"enableAddToOrderPharmacy\":true,\"enableEditPaymentsOnCancel\":true,\"enableEditDeliveryAddressOnCancel\":true,\"enableVerifyAmendableCart\":true,\"enableFloatingAddToOrder\":false,\"enableSearchPageFatov\":true,\"enableRegistryPageFatov\":true,\"enableAmendTY\":true,\"pharmacyScheduledDelivery\":true,\"enableEditAddress\":true,\"enableEmptyCartBanner\":false,\"enableEditStoreDeliveryAddress\":true,\"enableSubscriptionsFtc\":true,\"enableShopPageFatov\":true,\"enableListsPageFatov\":true,\"enableSubs\":true,\"enableHomePageFatov\":true,\"itemCountToEnableFatov\":1,\"enableEditPickupStore\":true,\"enableItemPageFatov\":true,\"enableBrowsePageFatov\":true,\"enableEditPickupStoreOnCancel\":true,\"enableFilterFatov\":false,\"enableAddItemsPageFatov\":true,\"enableUpdatedTempHold\":true,\"enableAddToOrderSubscriptions\":true,\"enableMpCancelOrderV3\":true,\"enableEditPayment\":true,\"enableRescheduleOnCancel\":true,\"enableEditAddressOnCancel\":true,\"enableStartOrderLink\":false,\"enableCancelOrderV3Refactor\":true,\"enableCategoryPageFatov\":true,\"enableAddItems\":true,\"enableEditOrderSubs\":false,\"enableEditItemsOnCancel\":true,\"enableReviewFatov\":true,\"enableCustomerChoice\":true,\"enableAmendableOrder\":true,\"enableMyItemsPageFatov\":true,\"enableEPP\":true,\"enableFatovErrorHandling\":true,\"enableStartOrderLinkv2\":false}},\"wplus\":{\"_all_\":{\"enableMMPPrefetch\":true,\"hidePurchaseForCCA\":false,\"enablePrismEvergreenBanner\":false,\"enableCustomerInitiatedRetries\":true,\"enableAddressSelector\":false,\"enableIncreaseSmsAwarenessNudge\":true,\"enableLimitedTimeOffer\":false,\"isParamountRebrandingEnabled\":true,\"enableOfferCenterHideForTrialUsers\":false,\"enableLegalUpdatesPartnerPages\":true,\"enableInHome90DaysTrial\":false,\"enableInHomeRML\":true,\"enableShowWalmartPass\":false,\"enableDecodingForMlpPromoPage\":false,\"enableRestrictHighRiskBins\":true,\"enableNudgeBackUpCard\":true,\"enablePlusupsReactivationCancelledActiveExpired\":true,\"disableLocaleRouting\":false,\"enableDeliveryPassSavingsTracker\":false,\"enableOnboardingWelcomeViewCta\":false,\"enableIntlSeoData\":false,\"enableMembershipPlansEnrichedForCustomerQuery\":true,\"enableMembershipOfferCta\":false,\"enableWplusLogoOnSiteHeader\":false,\"enableCancelPageEngagementModule\":true,\"enableCancelPageContentModification\":true,\"enableSavingCashHubRedesign\":false,\"enableLocaleRouting\":false,\"enableIncreaseSmsAwareness\":true,\"isBenefitUpgradeConfirmationEnabled\":true,\"enableInHomeFTCAcquisition\":true,\"enableSsoOptionsPhoneVerification\":false,\"enableOfferCenterT2PTestDate\":0,\"isDpManageMembershipVisible\":true,\"enablePromoCodePageSignupConsent\":true,\"enableTempoPromoCodePage\":false,\"enableInHomeFTCCancellation\":true,\"enableLtoPriceDiscount\":false,\"enableUCPMembershipV2\":false,\"enableSerialReactivatorPauseSplash\":false,\"enableInHomeDCConsent\":true,\"enableInHomeReactivationPhase2\":true,\"partnerMlpNumberOfEncoding\":0,\"enableShowtimeFTCTerms\":true,\"enableLtoPriceDiscountForChangePlan\":false,\"enableAppeasementSplashModal\":true,\"enableBlockTracfoneCancellation\":false,\"enableCancellationFeedbackV2\":false,\"enablePartnerMlpDecodePromocode\":\"\",\"enableCancelPagePrefetch\":true,\"enableHideLTOCTAforAndroid\":true,\"saveOfferTimerInMins\":0,\"isMPSEnabled\":true,\"enablePTABusinessMembership\":false,\"enablePaymentPreference\":true,\"billingHistoryPageLimit\":20,\"enableAssociatePlanCancellation\":true,\"enableBenefitFinderNonMembers\":false,\"enableHideAppleFitnessCTAforAndroid\":true,\"enableManageMembershipEntryPoint\":true,\"enableBenefitFinder\":true,\"enableManageMembershipPageV2\":true,\"enablePromoStrikeThroughPrice\":true,\"disableChangePlanCta\":false,\"enableSplashSignUpUrlNavigation\":true,\"enableLtoSunset\":true,\"enableWcp\":false,\"enableWplusWelcomeConfirmationModalOnTYPage\":false,\"enableInHomeAcquisitionSplashPageSignupFromAccountPage\":true,\"enableOfferLedClipping\":true,\"enableCancelPageLto\":true,\"isCancelBenefitEnabled\":true,\"enableItemCarouselConfirmationPage\":false,\"isParamountUpgradeEnabled\":true,\"enableSSRCancelPageTempo\":true,\"enableWcpIdentityLogin\":true,\"enableSplashCountdownTimer\":true,\"enableEaModules\":true,\"paramount22SsoClientId\":\"1cad36da-b4c7-4e13-8460-71ff50ced7e2\",\"enableDealSeeker\":true,\"partnerLandingEntryName\":\"MA_ONE_CLICK_PAGE\",\"isEAFreeMonthsOnCancelEnabled\":true,\"enableMembershipEngagementChallenge\":true,\"enablePhoneCollectionMAOneClickPagePrograms\":\"tracfone,verizon,verizonfios\",\"enableMMPPaymentCommsToggle\":true,\"enableCvvVerify\":false,\"wplusWeekTrialMemberProgramId\":\"wplusweek23_convert_6monthoff\",\"enablePickAPlansRedesign\":true,\"enablePromoEntry\":\"MA_PROMO_PAGE\",\"enableReactivatePayPalSingleClick\":true,\"enableParamountPromo\":true,\"enableSSRCancelFeedback\":true,\"redirectUpgradeCtaToPaidProgramId\":\"\",\"enableEarlyAccess\":true,\"enablePickYourBillingDatePlusUps\":true,\"enableTempoMembershipLandingPage\":false,\"enablePhoneCollectionChoosePlans\":true,\"enableCancelPageLayout\":true,\"enableWalmartPlus\":true,\"enableB2B2CV1Dot1\":true,\"enablePaymentValidation\":true,\"isParamountUpgradeAnimationEnabled\":true,\"splashPaymentErrorEnabled\":true,\"enableManageMembershipWallet\":true,\"enableInHomeAddressValidation\":true,\"legacyInHomeConfirmationForChamberlain\":false,\"enableDxGyPromoAutomation\":true,\"enableRBEDSplashiFrame\":true,\"enableSubscription\":true,\"eaModulesAllowedPath\":\"/shop/deals/black-friday,/shop/deals/new-deals\",\"enableChoosePlansWalletPayPal\":true,\"enableMlp\":true,\"enableNoPaymentSplashPage\":true,\"enablePromoCodeValidationPrograms\":\"delta,deltaairlines\",\"enableCohortMembershipFastFollow\":true,\"programData\":\"{\\\"wbmembertry90\\\":{\\\"trialDays\\\":\\\"90\\\"},\\\"wbpartnertry90\\\":{\\\"trialDays\\\":\\\"90\\\"},\\\"wbmembertry180\\\":{\\\"trialDays\\\":\\\"180\\\"},\\\"wbpartnertry180\\\":{\\\"trialDays\\\":\\\"180\\\"},\\\"fam180wbmember\\\":{\\\"trialDays\\\":\\\"180\\\"},\\\"wb180membernp\\\":{\\\"trialDays\\\":\\\"180\\\"}}\",\"enableBenefitEngagementPage\":true,\"enableLegacyInHomeConfirmationForChamberlain\":false,\"enableCashBackPlans\":true,\"enableRewardsCenter\":true,\"enableBadging\":true,\"paramount22RedirectUrl\":\"https://www.paramountplus.com/walmartplus/connect/\",\"enableMemberModePersonalizationPhase2\":true,\"enableCohort\":\"assist,student\",\"enableHybridCohort\":\"assist,student\",\"enable1PVerifiedCohort\":true,\"enableAssist1PVerification\":true,\"enableBillingHistory\":true,\"enableSecMlp\":true,\"cancelCtaGroupVariation\":\"CONTROL\",\"enablePauseMembership\":true,\"enableInHomeAddon\":true,\"enableSplashModalAutoLaunch\":true,\"skipExpiredUserForcedCohortVerification\":true,\"splashModalPlusUps\":\"inHome\",\"enablePhoneRecycleCheck\":true,\"trialSavingsThreshold\":15,\"enableAssistPlansLegalA\":true,\"enableDiscountMembershipRevivification\":true,\"wplusWeekPaidMemberProgramId\":\"wplusweek23_upgrade_6monthoff\",\"wplusWeekOffers\":\"cinemarkbogo,cinemarkb2g1,wplusweek,PaidOfferAccess\",\"enableCashback\":true,\"enableCancelPageSaveOffersPh3\":true,\"enableChoosePlansWallet\":true,\"enableHideLTOCTAforAndroidByProgramName\":\"apple-news,apple-arcade,apple-fitness\",\"enableHubRedesign\":true,\"enablePausePlusUps\":true,\"hideErrorScreenPhoneCSplash\":true,\"cohortVerifiedInHours\":1440,\"enableConsolidationBilling\":true,\"enabledMembershipSplashTrialToPaid\":true,\"enableMultiBenefitVariations\":true,\"enabledAutoRenewUpdate\":true,\"wplusWeekProgramName\":\"wplusweek\",\"enableTrialToPaid\":true,\"enableActivityTracker\":false,\"enableIobRevamp\":true,\"enableWplusSignupOffers\":true,\"enableMpsHubpage\":true,\"enableBogleSignup\":false,\"enableGamification\":true,\"enableChamberlain\":true,\"enableOBSModalOnTYPage\":true,\"enableReferAFriend\":false,\"paidSavingsThreshold\":15,\"enableManageMembershipPageV2WalletDeeplink\":true,\"enableSingleClickReactivation\":true,\"enableHomepageV2BannerClick\":true,\"ignoreCohortReVerification\":\"\",\"hideErrorScreenPhoneCPlans\":true,\"enableSpot22\":true,\"enableStackCohortForTrialMember\":true,\"enableInHomePlansLegalA\":false,\"enablePreferredCardWalletRedesign\":true,\"enablePageSource\":true,\"enableUnauthenticatedChoosePlans\":false,\"enable30DayTrial\":true,\"activateProgramId\":\"instantwplusweek\",\"enableBillingHistoryLoadMore\":true,\"paramountEssentialPrice\":\"/{\\\"Monthly\\\":7.99,\\\"Annually\\\":59.99}/\",\"internalCohortVerifierName\":\"CXO\",\"enableTrialExtension\":false,\"enableBDPBreadcrumb\":true,\"enableShoppableBasket\":true,\"enableAssistMembership\":true,\"directMembershipProgramId\":\"earlyaccess21\",\"enableWplusWeeklyReservation\":true,\"enableStackCohortForProgramMember\":true,\"enableB2B2CV1\":true,\"enableCancelPageSaveOffers2B\":true,\"enablePlansNoPaymentMethodErrorMessage\":true,\"enableAmexSwitchPlanDisclaimer\":true,\"enableDifferentiatedMemberExperience\":true,\"enablePlansLegalA\":true,\"enableWplusBookslotSplash\":false,\"enableAmexGoldSwitchPlanDisclaimer\":true,\"enablePreviewDealsOnSplash\":false,\"enableInHomeCancellationSurvey\":true,\"enableSingleClickReactivationWallet\":true,\"enableDisclaimerCreateMembership\":true,\"enableMembershipYearinreview\":false,\"enableCancelPageSaveOffersUXEnhancement\":true,\"onboardUnifiedPlanOnMAByProgramName\":\"trial90,wplus3,wplus6,wplus12,google,greendot12,nrg,reliant,amexplatinum,amexbusinessgold,optum,sparkpromo21,luckyrhino,burgerkingpromotion,aarp,paypal,customersparkcommunity\",\"enabledUnifiedPlanOnMA\":true,\"enablePersonalizedSavingsA\":true,\"enableDirectBusinessMembershipOffer\":false,\"inHomeRedirectUrl\":\"https://www.walmart.com/inhome/preferences\",\"enablePartnerLandingPage\":true,\"enableWplusSplashPage\":true,\"enabledUnifiedPlansOnChoosePlanTempo\":true,\"enableManageMembershipWalletPayPal\":true,\"enableWalletForPromoCodePagePrograms\":\"wplus3,wplus6,unitedhealth,reliant,nrg,deltaairlines,google,greendot12,trial90,wplus12,aarp,amexplatinum,amexbusinessgold,luckyrhino,burgerkingpromotion\",\"enableSingleClickReactivationWalletPayPal\":true,\"enableHubOlMigration\":true,\"enableSSRPlansPage\":true,\"disablePhoneCollectionPartnerList\":\"deltaairlines\",\"enablePickYourBillingDatePostMvp\":true,\"enableRAFDirectToPaid\":true,\"enableCashDashboard\":true,\"enableResumeMembershipOptInDisclaimers\":true,\"enableEventOffersPlanExpired\":true,\"enableOfferListV1\":true,\"enableSplashPageWalletPayPal\":true,\"enableAdjustNonMemberMessaging\":true,\"enableCashbackRebrand\":true,\"enablePickYourBillingDate\":true,\"splashModalDelayRequestTimeInHours\":0,\"enableCashbackLogoRebrand\":true,\"enableRevampedBenefitsCard\":true,\"enableOptionalPromoCodeOnBDP\":true,\"enablePromoCodeV1ContentPrograms\":\"wplus3,wplus6,unitedhealth,reliant,nrg,deltaairlines,google,greendot12,trial90,wplus12,aarp,optum,sparkpromo21,amexplatinum,amexbusinessgold,luckyrhino,burgerkingpromotion\",\"enableDeferredPaymentAuth\":true,\"enableFreeTrialDays\":30,\"enableMemberModeBenefitsPersonalization\":true,\"enableFraudChallengeCVV\":true,\"enableExpressSignUp\":true,\"enableTempoMultiBenefit\":true,\"enabledUnifiedPlansOnCohort\":true,\"enableExpiredUserRouting\":true,\"enableDunning\":true,\"freeMembershipProgramList\":[\"economist\"],\"enableOC22\":true,\"enableAppScreenTakeOver\":true,\"enableMySavingsCard\":true,\"enableRestrictHighRiskCards\":true,\"enableCancellationOlMigration\":true,\"enableSplashPageWallet\":true,\"enableSplashLegalA\":true,\"enableManageMembershipPageSplash\":true,\"enableLegalUpdatesActivatePage\":\"versionA\",\"enablePhoneCollectionSplash\":true,\"dynamicCopyMode\":\"STATIC\",\"isEAFreeMonthsOnChangeEnabled\":false,\"enableShowChatOption\":true,\"eaModulesMaxDisplayPerSession\":1,\"enablePlusUpsReactivation\":true,\"isGiftingMembershipEnabled\":true,\"reactivatedMemberExperienceProgramList\":[\"\"],\"enableInHomeLandingPage\":true,\"enableBillingHistoryPagination\":true,\"enableHubPageTempoLayouting\":false}},\"shared\":{\"_all_\":{\"enableCCAFlow\":false,\"enableOnePaySignUpVariant\":false,\"showFeesAndTaxesDisclaimer\":false,\"ssrNavBrowserAllowList\":\"Chrome\",\"enableSubsOptOutExp\":true,\"enableDynamicExpressSlotType\":false,\"enableLocalFindsPickupPAC\":false,\"enablePayByInvoiceBetaFF\":false,\"enableItemLevelTE\":false,\"enableWalmartBusinessRebranding\":false,\"enableTireMinQuantity\":0,\"enableMedalliaScriptAutoLoad\":true,\"enableCollapseFirstSubsItem\":true,\"enableMedalliaScriptSafeFrame\":false,\"maxDisplayCountForGepHighlight\":2,\"enableAmendsSupportedPaymentsOverride\":false,\"enableGetSample\":true,\"enableHotPhase2\":false,\"enableSearchByLicensePlate\":false,\"enableUseTaxonomyBeacon\":false,\"enableB2BMultiConditionItemBeta\":false,\"enableSuggestionsListSwap\":false,\"enableRxSignatureOnDelivery\":true,\"enableOnePaySignUpDescriptionVariant\":true,\"enableGuestOffers\":false,\"enableSubGatedSavingsPosInfoIcon\":false,\"enableScanAndGoFlow\":false,\"enableBuyNowChangePayment\":true,\"b2bOrgCookieDomain\":\".walmart.com\",\"enablePovBadge\":false,\"enableCaDpRebookSlot\":true,\"enableBadgeInStoreSelector\":false,\"enableSearchSSROptimization\":true,\"enableGepHeaderFooterCache\":false,\"enableEditQuantityCCA\":false,\"enableInpDeferHubSpokePanelLink\":false,\"enableSiteWideBanner\":false,\"enableDeliveryAdddress\":false,\"enableGicSlotsBorder\":false,\"disableReplaceNavigationOnLogin\":false,\"enableWPlusLogoInROP\":false,\"enablePaymentMethodPromotion\":false,\"hideFulFillmentLabel\":false,\"enableSignatureOnDelivery\":true,\"enableReviewContentLayoutSSR\":false,\"enableErrorLogging\":true,\"enableNoIndexNoFollow\":false,\"enableB2BCategoryRestriction\":false,\"maxSpecialOrderQuantityLimit\":99999,\"enableChargeHistoryInApprovals\":false,\"enableCpnAvlMsgForVariant\":false,\"enableInpDeferProductTileLink\":true,\"enableOptOverCusBtnInCar\":false,\"enableACCSinglePackageSupport\":true,\"enableBuyNowCvvClickRedirect\":false,\"enableI2SentryScript\":true,\"enableTempoHeaderMenuTitle\":false,\"enableWalmartProtectionPlan\":false,\"enableHolidayFreeExpressDelivery\":true,\"unitPriceDisplayOverride\":false,\"enableCustomerChoiceV2ConditionalSubs\":true,\"enableExpressIcon\":false,\"enableAEDynamicPromise\":true,\"enablePayAtStorePrintButton\":false,\"enableItemResiliencyCaching\":true,\"enableSpecialOrderMultiline\":false,\"enablePhoneVerificationForCart\":true,\"enableAutoTmxForAll\":true,\"enableSpendAnalyticsGroup\":false,\"enableMQDTiering\":true,\"enableInStoreShelfMessage\":false,\"enable3pEGiftCardPersonalization\":true,\"enableExclusiveWplusLabel\":false,\"allowedBeaconActionsTypes\":\"\",\"enableShippingErrorCity\":false,\"excludeShippingPurse\":true,\"enableSamsQM\":false,\"enableInpDeferChipModuleLink\":false,\"enableItemizedReporting\":false,\"cartCxoRecoverrableErrors\":\"cart.lineItems.@.fitment\",\"enableGEP\":false,\"enableSimpleEmailSignUp\":false,\"enableSubscriptionsInTransactionFreshFrozen\":true,\"enableEachWeightItem\":false,\"enablePayByInvoiceBetaAccountMFA\":false,\"enableLegalDisclosureSkinnyBanner\":false,\"enableTempoMembershipPlanCard\":false,\"enableTileImageEarlyHint\":false,\"enablePromoData\":true,\"enableKlarnaBNPL\":false,\"enableClaimAccount\":false,\"enableSearchBarInpOptimization\":true,\"enableGtagScript\":false,\"enableManageOptimization\":true,\"enableGreenGicPill\":false,\"payAtStoreExpiryHours\":48,\"enableDeliveryTitleForShippingSummary\":false,\"enablePxInjection\":true,\"disableLabelHighlight\":false,\"enableBenefitTrackerMultiCard\":true,\"enablePayByInvoiceCreditLimit\":false,\"searchSSRDownLinkThreshold\":5,\"enableSubscriptionSendNow\":false,\"uxconPartialConsentedExpiry\":30,\"enableWFSGlobal\":false,\"enableDirectSpendsEnhancements\":true,\"enableFirstAndLastName\":false,\"enableProductFlagStyleId\":false,\"enableRealtimeOffer\":false,\"tenantIdEnabled\":true,\"enableSendNowOOSAlert\":false,\"enableScriptBasedBeacon\":false,\"enableInpDeferHorizontalTileLink\":true,\"enableSparkStore\":true,\"bootstrapVersion\":\"PROD-2.0\",\"tenantCountryCodes\":\"'[\\\"US\\\",\\\"USA\\\"]'\",\"enableSavedPromoCodes\":false,\"enablePickupSlotShortcutsPrice\":false,\"enableUpdateItemsPanel\":false,\"enableSynchronyCareCredit\":true,\"enableRxpdSlotEnhancement\":true,\"aeModuleHeaderVariation\":\"variation2\",\"enableSuggestionsList\":false,\"enableBuyingAtStore\":false,\"enableGepGeoPreciseLocation\":false,\"enableWalmartBusinessRebrandingPhase2\":false,\"enableIsEmailVerifiedInOnboardingStatus\":false,\"paymentPreferenceDesign\":0,\"enableFreeFulfillmentExpressDelivery\":true,\"enableB2BPricing\":false,\"enableUpdatedAntiTheftSODChanges\":true,\"enableMegaBuyPayment\":false,\"enableWFSGlobalLabelV2\":false,\"b2bOfferReconnectInterval\":1000,\"enableBusinessCustomField\":false,\"enableAmendChangePayment\":true,\"enableRegistrationEnhancements\":false,\"enableAlternateDeliveryRecipient\":true,\"oilChangeSchedulingEnabled\":true,\"enableInHomeNudge\":true,\"enableSimpleEmailNonProdMutation\":false,\"enableBagsNeededMessage\":false,\"enableSpendControlV2\":false,\"enableSplitMetric\":true,\"enableRewardsPercentSuppressionUnpublishedPlans\":false,\"enableSelectedIntentTextForDelivery\":false,\"sendCreateAccountSuccessBeacon\":true,\"enableTireFitCheckOnSearch\":false,\"enableTempoCountdownTextColor\":false,\"enablePreOwnedExperience\":true,\"enableAcquisitionRewards\":false,\"enableNewOnboardingPage\":false,\"enableOptimizedScrollerProductCarousel\":false,\"enableShippingTitleSummary\":false,\"enableAfterItemDiscountSubtotalLabel\":false,\"enableTracingVitals\":true,\"enableSharedShortcutSlots\":false,\"enableCustomerChoiceWicBadging\":true,\"enableDualMessageBannerEnhancements\":true,\"enableMedalliaScript\":false,\"enableExpandedGiftingEligibility\":true,\"enablePremiumProductsLabel\":false,\"enableSubscriptionReplacement\":true,\"enableEventTimerSeconds\":true,\"b2bOfferRetryOnError\":false,\"enablePayOnMobileDeepLinking\":false,\"enableExpressPickupHourFormat\":false,\"enablePayOnMobileQrCodePcid\":false,\"realTimeOfferBlockList\":\"\",\"enablePayByInvoiceBeta\":false,\"prefetchItemPageOnLocaleRoutes\":false,\"i2SentryScriptUrl\":\"/si/snr.js\",\"enableCustomerChoiceV2\":true,\"enableGepKycTransactions\":false,\"enableBuyNowChangePaymentRedirectCXO\":false,\"mxSamsCcaContact\":\"800 999 72 67\",\"enableDobLinkage\":false,\"enableCheckWFSGlobalToHideInvoiceOptions\":false,\"enableUnpublishedConfigurator\":false,\"enableMegaBuyForNonMember\":false,\"enableSignOnDelivery\":true,\"enablePartytownDebug\":false,\"enablePartytown\":true,\"enableCashiCashback\":false,\"enableViewAllInpOptimization\":false,\"enableLinkedSpanTraceparent\":true,\"enableIsoLocRedirection\":true,\"enableMultiQuantityDiscounts\":true,\"enableOptimisticWeightUpdate\":false,\"enableEnhanceInHomeSlotUX\":true,\"enableSemStoreGICSync\":false,\"enableTimeSensitiveApprovalWindow\":false,\"enableRewardsHistory\":true,\"enableSubscriptionGatedSavings\":false,\"inHomeDeliveryFeePlusTip\":\"/{\\\"tip\\\":\\\"6.93\\\",\\\"deliveryFee\\\":\\\"9.95\\\"}/\",\"enableMsiMci\":true,\"enableTenantWcpMode\":true,\"enableRescheduleErrorMessage\":false,\"enableReceiptUpload\":false,\"isConfigurableCookieEnabled\":false,\"enableQueueingCtaRedirection\":false,\"enableRecoverableGqlSubgraphErrors\":true,\"enableGEPForPilot\":false,\"enableWplusLogo\":false,\"seeAllReviewsUrl\":\"/reviews/product\",\"enableTypeaheadSuggestionClickINP\":true,\"enableExtendedTrialMigration\":false,\"enableDifferentCaptchaMethod\":false,\"enablePayOnMobile\":false,\"enableFulfillmentSpeedAnalytics\":false,\"onePayCashbackAmount\":5,\"enableReferToFriendIntl\":false,\"enableIntlInpDeferRelatedPageLink\":false,\"enableExpressStaticRange\":true,\"enableTMobileNewText\":true,\"onePaySpendAmount\":5,\"enableDirectedSpendSubs\":true,\"enableGroupManager\":false,\"enableExpressSla\":true,\"enablePreOrderPriceGuarantee\":true,\"enableReorderSubsOpt\":true,\"enableFitmentLabel\":true,\"enableClaimRate\":true,\"enableHPRateLimitingResiliency\":true,\"enableStoreBrandTag\":false,\"enableTapToClipPromoCode\":false,\"enableSubscriptionValueProps\":false,\"enableShowSavingsGrandTotal\":false,\"enableNotificationCenterIntl\":false,\"enableTYCashiBanner\":false,\"disableMegaBuyMinQtyCheck\":false,\"enableOnePayInFourDescription\":true,\"enableReviewSSR\":false,\"enableProductVariantsInMultiSave\":false,\"enableBuyNowCXOWithPcid\":false,\"enableBuyNowCvvSPXO\":true,\"enablePreventDefaultOnSameQuerySubmit\":false,\"enableGdiLeaveAtDoorDeliveryOptionInfo\":false,\"enableDpFreeTrial\":true,\"enableACCVariant\":1,\"enableBuyNowGetItNow\":true,\"enableClientTracingPulseConnector\":true,\"isPlusBannerRedesign\":true,\"b2bOfferServerURL\":\"\",\"enableSubscriptionForTenant\":true,\"stopAutoRenewalPeriodDays\":120,\"b2bOfferReconnectAttempts\":5,\"enableUpdatedAntiTheftGDIChanges\":true,\"enableManufacturersCoupons\":false,\"enableSubscriptionsInTransactionDiscount\":false,\"enableDigitalRewardsHistoryV2\":false,\"enableSubscriptionsInTransactionScFulfillment\":true,\"enableBuyNowCBTItemCXORedirect\":false,\"enableInpSsrRouteCart\":false,\"enableSpendControl\":false,\"enableRxpdLunchHours\":true,\"enableSlotsAndExpressIcon\":false,\"enableInpSearchChip\":true,\"enablePayByInvoicePendingBanner\":false,\"enableTEEnhancement\":false,\"enableGreenPriceExtraSavings\":true,\"enableOpenItemPageWithOfferId\":false,\"maxApprovalWindowMins\":2880,\"enableItemLevelCheckout\":false,\"enablePreOwnedBadges\":true,\"enableDcaFwdGqlResponseToPulse\":false,\"enableVANotice\":true,\"enableCWVAtcClick\":true,\"enableSavingsBreakup\":true,\"enableNewPrivacyBanner\":false,\"enableNewDesignJumpStartCart\":false,\"enableGICSpeedFilter\":false,\"enableCustomerChoiceV2MyPickOnly\":false,\"enableExpressSupercenterIcon\":false,\"enableMxStoreSelectorEnhancements\":false,\"enableEBTBadge\":true,\"enableMultiSaveMiniPDPPage\":false,\"enableGuidedDeliveryFastFollow\":true,\"enableJumpstartQuickAdd\":false,\"enableSubscriptionsPetRxInTransaction\":true,\"enableCustomerChoiceVPFilter\":true,\"enableInpDeferredRouter\":true,\"enableBeaconSamplingTraceId\":true,\"enableBadgesGroups\":false,\"enableCartCxoRecoverrableErrorCheck\":false,\"enableGICOnboarding\":false,\"locationNudgeExpiryInMins\":1440,\"enableCustomerProfileCookieCache\":true,\"enableSlimJumpStartCart\":false,\"enableOrganizationComparisonTable\":false,\"gepHighlightExpirationInMins\":14400,\"enableTracingSamplingHeader\":true,\"enableBusinessPlan\":false,\"enableInpTypeaheadKeydown\":true,\"enableOffPeakHoursDelivery\":true,\"enableBuyNowPageViewAddMethods\":true,\"enableProductRewardStyleUpdate\":false,\"enableDeliveryLabel\":false,\"enableDefaultStoreTooltip\":false,\"enableCCMNative\":true,\"enableReviewerCommunity\":true,\"showCashbackProgressBar\":false,\"enableEnhancedCarouselTiles\":true,\"enableReduceSplitReplaceATCNudge\":false,\"enableExpressUnavailableInShortcuts\":true,\"enableOnlyAtWalmartBadge\":false,\"enableSmileSaveBadge\":false,\"enableSellerFeeBreakdown\":true,\"enableBuyNowWallet\":true,\"subscriptionManagePageUrl\":\"/subscriptions/manage\",\"queueMaxRefetchDuration\":900000,\"enableGicDeeplink\":true,\"enableFloatingAddToOrder\":true,\"cacheFooterExpireDurationMs\":600000,\"enableSusbcriptionBasketExperience\":true,\"enableWplusSignUpOffer\":true,\"vetSearchLimitsEnabled\":true,\"enableLocalizedStringForReservationText\":true,\"substitutionsOptInClarity\":true,\"enableNewCookieSerializer\":false,\"enableSpendLimit\":false,\"enableLocationNudge\":\"DD,PS,PA\",\"tmxPathnameRulesAllowCSV\":\"^/cart\\\\\\\\b,^/(wallet|payments|partner\\\\\\\\Wplus|plus|wmcash)/,^/checkout/(pindrop|review-order),^/account/(phoneverification|profile|plus\\\\\\\\Wmanage|payment\\\\\\\\Wmethods|giftcards\\\\\\\\Wbalance)\",\"enableHotPacSessionTime\":0,\"enableOrderDeviceInfo\":true,\"enableGicEngagement\":true,\"enableValuePricingPages\":\"home\",\"enableWplusACCPayForServiceOnline\":true,\"enablePersistedCartId\":true,\"enableProductCarouselCSR\":false,\"vetSearchWarningLimit\":25,\"enableGICHot\":false,\"enableChargeForSubs\":true,\"savingsRecommendationFlag\":2,\"enableControlOnePayWallet\":true,\"cvEndpoint\":\"rest\",\"enableQueueing\":true,\"enableProductTileSmileyVariant\":true,\"helpLinkReturnRefunds\":\"https://www.walmart.com/help/channel/returns-and-refunds/5a33a1f61af8479e9d1bd8b727e9e761\",\"visionOrderProperties\":\"'[\\\"prescription_type\\\",\\\"lens_type\\\",\\\"lens_material\\\",\\\"lens_color\\\",\\\"lens_add_ons\\\"]'\",\"enableSubscribeToSaveNudge\":false,\"enableMOQ\":false,\"enableTireInstallationWithFitment\":false,\"enableBenefitTracker\":true,\"itemImagePrefetchResolution\":\"\",\"enableGicDecoupling\":true,\"enableBuyNowAspectiva\":true,\"enableLocalizedStringForReservation\":true,\"enableBuyNowTYUrl\":true,\"enableCartBookslotRebranding\":false,\"enableNeedHelpOptions\":false,\"enableAOSRearchitect\":false,\"disableAuthHeaderCheck\":false,\"enableGICBookslot\":true,\"enableHolidayFreeExpressDeliveryOptIn\":false,\"enableWplusAssistOnIntegratedSignup\":true,\"enableSmileNowPricing\":true,\"enableWic\":true,\"enableShowBackOrder\":true,\"isIncludeIphoneMetaTagAfilliateLinks\":false,\"enableDigitalRewards\":false,\"isFitmentRequiredForTireInstallation\":false,\"enableCartParallelFetch\":true,\"enableWplusBuyNowPhoneRecyclingPrevention\":true,\"enableAstCookie\":true,\"tmxPathnameRulesDisallowCSV\":\"^/$,^/ip/,^/search,^/browse,^/shop,^/cp,^/content\",\"enableDroneDeliveryPhase3Dec\":true,\"enableWplusDriveDeliveryFirst\":true,\"enableGreenPriceForSpecialBuyItemsPages\":\"home\",\"enableBuyNowPromiseMessage\":true,\"enableSSRNavigation\":true,\"vetMaxLimitSearch\":200,\"enableE2EPickupEnhancement\":true,\"disableGetCartSSR\":true,\"businessRewardsThresholdAmount\":\"{ \\\"default\\\": 250 }\",\"enableFedBenefitOnSignup\":true,\"enableFastRefundCredit\":true,\"enableNeverMemberIntroOffer\":true,\"enableSinglePaymentForm\":true,\"enableUngatedSubscription\":false,\"enableReduceSplitCTASwap\":true,\"cacheHeaderVersion\":1,\"enableWrongStore\":0,\"enableHPO\":true,\"enableSinglePaymentFormWallet\":true,\"enableExpressSlotIconRebranding\":false,\"enableBadges\":true,\"enableLmpPromiseDateRange\":false,\"enableWeeklyReservationCartBookslot\":false,\"enableHotPostATC\":0,\"enableDefaultStoreAlertFromItemPage\":true,\"enableLiquorBox\":true,\"enableBuyNowSavingsStickyFooter\":false,\"enableSubscriptionDiscounts\":false,\"enableWaitingHallway\":true,\"enableWmtpcBenefitCard\":true,\"queueTimeToCompletePurchase\":10,\"enableEnhancedCarouselTilesByCategory\":\"5438\",\"enableGifting\":true,\"enableIbotta2xRewards\":false,\"enableRxpd\":true,\"enableAdminRegFee\":true,\"enableEBTCheckBalance\":true,\"enable3pEGiftCardVariableLoad\":true,\"itemReservationsBannerText\":\"left to buy your item\",\"enableAERedesign\":false,\"enablePreferredStore\":true,\"enableTempoFreeExpressDelivery\":true,\"enableSustainabilityBadge\":false,\"enableSubscriptionBasketDiscountItemPage\":false,\"enableInHomeGuidedDelivery\":true,\"cspReportOnlyOverrides\":\"\",\"queueRefetchInterval\":5000,\"enableLanguagePreferenceDialog\":true,\"multiSiteRedirectUrl\":\"https://business.walmart.com/\",\"enableFPO\":true,\"enableSinglePageXO\":true,\"enablePetRxManualRefill\":true,\"disableSnapshotSSR\":false,\"enablePreEaPricingPages\":\"home\",\"enablePersistedQueries\":true,\"enableUpdateYearSLAHeader\":true,\"helpLinkStorePurchase\":\"https://www.walmart.com/help/article/view-store-purchases/f56a1afbf3b5428bb69f0124daa49108\",\"enableCheckoutProp65\":true,\"enableLawnAndGarden\":true,\"downlinkThreshold\":\"\",\"enableWplusPhoneRecyclingPrevention\":true,\"enableSubscriptionManagePageRouter\":true,\"aeModuleHeaderText\":\"Free pickup\",\"enableQueueSizeIncrease\":true,\"enableFeedbackSubmitPageType\":true,\"mpaSkipURLPatterns\":\"\",\"enableBuyNowCXORedirect\":false,\"promoDiscountVisibilityType\":\"checkbox\",\"enableProgressiveCss\":false,\"enableBuyMore\":false,\"enableReduceSplitATCNudge\":true,\"enableSellerShippingVariant\":false,\"enableAppleCareFreeTrials\":true,\"enableSmileWasPricing\":false,\"enableBuyNowHot\":false,\"enableSaveStorePrompt\":true,\"enableWplusProgramId\":true,\"enableNations\":true,\"forceEnableSSRNavigationURLs\":\"\",\"enableDroneDelivery\":true,\"enableLocationSurcharge\":false,\"placeholder\":\"US-B2C\",\"enableListLandingView\":true,\"enableBenefitBadge\":true,\"sharedClsFixEnum\":\"\",\"enableCSRBootstrapCall\":true,\"enablePFS\":true,\"enableLaunchMultiSiteLogoffConfirmationModal\":true,\"enableGuidedDelivery\":true,\"beaconWithQuantumMetrics\":false,\"enableGICSchemaV2\":true,\"enable3pAlcohol\":true,\"enableDestinationTax\":false,\"cacheFullFooterVersion\":1,\"enableDroneDeliveryPhase2\":true,\"enableDroneDeliveryPhase3\":true,\"enableWrongStoreReminderDays\":0,\"substitutionItemPriceAndQuantityClarity\":true,\"enableSubscriptionsInTransaction\":true,\"proSellerBadgeVisibilityType\":2,\"enableDisplayStartTimeOnlyForACC\":false,\"enableFulfillmentDisplay\":false,\"enableCsp\":true,\"enableWplusRetentionNudge\":true,\"enableLiquorBoxAlcoholExpansionCartBookslot\":true,\"enableWplusEaOfferSignupBanner\":false,\"enableAOSModuleAttribute\":true,\"enableSpecialRequest\":true,\"enableStoreChooserDefaultAlertFromGIC\":true,\"enableDynamicOptionsFeedback\":true,\"helpLinkMPReturnPolicy\":\"https://www.walmart.com/help/article/walmart-marketplace-return-policy/63c3566a9d3546858582acae2fbfdb7e\",\"helpLinkTermsOfUse\":\"https://www.walmart.com/help/article/walmart-com-terms-of-use/3b75080af40340d6bbd596f116fae5a0\",\"enableMultiStorePickup\":true,\"enableRxpdNudge\":true,\"cacheFullFooterExpireDurationMs\":600000,\"enableOnDemandShifting\":false,\"enableGeneralMerchandiseWalmartCash\":false,\"enableBuyNowSPXO\":true,\"enableEvergreenSlotBranding\":true,\"enableSlotsParallelFetch\":true,\"enableWalmartPlusFreeDiscountedExpress\":true,\"enableExtendedDeliveryCatchment\":true,\"enableAnnualLapsedMemberPromo\":false,\"enableLocalFindsPAC\":false,\"sharedINPImprovementEnum\":\"\",\"enableOutOfStockFiltering\":false,\"helpLinkMobileAlertsTerms\":\"https://www.walmart.com/help/article/mobile-alerts-terms-of-use/499122d9bba94d08b50e8facf42fcc82\",\"enableBuyNowFreeShippingNudge\":false,\"enableHpRedesign\":true,\"enableProSellerBackground\":true,\"enableBuyNow\":true,\"cacheHeaderExpireDurationMs\":600000,\"enableBuyNowSavings\":false,\"enableBusinessOfferCenter\":false,\"cacheFooterVersion\":1,\"enableSsoOptionIntegratedSignup\":false,\"enableLensAttributesUtil\":true,\"enableDxgyBroadscaleWalmartCash\":true,\"enableMPDelivery\":true,\"enableFeedbackGqlMigration\":true,\"enableWplusIndigoRebranding\":true,\"sharedInpOptimizationEnum\":\"PDTLNKINP,INPFCLEAR,INPCHIP,POPLINKS,REGCRT,LRNREG,GOTOWLS\"}},\"search\":{\"_all_\":{\"enableShopSimilarP13NData\":false,\"enablePopularFilter\":false,\"productFashionTileOptionsFromIsiHidden\":true,\"scrolledPaginationCount\":3,\"enableLimitedLinesInApparelTitle\":false,\"preserveFulfillmentMethodInstore\":false,\"enableFulfillmentAwareSearch\":false,\"enableMwebSelectedFilter\":false,\"extendedAttributesV2Enabled\":false,\"enablePillsFacetNav\":false,\"enableSecondaryDollarSavingsBadge\":false,\"enablePartialRenderingDeals\":false,\"enableTopNavAllDealsFilter\":true,\"maxRenderZoneMWEB\":1,\"enableStableCategoryFilterLabels\":false,\"enableSeeSimilar\":false,\"enableExactMatch\":true,\"enableUnifiedSchema\":true,\"enableInRiverMiddleTokens\":true,\"enableNupsStickyDucking\":false,\"dealsPageSortBy\":\"best_match\",\"enableSearchDollarSavingsBadge\":true,\"removeMwebListDwebGridWhiteSpace\":true,\"enableProductTileRedesignBadge\":false,\"isGreyBackgroundV3Enabled\":true,\"isGreyBackgroundV1Enabled\":false,\"fuelTypeEnabled\":true,\"showAROpticalBadge\":false,\"enableSwipeableImages\":false,\"enableSelectUnselectPills\":false,\"enableDisplayLimit\":true,\"enableItemRank\":false,\"numberOfLinesForProductTitle\":2,\"searchDataQueryLimit\":0,\"enableSeoHeaderTitleOverride\":true,\"enableDebugAnalyticsTags\":false,\"enableSuppressTitle\":true,\"enableProductTileRedesignAttributes\":false,\"verticalsListForAtfOptimization\":\"fashion\",\"enableMwebFashionGridViewEnhancement\":true,\"enableGenaiCompare\":false,\"enableHero4\":false,\"enableGenericContext\":false,\"enablePrivatelabelTagString\":false,\"enableGenericProductTileCarousel\":true,\"enableItemLimits\":false,\"enablePromiseOnSearch\":true,\"enableSecondaryStackRefinements\":false,\"enablePap\":true,\"includeTileTakeOverAnalyticsInItemStack\":true,\"enableShopSimilarCTAAnimation\":false,\"enableProductTileRedesign\":false,\"enableFixedVisualTokens\":false,\"disableSpeedFilterGICEnabled\":false,\"searchBrowsePageSortBy\":\"best_match\",\"enableFulfillmentAwareSearchHOT\":false,\"enableDollarSavingsBadgeForDesktop\":false,\"enableSamplingFreeItemsRemaining\":true,\"virtualPackVariant\":1,\"enableTopNavHolidayDealsFilter\":true,\"enableTopNavigationExpVarBlue\":true,\"enableMSP\":true,\"enableNonFashionGridViewRefinements\":false,\"enableSuggestedTokenV2\":true,\"enableSuggestedTokenV1\":true,\"enableExpandedAtcClickRegion\":false,\"enableSuggestedTokenV3\":false,\"enableInLineBrandProductTitles\":true,\"enableShopSimilarBottomSheet\":false,\"enableItemStackLazyLoadWithIO\":false,\"enableSeoBrowseMetaDataShortDesc\":false,\"enableItemStackPostalCodeAnalytics\":false,\"enablePartialRenderingTopic\":true,\"enableInStoreCallout\":false,\"enableSelectedFilterExpVarBlue\":false,\"enableRelatedSearchesLink\":true,\"enableShopByModuleEnhancements\":true,\"enableSeoMetaDescOverride\":true,\"showRatingHistogram\":false,\"enableCPUProfiling\":true,\"enableLowInventoryBadge\":true,\"enableAdditionalSearchDeptAnalytics\":true,\"enableSubscribeToSaveText\":false,\"enableSamplingSearchBar\":true,\"enableComparePageRedirect\":false,\"enableBreadCrumbsFromMetadataService\":false,\"enableGenericSeoFAQ\":true,\"enableHotBadge\":false,\"searchMwebFashionGridViewImgSizeVar\":0,\"enableLocalizedFacetName\":false,\"enableAtfOptimisation\":true,\"enableKeepShoppingFor\":false,\"enableWrapperCSSOverride\":false,\"enableReducedVariantList\":false,\"enableMWebFilterPanelView\":false,\"dealsDataQueryLimit\":0,\"enableCacheEmptyResultsSearchBrowse\":true,\"enableCachedFulfillmentDetails\":true,\"enableInStoreShelfMessage\":false,\"nUpsConfigurableDimention\":0,\"enableSingleIOForItemStack\":false,\"enableNewPriceFilterUI\":false,\"enableDwebVisualToken\":false,\"enableFocusOnInputBugFix\":true,\"enableResultCountInViewResultsButton\":false,\"productTileRedesignPricePos\":2,\"enableQuickFilter\":false,\"enablePayForSpeedBadge\":false,\"enableCompactMwebListWrapper\":false,\"enableDroneFacets\":true,\"enableFiveColumnView\":false,\"enablelnpFilterWaitUntilNextFrame\":false,\"enableProductTitleBrandDedupe\":false,\"enableItemListSchema\":false,\"enableCatNavA\":false,\"enableNewTabProductTileClickToItemPage\":false,\"enableDisplaySingleSelectDepartmentFacet\":false,\"enableClearAllInpOptimization\":false,\"enableWPPModalCheckOnATCError\":false,\"enable4xxSearchError\":false,\"enableInStoreFirstPill\":false,\"enableNavigationTokensSearch\":false,\"enableSeoLangUrl\":false,\"defaultNoOfQuestionsToShow\":3,\"enable500SearchServiceErrorUI\":true,\"getSpellCheckFromSearchService\":false,\"enableInpDelayRouterTransition\":true,\"newEaOosMessage\":\"coming_soon\",\"enableTrendingCatNav\":false,\"enableDealsErrorRedirect\":false,\"enableSubscriptionsPricingHideOptions\":false,\"enableSPItemTileOptions\":false,\"enableVariantSwatchButton\":false,\"enableGenericTileForDeals\":false,\"enableBrowseErrorRedirect\":true,\"enableSearchHotBadgeV1\":false,\"enableMaxOrderQuantity\":false,\"priceDisclaimerLink\":\"https://corporate.walmart.com/policies#price-match-policy\",\"enableTopicPageSpeakableSchema\":true,\"enableMwebStickyVisualToken\":false,\"enableMwebFashionGridViewSupressBadges\":false,\"enableSubscriptionPricingHideWPlus\":false,\"enableImageResize\":true,\"enableSearchPriceInfoSupportText\":false,\"enableGenAI\":true,\"enableProductTileRedesignImage\":false,\"enableSingleFacetVariant\":true,\"enableNavigationTokensBrowse\":false,\"enableCompareCTAVarity\":false,\"enableCleanPrice\":false,\"enablePartialRenderingBrowse\":true,\"enableShopByModuleEnhancement\":false,\"removeDwebGridWhiteSpaceV2\":true,\"enableSelectedFilterValueCount\":false,\"enableSearchPageINPOptimization\":true,\"enableEaOosEnhancement\":true,\"enablePersistentRetailerType\":false,\"browseDataQueryLimit\":0,\"enablePreEaPricing\":true,\"enableMwebFashionGridViewSupressWpBadge\":true,\"enableMediumSizeAtc\":false,\"enableGreenPriceForSpecialBuyItems\":true,\"enableModuleArrayReq\":false,\"enableDesktopHighlights\":false,\"disableColorSwatch\":false,\"enableIntlLowInStock\":false,\"enableGenericProductTile\":true,\"enableLegalTextPricingDisclaimer\":true,\"enableVirtualTokenNudge\":true,\"enableAnalyticsPaginationClickSBPages\":false,\"enableDwebStickyVisualToken\":false,\"enableSocialProofRepositioning\":false,\"customPageSize\":0,\"subscriptionVariation\":3,\"enableReducedItemData\":false,\"enableGetItFast\":true,\"disableFacetBaseSEOUrls\":false,\"enableFastBadging\":true,\"enableVariantCount\":false,\"enablePersistentInStore\":false,\"removeItemTileGridViewWhiteSpace\":false,\"enableSearchPageLimitBlock\":false,\"enableSubscriptionsStrikethroughPricing\":false,\"enableNewSubscriptionPanel\":false,\"enableCatNavPageViewSuppression\":false,\"maxRenderZoneDWEB\":1,\"productHighlightsVariant\":0,\"enableGICSelectIntentSkip\":true,\"productTilePricePos\":1,\"enableFashionItemStackEnhancement\":true,\"swipeableImageExperience\":\"\",\"enableExternalInfoUrl\":true,\"atfDwebGridCount\":10,\"pageSize\":20,\"productTile2xImageDimensions\":\"612,612\",\"enableHotPac\":false,\"enableTopicPageToDGF\":false,\"mwebGridProductCount\":8,\"enableNewPriceFormatType\":2,\"enablePortableFacets\":true,\"enableAutoLightsExperience\":true,\"enableDynamicFilters\":true,\"enableVariantsPagination\":true,\"searchLCPOptimizationEnum\":\"BLCP\",\"enableFacetedFilterBarVarC\":false,\"enableShopByModule\":true,\"enableSubscriptionFeature\":true,\"enableBrowsingHistory\":false,\"enableFacetedFilterBar\":false,\"enableAspectRecommendation\":false,\"enableFacetExpansion\":false,\"enablePAC\":true,\"enableAddOnServices\":true,\"enablePricingDisclaimer\":true,\"enableLCPSingleImagePrefetch\":false,\"enableLimitedLinesInTitles\":false,\"omitSortFacetParam\":false,\"enableFashionTopNav\":false,\"enableTopNavItemStack\":false,\"enableFulfillmentBadge\":true,\"enableFacetCount\":true,\"searchATCBottomSheetPlusButtonVariant\":0,\"enableViewportThreshold\":true,\"enableWPlusBadge\":false,\"enableSearchSkinnyBanner\":false,\"enableAffirmBadge\":true,\"showFilterTooltip\":false,\"fitmentModulesEnable\":true,\"mwebListProductCount\":4,\"enableStickyDisclaimerBar\":false,\"enableSwatchesOnTopicPage\":true,\"discoveryTopicABUrls\":\"\",\"enableIntersectedSearchResults\":false,\"enableShopWithoutVehicle\":true,\"enableValuePricing\":true,\"enableColorSwatch\":true,\"enableRemovePadding\":false,\"enableSearchHotBadge\":false,\"enableDeprioritizeTailImages\":false,\"enableNUps\":true,\"enableLimitedLinesInTitlesByCategories\":\"fashion\",\"enableVisionCenterBadgeSearch\":true,\"enableFixedSortAndFilter\":true,\"enableEaViolatorBannerV2\":false,\"bannerModulesEnable\":true,\"enableHighResImagesForSearch\":false,\"enableSecondaryStackType\":0,\"enableRemoveEmptyProductVariantRows\":false,\"splitDataCallLimit\":10,\"fitmentTopicPageEnable\":true,\"enableItemStackLazyLoading\":false,\"extendedAttributesEnabled\":true,\"clothingSizeFacetEnhancementsVariation\":1,\"showARExperienceBadging\":false,\"enableSearchPageSSR\":true,\"enableWPlusBadgeByCategories\":\"\",\"enableProductTile2xImageDimension\":false,\"enableTopNavUpdateGQLCall\":true,\"enableMaxWidth\":true,\"subscriptionHeaderImage\":\"https://i5.walmartimages.com/dfw/63fd9f59-66cc/af8fd81e-b326-47e6-b1b5-f3dd515182e6/v1/wplus-logo-blue.svg\",\"enableItemDetailsPricingDisclaimer\":true,\"enableGoldenReview\":true,\"viewportThresholdMobile\":0.25,\"enableRelatedSearchHorizontalPills\":true,\"enableIdForSearchFacet\":true,\"dwebGridProductCount\":20,\"enableLeftHandNav\":true,\"atfMwebListCount\":2,\"enableGIC\":true,\"tileTakeOverSearch\":true,\"enableLCPHighFetchPriority\":true,\"enableVariantItemSmile\":true,\"enableLHNCategoryTree\":false,\"lcpImageQuality\":\"1\",\"enableSimilarItems\":true,\"searchPageBuyNowType\":0,\"searchINPImprovementEnum\":\"FCHECKBOX,FAHSETFLT,CLEARALL,MVIEWRESULT\",\"enableSubscriptionZeroPercDiscountBadge\":true,\"tileTakeOver\":true,\"bannerModulesEnableSearch\":true,\"hideProductTileWhiteSpace\":false,\"enableNewStackedRecallNoResult\":true,\"threeColumnGrid\":false,\"enableAccInstallation\":true,\"enableNUpsSearch\":true,\"enableStylesheetsForInlineStyles\":false,\"enableGrapqlQueryParams\":true,\"enableRemoveEmptyProductFlagRows\":false,\"enableRelatedSearches\":true,\"viewportThresholdDesktop\":0.25,\"smileVariation\":2,\"enableDesktopVirtualPacks\":true,\"enableOLImageSize\":true,\"virtualPacksVariantCount\":3,\"skipGICIntent\":true,\"enableGridLayoutForFashion\":true,\"enableLHNFilterUpdateGQLCall\":true,\"enableAOSPanel\":false,\"enableTopicDiscoveryPhase\":false,\"productRatingVariant\":0,\"interesectedResultsBottomMargin\":1.5,\"enableInRiverNudge\":false,\"enableAOS\":false,\"removeLHNDuplicates\":false,\"enableSingleItemTopResult\":false,\"listViewEnum\":1,\"enableVariantDynamicText\":true,\"topicPageSortBy\":\"best_match\",\"enableSplitDataCall\":false,\"clientFetchTimeoutMs\":15000}},\"ads\":{\"_all_\":{\"isIntlArtemisEnabled\":false,\"bpSbaVariationsConfig\":\"{}\",\"sbaBannerDesignV3Intl\":false,\"isRedirectWebItemBrandAmplifierAdIntl\":false,\"enableSppMwebSPSPCIntl\":false,\"enableSppWebBPSBAIntl\":false,\"enableSppMwebIPSBAIntl\":false,\"sbaBrandLabelEnable\":false,\"hpGridPovFt2ArtEnableIntl\":false,\"enableSppMwebHPSPCIntl\":false,\"enableIntlBeacons\":false,\"bpSbaDesignIterationsEnable\":false,\"enableIntlHMgamID\":false,\"enableSppMwebSearchSponsoredVideoAdIntl\":false,\"isRedirectMwebItemp13nIntl\":false,\"hpAdjustableBannerRenderEnable\":false,\"enableBrowseAdsRerender\":true,\"useNewProdBoxWrapper\":false,\"enableIpBr1ArtIntl\":false,\"hpGalMiddleRenderEnableIntl\":false,\"hpGridPovFt2RenderEnableIntl\":false,\"bpSbaDesignIterationsValue\":0,\"enableOMIDIntl\":false,\"enableSppMwebBPSVIntl\":false,\"hpTpFt3RenderEnableIntl\":false,\"collectionClientAdIntl\":false,\"enableBpMq2ArtIntl\":false,\"enableSppMwebBPSBAIntl\":false,\"enableSppWebHPSPCIntl\":false,\"enableCategoryTargeting\":false,\"isInspoAdEnabled\":false,\"gridpovbannersClientAdIntl\":false,\"tpSbaDesignIterationsValue\":0,\"enableSppMwebCPSPCIntl\":false,\"hpGridPovFt1RenderEnableIntl\":false,\"isRedirectWebItemSponsoredVideoAdIntl\":false,\"isRedirectMwebBrowseSponsoredVideoAdIntl\":false,\"enableSppMwebSPSVIntl\":false,\"hpColl2EnableIntl\":false,\"isRedirectMwebSearchBrandAmplifierAdIntl\":false,\"enableSppWebHomeSponsoredProductCarouselIntl\":false,\"enableSppMwebItemp13nIntl\":false,\"isRedirectWebBrowseSponsoredVideoAdIntl\":false,\"enableSpMq2ArtIntl\":false,\"enableSppWebItemp13nIntl\":false,\"enableItemConditionChanges\":true,\"enableSpMq1ArtIntl\":false,\"enableSppWebIPSBAIntl\":false,\"spImpBeaconServiceEnabled\":true,\"ipBr1RenderEnableIntl\":false,\"adjustablecardcarouselClientAdIntl\":false,\"enableHpTpFt3ArtIntl\":false,\"enableCpGalTopRenderIntl\":false,\"gallerydisplayadClientAdIntl\":false,\"enableSppWebBrowseSponsoredVideoAdIntl\":false,\"gridheropovbannerClientAdIntl\":false,\"hpGalBottomRenderEnableIntl\":false,\"spSvAdsEligibleBeaconEnable\":false,\"swapBuyboxBrandbox\":false,\"enableSppWebItemSponsoredProductCarouselIntl\":false,\"enableSppWebSearchBrandAmplifierAdIntl\":false,\"isRedirectWebSearchBrandAmplifierAdIntl\":false,\"isRedirectMwebItemBrandAmplifierAdIntl\":false,\"hpGalTopArtEnableIntl\":false,\"enableIntlTrackTTOCardIndex\":true,\"hpTpFt2RenderEnableIntl\":false,\"enableSppWebItemBrandAmplifierAdIntl\":false,\"tpSbaDesignIterationsEnable\":false,\"bottomMarginForLazyBBAds\":1500,\"hpGalMiddleArtEnableIntl\":false,\"enableHpAdjBannerIntl\":false,\"enableSpVideoAdLabelV1Intl\":false,\"enableBpMq1ArtIntl\":false,\"enableSppWebIPBBIntl\":false,\"enableSppMwebItemSponsoredProductCarouselIntl\":false,\"enableThreeGridBbBrIntl\":false,\"heropovClientAdIntl\":false,\"sbaBannerLabelEnable\":false,\"enableSppMwebHomeSponsoredProductCarouselIntl\":false,\"enableSpSvHideTabletVideoIntl\":false,\"enableSppMwebItemBuyBoxAdIntl\":false,\"enableSppMwebBPSPCIntl\":false,\"enableCpMq1ArtIntl\":false,\"hpTpFt1RenderEnableIntl\":false,\"disableLoader\":false,\"triplepackClientAdIntl\":false,\"spSbaDesignIterationsValue\":0,\"enableCpMq2ArtIntl\":false,\"enableSppWebCPSPCIntl\":false,\"enableIpMq1ArtIntl\":false,\"hpAccArtEnableIntl\":false,\"enableIpMq2ArtIntl\":false,\"enableSppWebSPSBAIntl\":false,\"enableInGridInViewBeaconFix\":true,\"enableAdsPromoData\":false,\"enableHpAdjBanArtIntl\":false,\"enableSppMwebBrowseBrandAmplifierAdIntl\":false,\"enableSpTTOArtIntl\":false,\"spSearchP13nCarouselEnable\":true,\"isRedirectMwebSearchSponsoredVideoAdIntl\":false,\"enableSppMwebItemSponsoredVideoAdIntl\":false,\"enableSpSvRenderIntl\":false,\"spSvDisableBadges\":true,\"isRedirectWebSearchSponsoredVideoAdIntl\":false,\"enableSpMq1RenderIntl\":false,\"enableCpSkArtIntl\":false,\"isSppEnabledIntl\":false,\"spGenAiSbaDesignIterationsEnable\":false,\"enableSppWebIPSVIntl\":false,\"enableSppMwebIPp13nIntl\":false,\"enableBpSkArtIntl\":false,\"enableSpSkArtIntl\":false,\"enableSppWebItemBuyBoxAdIntl\":false,\"spSbaVariationsConfig\":\"{}\",\"enableIpSkArtIntl\":false,\"enableBuyBoxAdInStickyContainerIntl\":false,\"hpAccHeroPovRenderEnableIntl\":false,\"enableSppMwebItemBrandAmplifierAdIntl\":false,\"enableSppWebSPSPCIntl\":false,\"enableSppWebSPSVIntl\":false,\"enableSppWebBPSPCIntl\":false,\"spImpBeaconServiceBatchIntervalMs\":0,\"hpGridPovFt3ArtEnableIntl\":false,\"isMHEnabledIntl\":false,\"hpGridPovFt1ArtEnableIntl\":false,\"enableSppWebBrowseSponsoredProductCarouselIntl\":false,\"enableSppMwebIPSVIntl\":false,\"enableSppMwebIPBBIntl\":false,\"enableSppMwebSearchBrandAmplifierAdIntl\":false,\"hpGalBottomArtEnableIntl\":false,\"enableSppWebItemSponsoredVideoAdIntl\":false,\"adjustablebannerClientAdIntl\":false,\"enableHpTpFt1ArtIntl\":false,\"spSbaNewBeaconAttributesEnable\":false,\"hpMq3RenderEnable\":false,\"enableSppMwebBrowseSponsoredVideoAdIntl\":false,\"cpHeroPovRenderEnableIntl\":false,\"hpHeroPovRenderEnableIntl\":false,\"enableHpTpFt2ArtIntl\":false,\"enableSppMwebBrowseSponsoredProductCarouselIntl\":false,\"enableSppMwebSPSBAIntl\":false,\"tpSbaVariationsConfig\":\"{}\",\"enableSppMwebIPSPCIntl\":false,\"enableSppMwebSearchSponsoredProductCarouselIntl\":false,\"enableSppWebSearchSponsoredVideoAdIntl\":false,\"enableSbaAtcForTablet\":false,\"enableBpMq1RenderIntl\":false,\"enableSppWebBPSVIntl\":false,\"isRedirectMwebItemSponsoredVideoAdIntl\":false,\"isRedirectIntl\":false,\"isRedirectWebBrowseBrandAmplifierAdIntl\":false,\"spGenAiSbaDesignIterationsValue\":0,\"enableSppMwebCategorySponsoredProductCarouselIntl\":false,\"ipBr1RenderEnableMWebIntl\":false,\"enableSppWebIPSPCIntl\":false,\"enableSppWebBrowseBrandAmplifierAdIntl\":false,\"brandboxdisplayadClientAdIntl\":false,\"spGenAiSbaVariationsConfig\":\"{}\",\"enableSppWebIPp13nIntl\":false,\"enableIngridOptimisedMqIntl\":false,\"hpHCRenderEnable\":false,\"hpColl1EnableIntl\":false,\"isRedirectMwebBrowseBrandAmplifierAdIntl\":false,\"enableSppWebCategorySponsoredProductCarouselIntl\":false,\"enableSppWebSearchSponsoredProductCarouselIntl\":false,\"hpGridPovFt3RenderEnableIntl\":false,\"skylinedisplayadClientAdIntl\":false,\"isRedirectWebItemp13nIntl\":false,\"enableBpTTOArtIntl\":false,\"ipDacMiddleReqEnable\":true,\"ipMq1DSPEnable\":true,\"enableHpRedesignXPA\":true,\"bpMq2FeedbackEnable\":true,\"pacSkMeasure3PEnable\":true,\"bpSpcEnableAdsBtfCmpV3\":false,\"spSigFeedbackEnable\":true,\"displayCheckIp\":false,\"hpSkMeasure1PEnable\":false,\"cartP13nMeasure1PEnable\":true,\"brRenderEnable\":\"\",\"enableBlendedSpAdsVariation\":false,\"adsWicBadging\":true,\"hpRedesignVisitedXpa\":\"hprXp\",\"bpSigFeedbackMobileEnable\":false,\"spSingleTTO2Measure1PEnable\":false,\"hpPrismAbF4ReqEnable\":true,\"adVariantBeaconEnable\":true,\"hpPrismTpF1Measure3PEnable\":true,\"fillEmptyLocWithProductLocEnable\":false,\"hpAbF5Measure3PEnable\":true,\"phMq1ReqEnable\":true,\"odpSkReqEnable\":true,\"mq2RenderEnable\":\"\",\"bpSvReqEnable\":true,\"hpPrismAbF4Measure1PEnable\":true,\"infoIconClickEnable\":true,\"mq1RenderEnable\":\"\",\"spSTTO2NoAdDSP\":false,\"dspViewabilityTracking\":true,\"bpSingleTTO2RenderEnable\":false,\"hpAbF5ReqEnable\":true,\"galMiddleFeedbackMobileEnable\":\"\",\"shpSkEnableAdsBtfCmpV3\":false,\"displayPreviousRenderCheck\":true,\"brDSPEnable\":\"\",\"hpMq2Measure3PEnable\":true,\"hpAccFetchPriorityEnable\":true,\"bpMq2Measure3PEnable\":true,\"enableSponsoredRedirectParam\":true,\"bpSingleTTO1RenderEnable\":false,\"skV3DSPEnable\":\"\",\"hpSpcEnableAdsBtfCmpV3\":false,\"spDacBottomReqEnable\":true,\"hpGalReqEnable\":true,\"shpSTTO2NoAdDSP\":false,\"bpMq2ReqEnable\":true,\"tileAdContainerHeightEnable\":true,\"ipBbVideoEnabled\":false,\"mq2FeedbackMobileEnable\":\"\",\"enableAdsPreorderCTA\":true,\"displayPoVAdBlockerEnable\":true,\"shpSkV2DSPEnable\":true,\"ipGalEnableAdsBtfCmpV3\":false,\"ipGalMiddleReqEnable\":false,\"hpGalMiddleReqEnable\":true,\"spSvMultiItemsEnable\":true,\"typMq1RenderEnable\":true,\"hpMq2RenderEnable\":true,\"bpMq2RenderEnable\":true,\"bpGalMeasure1PEnable\":false,\"phMq1Measure1PEnable\":true,\"hpPrismTpF3DSPEnable\":true,\"hpAccEarlyReturnEnable\":false,\"enableCreativeTypeBeacon\":true,\"bpMq1FeedbackEnable\":true,\"enableSmallSbaGenTileImg\":true,\"spSingleTTO1DSPEnable\":false,\"hpPrismTpF1ReqEnable\":true,\"ipGalMiddleRenderEnable\":false,\"tpMq2RenderEnable\":true,\"hpSkV2DSPEnable\":false,\"bpSingleTTO1Measure3PEnable\":false,\"displayIdentifyAdServer\":true,\"ipSpTile2Measure1pEnable\":true,\"ipSpc1Measure1PEnable\":true,\"odpMq1ReqEnable\":true,\"shpSingleTTO2Measure1PEnable\":true,\"spMq1ReqEnable\":true,\"tpSvReqEnable\":false,\"enableAdSmilePricing\":true,\"bpSingleTTO2ReqEnable\":false,\"hpSkRenderEnable\":false,\"ipSpTileEligibilityBeaconEnable\":true,\"shpSkMeasure1PEnable\":true,\"hpPovLockoutPriorityEnable\":true,\"phMq1RenderEnable\":true,\"adPreviousResponseNullCheck\":false,\"enableGetPvId\":true,\"hpAccHeroPov3ReqEnable\":true,\"enableTTFFCalcWithPlayingEvent\":true,\"spSbaDataV1Enable\":true,\"videoEarlyloadOffset\":1200,\"shpSingleTTO1RenderEnable\":true,\"hpPrismTpF1FeedbackEnable\":false,\"mq2ReqEnable\":\"\",\"ipSkFeedbackEnable\":true,\"tpSkDSPEnable\":true,\"enableSkEBForLsi\":true,\"spSkRenderEnable\":true,\"adSpBuyNowBeaconEnable\":false,\"displayUnitWrapperUnmount\":true,\"hpPrismTpF1RenderEnable\":true,\"galBottomDSP442Enable\":\"\",\"tpSkMeasure1PEnable\":true,\"bpSkDSPEnable\":true,\"ipBr1Measure1PEnable\":true,\"adManualShelfIdCheck\":true,\"hpGalMeasure1PEnable\":true,\"displaySbaLogospQs\":true,\"adSpClipBeaconEnable\":true,\"spSkFeedbackMobileEnable\":false,\"ipBbMultiItemsMaxAds\":1,\"videoPerformanceTrackerEnable\":true,\"enableGalleryCarouselMloc\":true,\"hpGalMiddleDSPEnable\":true,\"typSkV3DSPEnable\":true,\"hpGpbFs3ReqEnable\":true,\"shpSkReqEnable\":true,\"spIbottaEnable\":true,\"enableAdUnitVersion\":false,\"shpMosaicSpMeasure1pEnable\":false,\"hpPrismTpF3Measure1PEnable\":true,\"enableSbaLsiForMobile\":true,\"hpTpFs3DSPEnable\":true,\"spSingleTTO1RenderEnable\":false,\"adsPerformanceMetricsEnable\":false,\"spSingleTTO2RenderEnable\":false,\"ipMq2Measure3PEnable\":true,\"ipBbEligibilityBeaconEnable\":false,\"videoBtfv3Refactor\":false,\"blockInternal\":true,\"ipSpcHrMeasure1PEnable\":true,\"hpGpbFs3Measure3PEnable\":true,\"shpSpc1RenderEnable\":true,\"hpAccHeroPov2Measure3PEnable\":true,\"hpTpFs3Measure1PEnable\":true,\"hpTpFs1RenderEnable\":true,\"cacheBusterTimeDiffMs\":180000,\"enableStackedRecallTracking\":true,\"videoMaxHeight\":360,\"ipBr1DSPEnable\":true,\"phBr1Measure3PEnable\":true,\"bpSkMeasure3PEnable\":true,\"shpSpc1Measure1PEnable\":true,\"enableMq1InGridPosChangeGenAI\":true,\"myitemsMeasure1PEnable\":true,\"phBr1ReqEnable\":false,\"mq1Measure1pEnable\":\"\",\"hpGalMiddleRenderEnable\":true,\"tpSvDynamicPosEnable\":false,\"odpLazyConfig\":\"\",\"hpTpFs3ReqEnable\":true,\"bpGalMiddleDSPEnable\":false,\"galBottomMeasure1pEnable\":\"\",\"spSvMwebLoadingFixEnable\":true,\"displayProductsPos\":false,\"tpMq2Measure1PEnable\":true,\"hpMq1DSPEnable\":false,\"bpGalBottomMeasure1PEnable\":false,\"typMq1Measure3PEnable\":true,\"skV2SbaCheckEnable\":false,\"sbaLsiVersion\":\"v2\",\"adViewableGmBeaconCheck\":true,\"spMq1Measure3PEnable\":true,\"hpPrismTpF3FeedbackEnable\":false,\"phMq1DSPEnable\":true,\"bpSvMeasure1PEnable\":true,\"ipSkV2DwebImgEnable\":true,\"odpBr1RenderEnable\":true,\"skMeasure1pEnable\":\"\",\"spSvRenderEnable\":true,\"ipMq1ReqEnable\":true,\"ipSkDSPEnable\":true,\"ipSkEnableAdsBtfCmpV3\":false,\"hpMq2Measure1PEnable\":true,\"ipGalTopMeasure3PEnable\":false,\"hpPrismTpF2FeedbackEnable\":false,\"enableVideoUIErrorState\":true,\"spSpc1Measure1PEnable\":true,\"odpSkV3DSPEnable\":true,\"ipBr1ReqEnable\":true,\"spSvplaysInline\":true,\"spSvLoopCompleteEventEnable\":true,\"measure3PImpEnable\":true,\"bpMq2Measure1PEnable\":true,\"ipBr1VideoDSPEnabled\":false,\"enableFeedbackV1\":false,\"ipSpTile2RenderEnable\":true,\"bpSkFeedbackEnable\":true,\"adPreviewMode\":false,\"pacSkMeasure1PEnable\":true,\"hpPrismAbF4DSPEnable\":true,\"spSvInViewRemoveVideoData\":true,\"tpHideSBA\":false,\"enableIpBr1CreativeV1\":true,\"skFeedbackMobileEnable\":\"\",\"sbaCeBeaconEnable\":false,\"ipSkV3DSPEnable\":true,\"ipCpcRenderEnable\":true,\"cpSkRenderEnable\":false,\"spSvHideTabletVideo\":true,\"tpSigMeasure1PEnable\":true,\"bpSvAdsEligibleBeaconEnable\":false,\"mq1ReqEnable\":\"\",\"spSkV3DSPEnable\":true,\"bpSpc1Measure1PEnable\":true,\"enableAdV3Query\":true,\"bpSkFeedbackMobileEnable\":false,\"hpGpbFs1Measure3PEnable\":true,\"enableSbaGenericTileMWeb\":true,\"bpSvRenderEnable\":true,\"spSvRenderedImpressionEnable\":true,\"shpMosaicSpEnable\":false,\"hpAccHeroPov3Measure1PEnable\":true,\"bpGalBottomMeasure3PEnable\":false,\"bpMq1Measure1PEnable\":true,\"openRTBDisplayAdsBundleSafeframeURL\":\"https://i5.walmartimages.com/dfw/63fd9f59-4c54/7adb6fe1-4149-4ebe-b4c7-2ea1921d4a19/v362/openrtb-template-wrapper.html\",\"bpSkRenderEnable\":true,\"bpBigMeasure1PEnable\":true,\"hpPrismTpF3ReqEnable\":true,\"spSigFeedbackMobileEnable\":false,\"ipSkMeasure3PEnable\":true,\"bpSkV2DSPEnable\":true,\"hpPrismAbF4RenderEnable\":true,\"tpMq2DSPEnable\":true,\"enableIpMq2DupReqFix\":true,\"ipGalTopMeasure1PEnable\":false,\"cpMq2RenderEnable\":false,\"spGalBottomDSPEnable\":true,\"ipSpcHrReqEnable\":true,\"ipMq2RenderEnable\":true,\"unfilledAdResponseBeaconEnable\":false,\"adsEligibilityBeaconEnable\":false,\"useLegacyBtfCmp\":false,\"adResponseBeaconRefactorEnable\":true,\"hpTpFs2RenderEnable\":true,\"typAllEnableAdsBtfCmpV3\":false,\"hpPrismTpF2Measure1PEnable\":true,\"bpSingleTTO2Measure1PEnable\":false,\"bpMq2FeedbackMobileEnable\":false,\"spMq1DSPEnable\":true,\"tpSbaAdsEligibleBeaconEnable\":false,\"spSbaDesignIterationsEnable\":false,\"ipSpcCar2ReqEnable\":true,\"mq2Measure3pEnable\":\"\",\"shpSingleTTO1DSPEnable\":true,\"hpGpbFs3DSPEnable\":true,\"opSkEnableAdsBtfCmpV3\":false,\"contentPageClickBeaconEnable\":true,\"adsXpa\":\"EK9aV,g11Gw,we1_7,K4RHg,YuWze,mjsmX,FBtlW,fylVN,emhXE,f3TUV,Mz2b_,y1Ld_,lmqpp,rxvII,aj09x,a43Wd,IkWLe,hifq7,FP9w_,qVRqm,Uz9pg,3Cuop,Sbqj8\",\"skDSPEnable\":\"\",\"skipTpSvDynamicPosEnable\":false,\"spSvV2HookEnable\":true,\"hpGpbFs1ReqEnable\":true,\"ipBr1RenderEnable\":true,\"enable3pCookieBlockDetection\":true,\"tpSvVideoTrackingEnable\":false,\"pacSkReqEnable\":true,\"odpSkMeasure3PEnable\":true,\"phMq1Measure3PEnable\":true,\"spSkEnableAdsBtfCmpV3\":false,\"tileDisplayAdsEligibleEnable\":false,\"shpSigMeasure1PEnable\":true,\"enableBbWPlusEA\":true,\"hpAccShowAdCardEnable\":false,\"typSkReqEnable\":true,\"enableCenterAlignBrandBox\":false,\"addSpVideoNaBeacon\":true,\"galMiddleDSPEnable\":\"\",\"spSbaLSIEnable\":true,\"enable3PHumanIvtJsNonSf\":false,\"eqcVariantIdCheckEnable\":false,\"hpGalMiddleMeasure3PEnable\":true,\"enableSvTestAds\":false,\"tpSkFeedbackEnable\":false,\"skV2DwebImgEnable\":true,\"spSbaAdsEligibleBeaconEnable\":true,\"spSvYabasVideoModuleViewEnable\":true,\"pacSkFeedbackEnable\":false,\"bpSkReqEnable\":true,\"shpSingleTTO2RenderEnable\":true,\"videoViewabilityFix\":true,\"spMq1FeedbackEnable\":true,\"spSingleTTO2DSPEnable\":false,\"videoCCEnable\":true,\"hpAbF4FeedbackEnable\":false,\"hpPrismTpF3RenderEnable\":true,\"enableHpSkCeBeacons\":false,\"hpMq2DSPEnable\":true,\"tpMq1FeedbackEnable\":false,\"sponsoredLabelTextColor\":\"#74767C\",\"updateAdV2QueryUbsEnable\":true,\"ipBr1Measure3PEnable\":true,\"phSkRenderEnable\":true,\"ipGalTopReqEnable\":false,\"hpGalMeasure3PEnable\":true,\"hpAccHeroPov2FeedbackEnable\":false,\"enableViewUndetermined\":false,\"spGalReqEnable\":false,\"bpSingleTTO1DSPEnable\":false,\"spSingleTTO2ReqEnable\":false,\"hpGpbFs3RenderEnable\":true,\"hpGalMiddleFontChangesEnable\":true,\"enableMoatIvtSkip\":true,\"typSkMeasure3PEnable\":true,\"bpSingleTTO1ReqEnable\":false,\"spSTTO1NoAdDSP\":false,\"ipMq1Measure1PEnable\":true,\"odpSkV2DSPEnable\":true,\"display3PVisibilityCheck\":true,\"brFeedbackEnable\":\"\",\"defaultStoreId\":\"\",\"shpSingleTTO1ReqEnable\":true,\"hpAccHeroPov2Measure1PEnable\":true,\"tpSkV2DSPEnable\":true,\"odpMq1RenderEnable\":true,\"displayProductPos\":true,\"ipGalMiddleDSPEnable\":false,\"hpAbF4ReqEnable\":true,\"odpSkConfigLazy\":400,\"ipBr1VideoMeasure3PEnable\":false,\"enableGalleryReRender\":false,\"enableDisclaimerIconVar1\":true,\"ipBr1Version\":\"\",\"spSbaReqEnable\":true,\"spSpcEnableAdsBtfCmpV3\":false,\"spSkFeedbackEnable\":true,\"disableBottomMq2GenAI\":true,\"hpAbF4DSPEnable\":true,\"mq1Measure3pEnable\":\"\",\"moatIvt\":\"https://www.walmart.com/swag/v2/ip-rd\",\"ipSpc2ReqEnable\":true,\"enableDisplayEDPBadges\":true,\"hpAbF5RenderEnable\":true,\"ipSpgcRequestEnable\":false,\"pacP13nMeasure1PEnable\":true,\"showSkOnSbaLsi\":false,\"mq2FeedbackEnable\":\"\",\"hpPrismTpF1Measure1PEnable\":true,\"ipGalTopDSPEnable\":false,\"galBottomRenderEnable\":\"\",\"hpOldPageVisitedXpa\":\"hpXpa\",\"ipSkMeasure1PEnable\":true,\"hpPrismTpF3Measure3PEnable\":true,\"bpSbaMeasure1PEnable\":true,\"mq1DSPEnable\":\"\",\"enableSvGenericItemTile\":true,\"hpGalEnableAdsBtfCmpV3\":false,\"spSearchAdStHookUpdate\":true,\"phSkMeasure3PEnable\":true,\"bpMq1Measure3PEnable\":true,\"ipMq1Version\":\"\",\"ipMq2Measure1PEnable\":true,\"spSvReqEnable\":true,\"hpMq2ReqEnable\":true,\"sbaLogoClickEventFixEnable\":true,\"hpTpFs2DSPEnable\":true,\"tpMq2ReqEnable\":true,\"odpBr1Measure1PEnable\":true,\"hpAbF4Measure3PEnable\":true,\"adsHpControlGroupXpa\":\"T0FRM,HP1Ng,YJYo7,YzvhK\",\"skRenderEnable\":\"\",\"mq1FeedbackEnable\":\"\",\"typSkFeedbackEnable\":false,\"hpMq1Measure3PEnable\":true,\"enableAdsEligibitySbSv\":\"\",\"hpPrismAbF5Measure1PEnable\":true,\"bpSpc1ReqEnable\":true,\"sbaUiEnhanceEnable\":false,\"hpPrismAbF4FeedbackEnable\":false,\"ipMq1FeedbackEnable\":true,\"hpGalAdViewableGmBeaconFix\":true,\"ipMq2Version\":\"\",\"enableSbSvPageReq\":\"N/A\",\"adsControlGroupXpa\":\"T0FRM,HP1Ng,YJYo7,YzvhK\",\"moatRefactorEnable\":false,\"SbaNumsAdShownFixEnable\":true,\"spSbaLSIMwebAtcVariation\":true,\"ipMq2FeedbackMobileEnable\":false,\"typMq1ReqEnable\":true,\"hpAccHeroPov3RenderEnable\":true,\"adSPIncrementDecrementCheck\":true,\"odpSkMeasure1PEnable\":true,\"spMq1Measure1PEnable\":true,\"hpGpbFs1DSPEnable\":true,\"hpAccHeroPov2RenderEnable\":true,\"enableDownPaymentPricing\":true,\"enableSpCarouselElementIdChange\":true,\"spMq2FeedbackMobileEnable\":false,\"spMq2ReqEnable\":true,\"hpTpFs2ReqEnable\":true,\"ipBbReqEnable\":true,\"galMiddleRenderEnable\":\"\",\"phSkDSPEnable\":true,\"sbaMwebRedesignV1Enable\":true,\"pacSkDSPEnable\":true,\"spVideoAdsMobileStyling\":true,\"enableItemPageThreeGridAdsModule\":true,\"spGalBottomRenderEnable\":true,\"displayDeduplication\":true,\"tpSvAdsEligibleBeaconEnable\":false,\"ipSkRenderEnable\":true,\"phSkMeasure1PEnable\":true,\"enableIpDupReqFix\":true,\"skReqEnable\":\"\",\"spGalRenderEnable\":false,\"enableGalleryMultipleLocations\":true,\"bpSingleTTO2Measure3PEnable\":false,\"displayOrderDeduplication\":true,\"bpGalBottomDSPEnable\":true,\"hpPrismTpF2Measure3PEnable\":true,\"galMiddleReqEnable\":\"\",\"ipMq2FeedbackEnable\":true,\"adRequestBeaconEnable\":false,\"spMq1RenderEnable\":true,\"enableProductBrandOnBeacon\":false,\"adsSubscriptionPriceEnable\":true,\"spSingleTTO1Measure1PEnable\":false,\"bpSvVideoTrackingEnable\":true,\"useSearchBrowseBtfCmp\":false,\"phSkConfigLazy\":400,\"typSkDSPEnable\":true,\"updatedAdBlockerDetectionEnabled\":true,\"enableSeasonalColorOption\":false,\"enableHpNonEndemicAds\":true,\"enableBrandBoxEarlyLoad\":false,\"hpGpbFs1Measure1PEnable\":true,\"enableCustomFeedbackDisclaimer\":true,\"spGalMeasure1PEnable\":false,\"hpAccHeroPov3Measure3PEnable\":true,\"bpSbaDataV1Enable\":true,\"typSkRenderEnable\":true,\"hpP13nMeasure1PEnable\":true,\"typSkMeasure1PEnable\":true,\"spSvGridPositionBeacon\":true,\"bpSTTO2NoAdDSP\":false,\"bpGalBottomRenderEnable\":true,\"phSkConfigModuleLocation\":\"top\",\"shpSingleTTO2ReqEnable\":true,\"lazyRenderCmp\":false,\"ipMq2DSPEnable\":true,\"displayPPMMode\":true,\"bpMqEnableAdsBtfCmpV3\":false,\"feedbackForVideoRefactor\":false,\"spHideSBA\":false,\"ipP13nMeasure1PEnable\":true,\"tpSvDisableBadges\":false,\"bpSvDisableBadges\":true,\"ipSpcHrAdsEligibleBeaconEnable\":false,\"brVideo1DSPEnable\":\"\",\"spAtcTrackBeaconFix\":true,\"enableTabularCarousalP13nAdsTab1\":false,\"hpSkReqEnable\":false,\"ipSkReqEnable\":true,\"bpSvMultiItemsEnable\":true,\"spMqEnableAdsBtfCmpV3\":false,\"adShowAtcFieldEnable\":true,\"phSkFeedbackEnable\":false,\"tpMq1Measure1PEnable\":true,\"ipBbMultiItemsEnable\":false,\"hpTpFs1DSPEnable\":true,\"spGalDSPEnable\":false,\"hpTpFs2FeedbackEnable\":false,\"spSvAutoGenCcDisclaimerEnabled\":true,\"pacSkV2DSPEnable\":true,\"hpGpbFs2FeedbackEnable\":false,\"enableODPAds\":true,\"shpSkFeedbackMobileEnable\":false,\"spSkMeasure1PEnable\":true,\"spSigMeasure1PEnable\":true,\"hpTpFs2Measure1PEnable\":true,\"mq2DSPEnable\":\"\",\"pacSkFeedbackMobileEnable\":false,\"ipMq1FeedbackMobileEnable\":false,\"hpGalMiddleMeasure1PEnable\":true,\"spGalMeasure3PEnable\":false,\"tpSkRenderEnable\":true,\"hpGpbFs2RenderEnable\":true,\"spSvPlmtMacroReplaceEnable\":true,\"displaySpMyItems\":true,\"enableAdsBtfCmpV3\":false,\"updateAdV2Query2StoreEnable\":false,\"bpSingleTTO1Measure1PEnable\":false,\"tpSkReqEnable\":true,\"odpSkConfigModuleLocation\":\"top\",\"restrictSBSkOnSbaLsi\":false,\"ipSpTile1Measure1pEnable\":true,\"spMq1FeedbackMobileEnable\":false,\"bpHideSBA\":false,\"hpGpbFs1RenderEnable\":true,\"phSkV3DSPEnable\":true,\"skV2DSPEnable\":\"\",\"spSvFeedbackEnable\":false,\"shpSpc1ReqEnable\":true,\"ttoRedesignEnable\":true,\"disableLowPriorityBeacons\":false,\"tpSvRenderEnable\":false,\"adResponseBeaconEnable\":true,\"spMq2Measure3PEnable\":true,\"povMrcFix\":true,\"ipGalTopRenderEnable\":false,\"shpSTTO1NoAdDSP\":false,\"hpGpbFs1FeedbackEnable\":false,\"enableMyitemsAtcSortPlacementBeacon\":true,\"dspProcessingEnable\":true,\"hpFontStyleFix\":true,\"spMq2RenderEnable\":true,\"enableSpcWPlusEA\":true,\"spGenAiSearchSvMultiItemsEnable\":false,\"currCpSafeframeURL\":\"https://i5.walmartimages.com/dfw/63fd9f59-afe1/7adb6fe1-4149-4ebe-b4c7-2ea1921d4a19/v12/safeframe-content-page.html\",\"spSvVideoTrackingEnable\":true,\"bpMq1ReqEnable\":true,\"displayAddlInfo\":true,\"spSingleTTO1Measure3PEnable\":false,\"hpPrismTpF2ReqEnable\":true,\"viewableBeaconFix\":true,\"skFeedbackEnable\":\"\",\"enableSbSvFungibilityReq\":\"\",\"hpTpFs3FeedbackEnable\":false,\"pacSkRenderEnable\":true,\"mq2Measure1pEnable\":\"\",\"enableAtcItemClickBeaconFix\":true,\"hpTpFsAllDisableLoadingCard\":true,\"ipBr1VideoSvelteTemplateEnable\":false,\"enableGalleryTitle\":true,\"phBr1DSPEnable\":true,\"hpPrismTpF2DSPEnable\":true,\"enableHPHeroPOVAdOdnParams\":true,\"enableNewAdConfig\":false,\"tpSkV3DSPEnable\":true,\"hpGpbFs3FeedbackEnable\":false,\"adsHotBadging\":false,\"brMeasure3pEnable\":\"\",\"ipMq1Measure3PEnable\":true,\"hpPrismAbF5FeedbackEnable\":false,\"enableSpCarouselGenericTile\":true,\"spSbaMeasure1PEnable\":true,\"enableSpScAdsEligibleBeacon\":false,\"dspMultiProcessingEnable\":true,\"spSvYabasVideoClickEnable\":true,\"hpAccWaitForImgDwnldEnable\":true,\"hpTpFs1FeedbackEnable\":false,\"adCategoryTakeoverCheck\":true,\"hpGpbFs2Measure3PEnable\":true,\"shpSkDSPEnable\":true,\"spMq2DSPEnable\":true,\"enableSbaGenericTile\":true,\"cpMq1RenderEnable\":false,\"ipMq1RenderEnable\":true,\"opAllAdsEnableAdsBtfCmpV3\":false,\"ipSpTile1RenderEnable\":true,\"ipMqEnableAdsBtfCmpV3\":false,\"pacSkDisableTopPadding\":true,\"odpBr1Measure3PEnable\":true,\"hpAccAdReqDelayTimer\":0,\"hpSkMeasure3PEnable\":false,\"enableVideoTracker\":true,\"hpMq1Measure1PEnable\":true,\"enablePHAds\":true,\"hpPrismAbF5Measure3PEnable\":true,\"hpAbF4Measure1PEnable\":true,\"spSvUiAlphaUpdate\":true,\"spSingleTTO1ReqEnable\":false,\"shpSkRenderEnable\":true,\"enableClick3PURL\":true,\"bpDacBottomReqEnable\":true,\"disableBottomDACGenAI\":true,\"spSingleTTO2Measure3PEnable\":false,\"tileSvelteSfUrl\":\"https://i5.walmartimages.com/dfw/63fd9f59-4c54/7adb6fe1-4149-4ebe-b4c7-2ea1921d4a19/v365/openrtb-template-wrapper.html\",\"spSbaSvDesignTemplateId\":\"t0\",\"eqcSkVariantId\":false,\"enableStreamlineBadging\":true,\"bpMq1DSPEnable\":true,\"enableSPDupAdReqFix\":true,\"sbaMwebRedesignV2Enable\":false,\"hpGalRenderEnable\":true,\"typMq1Measure1PEnable\":true,\"spTrackingRefactorEnable\":true,\"defaultLocationZipCode\":\"\",\"bpSingleTTO2DSPEnable\":false,\"enableMqCreativeV1\":true,\"typMq1DSPEnable\":true,\"odpMq1Measure3PEnable\":true,\"shpSingleTTO2Measure3PEnable\":true,\"galMiddleMeasure3pEnable\":\"\",\"enableGalleryItemChanges\":true,\"spGalBottomMeasure1PEnable\":false,\"hpMq1ReqEnable\":true,\"hpSkV3DSPEnable\":false,\"ipSkFeedbackMobileEnable\":false,\"hpPrismAbF5RenderEnable\":true,\"odpSkFeedbackMobileEnable\":false,\"ipGalMiddleMeasure1PEnable\":false,\"enableSpSvWiderCard\":false,\"hpAbF5FeedbackEnable\":false,\"phSkReqEnable\":true,\"enableGalleryV2Design\":true,\"hpAbF5DSPEnable\":true,\"odpBr1ReqEnable\":false,\"spSvExplicitIntentReqEnable\":true,\"shpSingleTTO1Measure3PEnable\":true,\"ipSpcCar2Measure1PEnable\":true,\"bpMq2DSPEnable\":true,\"spSvViewableBeaconEnable\":true,\"disableMrcPeriodicAdStatus\":true,\"hpAbF4RenderEnable\":true,\"bpMq1FeedbackMobileEnable\":false,\"shpSingleTTO2DSPEnable\":true,\"bpGalRenderEnable\":false,\"tpSvMultiItemsEnable\":false,\"ipBrEnableAdsBtfCmpV3\":false,\"bpSigFeedbackEnable\":true,\"updatedAdBlockerLogicEnable\":true,\"spSvLazyLoadingEnable\":true,\"displayTitleEnabled\":true,\"brReqEnable\":\"\",\"phLazyConfig\":\"\",\"hpPrismAbF4Measure3PEnable\":true,\"bpSbaReqEnable\":true,\"staticHumanIvtJs\":\"https://s.xlgmedia.com/static/2.179.0/pagespeed.js?\",\"ipSpc1ReqEnable\":true,\"typSkFeedbackMobileEnable\":false,\"displayAdModuleViewEnable\":true,\"ipSpcHrRender\":true,\"hpSkDSPEnable\":false,\"ipAllAdsEnableAdsBtfCmpV3\":false,\"phSkFeedbackMobileEnable\":false,\"safeframeURL\":\"https://i5.walmartimages.com/dfw/63fd9f59-d6ba/07b8ea82-184c-4ea3-8ac0-5dc1981e40c8/v33/safeframe.html\",\"galCarCeBeaconEnable\":true,\"enableBbGenericTile\":true,\"ipBr1MinScreenHeight\":768,\"spMq2FeedbackEnable\":true,\"enableTileAdsCeBeacon\":false,\"galBottomFeedbackEnable\":\"\",\"hpTpFs1ReqEnable\":true,\"enableLegalDisclaimerSponsored\":true,\"bpGalReqEnable\":false,\"spSkDSPEnable\":true,\"multiStackIndexEnable\":true,\"tileAdLazyLoadConfig\":3500,\"galMiddleFeedbackEnable\":\"\",\"tpMq1Measure3PEnable\":true,\"hpTpFs1Measure1PEnable\":true,\"hpMqEnableAdsBtfCmpV3\":false,\"ipSkV2DSPEnable\":true,\"ipDacBottomReqEnable\":true,\"hpPrismTpF2RenderEnable\":true,\"spSkV2DSPEnable\":true,\"enable3PHumanIvtJs\":true,\"hpTpFs1Measure3PEnable\":true,\"tpSkMeasure3PEnable\":true,\"enableDisplayAdBadges\":true,\"hpPrismAbF5DSPEnable\":true,\"spGalMiddleDSPEnable\":false,\"enableMyitemsBlending\":true,\"spSvContainerEnable\":true,\"spGenAiSearchEnable\":true,\"hpTpFs2Measure3PEnable\":true,\"spSkMeasure3PEnable\":true,\"ipBr1EarlyLoadRootMargin\":0,\"galBottomDSPEnable\":\"\",\"tpMq2Measure3PEnable\":true,\"revertViewabilityTimerFix\":false,\"odpSkRenderEnable\":true,\"brMeasure1pEnable\":\"\",\"ipBbSvVideoTrackingEnable\":false,\"tpMq1ReqEnable\":true,\"defaultLocationStateCode\":\"\",\"bpSkEnableAdsBtfCmpV3\":false,\"bpSTTO1NoAdDSP\":false,\"odpMq1DSPEnable\":true,\"buyBoxVariations\":\"3\",\"ipBbSvPerformanceTrackingEnable\":false,\"galBottomReqEnable\":\"\",\"bpGalDSPEnable\":false,\"enableSearchGalleryMaxWidth\":false,\"skMeasure3pEnable\":\"\",\"spSkReqEnable\":true,\"hpPrismTpF1DSPEnable\":true,\"galBottomFeedbackMobileEnable\":\"\",\"mq1FeedbackMobileEnable\":\"\",\"hpGpbFs2Measure1PEnable\":true,\"enableMyitemsSortPlacementBeacon\":true,\"shpSkMeasure3PEnable\":true,\"odpBr1DSPEnable\":true,\"ipMq2ReqEnable\":true,\"spModularSearchAdEnable\":true,\"hpGalMiddleFeedbackEnable\":false,\"odpSkFeedbackEnable\":false,\"hpTpFs3Measure3PEnable\":true,\"spMq2Measure1PEnable\":true,\"tpSvMeasure1PEnable\":false,\"hpTpFs3RenderEnable\":true,\"shpSkFeedbackEnable\":false,\"tpMq2FeedbackEnable\":false,\"hpGpbFs2DSPEnable\":true,\"phBr1Measure1PEnable\":true,\"bpSkMeasure1PEnable\":true,\"brFeedbackMobileEnable\":\"\",\"ipSpc2Measure1PEnable\":true,\"ipSpcEnableAdsBtfCmpV3\":false,\"staticHumanIvtImg\":\"https://s.xlgmedia.com/2/469244/analytics.gif\",\"typSkV2DSPEnable\":true,\"phBr1RenderEnable\":true,\"spSvMeasure1PEnable\":true,\"shpSingleTTO1Measure1PEnable\":true,\"highlyRatedCarouselEnable\":true,\"ipBr1VideoAdsEligibleEnable\":false,\"spSvPerformanceTrackingEnable\":true,\"hpAccHeroPov3FeedbackEnable\":false,\"bpMq1RenderEnable\":true,\"tpSbaReqEnable\":false,\"ipSpgcMeasure1PEnable\":false,\"hpGpbFs2ReqEnable\":true,\"adsQuickshopBeaconEnable\":true,\"ipBbMeasure1PEnable\":true,\"hpMq1RenderEnable\":true,\"bpGalMeasure3PEnable\":false,\"spSvDynamicPosEnable\":true,\"pacSkV3DSPEnable\":true,\"hpAccHeroPovDSPEnable\":true,\"galBottomMeasure3pEnable\":\"\",\"odpMq1Measure1PEnable\":true,\"hpPrismAbF5ReqEnable\":true,\"galMiddleDSP442Enable\":\"\",\"shpSkV3DSPEnable\":true,\"ipBbRenderEnable\":true,\"hpAbF5Measure1PEnable\":true,\"safeframeTemplatesEnable\":true,\"tpMq1RenderEnable\":true,\"tpSkFeedbackMobileEnable\":false,\"bpSkV3DSPEnable\":true,\"skV3DisplayAdsEligibleEnable\":false,\"spGalBottomMeasure3PEnable\":false,\"spBbTranche2Enable\":true,\"ipBbLazyLoadingEnable\":false,\"tpSbaMeasure1PEnable\":false,\"hpAccHeroPovV2DSPEnable\":true,\"phSkV2DSPEnable\":true,\"hpGpbFs3Measure1PEnable\":true,\"galMiddleMeasure1pEnable\":\"\",\"ipBbAdV1Enabled\":false,\"tpMq1DSPEnable\":true,\"spSpc1ReqEnable\":true,\"odpSkDSPEnable\":true,\"bpSbaAdsEligibleBeaconEnable\":true,\"hpAccHeroPov2ReqEnable\":true,\"skylineSbaCheckEnable\":true,\"ipGalMiddleMeasure3PEnable\":false}},\"identity\":{\"_all_\":{\"hideIdentityProfileOtherInfo\":false,\"enableMobileAlertLinkFromTempo\":false,\"suppressEmailOtpOnSignInList\":\"e673210c-5627-40c2-a928-f58ba9616f0f,8256cf6a-0a6b-4dc6-9b9a-b7091605788d\",\"showMarketingEmailCheckbox\":true,\"w2WalmartOnePageRedirectEnabledFor\":\"WALMART-MX-EA,WALMART-MX-OD,BODEGA-MX-EA,e95ad554-d0bc-4eaa-b333-fa456b7b8c50,dea37645-2327-472e-8442-d0596483f8b7,1af2ce09-0295-4b6c-bdab-47b0b57bb7f9,9261560b-6081-49a5-9b77-6144d7b3be54\",\"clientIdToClientMapping\":\"e95ad554-d0bc-4eaa-b333-fa456b7b8c50,dea37645-2327-472e-8442-d0596483f8b7,1af2ce09-0295-4b6c-bdab-47b0b57bb7f9,9261560b-6081-49a5-9b77-6144d7b3be54\",\"enablePhoneSigninComponents\":true,\"enableEditBtnForCCA\":true,\"shouldUseUpdatePasswordMutation\":false,\"mobileAlertTermsLink\":\"https://www.walmart.com/help/article/mobile-alerts-terms-of-use/499122d9bba94d08b50e8facf42fcc82\",\"enableWcpMode\":true,\"enableRedirectionTo3pclient\":false,\"showOtpConsent\":false,\"sendTPFromGlobalNav\":false,\"enableWcpProfileFlow\":true,\"enablePasskeyRegistrationProfile\":false,\"enableSecondaryPhoneTypeSelection\":false,\"enableProfileSecondLastName\":false,\"enableSecondLastName\":false,\"enableVoiceOtpAdditionalTouchpoints\":false,\"enableGEPCountryResidence\":false,\"hideMobileAlertTerms\":false,\"enableIdentityUserSessionStorage\":true,\"rememberMeDisabledFor\":\"https://kiosco.www.walmart.com.mx,https://kiosco.www.bodegaaurrera.com.mx\",\"enableSinglePxAppId\":false,\"enableRedictToCustomSignupURL\":false,\"enableSignupPhoneOptional\":false,\"hideNotNowButtonOfUpdateCorrection\":false,\"enableMandatoryOtp\":true,\"enablePasskeySignIn\":true,\"enableCustomerInfo\":false,\"disablePhoneInputFieldInSignUp\":false,\"disableBotRedirectionOnAuthError\":false,\"enableMartInstrumentation\":false,\"enableTenantWcpMode\":true,\"enableCashiLinkingForSignIn\":true,\"isWCPSecondaryPhoneEnabled\":false,\"enablePasskeySignInStepUpVar2\":true,\"enableIdentityGEPExperience\":false,\"wcpClientList\":\"5f3fb121-076a-45f6-9587-249f0bc160ff,89f919a1-b9f1-4514-8b09-def2fef1d86d,c4b410cf-8cc6-4316-991c-2f961fe76147,9369f092-8a14-42be-948f-aac3a4e82227,d7e6358d-5d0c-4775-bcb6-4a05b16959e3\",\"enableSidePanelForEmailVerification\":false,\"useSignInV2\":false,\"enablePhoneOtpTimer\":false,\"loginPageTempoLayoutName\":\"base\",\"enableMultiCellOTPView\":true,\"addLocaleInIdentityPathUrl\":false,\"enablePhoneSignin\":true,\"w2WalmartOnePageRedirectTimeInterval\":3000,\"enablePhoneCollectorOnSignInWithPassword\":false,\"enableCashiLinking\":false,\"enablePasskeySignInStepUp\":true,\"rateLimitErrorRetryTime\":30,\"enablePhoneNumberOnPersonalInfo\":false,\"showPhoneInputWithDropdown\":false,\"hideFullNameEditBtn\":false,\"enableAuthMiddleware\":true,\"enablePasskeyCreationEntrypoints\":true,\"gepEligibleCountries\":\"US,MX\",\"isEmailVerificationEnabled\":false,\"enablePhoneAdministrationForProfile\":true,\"requestUserToUpdateApp\":true,\"enablePasskeySignIn3P\":false,\"enableEmailTrimSignIn\":true,\"disableOneTapSignInForWindows10Webview\":true,\"hideOneInfoScreen\":true,\"showSparkLegalStatement\":false,\"enableClaimAccount\":false,\"verifyPhoneBeforeEnrole2FA\":false,\"enableAssertionLevelElevation\":true,\"enablePrePopulateLoginId\":true,\"enablePhoneCollectorOnSignIn\":false,\"phoneCollectionEnabledFor\":\"e95ad554-d0bc-4eaa-b333-fa456b7b8c50,dea37645-2327-472e-8442-d0596483f8b7,1af2ce09-0295-4b6c-bdab-47b0b57bb7f9,9261560b-6081-49a5-9b77-6144d7b3be54\",\"disableFYPRateLimitRedirection\":false,\"enableFooterFromTempo\":false,\"enableIdentityWcpFlow\":false,\"enableStepupChoiceInMobileVerification\":false,\"enablePasskeyDeeplink\":false,\"gepUserBusinessUnit\":\"WALMART-US\",\"isValidateTokenEnabled\":false,\"domainsForSessionSharing\":\"{\\\"www.walmart.com.mx\\\":\\\"www.bodegaaurrera.com.mx\\\",\\\"www.bodegaaurrera.com.mx\\\":\\\"www.walmart.com.mx\\\"}\",\"enablePreventConfirmedPhone\":true,\"shouldIncludePhoneInfoInSignIn\":false,\"enableCashiLinkingForSignUp\":true,\"hipaaClients\":\"4719201b-d020-451f-ae2e-290743e33fab\",\"enableTermsAndConditionsCheck\":false,\"forceAutoCorrectionOnSignUp\":false,\"enableNationalId\":false,\"gepUserBuinessUnit\":\"WALMART-US\",\"enableVoiceOtp\":true,\"enablePVOtpCOperation\":true,\"ssoClientIdList\":\"f907c137-3cf2-4d66-a1c5-922c1f48104c\",\"middleNameRequiredFor\":\"WALMART-MX-EA,WALMART-MX-OD,BODEGA-MX-EA,e95ad554-d0bc-4eaa-b333-fa456b7b8c50,dea37645-2327-472e-8442-d0596483f8b7,1af2ce09-0295-4b6c-bdab-47b0b57bb7f9,9261560b-6081-49a5-9b77-6144d7b3be54,d53e5e69-6fb6-4b16-957a-10448736ce19\",\"enableAlertsForBusinessWalmart\":false,\"skipPhoneCollectionForDays\":0,\"hideIdentityFooter\":false,\"enablePasskeyRegistration\":true,\"enableCountryCodeFilter\":false,\"enableGAddressSdkInKyc\":true,\"enableRiskBasedEmailOtpSuppression\":false,\"authReturnUrlWcp\":\"\",\"enableAuthCsrMiddleware\":false,\"enableSignInPreferenceSection\":false,\"shouldInvalidateQueryForProfile\":false,\"enableSingleProfileInfoQuery\":false,\"shouldSendOTPbeforeLoading\":false,\"enableSessionSharingDomains\":\"www.walmart.com.mx,www.bodegaaurrera.com.mx\",\"useIdentityModifyProfileName\":true,\"enableWhitelistDomainWcpLogout\":false,\"isRememberMeEnabledFor\":\"WALMART-MX-EA,WALMART-MX-OD,BODEGA-MX-EA,e95ad554-d0bc-4eaa-b333-fa456b7b8c50,dea37645-2327-472e-8442-d0596483f8b7,1af2ce09-0295-4b6c-bdab-47b0b57bb7f9,9261560b-6081-49a5-9b77-6144d7b3be54\",\"enableOidcRedirection\":true,\"showNotNowOnPhoneCollectorOtpView\":false,\"whitelistDomainForLogoutReturnUrl\":\"\",\"enableSkipForgotpasswordPageForFYP\":true,\"enablePwdPolicyWithNumOrSpecialChar\":true,\"signUpErrorCodeList\":\"COMPROMISED_CREDENTIALS,INVALID_NAME\",\"enablePhoneCollectorOnSigninEmailOTP\":true,\"enableWithTrustedSession\":true,\"redirectToPasswordPage\":false,\"identityDomain\":\"https://identity.walmart.com\",\"disableMandatoryOtpForClientIDList\":\"eca75c97-bc67-4b5a-a3d8-b2416697daca,c4b410cf-8cc6-4316-991c-2f961fe76147,45855355-efe2-4636-9c0f-fe811d9cae64\",\"thirdPartyClientList\":[\"46aaf693-6f92-4492-9a86-02036be7882a\",\"d4d0be57-6e9d-414d-8617-f859cf003b22\",\"e855dfa0-589b-45a6-a0bd-a5bb9d7f6731\",\"0866a3e6-160f-46c3-8bd9-7a86dc86dde3\",\"c3f2a403-9cec-46d0-a41a-7ca0e4f63856\",\"d0be26f3-6398-4270-82d5-d9ef61e2e656\",\"e673210c-5627-40c2-a928-f58ba9616f0f\",\"3D4c0a045d-6e50-4985-bbd5-ddae595ec976\",\"e769eb14-1bac-47f0-a484-b0c11c860e97\",\"8256cf6a-0a6b-4dc6-9b9a-b7091605788d\",\"35a77f8a-dbf1-48d1-ab8f-c1e44e3e1c88\",\"7f04a61e-99cf-440f-82e4-48d23d66175a\",\"eca75c97-bc67-4b5a-a3d8-b2416697daca\",\"89f919a1-b9f1-4514-8b09-def2fef1d86d\",\"c4b410cf-8cc6-4316-991c-2f961fe76147\",\"2631ccc0-ef4e-43bf-890d-2f8f573d3572\",\"9d7dc281-c287-4d34-ac45-a52cf9c36f0a \",\"7317549a-c0d2-4e80-a565-02df2577dd8b\",\"9937b163-f113-47bb-9992-d14044c1351b\",\"cbbca8ab-11cf-4275-bea1-f255c0cc330e \",\"1cad36da-b4c7-4e13-8460-71ff50ced7e2 \",\"17da58f9-88e6-4eae-866a-fa44ff72eac9 \",\"e9c7cf28-15e8-4d6d-88fc-b6bbb454349d\",\"70954284-aaf6-4f7e-9fd2-d57e3143292e\"],\"transactionSource\":\"maplecoffee,pd\",\"enablePwdPolicy\":false,\"transactionalTpValues\":\"CXO,wplusdelta,pd\",\"enablePasswordLess\":true,\"enable2FA\":true,\"enablePhoneCollectorOnSignUp\":true,\"webAuthSsoFeatureClientIdExcludeList\":\"\\\"e769eb14-1bac-47f0-a484-b0c11c860e97,c4b410cf-8cc6-4316-991c-2f961fe76147,70954284-aaf6-4f7e-9fd2-d57e3143292e,eca75c97-bc67-4b5a-a3d8-b2416697daca,\\u2028\\n7f04a61e-99cf-440f-82e4-48d23d66175a,\\u2028\\n89f919a1-b9f1-4514-8b09-def2fef1d86d,\\u2028\\ne673210c-5627-40c2-a928-f58ba9616f0f,\\n8256cf6a-0a6b-4dc6-9b9a-b7091605788d,\\u2028\\n2631ccc0-ef4e-43bf-890d-2f8f573d3572,\\u2028\\n0866a3e6-160f-46c3-8bd9-7a86dc86dde3,\\u2028\\n9d7dc281-c287-4d34-ac45-a52cf9c36f0a,\\u2028\\n7317549a-c0d2-4e80-a565-02df2577dd8b,\\u2028\\n9937b163-f113-47bb-9992-d14044c1351b,\\u2028\\ncbbca8ab-11cf-4275-bea1-f255c0cc330e,\\u2028\\n1cad36da-b4c7-4e13-8460-71ff50ced7e2,\\u2028\\n17da58f9-88e6-4eae-866a-fa44ff72eac9,\\u2028\\ne9c7cf28-15e8-4d6d-88fc-b6bbb454349d,\\nce39e45b-be54-4e7e-819a-6393950498e9,\\n43f990f9-1a4b-45d7-9cc0-2a5a5f304acf\\\"\",\"enableEmailOtpPhoneAvailable\":true,\"showMergeSignup\":true,\"isContentLayoutGuestEnabled\":false,\"oneTapAllowList\":\"/,/ip,/search,/browse\",\"enablePhoneAdministrationForFYP\":false,\"loginWithEmailOtpChoiceEnabledFor\":\"WALMART-MX-EA,e95ad554-d0bc-4eaa-b333-fa456b7b8c50,dea37645-2327-472e-8442-d0596483f8b7,1af2ce09-0295-4b6c-bdab-47b0b57bb7f9,9261560b-6081-49a5-9b77-6144d7b3be54\",\"enableAuthFramePerf\":true,\"disablePhoneCollByClientId\":\"\\\"e769eb14-1bac-47f0-a484-b0c11c860e97,c4b410cf-8cc6-4316-991c-2f961fe76147,70954284-aaf6-4f7e-9fd2-d57e3143292e,eca75c97-bc67-4b5a-a3d8-b2416697daca,\\u2028\\n7f04a61e-99cf-440f-82e4-48d23d66175a,\\u2028\\n89f919a1-b9f1-4514-8b09-def2fef1d86d,\\u2028\\ne673210c-5627-40c2-a928-f58ba9616f0f,\\n8256cf6a-0a6b-4dc6-9b9a-b7091605788d,\\u2028\\n2631ccc0-ef4e-43bf-890d-2f8f573d3572,\\u2028\\n0866a3e6-160f-46c3-8bd9-7a86dc86dde3,\\u2028\\n9d7dc281-c287-4d34-ac45-a52cf9c36f0a,\\u2028\\n7317549a-c0d2-4e80-a565-02df2577dd8b,\\u2028\\n9937b163-f113-47bb-9992-d14044c1351b,\\u2028\\ncbbca8ab-11cf-4275-bea1-f255c0cc330e,\\u2028\\n1cad36da-b4c7-4e13-8460-71ff50ced7e2,\\u2028\\n17da58f9-88e6-4eae-866a-fa44ff72eac9,\\u2028\\ne9c7cf28-15e8-4d6d-88fc-b6bbb454349d,\\nce39e45b-be54-4e7e-819a-6393950498e9\\\"\",\"enableOneTapSignInLandingPages\":true,\"enablePwdPolicyWithNumAndSpecialChar\":false,\"enableEmailOtpPhoneNotAvailable\":true,\"isGlassFrameEnabled\":true,\"enableNonceForAuthFrame\":true,\"enableOneTapSignIn\":true,\"enableOpenRedirectProtection\":true,\"enableCsrTransitions\":true,\"enableUpdateEmailWithPhoneOTP\":true,\"enablePhoneCollectorOnSignUpForAllFlows\":false,\"oidcRedirectionVidList\":[\"oaoh\",\"24\",\"GR\",\"2\",\"10\",\"gr\"],\"frameRedirectOnFailure\":true,\"enablePhoneAdministrationForSignUp\":false,\"enablePhoneCollectorOnFYP\":true,\"enableLoggedInRedirect\":true,\"enableWPlusSplashScreen\":false,\"enableConsentRedirects\":true,\"consentClientList\":\"e673210c-5627-40c2-a928-f58ba9616f0f,35a77f8a-dbf1-48d1-ab8f-c1e44e3e1c88,8256cf6a-0a6b-4dc6-9b9a-b7091605788d\",\"enablePhoneAdministrationForSignIn\":false,\"identityNextTenants\":\"{\\\"tenant\\\":\\\"walmart.com\\\",\\\"name\\\":\\\"Walmart US Ecommerce Website\\\",\\\"currency\\\":\\\"USD\\\",\\\"id\\\":\\\"0\\\",\\\"domain\\\":\\\"www.walmart.com\\\",\\\"cookieDomain\\\":\\\".walmart.com\\\",\\\"realm\\\":\\\"WALMART.COM\\\",\\\"beacon\\\":{\\\"bh\\\":\\\"beacon.walmart.com\\\"},\\\"vertical\\\":[{\\\"name\\\":\\\"GENERAL MERCHANDISE\\\",\\\"id\\\":\\\"0\\\"},{\\\"name\\\":\\\"PHARMACY\\\",\\\"id\\\":\\\"1\\\"},{\\\"name\\\":\\\"GROCERIES\\\",\\\"id\\\":\\\"2\\\",\\\"domain\\\":\\\"grocery.walmart.com\\\",\\\"realm\\\":\\\"US-GR\\\",\\\"beacon\\\":{\\\"bh\\\":\\\"beacon.grocery.walmart.com\\\"}},{\\\"name\\\":\\\"VUDU\\\",\\\"id\\\":\\\"13\\\",\\\"domain\\\":\\\"video.walmart.com\\\"},{\\\"name\\\":\\\"SPARK\\\",\\\"id\\\":\\\"14\\\",\\\"domain\\\":\\\"spark.walmart.com\\\",\\\"realm\\\":\\\"US-GR\\\",\\\"beacon\\\":{\\\"bh\\\":\\\"beacon.grocery.walmart.com\\\"}},{\\\"name\\\":\\\"PHOTO\\\",\\\"id\\\":\\\"4\\\",\\\"domain\\\":\\\"photos3.walmart.com\\\",\\\"realm\\\":\\\"WALMART.COM\\\",\\\"beacon\\\":{\\\"bh\\\":\\\"beacon.photos3.walmart.com\\\"}},{\\\"name\\\":\\\"ADVERTISING\\\",\\\"id\\\":\\\"15\\\",\\\"domain\\\":\\\"advertising.walmart.com\\\"},{\\\"name\\\":\\\"SAVINGS CATCHER\\\",\\\"id\\\":\\\"10\\\",\\\"domain\\\":\\\"savingscatcher.walmart.com\\\"},{\\\"name\\\":\\\"GIFTCARDS\\\",\\\"id\\\":\\\"19\\\",\\\"domain\\\":\\\"giftcards.walmart.com\\\"},{\\\"name\\\":\\\"INHOME\\\",\\\"id\\\":\\\"24\\\",\\\"domain\\\":\\\"inhome.walmart.com\\\"},{\\\"name\\\":\\\"AFFILIATE\\\",\\\"id\\\":\\\"25\\\",\\\"domain\\\":\\\"affil.walmart.com\\\"},{\\\"name\\\":\\\"ONEAPP\\\",\\\"id\\\":\\\"26\\\",\\\"domain\\\":\\\"mystore.walmart.com\\\",\\\"realm\\\":\\\"US-GR\\\",\\\"beacon\\\":{\\\"bh\\\":\\\"beacon.mystore.walmart.com\\\"}},{\\\"name\\\":\\\"LOTUS\\\",\\\"id\\\":\\\"27\\\",\\\"domain\\\":\\\"lotus.walmart.com\\\"},{\\\"name\\\":\\\"HELP\\\",\\\"id\\\":\\\"28\\\",\\\"domain\\\":\\\"help.walmart.com\\\"},{\\\"name\\\":\\\"IOT\\\",\\\"id\\\":\\\"29\\\",\\\"domain\\\":\\\"iot.walmart.com\\\"},{\\\"name\\\":\\\"SMART_REORDER\\\",\\\"id\\\":\\\"32\\\"},{\\\"name\\\":\\\"GROCERY\\\",\\\"id\\\":\\\"GR\\\",\\\"beacon\\\":{\\\"bh\\\":\\\"beacon.grocery.walmart.com\\\"}},{\\\"name\\\":\\\"CONV_COMMERCE\\\",\\\"id\\\":\\\"31\\\",\\\"domain\\\":\\\"texttoshop.walmart.com\\\"}]}\",\"frameMaxLoadTime\":7000,\"enableGetResetOptions\":true,\"oneTapOptOutExpireTime\":3600000}},\"footer\":{\"_all_\":{\"enableGPCOptOut\":true,\"enableSocialMediaLinks\":false,\"hideSignupForEmailLink\":false,\"enableDownloadOurApp\":false,\"enableMXUserComments\":false,\"deleteAccountLink\":\"/account/delete-account\",\"enableRedesignedNativeAppInstallStickyBanner\":false,\"enableRemarketingEmailSignup\":false,\"enableRedesignedAppInstallStickyBanner\":false,\"enableTextSignUp\":false,\"isFullFooterEnabled\":false,\"timeIntervalInHoursNativeAppInstallPrompt\":24,\"dbQrDownloadBottomSheetSecondaryMessageText\":\"Use the app to get up-to-date store prices and find items with store maps.\",\"enableShopOurBrandsSection\":false,\"enableAccountDeletionLink\":true,\"feedbackFetchMigrationToPlatformFetch\":true,\"hideGiveFeedbackSection\":true,\"enableEmailSignup\":false,\"enableQuickLinkSection\":false,\"hideContactNumber\":false,\"enablePrivacyLinkUpdate\":true,\"enableXOFeedback\":true,\"timeIntervalInHrsDbQrAppInstallBtmSheet\":168,\"dbQrDownloadBottomSheetSecondaryMsgText\":\"Use the app to get up-to-date store prices and find items with store maps.\",\"enableNativeAppDownloadBottomsheet\":true,\"enableDbQrDownloadBottomSheet\":true,\"feedbackTenantName\":\"WM_GLASS\",\"timeIntervalInHoursDbQrNativeAppInstallBottomSheet\":168,\"maxNumberOfDbQrDownloadBottomSheetViews\":1,\"dbQrDownloadBottomSheetPrimaryMsgText\":\"Want to check store prices?\",\"dbQrDownloadBottomSheetPrimaryMessageText\":\"Want to check store prices?\",\"enableNativeAppDownloadStickyBanner\":true,\"enableInStoreWifiAppPrompt\":true,\"maxNumberOfNativeAppInstallPrompt\":2,\"enableForceB2BLogout\":true}},\"pulse\":{\"_all_\":{\"enableFS\":false,\"enableMergeHallwayBeacon\":false,\"enableScriptDefer\":false,\"alwaysAllowedTagList\":\"\",\"logLevel\":\"info\",\"enableBeaconDeferBrowserAllowList\":\"Chrome\",\"enableBeaconDefer\":true,\"enableATFMarker\":true,\"enableV1Schema\":true,\"enableQuantumMetric\":false}},\"header\":{\"_all_\":{\"enableInpDeferFlyoutLinks\":true,\"enableSubNavPillsIcon\":false,\"enableSubscriptionLink\":true,\"debouncedSearchTermTimeout\":500,\"enableInpClickSearchInputField\":false,\"enablePickupStoreSelection\":false,\"enableNonStickyGICByPath\":\"/ip\",\"enableLmpFiltering\":true,\"enableNonStickyHeaderForExternalOnly\":false,\"enableInpDebouncedSearchTerm\":false,\"enableFetchAlertBarCSR\":false,\"enableSearchOnEnterKey\":true,\"enableRedirectionOfHelpTopicPages\":false,\"enableGepSuppressServiceMenu\":false,\"enableNotificationCenter\":true,\"enableInpSearchBarAndIcon\":false,\"enableSubNavPills\":true,\"enableOptimizedHeaderLogoSVG\":false,\"enableRedesignedHeaderV2\":true,\"enableDepartmentsListPage\":true,\"enableSuppressAlertBarOnMweb\":false,\"enableGICGuestStoreUpdate\":true,\"enableNonStickyHeader\":false,\"showMembershipLink\":false,\"enableGenAiCustomStyle\":false,\"enableNeutralHeaderTheme\":false,\"enableHeaderSubnavDuckingV2\":false,\"enableGlobalSubNavLinks\":false,\"enablePersistSearchQueryTypeahead\":false,\"enableHeaderSubnavDuckingV1\":false,\"enableAccountButtonLanguageSelector\":true,\"enableWalmartCashInNav\":true,\"enableInpSearchSsrRoute\":false,\"enableLanguageSelectorV2\":false,\"hideServiceWidget\":true,\"showNavLinks\":true,\"enableInpImprovementForSignIn\":true,\"enableNavClickability\":true,\"globalNavCacheVariation\":\"\",\"enableReorder\":false,\"enableGICAutoShowOnSessionStart\":false,\"enableGicStoreNotFoundErrorHandling\":true,\"heartingEnhancementsEnable\":false,\"enableTADropdown\":false,\"calloutViewsPerIdPerBSTC\":1,\"flyOutExpandOnClick\":true,\"enableWplusLogoOnSiteHeader\":true,\"hideSwitcher\":false,\"headerINPOptimizationEnum\":\"WCPINP,LNKINP\",\"enableInpImprovementForLogo\":true,\"enableResponsiveHF\":true,\"enableDeliveryStoreSelection\":true,\"enableLightweightHeader\":false,\"calloutsEnabled\":true,\"enableL0SeoLinksForItemPage\":false,\"showAddressLineOne\":true,\"mWebSubNavLinksPages\":\"homePage\",\"enableRedesignedHeader\":true,\"fetchLocation\":false,\"maxCalloutsPerBSTC\":4,\"lmpNavName\":\"LocalFinds\",\"enableMultipleInhomeAddresses\":true,\"enableGoogleEnhancedPlaceActions\":true,\"showOptOut\":false,\"enabledGICRetentionPrompt\":false,\"enableL0SeoLinksForAllPage\":true,\"enableGIC\":true,\"navLinks\":\"'[{\\\"name\\\": \\\"Grocery\\\",\\\"link\\\": \\\"https://www.walmart.com/cp/1735450\\\"},{\\\"name\\\": \\\"Tech\\\",\\\"link\\\": \\\"https://www.walmart.com/cp/electronics/3944\\\"},{\\\"name\\\": \\\"Fashion\\\",\\\"link\\\": \\\"https://www.walmart.com/cp/clothing/5438\\\"},{\\\"name\\\": \\\"Home\\\",\\\"link\\\": \\\"https://www.walmart.com/cp/home/4044\\\"},{\\\"name\\\": \\\"Patio \\u0026 garden\\\",\\\"link\\\": \\\"https://www.walmart.com/cp/patio-garden/5428\\\"},{\\\"name\\\": \\\"National donut day\\\",\\\"link\\\": \\\"https://www.walmart.com/shop/national-donut-day\\\"},{\\\"name\\\": \\\"Deals\\\",\\\"link\\\": \\\"https://www.walmart.com/shop/deals\\\"},{\\\"name\\\": \\\"Walmart+\\\",\\\"link\\\": \\\"https://www.walmart.com/plus\\\"}]'\",\"enableGicResiliency\":true,\"isAlertBarEnabled\":true,\"fetchLocationCSROnLoad\":true,\"enableWplusRedesignTheme\":false,\"enableLocalizedStringInGIC\":true,\"calloutViewsPerIdPerVTC\":2,\"enableStickyGIC\":true}},\"bookslot\":{\"_all_\":{\"enableStoreSelectorByItemId\":false,\"enableMembershipSlotView\":false,\"enableMembershipPass\":false,\"enableExpressEvergreenDesignUpdate\":true,\"enableDeliveryPass\":false,\"enableInventoryAwareMPPickup\":true,\"enableMembershipCorrectTargeting\":false,\"enableHourMinutesSlots\":false,\"enableStoreBrandFormat\":false,\"enableMobileDayButtonOnDesktop\":false,\"hidePayOnlineIcon\":false,\"enableFreeExpressNewUI\":true,\"enableFreeDeliveryThresholdMessage\":false,\"enableBookslotRedirectLink\":false,\"hideNearbyNodeUnavailableText\":false,\"disablePostalCodeValidation\":false,\"enableStoreSelectorResiliency\":false,\"enableNewExpressUI\":false,\"enableExpressSlotIsSelectableLogicFix\":true,\"skipGetSlotsForGuest\":true,\"enableOfflinePaymentForCSPD\":false,\"enablePickUpInStoreAccessType\":false,\"enableExpressUnavailableBanner\":false,\"deliveryStoreSelectorRadiusInMiles\":35,\"enableItemIneligibleCount\":false,\"enablePremiumSlotsBranding\":false,\"enableEvergreenSlot\":true,\"enableCityStateInputValidation\":true,\"enableExpress6amBanner\":true,\"enablePriorityTimesIntegratedSignup\":true,\"expressDeliveryOnlyStores\":true,\"enableHolidayFreeExpressNewUI\":true,\"enableWplusCashback\":false,\"enableFulfillmentIntent\":true,\"enableInHomeAmPmSlotsPhase2\":true,\"enableUseCurrentLocationFromBrowser\":true,\"evergreenWPlusMemberHolidayDiscountStrikeoutPrice\":\"5\",\"enableEarliestAvailableDayPreselection\":false,\"enableNoPickupSlotSelectionForDefaultStore\":true,\"enableStoreHours\":true,\"enableStorePagesAndFinderPhase2\":true,\"enableInputTypeAhead\":true,\"enableSlotMetadataLogging\":false,\"tempoCacheExpirationInSeconds\":300,\"enableStoreSelectorFeedback\":true,\"enableReservationNotAcceptableFix\":true,\"enableStoreSelectorMarketplacePickup\":true,\"hasSimplifiedSlotShortcutV1\":\"\",\"disableFreeDeliveryBannerForExpressOnlyStores\":true,\"enablePassCartIdAcidCheckStoreSelector\":true,\"enableZeroDeliverySlotPriceFree\":false,\"projectThunderbolt\":true,\"enableWirelessPostpaid\":true,\"enableACCStoreSelectorErrorHandling\":true,\"enableReReserveSlot\":true,\"walmartPlusFreeDelivery\":true,\"enableDeliveryStoreSelectorInHomeSupport\":true,\"enableMultipleInhomeAddresses\":true,\"enablePassCartIdAcidCheck\":true,\"enableNoSlotPreselectionOnTabSwitch\":false,\"enableMemberInfoFromCartCustomerContext\":true,\"enableWalmartPlus\":true,\"enableCityStateZipcodeAdaptiveInput\":true,\"enableItemIneligibleBadgeNewUi\":true,\"enableDeliveryAddressFromSlotData\":true,\"enablePriorityTimes\":true,\"maxCountOfStoresForInventory\":8,\"enableLocalizedStringInBookSlot\":true,\"enablePreselectionV2UserIntentOverReservation\":false,\"enableSimplifiedSlotShortcut\":false,\"enableBookslotMobileSticky\":true,\"enableCityAndStateInputForPickupStore\":true,\"enableEvergreenSlotBranding\":true,\"evergreenMemberHolidayStrikeoutPrice\":\"5\",\"hideIneligibleSlotsUnderCTA\":false,\"enableWalmartPlusIntegratedSignUp\":true,\"hidePickupSlotPrice\":true,\"enableEvergreenHolidayDiscount\":true,\"enableUseCurrentLocation\":true,\"evergreenNonMemberStrikeoutPrice\":\"12.95\",\"enableBlockRegistrantAddressDelivery\":true,\"enableEarliestAvailableSlotPreselection\":false,\"nodeSelectableOnlineEnable\":true,\"hideStoreChooserDefaultAlert\":true,\"enableAccSlotExpansion\":true,\"enableStoreNotFoundErrorHandling\":true,\"enableWplusOldBannerUI\":true,\"enableInhomeTipFreePriceLabel\":true,\"enableAllSlotsUnavailableMessageTypesFix\":true,\"enableACCStoreSelectorOnSlotsUnavailable\":true,\"enableFulfillmentOptionURLParam\":true,\"enableInHomeAmPmSlots\":true,\"enableInHomeSlotsQueryHeader\":true,\"refreshCPOnStoreChange\":false,\"mergeSlotsEnable\":true,\"gmStoreMessageForNoUSPSlot\":true,\"enableEvergreenFee\":true,\"enableColdChainExpansion\":true,\"evergreenNonMemberHolidayDiscountStrikeoutPrice\":\"12.95\",\"disableSlotShortcutInGIC\":false,\"enableColdChainExpansionFilterSlots\":false,\"disableMergeAndGetCartCSR\":true,\"alcoholRestrictedSlotsFilterEnable\":true,\"enableMaSlotCaching\":false,\"enableAvailableForInstallationText\":true,\"enableAmendsAccSlotExpansion\":true,\"bookslotShortcutMaxSlotReqCount\":21,\"enableUnauthorizedAccessToCartErrorFix\":true,\"enableSlotPreSelectionV2\":true,\"enablePickupOnShippingIntent\":true,\"enableDeliveryFromStoreInfoModule\":true,\"enableCityAndStateInput\":true,\"enableHideInstoreCheckmark\":true,\"disableFreeDeliveryBannerForExpressOnly\":true,\"enableStoreSelectorUnauthAccessFix\":true,\"enableWplusRemoveBannersCardCheck\":true,\"enableCartFulfillmentOption\":true,\"enableStorePagesAndFinder\":true,\"enableNoSlotsAvailableScreen\":true,\"enableStoreSelectorUnauthorizedAccessToCartErrorFix\":true,\"enableTempoBookslotSlotPromotionBanner\":true}},\"cart\":{\"_all_\":{\"skipDeliveryAddressRequiredError\":false,\"enableMultipleGroupMessage\":false,\"enableWcpEligibility\":false,\"enableEligibleCareplans\":false,\"enableFulfillmentRestrictedItems\":false,\"benefitTypeCheckForPSM\":false,\"enablePriceClarityPACVariant\":0,\"enableTwoExpressSlotsInShortcuts\":false,\"enableOaiATC\":false,\"enableProductTileActionsCallOut\":false,\"enableCheckoutableErrorAttributes\":false,\"enableSwitchToLaterTime\":false,\"enableBaseHighlightForGIC\":false,\"disableExpressDeliveryTitleTimeRange\":false,\"enableStickyPOSOnPAC\":true,\"enableCalloutHotSwitch\":false,\"enableSFLCarouselTopPlacement\":false,\"enableTVMountUpsell\":false,\"enableAllowItemRemoval\":false,\"enableExpressStoreBadge\":false,\"enableHideAvgPriceSfl\":false,\"enableFreeDeliveryThreshold\":false,\"showDeliveryAddressRequiredAlertAsError\":false,\"enableSoftBundleOnPAC\":false,\"enableCustomATCErrorModel\":false,\"enableShippingOptions\":true,\"enableAccesspointNameAsStoreDisplayName\":false,\"enableAvailableFinancingOptions\":false,\"enableShipAndSoldByDetails\":false,\"skipFulfillmentUpdateInOOSModal\":false,\"showPFSValueProp\":true,\"enablePayForSpeed\":false,\"enableExpressNudgeVariant\":4,\"enableCompleteTheSet\":true,\"enableSFLPriceDrop\":false,\"enableBuyBoxAd\":false,\"enableWRFImportDuty\":false,\"enableInHomeAutoReplenishment\":true,\"enableUnscheduledItemFulfillmentChange\":false,\"enableFulfillmentMajorAppliances\":true,\"membershipValPropTooltip\":false,\"enableInpDeferContinueToCart\":true,\"enableAddressThreeLines\":false,\"disableAuthErrorFix\":false,\"enableSignatureOnDelivery\":true,\"enableAllowSaveForLaterForItem\":false,\"enableSFLBackInStock\":false,\"enableCartUnauthFix\":false,\"enableExpressUpsellVariant\":0,\"enableLineItemId\":false,\"enableLatLonForAddress\":false,\"enableCharityOfChoicePreEnrolment\":true,\"enablePickupDeliveryNotAvailable\":false,\"enableReservationRequiredWithoutSlots\":false,\"enablePriceClarityShippingOption\":0,\"enableAllowItemQtyEditable\":false,\"enableUDSLAVerbiageV2\":false,\"enableRenewBanner\":false,\"enableInpDeferStepperDispatch\":true,\"enableSlotUpsellStrikePrice\":false,\"enableInpDeferProductTileLink\":true,\"enableCartACCBookslotShortcut\":true,\"hideBackNavigationForSteps\\t\":false,\"enablePickupSpokeAccessPoint\":false,\"enableSpecialCategoryRestriction\":false,\"enableCartRestrictedError\":false,\"enableVPForACCItems\":true,\"enableSlotUpsellForMixedCartCheck\":false,\"enableAccFourTiresNudge\":true,\"enablePartialCheckoutTooltip\":false,\"enableOneCreditOnboarding\":true,\"enableOptimizedPOSPhase\":0,\"enableIsTobaccoField\":false,\"disableCommaInHeader\":false,\"disableGuestSFL\":false,\"enableItemDeliveryPrice\":false,\"enableNoUnscheduledPickupMessage\":false,\"enableITJBanner\":false,\"enableAppleCareOnWPPModal\":true,\"enableStreamlinedBadges\":true,\"enableFastBadgingV2\":false,\"enablePriceDetailsSavings\":false,\"enablePFSPhase2\":false,\"enableWicBadging\":true,\"enableOneCreditOnboardingOnPAC\":false,\"enableContinueShoppingOnPac\":false,\"enableATCExpanded\":false,\"enableProductUnitPriceAsDescription\":false,\"enablePickupItemFeeClarity\":false,\"enableFIGCartFulfillmentOption\":false,\"dfcMaxLimitAmount\":0,\"enableMergeCartRetryOnError\":false,\"enablePromotionalMetaData\":false,\"addCarouselInPostCartPageLoad\":false,\"enableSFLGridDownpayment\":true,\"enableCreditQsCart\":false,\"enableSFLMutationInput\":false,\"enableStaticMessageType\":false,\"enablePersistedCartIdInGetCart\":false,\"enableExpressSlotFulfillmentTime\":false,\"enableOneLoansLocalImage\":true,\"showCheckClubAndAddressWarning\":false,\"enableCartIdForAnonymousUser\":false,\"enableCreditCartDiscountBanner\":false,\"enableFulfillmentSwitchVerbiage\":false,\"enableMpPickupModalAllIntents\":true,\"enablePriceClarityCartItemVariant\":0,\"enableAOSLineItemId\":false,\"enableCartIdCheckBeforeInitialATC\":false,\"enableFlowerDelivery\":false,\"enableOnePlZero\":false,\"enableStoreSelectorNudgeOnATC\":false,\"disableCartGifting\":false,\"enableClickableDeliveryAddress\":true,\"enableMinLimit\":false,\"enableItemTypeAttributes\":false,\"enableSFLUniqueItemCount\":false,\"enableSocialProofBadges\":true,\"enableAmendCardToShowDefaultHeader\":false,\"enableAccUnUtilisedSlot\":false,\"enableLastCallFullProductObj\":false,\"enableBenefitTypeCheckForPartialSwitchModule\":false,\"enableShowACCSchedulingInCart\":false,\"enableMaximumThreshold\":false,\"enableUnconditionalHotSwitch\":false,\"enableShoppableAds\":false,\"enablePartialPaymentOptionText\":false,\"enableLinePriceForSFL\":false,\"disableFulfillmentLevelFitmentAlert\":true,\"enableItemLevelSpecialInstruction\":false,\"hideSFLforCCA\":false,\"enableCheckBelowMinimumFee\":false,\"enableFulfillmentChoice\":false,\"enableQuantityBasedAriaLabel\":false,\"enableNewFSM\":false,\"hidePayAtStoreInPFS\":true,\"enableAstraAosRemove\":false,\"enableSlotCancelledPopup\":false,\"enablePFSCopyChanges\":true,\"enableDeliveryDateRangeTooltip\":false,\"enableOnePayLaterKlarnaRedesign\":true,\"enableReduceSplitCartNudge\":true,\"enablePartialCheckout\":true,\"cartQueryStaleTime\":240000,\"enableVisionSFL\":true,\"selectedVariantsLimit\":2,\"enableSSRRedirect\":false,\"enableHide3pSellerName\":true,\"enableGuestCheckout\":true,\"enableDetailedPartialXoLabel\":false,\"shouldUseRequestedSelection\":false,\"enableCartWplusBannerPickup\":true,\"enablelastCallOptimizatation\":true,\"showPersonalization\":true,\"enablePACCheckoutV2\":false,\"enableAddOnServicesPAC\":true,\"enableShippingFeeClarity\":true,\"enableFreeExpressDeliveryNudgeMessaging\":true,\"enableShippingLabel\":true,\"enableRemoveAvailabilityStatus\":false,\"disableP13nOnPAC\":false,\"enableWirelessPostpaid\":true,\"enableLocationNudgeWithIam\":false,\"enableInHomeDelivery\":true,\"enableEarlyAccess\":true,\"enablePickupNotAvailable\":false,\"enablePetRXRefillReorder\":true,\"enablePAC\":true,\"disableNoTimesMessage\":true,\"enableNotifyMeBackInStock\":true,\"enableFulfillmentChangeInOOS\":false,\"enableMergeCartOptimization\":true,\"enableDeferRemoveClick\":true,\"slotShortcutMaxSlotReqCount\":15,\"enableSigninBenefits\":true,\"slotShortcutGetSlotsQueryCacheTime\":30000,\"enablePriceClarity\":false,\"enableRegistryCheckoutValidation\":true,\"enableLocationNudge\":\"DD,PS,PA\",\"enableFulfillmentBadging\":true,\"enableIbotta\":true,\"enableMultiSpeedShipping\":false,\"enableRecommendationsPhase2\":true,\"enableSimplifiedSlotShortcut\":false,\"enableFCTodayTomorrowHeader\":true,\"enableOrderCutOffLSTimezone\":true,\"enableWeightedItems\":false,\"enableItemSwitchableBadge\":false,\"enableVetDietVetCancellation\":false,\"enableVisionNoRxCheckout\":true,\"enableI18n\":1,\"enableEnhancedSavings\":true,\"enableVetApprovalRequired\":true,\"replaceOutOfStockTimeOut\":2000,\"enableSubstituteOOS\":true,\"enableSmartNudges\":true,\"enableACCScheduling\":true,\"enableCartLight\":false,\"enablePartialSwitchModuleLevel\":false,\"enableGroceryPAC\":true,\"enableCallouts\":false,\"enableAffirm\":true,\"enableWplusOldBannerUI\":true,\"enableCTLQuickShop\":true,\"enablePriceChange\":true,\"enableCompleteTheLook\":true,\"enableEbt\":true,\"enableWplus\":true,\"enableLastCallFullPage\":false,\"apparelUsername\":\"walmart\",\"enableDSOnAnchorPACItem\":true,\"enablePickupNotAvailableVariation2\":false,\"enableReplaceOutOfStock\":true,\"enablePromiseDateRange\":true,\"enableROPOptimization\":true,\"enableLocalFindsLastCall\":false,\"enableCrossPollination\":true,\"enableMpPickupPhase2\":true,\"enableWirelessFreebiePromo\":true,\"enableLastCallPhase2\":true,\"enableExpressUpsell\":true,\"enablePriceClarityLastCall\":false,\"enableBYOD\":true,\"enableLeanMode\":true,\"enableQueueing\":true,\"disableEstTotalOnMweb\":false,\"enableFFModuleHideUnhideCarrot\":true,\"enableColdChainExpansion\":true,\"enableOnePl\":true,\"enableFPCEAosVariant\":4,\"enableAccQuantityNudgeVariantB\":false,\"visionOrderProperties\":\"'[\\\"prescription_type\\\",\\\"lens_type\\\",\\\"lens_material\\\",\\\"lens_color\\\",\\\"lens_add_ons\\\"]'\",\"enableStarRatings\":false,\"enablePriceClaritySFL\":false,\"enableFreeShippingAndPickup\":true,\"enableSFLPerformanceMode\":false,\"enableDroneDelivery\":true,\"enablePromoDiscount\":true,\"enableOfferIdInUrl\":false,\"enableSFLSmileyPrice\":true,\"enableVisionItems\":true,\"hideAcquisitionCardBanners\":false,\"enableCartBookslotShortcut\":true,\"enablePACCheckout\":false,\"enableProductTilePhase2Aos\":0,\"enablePFS\":true,\"enableGenericItemTile\":true,\"enableSimplifiedSlotCheckoutV1\":false,\"showSubscriptionGuestLoginBanner\":false,\"initialSFLCount\":10,\"enableOrderCutOffTimeInline\":true,\"hideGuestXOCTA\":true,\"enableFastBadging\":false,\"enablePetRxVetCancellation\":false,\"enableSplashRouteAddition\":false,\"disableItemLevelMSI\":false,\"enableGiftingCheckbox\":true,\"enableWplusRemoveBannersCardCheck\":true,\"enableSignInFromCart\":true,\"enableOOSAlertScroll\":true,\"enableHideOrderCutOffAtSLAGroupLevel\":false,\"enableLoopItemUpdates\":true,\"enableShopSimilarForPickup\":false,\"homeScriptSrc\":\"https://web-assets.stylitics.com/v3-moodboard/latest/moodboard.release.js\",\"enableLeanModeSFL\":false,\"enableAOSWplusPriceChange\":true,\"enableWplusCashback\":false,\"enableCartInpOptimization\":\"CLSPNL,AOSC,OPNPNL,DELTME,CTNCLK,BKSLTC,BKSLTB,BKSLTCH,EXPMDL,ABSCSB\",\"enableExpandModeForSubscriptionItems\":false,\"defaultSalesWeight\":0.25,\"enableReturnsLabel\":true,\"enableGXOSignInNudge\":true,\"enableCapOneRewards\":false,\"enableILCCSwitchFix\":false,\"enableACCOnPAC\":false,\"enableSFLMoveToCartOptimization\":true,\"enableACCNonServiceableErrorUI\":true,\"enableLeanModeATC\":true,\"enableWplusThirtyDaystrial\":true,\"enableCartWplusBannerNoSlotSelected\":true,\"enableCarePlansAndHomeServices\":true,\"enableFullPageSignin\":true,\"enableNonDetailedErrorPage\":true,\"enableAccQuantityNudge\":true,\"enableSubstituteOOSV2\":true,\"enablePriceClarityPAC\":false,\"enableILCCHotFix\":false,\"enableEnhancedEmptyCart\":true,\"enableOmniPromise\":true,\"projectThunderbolt\":true,\"enableFeeThresholdBarSaveVersion\":false,\"sflCountPerPagination\":20,\"enableSubscriptionValuePropBanner\":false,\"homeUsername\":\"walmart\",\"enableNewSignInBenefitCards\":true,\"enableUpdateItemsLiteCall\":true,\"enableLastCallNonRoutine\":false,\"disableGetCartCSR\":false,\"enableWplusBannersPostCartLoadPage\":true,\"enablePostLoadDeals\":true,\"enableNonConfigBundles\":true,\"showATCSuccessSnackBarForItemPageNonPac\":true,\"enableFPCEHeader\":true,\"enableWplusFulfillmentBanner\":true,\"enableCTLProductTitle\":true,\"enableHelium\":true,\"numberOfMpSeller\":20,\"enableFFCollapseMode\":false,\"enableClipRewards\":true,\"enableCartInpOptimizationCheckoutSpinner\":true,\"enableLowInventoryBadging\":true,\"enableSimplifiedSlotCheckout\":false,\"enableLeanModeUnavailableItem\":true,\"enableCXOPrefetch\":true,\"enableAccSchedulingDiscoverabilityV3\":false,\"enableAEBadge\":true,\"enableCartLevelMSI\":false,\"apparelScriptSrc\":\"https://web-assets.stylitics.com/v3-classic/latest/classic.release.js\",\"enableWplusGuestBanner\":true,\"enablePACRedirectOnDismiss\":true,\"enableCapOne\":false,\"mpPickupSessionTime\":24,\"enableIntentControl\":true,\"enableClaimRate\":true,\"enableWideProductImages\":true,\"enableWalmartPlusIntegratedSignUp\":true,\"enableOrderCutOffLiveTimer\":false,\"enableOneLoansRedesign\":true,\"enableDeferSaveForLater\":true,\"enableFeeThresholdBar\":false,\"enableBenefitSavings\":true,\"enableMPStoreSelector\":true,\"enableProductTilePhase1\":true,\"enableSmileyPricing\":true,\"enableACCVariant\":1,\"enableCTLMultipleLooks\":true,\"enableItemNotSwitchableBadge\":false,\"enableStylistics\":false,\"enablePACAnchorForGM\":true,\"enableSFL\":true,\"enableShipInsteadAtItemLevel\":true,\"enableGenericWalmartCash\":true,\"enablePACGetCartPrefetch\":false,\"enableSlotShortcutImplicitIntent\":true,\"enableShipNodeId\":true,\"enableSFLGrid\":true,\"enableDeferItemToggle\":true,\"enableRegistry\":true,\"enableEnhancedDSBadges\":true,\"disableCartIconPriceTotal\":false,\"enableHotCartFeature\":false,\"enableShippingIntent\":true,\"enableCartWplusBannerTempo\":true,\"enableEvergreenFee\":true,\"leanModeRetryLimit\":1,\"enableLastCall\":true,\"enableFulfillmentGroupId\":true,\"enableAccSchedulingFindStores\":true,\"enableOOSHotFix\":true,\"enableFreeAmendAndReturn\":false,\"enableOnXoMoveOosToSfl\":false,\"enableSSR\":false,\"enableClearMergeCartSFL\":true,\"enableShopSimilar\":true,\"enableLocationRestrictionClarity\":false,\"enableAOSPriceChangeExp\":true,\"enablePickUpSwitchSubscriptionPopup\":true,\"enableEnhancedItemUpdates\":true,\"enableCartWplusBannerShippingMoreThanMin\":true,\"disableCartPartialIntentWarning\":true,\"enableExpressReservationEndTime\":false,\"enableEbtMinFeeAlert\":true,\"enableMultiline\":true,\"enablePACAOSVariants\":1,\"enableAccModalOnItemPage\":true,\"enableFulfillmentFunnel\":true,\"disableGuestPartialXO\":true,\"enableStoreSnackBarMessage\":false}},\"account\":{\"_all_\":{\"hideInvoiceAddressForeignSection\":false,\"hideMobileVerificationNotNowLink\":false,\"enableCreditQsCLP\":false,\"enableFetchGEPCountryList\":false,\"hidePurchaseHistory\":false,\"enableTaxExemptCertificateBlobAPI\":true,\"enablePersistPinLatLng\":false,\"enableAutoApproval\":false,\"enableUpdateLanguagePreference\":true,\"enableProfilePhoneVerificationV2\":false,\"enableInHomeCommsCopy\":true,\"enableFashionVTO\":false,\"enableAddBusinessUnitFeature\":false,\"enableMessageNotification\":true,\"enableChileAddress\":false,\"enableShowGuidedDeliveryInstruction\":true,\"enableCommunicationLanguagePref\":false,\"enablePreferredAddress\":true,\"enableGEPKYC\":false,\"enableDigitalCardLegalText\":false,\"enableCashiLinkingPageV2\":false,\"enableLocationErrorMessageImprovement\":true,\"enablePersistLatLngFromWeb\":true,\"enableWCPCreditCardForm\":false,\"enableSavePinAndPR\":false,\"skipPhoneVerification\":false,\"hideGdiPhaseTwoFromCart\":false,\"enablePhoneVerificationPage\":false,\"hideMarketSpecifcRecipientDetails\":false,\"hideAbandonedCartPref\":true,\"enablePetRxVetInitiated\":true,\"addressLineOneMaxLength\":50,\"vetSearchLimitsEnabled\":true,\"shouldSendCountryField\":false,\"enableAddressAutoFill\":false,\"enableMyMembership\":false,\"disableFeatureForGEPNonUS\":false,\"enableOmniUiGlassMigrationSignatureFix\":true,\"enableOmniUiGlassMigration\":false,\"enableWCPDeliveryAddressPage\":false,\"enableRemoveRegistryAlert\":true,\"enableRecipeLinkNewTag\":false,\"enableEnrichedAddressSuggestions\":false,\"enableFitPredictor\":false,\"vetMaxLimitSearch\":200,\"enableDRExpiryDateEditable\":true,\"enableGetSessionInfoInAccount\":false,\"disableAddressOnInvalidData\":false,\"enableReorderModule\":true,\"enableGuidedDeliveryAddressForCart\":true,\"hideWalmartRewardsHeading\":false,\"enableShowDeliveryInstruction\":true,\"isSignInWithOtpDisabled\":false,\"enableLoyaltyMiclub\":false,\"gmapDistanceThreshold\":1500,\"renameShippingToDelivery\":false,\"disablePaymentsforCCA\":false,\"enablePhoneNumberOnPersonalInfo\":false,\"enableUseFormattedAddress\":true,\"enableNewSavingsTracker\":true,\"hideIntegratedPrivacyPolicy\":true,\"enableGEPCHLMX\":false,\"hideWalletMenu\":false,\"hidePersonalInfo\":false,\"enableCountryCallingCode\":false,\"enableRecipeLink\":true,\"enableSkyNewProgramLink\":false,\"enableWplusIndigo20\":true,\"vetNameCharacterLimit\":29,\"isTempoEnabled\":true,\"forceSelectingAddressSuggestion\":false,\"enableFashionLinkNewTag\":false,\"enableMembershipQueryAccountLanding\":true,\"enableJoinEmailValidation\":false,\"enableMemberRequestPage\":false,\"enablePetBreed\":true,\"hideWalletSubsectionForCCA\":false,\"enablePrivacyMenu\":true,\"hideRegistries\":false,\"vetSearchWarningLimit\":25,\"enablePetRxVirtualPack\":true,\"hideWPlusBenefitsDweb\":false,\"enableDeliveryInstructionv2\":false,\"enableCreditLandingPageV1\":false,\"enableEbtFraud\":true,\"hideRecipientIdActions\":false,\"enablePhoneVerificationV2\":false,\"enableTEDoorway\":false,\"addressLineOneMinLength\":0,\"showBankAccountPage\":false,\"enableBulkInviteByUrl\":false,\"enablePhoneOTPAtAddCardFlow\":false,\"bcaMocEditTimeout\":4000,\"skipMembershipCheckForAccountDeletion\":false,\"enableFixDuplicateApisTechDebt\":false,\"enableRegistry\":true,\"businessMaximumNumberOfUserToInvite\":5,\"enableAutoSelectAddress\":true,\"bcaMocTimeout\":2000,\"enableNutritionHub\":false,\"enableGeoLocationRestrictions\":false,\"inviteUrlExpiryInDays\":0,\"enableGdiForAllAddressPages\":false,\"disablePrivacyPolicyLinks\":false,\"enableEditInHomeAddress\":true,\"enableSpendAnalyzer\":false,\"enableInHomeLocationPreference\":true,\"hidePrivacyPolicy\":false,\"enablePartialFulfillmentSwitching\":false,\"enableOST\":true,\"enableCTC\":true,\"geoFenceRadiusInMeter\":804,\"enableDeviceLocation\":true,\"enableNbaEmailVerificationV2\":false,\"clinicNameCharacterLimit\":80,\"fetchColoniesFromGoogleService\":false,\"enableAccountResilientErrorPage\":true,\"hidePurchasedProtectionPlans\":false,\"enableVisualOrderTracker\":true,\"enableAccountUxOptimization\":true,\"showAddAddressCTAforGuestUser\":true,\"enableInStoreDigitalCard\":true,\"enableFashionLink\":false,\"enableAccountNavLinks\":true,\"shouldRedirectToUnifiedProfilePage\":false,\"enableNutritionHubNewTag\":false,\"disableAddressOnEmptyLatLong\":false,\"enablePhoneVerificationPageV2\":false,\"enableInHomeKeepPreferenceOrNotEligible\":true,\"enableAccountReviewLinkNewTag\":false,\"registriesUrl\":\"/my-registries\",\"enableMyItemsMenu\":true,\"enableRemovePWState\":true,\"enablePetsCarousel\":true,\"enableAccountWallet\":true,\"uTypeValue\":\"'[\\\"beta\\\"]'\",\"enableProvinceSupress\":false,\"customCakeUrl\":\"https://www.walmart.com/order-ahead/cake\",\"enableLanguageSelection\":true,\"enchancedAccountPharmacyUrl\":\"https://www.walmart.com/cp/5431\",\"enableAddressValidationErrorPopupUpdate\":true,\"enablePhoneCollection\":true,\"isInHomeEnabled\":true,\"enableHealthPreferences\":true,\"enableNextBestAction\":true,\"enableAVSOverrideGoogleAutoComplete\":true,\"enableMemberModePersonalization\":true,\"showSignInNudgeMWeb\":true,\"enableWalmartPlus\":true,\"rxRenewalsOrderLimit\":1000,\"enableWalmartPlusPreference\":true,\"enableFeatureCommsAndPrivacy\":true,\"enableAccountApiOptimization\":true,\"enableAvsOverride\":true,\"shouldUpdateCartAfterUpdateZipcode\":true,\"enableItemSubscription\":true,\"enableAccountDWeb\":true,\"enablePostalCodeMessage\":false,\"enablePetProfileComplianceChanges\":true,\"enableGuidedDeliveryPhase2\":true,\"showSignInNudgeDweb\":true,\"enableNonMemberWPlusBanner\":true,\"enableCharityOfChoice\":true,\"vuduLibraryUrl\":\"https://video.walmart.com/content/account/purchasehistory\",\"enableHSAFSA\":true,\"disablePersonalInfoRequestsLink\":false,\"enablePetRxWebUrl\":\"https://www.walmart.com/cp/8328098\",\"walmartPlusUrl\":\"https://www.walmart.com/grocery/account/plus/overview\",\"placeholder\":1,\"walmartAssociateUrl\":\"https://www.walmart.com/account/associate-discount\",\"enableEGiftCardLinkFix\":true,\"pharmacyUrl\":\"https://www.walmart.com/pharmacy/dashboard\",\"isMobileVerificationEnabled\":false,\"enableAccountMenuOptimization\":true,\"isLoginRedirectionEnabled\":false,\"enableAffirmBanner\":false,\"ccpaUrl\":\"/account/ccpa-reporting\",\"enableCommsPreference\":true,\"enableGEPAddress\":false,\"enableZipcodeInAddressSelector\":false,\"disablePRAutoComplete\":false,\"enableDigitalRewards\":true,\"protectionPlanUrl\":\"/protection-plans\",\"reorderUrl\":\"https://www.walmart.com/my-items\",\"enableItemSubscriptionRamp\":false,\"ccpaNewRequestUrl\":\"https://www.walmart.com/account/api/ccpa-intake?native=false\\u0026amp;type=access\",\"autoCareCenterUrl\":\"https://www.walmart.com/cp/auto-services/1087266\",\"supressedProvinces\":\"'{\\\"CA\\\": [\\\"QC\\\"]}'\",\"enableInHomeAddress\":true,\"enablePetRxAwarenessBanner\":true,\"enableLocationAutoComplete\":true,\"eBookUrl\":\"https://www.walmart.com/account/redirect/kobo?page=library\",\"enableSubscriptionModule\":false,\"enablePostalCodeOnly\":false,\"enableYourProfileSection\":true,\"enableGarage\":true,\"itemSubscriptionUrl\":\"https://www.walmart.com/m/deals/subscriptions/manage\",\"isFCShippingEnabled\":true,\"enableNonMemberAccountTempoModule\":true,\"isRewardsEnabled\":true,\"enableGoogleAutoComplete\":true,\"enablePaidBusinessPlusPlan\":false,\"enableWPlusMembershipMode\":true,\"enableMultipleInHomeAddresses\":true,\"enableTaxExemptRedesign\":false,\"communicationAndPrivacyUrl\":\"/account/communications-and-privacy\",\"digitalRewardsUrl\":\"https://www.walmart.com/walmartcash\",\"disableGuestUserAutocomplete\":true,\"enableAddressSingleSuggested\":true,\"enablePetsLink\":true,\"enableValueTracker\":true,\"enableGEPCHLCO\":false,\"enableAddressLineOneAutofill\":false,\"enablePetHubPage\":true,\"shouldIncludeNudgeInfo\":false,\"enableAccountMWeb\":true,\"enableInHomeEdit\":true,\"listsUrl\":\"/lists\",\"enableGuidedDeliveryFastFollow\":true,\"enablePetRxAutoRefill\":true,\"enablePetRx\":true,\"enableOptimizedEnhancedAccountQuery\":true,\"enablePetRxRenewals\":true}},\"ccmNativeGetConf\":{\"_all_\":{\"time\":\"1.802\"}}},\"membership\":{\"data\":{\"shouldShowWplusLogo\":false}},\"shippingCountryCode\":{\"data\":{}}},\"enableGqlCsrRedirect\":true,\"nonce\":\"nF9_pq1haH6UBl_d\",\"persistedQueriesConfig\":{\"allowList\":[\"\"],\"blackList\":[\"\"],\"enableAllowList\":false,\"enablePersistedQueries\":true},\"errorLoggingConfig\":{\"enableErrorLogging\":true},\"excludeBeacon\":false,\"isNextPublicMocksEnabled\":false,\"isMocksEnabled\":false,\"canValidateBeaconWithoutFiring\":false,\"reqHost\":\"www.walmart.com\",\"enableDca\":false,\"enableWcpBeacon\":true,\"enableWcpBeaconDebug\":false,\"renderViewId\":\"941accdc-f602-4d3e-be12-c30f0fa6d5a1\",\"adSessionId\":\"2243b4c2b854e34a6532ec30a6ee3b96\"}},\"page\":\"/search\",\"query\":{\"q\":\"laptop\",\"typeahead\":\"laptop\"},\"buildId\":\"production_20260303T030319753Z-en-US\",\"assetPrefix\":\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US\",\"runtimeConfig\":{\"nxApplicationName\":\"US-JOURNEY\",\"isDev\":false,\"enableLatencyTrace\":true,\"tenant\":\"WM_GLASS\",\"vid\":\"oaoh\",\"wmAkamaiCacheDomain\":\"www.walmart.com\",\"appSpecificPathnames\":{\"W_PLUS_ICON\":\"//i5.walmartimages.com/dfw/4ff9c6c9-c279/k2-_244ffb55-7e15-4bcd-a8da-bc64c61ef734.v1.svg\",\"WPLUS_BLUE_LOGO_V1\":\"//i5.walmartimages.com/dfw/4ff9c6c9-b587/k2-_dc98a02b-5b89-4ea1-86e2-5aa97bfed652.v1.svg\",\"DISCOUNT_TERMS_IMG\":\"//i5.walmartimages.com/dfw/4ff9c6c9-c95d/k2-_3f68d9fd-a017-4179-be6e-88bf68036b1a.v1.png\",\"SUBSCRIPTION_TERMS_LINK\":\"https://www.walmart.com/help/article/walmart-terms-of-use/de696dfa1dd4423bb1005668dd19b845\"},\"tenantV2\":{\"bu\":\"WALMART-US\",\"mart\":\"B2C\"},\"mockURL\":\"http://mock-backend.dev.walmart.com/\",\"mock\":true,\"endpointMappings\":{\"operations\":{\"query configuration\":\"cegateway\",\"query RewardsHistoryPage\":\"cegateway\",\"query ContentPage\":\"cegateway\",\"query BrandPage\":\"cegateway\",\"query PromoPage\":\"cegateway\",\"query checkItemCartEligibility\":\"cecxo\",\"mutation MergeAndGetCart\":\"cecxo\",\"query getGuestOrder\":\"cegateway\",\"query PurchaseHistory\":\"cecph\",\"query PurchaseHistoryV2\":\"cecph\",\"query getCheckinEligibleOrders\":\"cecustomercheckin\",\"query GetGuestCheckInOrder\":\"cecph\",\"mutation createTrip\":\"cecustomercheckin\",\"mutation updateParking\":\"cecustomercheckin\",\"mutation markArrivalManually\":\"cecustomercheckin\",\"mutation modifyCheckin\":\"cecustomercheckin\",\"mutation getStatus\":\"cecustomercheckin\",\"mutation NotifyCapOneBannerSnooze\":\"cegateway\",\"mutation CancelOrder\":\"cecph\",\"query LastCallPage\":\"cegateway\",\"query AdV2Display\":\"adsgateway\",\"query GetCommPreference\":\"cegateway\",\"query PurchasedProtectionPlans\":\"cecph\",\"query PurchasedProtectionPlansV2\":\"cecph\",\"query ProtectionPlanDetail\":\"cecph\",\"query subscriptions\":\"cegateway\",\"query NodeDetailQuery\":\"cegateway\",\"query NearbyNodesQuery\":\"cegateway\",\"query GetFuelPrices\":\"cegateway\",\"query LocalStoreContentQuery\":\"cegateway\",\"query CartSubstitutions\":\"cegateway\",\"query CartShopSimilar\":\"cegateway\",\"query GetEarlyAccessLearnMoreData\":\"ceaccount\",\"query PostCartLoadPage\":\"cegateway\",\"query SearchStore\":\"cegateway\",\"query LocalStoreCategoryContent\":\"cegateway\",\"query nodeDetails\":\"cegateway\",\"query storeFinderNearbyNodesQuery\":\"cegateway\",\"query StorePagesStoreDirectoryQuery\":\"cegateway\",\"query ServiceDepartmentPageQuery\":\"cegateway\",\"mutation CreateInsuranceSalesLead\":\"wellness\",\"mutation setPickup\":\"cecxo\",\"query getCart\":\"cegateway\",\"query feedShowCategories\":\"cegateway\",\"query feedsByStatus\":\"cegateway\",\"query feedShow\":\"cegateway\",\"query feedsByStatusPaginated\":\"cegateway\",\"query SavingsDashboard\":\"cegateway\",\"query pickupAvailability\":\"cereturns\",\"mutation updatePickupSchedule\":\"cereturns\",\"mutation cancelReturnOrder\":\"cereturns\",\"query returnDetails\":\"cereturns\",\"query guestReturnDetails\":\"cereturns\",\"query registrantReturnDetails\":\"cereturns\",\"query generateLabel\":\"cereturns\",\"query GetDeliveryPreferences\":\"cegateway\",\"query LensCustomizationProductIdmlQuery\":\"cepdp\",\"mutation CreateServiceAppointment\":\"cegateway\",\"mutation createHealthBenefitCard\":\"ceaccounthw\",\"mutation updateServiceContractContactPerson\":\"cegateway\",\"mutation placeServiceOrder\":\"cegateway\",\"query fetchPasskeys\":\"cegateway\",\"query RxReadyNudgeDataByPrefIdQuery\":\"hwcegateway\",\"mutation SignInV2\":\"cegatewayIdp\",\"mutation SignIn\":\"cegatewayIdp\",\"mutation validateLinkoutToken\":\"cegatewayIdp\"},\"queryStrings\":{\"step=cart\":\"cecxo\",\"step=bookslot\":\"cecxo\",\"entitytype=*\":\"ceorders\",\"state=*\":\"ceorders\",\"source=*\":\"ceorders\",\"intent=acc\":\"cegateway\"},\"pages\":{\"*\":\"cegateway\",\"/\":\"cegateway\",\"/hp-redesign\":\"cegateway\",\"/404\":\"cegateway\",\"/acc/[id]\":\"cegateway\",\"/acc/servicedetails/*\":\"cegateway\",\"/acc/schedule-oil-change\":\"cecxo\",\"/account/*\":\"cegateway\",\"/all-departments\":\"cegateway\",\"/departments-list\":\"cegateway\",\"/browse/*\":\"cegateway\",\"/c/[...seo]\":\"cegateway\",\"/c/auto-directory/*\":\"cegateway\",\"/ci-control\":\"cegateway\",\"/cp/[...categoryParams]\":\"cegateway\",\"/content/[...categoryParams]\":\"cegateway\",\"/brand/[...brandParams]\":\"cegateway\",\"/brand/branddirectory\":\"cegateway\",\"/help/*\":\"cegateway\",\"/i/*\":\"cegateway\",\"/ip/[...itemParams]\":\"cegateway\",\"/lists/*\":\"cegateway\",\"/my-items\":\"cegateway\",\"/my-registries\":\"cegateway\",\"/my-reviews/*\":\"cegateway\",\"/shop/*\":\"cegateway\",\"/shop/[...seo]\":\"cegateway\",\"/nonprofits/*\":\"cegateway\",\"/orders/[orderId]/returns*\":\"cereturns\",\"/orders/*\":\"ceorders\",\"/guestcheckin/*\":\"cecph\",\"/partner/plus/*\":\"cegateway\",\"/plus/*\":\"cegateway\",\"/wp/*\":\"cegateway\",\"/product/[...itemParams]\":\"cegateway\",\"/promo/[promoId]\":\"cegateway\",\"/registry/*\":\"cegateway\",\"/reviews/*\":\"cegateway\",\"/search/*\":\"cegateway\",\"/seller/*\":\"cegateway\",\"/services\":\"cegateway\",\"/store\":\"cegateway\",\"/store/[storeId]\":\"cegateway\",\"/store/[storeId]/[...contentType]\":\"cegateway\",\"/sparkgood/*\":\"cegateway\",\"/organizations/*\":\"cegateway\",\"/thankyou\":\"cecxo\",\"/thankyou/pindrop\":\"cecxo\",\"/topic/[...seo]\":\"cegateway\",\"/tp/*\":\"cegateway\",\"/update-payment-method-form\":\"cegateway\",\"/update-payment-method\":\"cegateway\",\"/wallet/associate-discount\":\"cegateway\",\"/subscriptions/manage/*\":\"cegateway\",\"/subscriptions/replenishment/*\":\"cegateway\",\"/cart\":\"cecxo\",\"/pac\":\"cecxo\",\"/updatecart\":\"cecxo\",\"/shopwithme/*\":\"cegateway\",\"/rewards-history\":\"cegateway\",\"/global/*\":\"cegateway\",\"/global/[...seo]\":\"cegateway\",\"/live\":\"cegateway\",\"/live-next\":\"cegateway\",\"/live-next/browse\":\"cegateway\",\"/savings\":\"cegateway\",\"/cash-overview\":\"cegateway\",\"/in-store-wifi/*\":\"cegateway\",\"/live-next/shows\":\"cegateway\",\"/g/*\":\"cegateway\",\"/g/[...seo]\":\"cegateway\",\"/gic\":\"cegateway\",\"/fittingroom\":\"cegateway\",\"/protection-plans\":\"cecph\",\"/protection-plans/my-plans\":\"cecph\",\"/protection-plans/protect-your-purchases\":\"cecph\",\"/inhome/*\":\"cegateway\",\"/user-query\":\"cecxo\",\"/assistant\":\"cecxo\",\"/showroom\":\"cegateway\",\"/showroom/[name]/[id]\":\"cegateway\",\"/omniservicesplatform\":\"cegateway\",\"/orders\":\"cecph\",\"/shoppable-basket\":\"cegateway\",\"/shopwithfriends-lp\":\"cegateway\",\"/shopwithfriends-lp/fashion\":\"cegateway\",\"/register\":\"cegateway\",\"/register/password\":\"cegateway\",\"/join\":\"cegateway\",\"/join/[tier]\":\"cegateway\",\"/share\":\"cegateway\",\"/compare\":\"cegateway\",\"/ai-demo\":\"cegateway\",\"/reels\":\"cegateway\",\"/creator/*\":\"cegateway\",\"/creator/[...seo]\":\"cegateway\",\"/localfinds/*\":\"cegateway\",\"/shop-similar-items\":\"cegateway\",\"/shop-similar-items/[id]\":\"cegateway\",\"/shop-with-friends/history\":\"cegateway\",\"/we-giftcards\":\"cegateway\",\"/tax-exemption/*\":\"cegateway\"}},\"googleMaps\":{\"checkAddressAPIKey\":\"AIzaSyCX5gh3yoq4316wUDxRpljFOwWA6_-BEMg\",\"addressAPIKey\":\"AIzaSyBIAnB1a3UejjFVRNtszhaEE8yrKySRTEo\",\"geoCodingAPIKey\":\"AIzaSyBvv63fBVZ1RtNJLGkN9XCFE1WfVl0o1HY\",\"storePagesAPIKey\":{\"dev\":\"AIzaSyDG4TA_f5f6XrBSZWVXdqomhYKZP_KA0Rk\",\"defaultKey\":\"AIzaSyDG4TA_f5f6XrBSZWVXdqomhYKZP_KA0Rk\"},\"riseMapAPIKey\":{\"dev\":\"AIzaSyA9K6pBcYvCp4_FxKHsPi-JDJfvcvSbtp0\",\"defaultKey\":\"AIzaSyA0Gi6N7afDzAqBiPI3MlWDMaaxC5xKldM\"},\"countryCode\":\"us\"},\"membershipConfig\":{\"showWPlusBanner\":true},\"pulseBeacon\":{\"enable\":true,\"hostname\":\"i5.walmartimages.com\",\"bd\":\"beacon.walmart.com\",\"bh\":\"beacon.lightestwithqm.walmart.com\",\"hostWithQM\":\"beacon.lightestwithqm.walmart.com\",\"hostWithoutQM\":\"beacon.lightest.walmart.com\",\"photoHost\":\"beacon.photowithqm.walmart.com\",\"photoHostWithoutQM\":\"beacon.photo.walmart.com\"},\"perimeterX\":{\"enable\":true,\"initScript\":\"/px/PXu6b0qd2S/init.js\",\"pxAppId\":\"PXu6b0qd2S\"},\"identity\":{\"context\":{\"signOutUrl\":\"/account/logout\",\"signInPathname\":\"/account/login\",\"createAccountPathname\":\"/account/signup\",\"tenants\":[{\"host\":{\"stage\":\"business-stage.walmart.com\",\"teflon\":\"business-teflon.walmart.com\",\"production\":\"business.walmart.com\"},\"mart\":\"B2B\",\"templates\":[\"B2BSignUpPage\",\"B2BSignInPage\",\"B2BSignInWithPasswordOnlyPage\",\"B2BSignInWithOTPChoicePage\",\"B2BSignInWithOTPOnlyPage\"]}],\"marketingEmails\":true,\"rightsReservedText\":\"\",\"footerOptions\":[],\"termsLink\":\"\",\"privacyLink\":\"\",\"enableRobotsTag\":false,\"hideFooter\":false,\"csrDisabledPaths\":[],\"shouldSkipPhoneCollectionForDays\":false,\"disableVerifyLaterPage\":false,\"successPathName\":\"/\",\"selectPhoneNumberPathName\":\"\",\"verifyItsYouPageByOtpPathName\":\"\",\"updatePhoneNumberPathName\":\"\",\"verifyItsYouPage\":\"\",\"defaultCountryCode\":\"1\",\"defaultCountryISOCode\":\"US\",\"createMembershipPathName\":\"/plus\"},\"authFrameRoutes\":{\"frame\":\"/account/login\",\"reauthFrame\":\"/account/login\",\"gxoSignup\":\"/account/signup/gxo\",\"gxoSignin\":\"/account/login\"}},\"oidcParams\":{\"clientId\":\"5f3fb121-076a-45f6-9587-249f0bc160ff\",\"scope\":\"openid email offline_access\",\"tenantId\":\"elh9ie\",\"redirectUri\":\"/account/verifyToken\",\"profile\":\"production\",\"isDev\":false,\"identityDomain\":\"identity.walmart.com\"},\"threatMetrix\":{\"enable\":true,\"allowedPathRules\":[\"^/cart\\\\b\",\"^/(wallet|partner\\\\Wplus|plus|wmcash)/\",\"^/walmartcash\",\"^/subscriptions/manage(?:/baskets(?:/edit)?)?$\",\"^/orders(?:/\\\\[orderId]/returns(.*))?$\",\"^/account(?:/(profile|message-center|settings|delivery-addresses|communications-and-privacy|privacy|pet-hub|pet-prescriptions|delete-account))?$\"]},\"wmtPaymentsPageUrl\":\"https://wallet.www.walmart.com/payments?wv=main\",\"wmtPaymentsChooserPageUrl\":\"https://wallet.www.walmart.com/payments/chooser\",\"wmtWalletPageUrl\":\"https://wallet.www.walmart.com/payments/wallet\",\"ads\":{\"env\":\"production\",\"host\":\"https://www.walmart.com\",\"beaconService\":\"https://www.walmart.com/sp/b/s/im\",\"moatId\":\"WALMART_DISPLAY_S2S1\",\"moatVideoId\":\"WALMART_VIDEO_S2S1\"},\"moatIvt\":\"https://www.walmart.com/swag/v2/ip-rd\",\"rewardsTravelUrl\":\"https://walmartplustravel.com/trips\",\"host\":{\"wmt\":\"https://www.walmart.com\",\"paymentsWalletWmtHost\":\"https://wallet.www.walmart.com\"},\"iovationUrl\":\"https://mpsnare.iesnare.com/snare.js\",\"signifydUrl\":\"https://cdn-scripts.signifyd.com/api/script-tag.js\",\"paypalUrl\":\"https://c.paypal.com/da/r/fb.js\",\"fs\":{\"orgId\":{\"prod\":\"o-24B841-na1\",\"nonProd\":\"o-248QAP-na1\"}},\"appVersion\":\"usweb-1.247.0-b5168a84e8bb56ce37283da568793a0a2da096b9-3021857r\",\"appSha\":\"b5168a84e8bb56ce37283da568793a0a2da096b9\",\"profile\":\"production\",\"tmxOrgId\":\"hgy2n0ks\",\"dataCenter\":\"eus2\",\"queryContext\":{\"appVersion\":\"usweb-1.247.0-b5168a84e8bb56ce37283da568793a0a2da096b9-3021857r\",\"gql\":{\"endpointsByName\":{\"ceaccount\":\"/orchestra/account/graphql\",\"cecxo\":\"/orchestra/cartxo/graphql\",\"cecph\":\"/orchestra/cph/graphql\",\"adsgateway\":\"/swag/graphql\",\"aroundme\":\"/around-me/graphql\",\"ceorders\":\"/orchestra/orders/graphql\",\"cecustomercheckin\":\"/orchestra/pq/graphql\",\"cegateway\":\"/orchestra/home/graphql\",\"cegatewayIdp\":\"/orchestra/idp/graphql\",\"hwcegateway\":\"/orchestra/hw/graphql\",\"ceaccounthw\":\"/orchestra/hw/graphql\",\"cepdp\":\"/orchestra/pdp/graphql\",\"wellness\":\"https://developer.api.us2.walmart.com/api-proxy/service/hw/wellnessplusservice/v1/graphql\",\"cereturns\":\"/orchestra/orders/graphql\"}},\"rest\":{\"endpointsByName\":{\"ceaccount\":\"/orchestra/api/account\",\"cehelp\":\"/orchestra/help/api\",\"cehelpchat\":\"/orchestra/helpChat/api\",\"ceidentity\":\"/orchestra/idp/graphql\",\"unifiedTypeahead\":\"/suggestions/\",\"typeahead\":\"/typeahead/v3/complete\",\"espvalidation\":\"/esp/prepaid/v1/plans\",\"warppaymentoptions\":\"/orchestra/api/online/variantbasic/item\",\"cewarp\":\"/orchestra/api/warp\",\"ceccm2\":\"/orchestra/api/ccm/v3/bootstrap\",\"ceccm2Rust\":\"/meta/ccm\",\"cewireless\":\"/orchestra/api/wireless\",\"storeservices\":\"/graphql\",\"fuelPrices\":\"/graphql\",\"feedbackSubmit\":\"/orchestra/api/customer-survey/submit\",\"quimbyMobile\":\"/orchestra/api/tempo\",\"shopwithme\":\"/feeds\",\"signatureGenerate\":\"/signature/generate\",\"atmtFeedback\":\"https://developer.api.walmart.com/api-proxy/service/atmt/feedback-api/v1/feedback/api/v2\",\"pegasus\":\"https://developer.api.us.walmart.com/api-proxy/service/pegasus/be/v7\"}}}},\"isFallback\":false,\"dynamicIds\":[207925,724366,596799,504611,76970,637020,61701,13755,859556,853610,318668,835299,925259,664805,837333,291303,73556],\"customServer\":true,\"gip\":true,\"appGip\":true,\"locale\":\"en\",\"locales\":[\"en\",\"es\"],\"defaultLocale\":\"en\",\"scriptLoader\":[]}</script><script id=\"release-metadata\" type=\"application/json\" nonce=\"\">{\"appVersion\":\"usweb-1.247.0-b5168a84e8bb56ce37283da568793a0a2da096b9-3021857r\",\"dataCenter\":\"eus2\"}</script><noscript><img src=\"https://www.walmart.com/akam/13/pixel_792a74bd?a=dD05MjA2Y2U3ZWVlNDk2ZWJkM2Q3MTQ3YjczZGRlNDdhMGFkMmViMWQ4JmpzPW9mZg==\" style=\"visibility: hidden; position: absolute; left: -999px; top: -999px;\" /></noscript><script>!(function(w,p,f,c){if(!window.crossOriginIsolated&&!navigator.serviceWorker)return;c=w[p]=w[p]||{};c[f]=c[f]||[]})(window,\"partytown\",\"forward\");const t={preserveBehavior:!1},e=(e)=>{if(\"string\"==typeof e)return[e,t];const[n,r=t]=e;return[n,{...t,...r}]},n=Object.freeze(((t)=>{const e=new Set();let n=[];do{Object.getOwnPropertyNames(n).forEach((t)=>{\"function\"==typeof n[t]&&e.add(t)})}while((n=Object.getPrototypeOf(n))!==Object.prototype);return Array.from(e)})());!(function(t,r,o,i,a,s,c,d,l,p,u=t,f){function h(){f||((f=1),\"/\"==(c=(s.lib||\"/~partytown/\")+(s.debug?\"debug/\":\"\"))[0]&&((l=r.querySelectorAll('script[type=\"text/partytown\"]')),i!=t?i.dispatchEvent(new CustomEvent(\"pt1\",{detail:t})):((d=setTimeout(v,1e4)),r.addEventListener(\"pt0\",w),a?y(1):o.serviceWorker?o.serviceWorker.register(c+(s.swPath||\"partytown-sw.js\"),{scope:c,}).then(function(t){t.active?y():t.installing&&t.installing.addEventListener(\"statechange\",function(t){\"activated\"==t.target.state&&y()})},console.error):v())))}\nfunction y(e){(p=r.createElement(e?\"script\":\"iframe\")),(t._pttab=Date.now()),e||((p.style.display=\"block\"),(p.style.width=\"0\"),(p.style.height=\"0\"),(p.style.border=\"0\"),(p.style.visibility=\"hidden\"),p.setAttribute(\"aria-hidden\",!0)),(p.src=c+\"partytown-\"+(e?\"atomics.js?v=0.10.1\":\"sandbox-sw.html?\"+t._pttab)),r.querySelector(s.sandboxParent||\"body\").appendChild(p)}\nfunction v(n,o){for(w(),i==t&&(s.forward||[]).map(function(n){const[r]=e(n);delete t[r.split(\".\")[0]]}),n=0;n<l.length;n++)((o=r.createElement(\"script\")).innerHTML=l[n].innerHTML),(o.src=l[n].src),(o.nonce=s.nonce),r.head.appendChild(o);p&&p.parentNode.removeChild(p)}\nfunction w(){clearTimeout(d)}(s=t.partytown||{}),i==t&&(s.forward||[]).map(function(r){const[o,{preserveBehavior:i}]=e(r);(u=t),o.split(\".\").map(function(e,r,o){var a;u=u[o[r]]=r+1<o.length?u[o[r]]||((a=o[r+1]),n.includes(a)?[]:{}):(()=>{let e=null;if(i){const{methodOrProperty:n,thisObject:r}=((t,e)=>{let n=t;for(let t=0;t<e.length-1;t+=1)\nn=n[e[t]];return{thisObject:n,methodOrProperty:e.length>0?n[e[e.length-1]]:void 0,}})(t,o);\"function\"==typeof n&&(e=(...t)=>n.apply(r,...t))}\nreturn function(){let n;return(e&&(n=e(arguments)),(t._ptf=t._ptf||[]).push(o,arguments),n)}})()})}),\"complete\"==r.readyState?h():(t.addEventListener(\"DOMContentLoaded\",h),t.addEventListener(\"load\",h))})(window,document,navigator,top,window.crossOriginIsolated)</script><script src=\"/si/snr.js\" type=\"text/partytown\" data-ptid=\"e938xkwr0j\"></script><next-route-announcer><p aria-live=\"assertive\" id=\"__next-route-announcer__\" role=\"alert\" style=\"border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;\"></p></next-route-announcer><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_navigational-modal_navigational-modal-e6838f3de1945c52.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/wplus_ui_locale_messages-b67a2b3f05dd121d.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_bookslot-data-access_bookslot-tenant-context-f53ee7d9083ebb5e.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_bookslot-shortcut_locale_messages-fc30965944403e8d.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_bookslot-shortcut_bookslot-shortcut-view-d938771d777eec09.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ui_collapsed-item-list_collapsed-item-list-ec6a04c267519e41.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/lists_common-data-access_helpers_log-error-extractor-1f1485ec633e7dd0.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_common-components_cart-bookslot-wplus-banner-065116c954ce5fd2.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_core_hooks_use-intersection-observable-7f9ef32ecb6c5335.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/amends_data-access_hooks_use-is-amendable-d3fe1dce052d8570.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/cart_common-components_cart-special-message-alerts-fc4a7780e0c6b818.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_core_utils_get-viewport-f9310c03200fd352.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/lists_common-data-access_locale_messages-a55dd0585e525366.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/pages/cart-10e808b4ae0012b2.js\"></script><iframe aria-hidden=\"true\" src=\"/~partytown/partytown-sandbox-sw.html?1772774194642\" style=\"display: block; width: 0px; height: 0px; border: 0px; visibility: hidden;\"></iframe><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/node_modules_.pnpm_@livingdesign+icons-indigo@1.4.0_@babel+runtime@7.26.0_classnames@2.5.1_prop-types@15.8.1_react@18.2_node_modules_@livingdesign_icons-indigo_dist_react_StarFill.esm-89286dc3d5632899.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/intl-ads_ad-routing_intl-ad-routing-2aef8f7527e36524.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_reviews_locale_messages-6fda71cbab9fcf58.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/subscription_shared-components_frequency-tile_frequency-tile-group-cad70407c60a9e85.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_shared_locale_messages-a1585c3536c18294.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_review-order-data-access_helpers_fulfillment-groups-179eb40c0f3f6d65.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/help-redesign_utility_utils_helphook-b432e4c817881332.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/lists_add-items_locale_messages-35dc26575454b371.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_buy-now_buy-now-button-27044744855ad4f0.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/registry_common-components_registry-type-selector_registry-type-option-info-fcde11f9ccce5048.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/lists_add-items_add-to-registry-v2-90ad5bd19887c8aa.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/marketplace_return-policy_return-policy-modal-fbd98a358f171578.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_data-access_helpers_product-transformation-1e6f403ae371f770.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_buy-box_add-to-cart-section_atc-buynow-7b019f1bd970d178.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_buy-box_lens-customization-buy-box_vision-non-sunglasses-options-295b7d353bd62d1b.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/checkout_store-chooser_hooks_use-cart-store-chooser-ec459c5109a0af93.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_tempo_locale_messages-2406295b0470e44b.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_reviews_ui-components_reviews-summary-c47ab2f96f35858b.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/ads_provider_ads-context-provider-c8b31f7fd6f202eb.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_complete-the-look_in-this-look-carousel-c236cf56c08440b6.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_page-context_completed-error-ssr-retry-gate-532378ac87f56c85.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/account_data-access_types-a4ff435f48762545.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/item_buy-box_lens-customization-buy-box_vision-options-642a9742479b97c0.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/lists_common-data-access_locale_messages-7640706e2d2b8618.js\"></script><script src=\"https://i5.walmartimages.com/dfw/63fd9f59-6eda/5391cbe8-2ed4-4840-bcac-53dbef2302bb/v2/en-US/_next/static/chunks/pages/ip/%5B...itemParams%5D-4e56a4cc444c8898.js\"></script></body></html>"
  }
}

Next Steps

You’ve successfully created, run, and rerun your first scraper with MrScraper! From here, you can explore our in-depth use case guides:

On this page