[object Object]

← back to Dw Sarah Rowland Searchfix

auto-save: 2026-07-29T07:06:42 (8 files) — .gitignore apply.mjs check-metafield-def.mjs create-def.mjs inspect-designer.mjs

08a1a5fe98e9d2a544a5c848d7296d2b8f358762 · 2026-07-29 07:06:52 -0700 · Steve Abrams

Files touched

Diff

commit 08a1a5fe98e9d2a544a5c848d7296d2b8f358762
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Wed Jul 29 07:06:52 2026 -0700

    auto-save: 2026-07-29T07:06:42 (8 files) — .gitignore apply.mjs check-metafield-def.mjs create-def.mjs inspect-designer.mjs
---
 .gitignore              |    6 +
 apply.mjs               |   49 +
 check-metafield-def.mjs |   12 +
 create-def.mjs          |   15 +
 inspect-designer.mjs    |   26 +
 lib.mjs                 |   34 +
 probe.mjs               |   47 +
 products.json           | 4084 +++++++++++++++++++++++++++++++++++++++++++++++
 8 files changed, 4273 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..8bd5f26
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,6 @@
+node_modules/
+.env*
+tmp/
+*.log
+.DS_Store
+backups/
diff --git a/apply.mjs b/apply.mjs
new file mode 100644
index 0000000..016de5e
--- /dev/null
+++ b/apply.mjs
@@ -0,0 +1,49 @@
+// TK-10037 — make the Sarah Rowland collection searchable.
+// Adds tag "Sarah Rowland" (search fix) + custom.designer="Sarah Rowland" (structured data)
+// to every product in the collection. Idempotent. Writes to LIVE production Shopify.
+//
+//   node apply.mjs canary   -> first 1 product only, then verify
+//   node apply.mjs all      -> all products (safe to re-run; idempotent)
+import fs from 'node:fs';
+import { gql } from './lib.mjs';
+
+const TAG = 'Sarah Rowland';
+const mode = process.argv[2];
+if (!['canary', 'all'].includes(mode)) { console.error('usage: node apply.mjs canary|all'); process.exit(1); }
+
+const products = JSON.parse(fs.readFileSync(new URL('./products.json', import.meta.url)));
+const batch = mode === 'canary' ? products.slice(0, 1) : products;
+
+const TAGS_ADD = `mutation($id:ID!,$tags:[String!]!){ tagsAdd(id:$id, tags:$tags){ userErrors{ message } } }`;
+const MF_SET = `mutation($mf:[MetafieldsSetInput!]!){ metafieldsSet(metafields:$mf){ userErrors{ field message } } }`;
+
+const sleep = (ms) => new Promise(r => setTimeout(r, ms));
+let ok = 0, fail = 0;
+console.log(`MODE=${mode} — processing ${batch.length} product(s)\n`);
+
+for (const p of batch) {
+  try {
+    await gql(TAGS_ADD, { id: p.id, tags: [TAG] });
+    await gql(MF_SET, { mf: [{ ownerId: p.id, namespace: 'custom', key: 'designer',
+      type: 'single_line_text_field', value: TAG }] });
+    ok++;
+    if (mode === 'canary' || ok % 20 === 0) console.log(`  ✓ ${ok}/${batch.length}  ${p.title.slice(0,45)}`);
+  } catch (e) {
+    fail++;
+    console.log(`  ✗ FAIL  ${p.title.slice(0,45)} — ${e.message}`);
+  }
+  await sleep(120);
+}
+console.log(`\nDone: ${ok} ok, ${fail} failed.`);
+
+// verify
+const VERIFY = `query($id:ID!){ product(id:$id){ tags metafield(namespace:"custom",key:"designer"){ value } } }`;
+console.log('\nVerifying...');
+let vTag = 0, vMeta = 0;
+for (const p of batch) {
+  const d = await gql(VERIFY, { id: p.id });
+  if (d.product.tags.includes(TAG)) vTag++;
+  if (d.product.metafield && d.product.metafield.value === TAG) vMeta++;
+  await sleep(60);
+}
+console.log(`Verified: ${vTag}/${batch.length} carry the tag, ${vMeta}/${batch.length} carry custom.designer.`);
diff --git a/check-metafield-def.mjs b/check-metafield-def.mjs
new file mode 100644
index 0000000..05e3016
--- /dev/null
+++ b/check-metafield-def.mjs
@@ -0,0 +1,12 @@
+import { gql } from './lib.mjs';
+const Q = `{
+  metafieldDefinitions(first:50, ownerType:PRODUCT, namespace:"custom"){
+    nodes{ key name type{ name } }
+  }
+}`;
+const d = await gql(Q);
+const defs = d.metafieldDefinitions.nodes;
+const designer = defs.find(x => x.key === 'designer');
+console.log('custom.designer definition:', designer ? `${designer.type.name}` : 'NONE (undefined)');
+console.log('\nAll custom.* defs:');
+defs.forEach(x => console.log(`  custom.${x.key} -> ${x.type.name}`));
diff --git a/create-def.mjs b/create-def.mjs
new file mode 100644
index 0000000..3e1445e
--- /dev/null
+++ b/create-def.mjs
@@ -0,0 +1,15 @@
+import { gql } from './lib.mjs';
+const M = `mutation{
+  metafieldDefinitionCreate(definition:{
+    name:"Designer", namespace:"custom", key:"designer",
+    ownerType:PRODUCT, type:"single_line_text_field",
+    description:"Named designer/design line for this product (search + merchandising)"
+  }){
+    createdDefinition{ id name }
+    userErrors{ field message code }
+  }
+}`;
+const d = await gql(M);
+const r = d.metafieldDefinitionCreate;
+if (r.userErrors.length) console.log('userErrors:', JSON.stringify(r.userErrors));
+console.log('created:', r.createdDefinition ? r.createdDefinition.id : '(none — may already exist)');
diff --git a/inspect-designer.mjs b/inspect-designer.mjs
new file mode 100644
index 0000000..16cd6f2
--- /dev/null
+++ b/inspect-designer.mjs
@@ -0,0 +1,26 @@
+import { gql } from './lib.mjs';
+// full definition list (paginated) + a live sample of the metafield on a real product
+const Q = `
+query($cursor:String){
+  metafieldDefinitions(first:250, ownerType:PRODUCT, namespace:"custom", after:$cursor){
+    pageInfo{ hasNextPage endCursor }
+    nodes{ key type{ name } }
+  }
+}`;
+let cursor=null, defs=[];
+do { const d=await gql(Q,{cursor}); defs.push(...d.metafieldDefinitions.nodes);
+  cursor=d.metafieldDefinitions.pageInfo.hasNextPage?d.metafieldDefinitions.pageInfo.endCursor:null;
+} while(cursor);
+const des = defs.find(x=>x.key==='designer');
+console.log('TOTAL custom defs:', defs.length);
+console.log('custom.designer DEFINITION type:', des ? des.type.name : 'NONE');
+
+// sample actual metafield instances on products in the collection
+const S = `{
+  products(first:5, query:"tag:'Architectural Wallcoverings'"){
+    nodes{ title metafield(namespace:"custom",key:"designer"){ type value } }
+  }
+}`;
+const s = await gql(S);
+console.log('\nSample custom.designer values on products:');
+s.products.nodes.forEach(p=>console.log(`  ${p.title.slice(0,40)} -> ${p.metafield?JSON.stringify(p.metafield):'null'}`));
diff --git a/lib.mjs b/lib.mjs
new file mode 100644
index 0000000..b00f6e7
--- /dev/null
+++ b/lib.mjs
@@ -0,0 +1,34 @@
+// Shared helpers for the Sarah Rowland search-fix (TK-10037)
+// Reads the LIVE store (designer-laboratory-sandbox) — treat every write as production.
+import fs from 'node:fs';
+import os from 'node:os';
+
+const ENV_PATH = `${os.homedir()}/Projects/secrets-manager/.env`;
+
+export function getToken() {
+  const env = fs.readFileSync(ENV_PATH, 'utf8');
+  const m = env.match(/^SHOPIFY_ADMIN_TOKEN=(.+)$/m);
+  if (!m) throw new Error('SHOPIFY_ADMIN_TOKEN not found in secrets .env');
+  return m[1].trim();
+}
+
+export const STORE = 'designer-laboratory-sandbox.myshopify.com';
+export const API = '2024-10';
+
+export async function gql(query, variables = {}) {
+  const res = await fetch(`https://${STORE}/admin/api/${API}/graphql.json`, {
+    method: 'POST',
+    headers: {
+      'X-Shopify-Access-Token': getToken(),
+      'Content-Type': 'application/json',
+    },
+    body: JSON.stringify({ query, variables }),
+  });
+  const json = await res.json();
+  if (json.errors) throw new Error('GraphQL errors: ' + JSON.stringify(json.errors));
+  if (json.data && Object.values(json.data).some(v => v && v.userErrors && v.userErrors.length))
+    throw new Error('userErrors: ' + JSON.stringify(json.data));
+  return json.data;
+}
+
+export const HANDLE = 'sarah-rowland-wallpaper-collection';
diff --git a/probe.mjs b/probe.mjs
new file mode 100644
index 0000000..47bfcca
--- /dev/null
+++ b/probe.mjs
@@ -0,0 +1,47 @@
+// READ-ONLY probe: confirm token + pull the whole collection from LIVE Shopify.
+// Reports each product's title, tags, and whether "Sarah Rowland" is already in a
+// search-indexed field (title/tags) — i.e. which products are currently invisible.
+import { gql, HANDLE } from './lib.mjs';
+
+const Q = `
+query($handle:String!, $cursor:String){
+  collectionByHandle(handle:$handle){
+    id title
+    products(first:100, after:$cursor){
+      pageInfo{ hasNextPage endCursor }
+      nodes{
+        id title vendor productType tags
+        metafield(namespace:"custom", key:"designer"){ value }
+      }
+    }
+  }
+}`;
+
+const all = [];
+let cursor = null, coll = null;
+do {
+  const d = await gql(Q, { handle: HANDLE, cursor });
+  coll = d.collectionByHandle;
+  if (!coll) { console.error('Collection not found for handle', HANDLE); process.exit(1); }
+  all.push(...coll.products.nodes);
+  cursor = coll.products.pageInfo.hasNextPage ? coll.products.pageInfo.endCursor : null;
+} while (cursor);
+
+const has = (p) => /sarah\s*rowland/i.test(p.title) || p.tags.some(t => /sarah\s*rowland/i.test(t));
+const visible = all.filter(has);
+const invisible = all.filter(p => !has(p));
+const alreadyTagged = all.filter(p => p.tags.some(t => /sarah\s*rowland/i.test(t)));
+const hasMeta = all.filter(p => p.metafield && /sarah\s*rowland/i.test(p.metafield.value || ''));
+
+console.log(`Collection: ${coll.title} (${coll.id})`);
+console.log(`Total products:            ${all.length}`);
+console.log(`Search-visible (title/tag): ${visible.length}`);
+console.log(`Search-INVISIBLE:           ${invisible.length}`);
+console.log(`Already carry SR tag:       ${alreadyTagged.length}`);
+console.log(`Already have custom.designer=SR: ${hasMeta.length}`);
+console.log(`\nSample invisible titles:`);
+invisible.slice(0, 8).forEach(p => console.log('  -', p.title, '|', JSON.stringify(p.tags.slice(0,3))));
+
+fsWrite(all);
+import fs from 'node:fs';
+function fsWrite(a){ fs.writeFileSync(new URL('./products.json', import.meta.url), JSON.stringify(a, null, 2)); }
diff --git a/products.json b/products.json
new file mode 100644
index 0000000..97eb6f6
--- /dev/null
+++ b/products.json
@@ -0,0 +1,4084 @@
+[
+  {
+    "id": "gid://shopify/Product/7634022137907",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302940",
+      "Fuchsia",
+      "Geometric",
+      "Golden Yellow",
+      "Living Room",
+      "Magenta",
+      "Mid-century",
+      "Mid-century Modern",
+      "Modern",
+      "Multi",
+      "Off White",
+      "Office",
+      "Olive Green",
+      "Paper",
+      "Pink",
+      "Playful",
+      "quotes",
+      "Review",
+      "Showroom Line",
+      "Tan",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023940147",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Burgundy",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Chocolate",
+      "display_variant",
+      "DWK-303100",
+      "Garnet",
+      "Geometric",
+      "Light Gray",
+      "Living Room",
+      "Office",
+      "Paper",
+      "Pink",
+      "Plaid",
+      "quotes",
+      "Red",
+      "Review",
+      "Rose",
+      "Ruby",
+      "Showroom Line",
+      "Warm"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023678003",
+    "title": "Rambo Brown - Pale Beige Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Biophilic",
+      "Brown",
+      "Chocolate",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "Dining Room",
+      "display_variant",
+      "Dot",
+      "DWK-302651",
+      "Leaf",
+      "Living Room",
+      "Olive Green",
+      "Organic",
+      "Organic Modern",
+      "Pale Beige",
+      "Paper",
+      "quotes",
+      "Red",
+      "Showroom Line",
+      "SRD-RAM-02"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023383091",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cottagecore",
+      "Cream",
+      "Dining Room",
+      "display_variant",
+      "DWK-303050",
+      "Floral",
+      "French Country",
+      "Living Room",
+      "Navy Blue",
+      "Off-white",
+      "Organic",
+      "Paper",
+      "quotes",
+      "Review",
+      "Scroll",
+      "Serene",
+      "Showroom Line",
+      "Traditional",
+      "Vine"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023317555",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Black",
+      "Class A Fire Rated",
+      "Color: Green",
+      "color:Sage",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-303020",
+      "Eclectic",
+      "Geometric",
+      "Hallway",
+      "Light Pink",
+      "Living Room",
+      "Olive Green",
+      "Pale Beige",
+      "Pale Blue",
+      "Paper",
+      "Playful",
+      "quotes",
+      "Red",
+      "Review",
+      "Showroom Line",
+      "Stripe",
+      "Taupe",
+      "White",
+      "Yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022891571",
+    "title": "Max Clay - Off-White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "display_variant",
+      "DWK-303030",
+      "Gray",
+      "Green",
+      "Hotel Lobby",
+      "Light Coral",
+      "Light Gray",
+      "Modern",
+      "Multi",
+      "Off White",
+      "Office",
+      "Organic",
+      "Pale Yellow",
+      "quotes",
+      "Sage Green",
+      "Serene",
+      "Showroom Line",
+      "Slate Gray",
+      "SRD-MAX-01",
+      "Vinyl",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022072371",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Ash",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302920",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Living Room",
+      "Modern",
+      "Moody",
+      "Organic",
+      "Paper",
+      "quotes",
+      "Review",
+      "Showroom Line",
+      "Silver"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634020040755",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Black",
+      "Brown",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Navy",
+      "display_variant",
+      "DWK-302860",
+      "Geometric",
+      "Hallway",
+      "Living Room",
+      "Modern",
+      "Navy",
+      "quotes",
+      "Review",
+      "Showroom Line",
+      "Sophisticated",
+      "Stripe",
+      "Taupe",
+      "Texture",
+      "Vinyl"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634019516467",
+    "title": "Edgar Midnight - Light Gray Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302792",
+      "Geometric",
+      "Gray",
+      "Grey",
+      "Light Gray",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Organic Modern",
+      "Paper",
+      "Plaid",
+      "Purple",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "Slate Gray",
+      "SRD-EDG-02",
+      "Stripe",
+      "Type 2",
+      "Watercolor",
+      "Weave",
+      "white"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634019483699",
+    "title": "Edgar Green - Light Gray Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302791",
+      "Farmhouse",
+      "Forest Green",
+      "Geometric",
+      "Gingham",
+      "Green",
+      "Light Gray",
+      "Living Room",
+      "Office",
+      "Paper",
+      "Plaid",
+      "quotes",
+      "Rustic",
+      "Showroom Line",
+      "SRD-EDG-01",
+      "Tartan",
+      "Traditional",
+      "Type 2",
+      "Warm"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634025480243",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "DWK-303172",
+      "Geometric",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Living Room",
+      "material-group-wood-veneer",
+      "Modern",
+      "Paper",
+      "quotes",
+      "Review",
+      "Showroom Line",
+      "Silver",
+      "Sophisticated",
+      "Texture",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634025447475",
+    "title": "Zak Black - Gray Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Art Deco",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Grey",
+      "display_variant",
+      "DWK-303171",
+      "Estimated Type: Paper",
+      "Geometric",
+      "Gray",
+      "Grey",
+      "Living Room",
+      "material-group-wood-veneer",
+      "Modern",
+      "Office",
+      "quotes",
+      "Showroom Line",
+      "Silver",
+      "Sophisticated",
+      "SRD-ZAK-03",
+      "Texture"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634025414707",
+    "title": "Zak Mud - Taupe Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-303170",
+      "Estimated Type: Non-woven",
+      "Geometric",
+      "Hallway",
+      "Living Room",
+      "material-group-wood-veneer",
+      "Mushroom",
+      "Pale Taupe",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "Silver",
+      "SRD-ZAK-02",
+      "Taupe",
+      "Texture",
+      "Transitional"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634025381939",
+    "title": "Zak Tomato - Light Coral Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Coral",
+      "display_variant",
+      "DWK-303161",
+      "Geometric",
+      "Hallway",
+      "Light Coral",
+      "Living Room",
+      "material-group-wood-veneer",
+      "Paper",
+      "Pink",
+      "quotes",
+      "Red",
+      "Showroom Line",
+      "SRD-ZAK-01",
+      "Texture",
+      "Warm"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634025349171",
+    "title": "Xavier Mist - Pale Blue Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-303160",
+      "Geometric",
+      "Hallway",
+      "Light Blue",
+      "Living Room",
+      "material-group-non-woven",
+      "Navy",
+      "Navy Blue",
+      "Non-woven",
+      "Off-white",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "SRD-XAV-02",
+      "Teal",
+      "Texture"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634025316403",
+    "title": "Twiggy Blue - Dark Teal Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Biophilic",
+      "Blue",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "color:Peacock",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Deep Teal",
+      "display_variant",
+      "DWK-303150",
+      "Hallway",
+      "Light Teal",
+      "Living Room",
+      "material-group-grasscloth",
+      "Non-woven",
+      "Organic",
+      "Organic Modern",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "SRD-TWG-01",
+      "Texture",
+      "Wood Grain"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634025218099",
+    "title": "Theo Sage - White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Biophilic",
+      "Botanical",
+      "Class A Fire Rated",
+      "Color: Green",
+      "color:Olive",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-303141",
+      "Geometric",
+      "Green",
+      "Hallway",
+      "Living Room",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "quotes",
+      "Sage Green",
+      "Showroom Line",
+      "SRD-THE-02",
+      "Tan",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634025185331",
+    "title": "Theo Slate - White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Charcoal",
+      "Charcoal Grey",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-303140",
+      "Geometric",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Organic",
+      "Paper",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "Silver",
+      "SRD-THE-01",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634025152563",
+    "title": "Susannah Stone - Sage Green Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Bathroom",
+      "Bedroom",
+      "Biophilic",
+      "Botanical",
+      "Class A Fire Rated",
+      "Color: Green",
+      "color:Sage",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302640",
+      "Green",
+      "Leaf",
+      "Living Room",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "quotes",
+      "Sage",
+      "Serene",
+      "Showroom Line",
+      "SRD-SUS-04",
+      "Vine",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634025119795",
+    "title": "Susannah Melon - Pale Green Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Bathroom",
+      "Bedroom",
+      "Beige",
+      "Biophilic",
+      "Botanical",
+      "Celadon",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302504",
+      "Green",
+      "Leaf",
+      "Living Room",
+      "Off-white",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "quotes",
+      "Sage",
+      "Serene",
+      "Showroom Line",
+      "SRD-SUS-02"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634025087027",
+    "title": "Susannah Cream - Off-White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Beige",
+      "Biophilic",
+      "Botanical",
+      "Burnt Orange",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "DWK-302503",
+      "Hotel Lobby",
+      "Leaf",
+      "Living Room",
+      "Off-white",
+      "Office",
+      "Orange",
+      "Organic",
+      "Organic Modern",
+      "quotes",
+      "Showroom Line",
+      "SRD-SUS-01",
+      "Vine",
+      "Vinyl"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634025054259",
+    "title": "Stevie Grey - White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "color:Silver",
+      "Commercial Wallcovering",
+      "Damask",
+      "Dining Room",
+      "display_variant",
+      "DWK-302502",
+      "Grandmillennial",
+      "Gray",
+      "Grey",
+      "Living Room",
+      "Organic",
+      "Paper",
+      "quotes",
+      "Regencycore",
+      "Scroll",
+      "Showroom Line",
+      "Silver Gray",
+      "Sophisticated",
+      "SRD-STV-03",
+      "Traditional",
+      "Victorian",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634024988723",
+    "title": "Stevie Green - White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Cottagecore",
+      "Cream",
+      "Dining Room",
+      "display_variant",
+      "DWK-302501",
+      "Floral",
+      "Geometric",
+      "Grandmillennial",
+      "Green",
+      "Lattice",
+      "Living Room",
+      "Oatmeal",
+      "Off-white",
+      "Organic",
+      "Paper",
+      "quotes",
+      "Sage Green",
+      "Serene",
+      "Showroom Line",
+      "SRD-STV-02",
+      "Traditional",
+      "Victorian",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634024890419",
+    "title": "Stevie Blue - White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cottagecore",
+      "Dining Room",
+      "display_variant",
+      "DWK-302500",
+      "French Country",
+      "Geometric",
+      "Grandmillennial",
+      "Green",
+      "Lattice",
+      "Living Room",
+      "Organic",
+      "Paper",
+      "quotes",
+      "Sage Green",
+      "Serene",
+      "Showroom Line",
+      "SRD-STV-01",
+      "Traditional",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634024824883",
+    "title": "Stari Indigo - Cream Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "color:Off White",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "DWK-303130",
+      "Geometric",
+      "Hallway",
+      "Living Room",
+      "Modern",
+      "Navy Blue",
+      "Organic",
+      "Paper",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "SRD-STA-01",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634024693811",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Biophilic",
+      "Botanical",
+      "Class A Fire Rated",
+      "Color: Green",
+      "color:Oatmeal",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302580",
+      "Eclectic",
+      "Golden Yellow",
+      "Green",
+      "Leaf",
+      "Light Pink",
+      "Living Room",
+      "Office",
+      "Olive Green",
+      "Organic",
+      "Organic Modern",
+      "Pale Green",
+      "Paper",
+      "quotes",
+      "Review",
+      "Sage Green",
+      "Showroom Line"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634024529971",
+    "title": "Scarlett Green - White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Biophilic",
+      "Botanical",
+      "Chartreuse",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Olive Green",
+      "display_variant",
+      "DWK-302610",
+      "Green",
+      "Hallway",
+      "Leaf",
+      "Living Room",
+      "Olive",
+      "Olive Green",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "quotes",
+      "Showroom Line",
+      "SRD-SCA-03",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634024333363",
+    "title": "Scarlett Rust - White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Biophilic",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-303111",
+      "Estimated Type: Non-woven",
+      "Golden Yellow",
+      "Hallway",
+      "Leaf",
+      "Light Beige",
+      "Living Room",
+      "material-group-non-woven",
+      "Modern",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "quotes",
+      "Red",
+      "Showroom Line",
+      "SRD-SCA-01",
+      "Walnut",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634024038451",
+    "title": "Sam Grass - White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Basketweave",
+      "Bedroom",
+      "Biophilic",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-303110",
+      "Forest Green",
+      "Geometric",
+      "Grasscloth",
+      "Green",
+      "Lime Green",
+      "Living Room",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "quotes",
+      "Showroom Line",
+      "SRD-SAM-01",
+      "Textured",
+      "Weave",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634024005683",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Architectural Wallcoverings",
+      "Bathroom",
+      "Bedroom",
+      "Beige",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-303120",
+      "Gray",
+      "Living Room",
+      "material-group-grasscloth",
+      "Non-woven",
+      "Organic",
+      "Organic Modern",
+      "Palm",
+      "quotes",
+      "Review",
+      "Serene",
+      "Showroom Line",
+      "Silver",
+      "Slate Blue",
+      "Taupe",
+      "Tropical",
+      "Tropical Leaf"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023907379",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "DWK-302680",
+      "Geometric",
+      "Golden Yellow",
+      "Living Room",
+      "Modern",
+      "Multi",
+      "Off-white",
+      "Office",
+      "Orange",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Pink",
+      "Playful",
+      "quotes",
+      "Review",
+      "Rose",
+      "Showroom Line",
+      "Tangerine"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023841843",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "DWK-303090",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "Organic",
+      "Paper",
+      "quotes",
+      "Review",
+      "Serene",
+      "Showroom Line",
+      "Stripe"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023776307",
+    "title": "Renata Grey - White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bathroom",
+      "Bedroom",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-303081",
+      "Floral",
+      "Gray",
+      "Grey",
+      "Light Grey",
+      "Living Room",
+      "Medium Grey",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "Silver",
+      "SRD-REN-03",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023710771",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Beige",
+      "Bohemian",
+      "Botanical",
+      "Burnt Orange",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Dusty Rose",
+      "DWK-303080",
+      "Eclectic",
+      "Floral",
+      "Hallway",
+      "Light Blue",
+      "Living Room",
+      "Orange",
+      "Organic",
+      "Paper",
+      "quotes",
+      "Red",
+      "Review",
+      "Showroom Line",
+      "Taupe",
+      "Watercolor",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023645235",
+    "title": "Rambo Green - Sage Green Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Bathroom",
+      "Bedroom",
+      "Biophilic",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Teal",
+      "display_variant",
+      "Dot",
+      "DWK-302650",
+      "Green",
+      "Leaf",
+      "Living Room",
+      "material-group-paperweave",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "quotes",
+      "Sage",
+      "Seafoam Green",
+      "Serene",
+      "Showroom Line",
+      "SRD-RAM-01",
+      "Teal",
+      "Texture"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023579699",
+    "title": "Poe Blue - Light Blue Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Dot",
+      "DWK-302512",
+      "Hallway",
+      "Light Blue",
+      "material-group-non-woven",
+      "Minimalist",
+      "Non-woven",
+      "Nursery",
+      "Organic",
+      "Organic Modern",
+      "Pale Grey",
+      "Powder Blue",
+      "quotes",
+      "Scandinavian",
+      "Serene",
+      "Showroom Line",
+      "SRD-POE-03",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023546931",
+    "title": "Poe White - Pale Beige Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Alabaster",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "Dot",
+      "DWK-302511",
+      "Hallway",
+      "Living Room",
+      "material-group-non-woven",
+      "Minimalist",
+      "Non-woven",
+      "Organic",
+      "Organic Modern",
+      "Pale Beige",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "SRD-POE-02",
+      "Taupe",
+      "Zen"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023514163",
+    "title": "Poe Black - Black Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Biophilic",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Dot",
+      "DWK-302510",
+      "Gray",
+      "Hallway",
+      "Living Room",
+      "Minimalist",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "Silver",
+      "SRD-POE-01",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023481395",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Architectural Wallcoverings",
+      "Chartreuse",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-303070",
+      "Fretwork",
+      "Geometric",
+      "Green",
+      "Hallway",
+      "Ivory",
+      "Linen",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Off-white",
+      "Office",
+      "Organic",
+      "Paper",
+      "quotes",
+      "Review",
+      "Sage",
+      "Showroom Line"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023448627",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Biophilic",
+      "Black",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302570",
+      "Gold",
+      "Hotel Lobby",
+      "Living Room",
+      "material-group-non-woven",
+      "Modern",
+      "Mustard Yellow",
+      "Non-woven",
+      "Organic",
+      "Organic Modern",
+      "quotes",
+      "Review",
+      "Sage Green",
+      "Showroom Line",
+      "Sophisticated",
+      "Stripe",
+      "White",
+      "Yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023415859",
+    "title": "Napoleon Bone - Off-White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Botanical",
+      "Bright",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-303060",
+      "Floral",
+      "Golden Yellow",
+      "Hallway",
+      "Living Room",
+      "Mid-century",
+      "Mid-century Modern",
+      "Modern",
+      "Off-white",
+      "Office",
+      "Organic",
+      "quotes",
+      "Showroom Line",
+      "Silver",
+      "SRD-NAP-01",
+      "Vinyl",
+      "Yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023284787",
+    "title": "Minerva Grey - Off-White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Aqua",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Beige",
+      "Charcoal Grey",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "DWK-303005",
+      "Eclectic",
+      "Geometric",
+      "Gray",
+      "Grey",
+      "Light Grey",
+      "Living Room",
+      "material-group-natural-fiber",
+      "Off White",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "Pale Peach",
+      "Paper",
+      "quotes",
+      "Showroom Line",
+      "Sophisticated",
+      "SRD-MIN-03",
+      "Texture"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023252019",
+    "title": "Minerva Green - Off-White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Biophilic",
+      "Class A Fire Rated",
+      "Color: Green",
+      "color:Moss",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-303004",
+      "Eclectic",
+      "Green",
+      "Hallway",
+      "Ivory",
+      "Light Gray",
+      "Living Room",
+      "material-group-grasscloth",
+      "Non-woven",
+      "Off-white",
+      "Olive Green",
+      "Organic",
+      "Organic Modern",
+      "Pale Green",
+      "quotes",
+      "Sage Green",
+      "Showroom Line",
+      "SRD-MIN-02",
+      "Texture",
+      "Textured"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023153715",
+    "title": "Maddy Red - Off-White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Botanical",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cottagecore",
+      "Cream",
+      "Dining Room",
+      "display_variant",
+      "DWK-303002",
+      "Farmhouse",
+      "Floral",
+      "Living Room",
+      "Medium Wood Tone",
+      "Off-white",
+      "Organic",
+      "Paper",
+      "Paprika",
+      "Pink",
+      "quotes",
+      "Red",
+      "Rustic",
+      "Showroom Line",
+      "SRD-MDY-04",
+      "Traditional",
+      "Vine"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023120947",
+    "title": "Maddy Indigo - Off-White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cottagecore",
+      "Cream",
+      "display_variant",
+      "DWK-303001",
+      "Farmhouse",
+      "Floral",
+      "Hallway",
+      "Living Room",
+      "Navy Blue",
+      "Off-white",
+      "Organic",
+      "Paper",
+      "quotes",
+      "Showroom Line",
+      "Silver",
+      "SRD-MDY-03",
+      "Traditional",
+      "Vine"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023088179",
+    "title": "Maddy Cream - Off-White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cottagecore",
+      "Cream",
+      "display_variant",
+      "DWK-303000",
+      "Floral",
+      "Hallway",
+      "Living Room",
+      "Off-white",
+      "Organic",
+      "Paper",
+      "quotes",
+      "Rustic",
+      "Showroom Line",
+      "SRD-MDY-02",
+      "Taupe",
+      "Traditional",
+      "Vine",
+      "Wood"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023055411",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Blue",
+      "Botanical",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "color:Denim",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cottagecore",
+      "display_variant",
+      "DWK-303040",
+      "Floral",
+      "Hallway",
+      "Living Room",
+      "Organic",
+      "Paper",
+      "quotes",
+      "Review",
+      "Serene",
+      "Showroom Line",
+      "Teal",
+      "Traditional",
+      "Victorian"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634023022643",
+    "title": "Max Earth - Light Gray Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Beige",
+      "Blue",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "color:Powder Blue",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Crimson",
+      "display_variant",
+      "Dusty Rose",
+      "DWK-303033",
+      "Gray",
+      "Light Blue",
+      "Light Grey",
+      "Living Room",
+      "material-group-paperweave",
+      "Modern",
+      "Office",
+      "Organic",
+      "Paper",
+      "Pink",
+      "quotes",
+      "Red",
+      "Serene",
+      "Showroom Line",
+      "Slate Grey",
+      "SRD-MAX-04",
+      "Taupe",
+      "Texture"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022989875",
+    "title": "Max Storm - Light Gray Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cool",
+      "display_variant",
+      "DWK-303032",
+      "Estimated Type: Vinyl",
+      "Fuchsia",
+      "Goldenrod",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Light Gray",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Organic",
+      "Pink",
+      "Platinum",
+      "quotes",
+      "Showroom Line",
+      "Silver",
+      "Slate Gray",
+      "SRD-MAX-03",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022924339",
+    "title": "Max Sky - White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Blue",
+      "Charcoal Grey",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "color:Denim",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cool",
+      "display_variant",
+      "DWK-303031",
+      "Gold",
+      "Gray",
+      "Living Room",
+      "material-group-grasscloth",
+      "Modern",
+      "Non-woven",
+      "Office",
+      "Organic",
+      "quotes",
+      "Sage Green",
+      "Showroom Line",
+      "Sky Blue",
+      "SRD-MAX-02",
+      "Steel Blue",
+      "Taupe",
+      "White",
+      "Yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022858803",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Biophilic",
+      "Botanical",
+      "Brown",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dining Room",
+      "display_variant",
+      "DWK-303010",
+      "Gold Leaf",
+      "Gray",
+      "Leaf",
+      "Living Room",
+      "material-group-grasscloth",
+      "Mauve",
+      "Metal Leaf",
+      "Non-woven",
+      "Organic",
+      "Organic Modern",
+      "Pale Pink",
+      "Pink",
+      "quotes",
+      "Review",
+      "Showroom Line",
+      "Taupe",
+      "Tropical",
+      "Tropical Leaf"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022826035",
+    "title": "Mae Blue - Light Blue Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Blue",
+      "Champagne",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Dot",
+      "DWK-302522",
+      "Living Room",
+      "Minimalist",
+      "Nursery",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Powder Blue",
+      "quotes",
+      "Scandinavian",
+      "Serene",
+      "Showroom Line",
+      "Sky Blue",
+      "SRD-MAE-03",
+      "White",
+      "Yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022793267",
+    "title": "Mae White - Off-White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "Dot",
+      "DWK-302521",
+      "Grey",
+      "Light Blue",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Nursery",
+      "Off-white",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "SRD-MAE-02"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022760499",
+    "title": "Mae Black - Black Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Black",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Dot",
+      "DWK-302520",
+      "Gold",
+      "Lavender",
+      "Lilac",
+      "Living Room",
+      "Modern",
+      "Nursery",
+      "Organic",
+      "Paper",
+      "Purple",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "Silver",
+      "SRD-MAE-01",
+      "Whimsical",
+      "Yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022694963",
+    "title": "Luna Midnight - Dark Gray Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Blue",
+      "Brick Red",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "color:Charcoal",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Grey",
+      "display_variant",
+      "DWK-302620",
+      "Hotel Lobby",
+      "Light Grey",
+      "Living Room",
+      "material-group-non-woven",
+      "Modern",
+      "Navy",
+      "Non-woven",
+      "Organic",
+      "Organic Modern",
+      "quotes",
+      "Red",
+      "Scenic",
+      "Serene",
+      "Showroom Line",
+      "SRD-LUN-01",
+      "Zen"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022596659",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bathroom",
+      "Burnt Orange",
+      "Class A Fire Rated",
+      "Color: Multi",
+      "color:Burnt Orange",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302970",
+      "Eclectic",
+      "Energetic",
+      "Geometric",
+      "Golden Yellow",
+      "material-group-non-woven",
+      "Modern",
+      "Multi",
+      "Navy Blue",
+      "Non-woven",
+      "Olive Green",
+      "Orange",
+      "Powder Room",
+      "Primary Suite",
+      "quotes",
+      "Review",
+      "Showroom Line",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022531123",
+    "title": "Louise Mud - Taupe Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Charcoal Grey",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "color:Taupe",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302990",
+      "Gray",
+      "Grey",
+      "Hallway",
+      "Living Room",
+      "material-group-natural-fiber",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "SRD-LOS-03",
+      "Stone Grey",
+      "Stripe",
+      "Taupe",
+      "Texture",
+      "Textured"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022432819",
+    "title": "Linus Gray - Light Gray Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "color:Alabaster",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302950",
+      "Gray",
+      "Grey",
+      "Light Gray",
+      "Living Room",
+      "material-group-paperweave",
+      "Minimalist",
+      "Non-woven",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "SRD-LNU-03",
+      "Stripe",
+      "Texture",
+      "Textured"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022334515",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Charcoal Grey",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302671",
+      "Grasscloth",
+      "Green",
+      "Living Room",
+      "Minimalist",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "quotes",
+      "Review",
+      "Sage",
+      "Sage Green",
+      "Serene",
+      "Showroom Line",
+      "Texture",
+      "Textured"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022268979",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "color:Cream",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302670",
+      "Grey",
+      "Hotel Lobby",
+      "Light Beige",
+      "Light Grey",
+      "material-group-paperweave",
+      "Minimalist",
+      "Non-woven",
+      "Off-white",
+      "Organic",
+      "Organic Modern",
+      "Primary Suite",
+      "quotes",
+      "Review",
+      "Serene",
+      "Showroom Line",
+      "Stripe"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022170675",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cottagecore",
+      "display_variant",
+      "DWK-302980",
+      "Fawn",
+      "Floral",
+      "Geometric",
+      "Gold",
+      "Green",
+      "Hallway",
+      "Khaki",
+      "Lattice",
+      "Living Room",
+      "Olive Drab",
+      "Organic",
+      "Paper",
+      "quotes",
+      "Review",
+      "Rustic",
+      "Showroom Line",
+      "Taupe",
+      "Traditional"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022105139",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "DWK-302930",
+      "Fan",
+      "Geometric",
+      "Ivory",
+      "Living Room",
+      "Minimalist",
+      "Off White",
+      "Office",
+      "Organic Modern",
+      "Paper",
+      "quotes",
+      "Review",
+      "Serene",
+      "Showroom Line",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634022039603",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Biophilic",
+      "Blue",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "DWK-302900",
+      "Gray",
+      "Hallway",
+      "Leaf",
+      "Light Gray",
+      "Living Room",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "quotes",
+      "Review",
+      "Serene",
+      "Showroom Line",
+      "Slate Gray",
+      "Steel",
+      "Steel Blue"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634021941299",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Beige",
+      "Biophilic",
+      "Botanical",
+      "Brown",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cottagecore",
+      "display_variant",
+      "DWK-302890",
+      "Green",
+      "Hallway",
+      "Leaf",
+      "Light Beige",
+      "Living Room",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "quotes",
+      "Review",
+      "Sage",
+      "Sage Green",
+      "Showroom Line",
+      "Silver",
+      "Taupe"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634021842995",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Architectural Wallcoverings",
+      "Biophilic",
+      "Bone",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dining Room",
+      "display_variant",
+      "Dot",
+      "DWK-302910",
+      "Geometric",
+      "Green",
+      "Hotel Lobby",
+      "Leaf",
+      "material-group-non-woven",
+      "Non-woven",
+      "Oatmeal",
+      "Olive Green",
+      "Organic",
+      "Organic Modern",
+      "quotes",
+      "Restaurant",
+      "Review",
+      "Sage",
+      "Showroom Line",
+      "Silver",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634021711923",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Champagne",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Dot",
+      "DWK-302960",
+      "Geometric",
+      "Grey",
+      "Hallway",
+      "Living Room",
+      "Minimalist",
+      "Mushroom",
+      "Paper",
+      "quotes",
+      "Review",
+      "Serene",
+      "Showroom Line",
+      "Silver",
+      "Taupe",
+      "Yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634021613619",
+    "title": "Kei Rust - Black Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Burnt Sienna",
+      "Chinoiserie",
+      "Class A Fire Rated",
+      "Color: Orange",
+      "color:Burnt Orange",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Copper",
+      "Dining Room",
+      "display_variant",
+      "DWK-302660",
+      "Fretwork",
+      "Geometric",
+      "Hallway",
+      "Living Room",
+      "Orange",
+      "Paper",
+      "quotes",
+      "Showroom Line",
+      "Sophisticated",
+      "SRD-KEI-03",
+      "Traditional"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634021482547",
+    "title": "Kei Yellow - Black Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Chinoiserie",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Dining Room",
+      "display_variant",
+      "DWK-302532",
+      "Fretwork",
+      "Geometric",
+      "Gold",
+      "Golden Yellow",
+      "Greek Key",
+      "Hallway",
+      "Living Room",
+      "Paper",
+      "quotes",
+      "Showroom Line",
+      "Sophisticated",
+      "SRD-KEI-02",
+      "Traditional",
+      "Yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634021253171",
+    "title": "Kei Black - White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Black",
+      "Class A Fire Rated",
+      "Color: Black",
+      "color:White",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302531",
+      "Fretwork",
+      "Geometric",
+      "Hallway",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Office",
+      "quotes",
+      "Showroom Line",
+      "Sophisticated",
+      "SRD-KEI-01",
+      "Vinyl",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634020892723",
+    "title": "Jackie - Light Gray Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Butterfly",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Damask",
+      "display_variant",
+      "DWK-302530",
+      "Grey",
+      "Light Gray",
+      "Living Room",
+      "Modern",
+      "Multi",
+      "Nursery",
+      "Organic",
+      "Playful",
+      "quotes",
+      "Showroom Line",
+      "Silver",
+      "SRD-JAC-01",
+      "Vinyl",
+      "Whimsical"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634020532275",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Botanical",
+      "Charcoal Gray",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "color:Light Gray",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Dusty Rose",
+      "DWK-302600",
+      "Gray",
+      "Green",
+      "Grey",
+      "Leaf",
+      "Light Gray",
+      "Living Room",
+      "material-group-non-woven",
+      "Modern",
+      "Non-woven",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "Pale Olive",
+      "Pink",
+      "quotes",
+      "Review",
+      "Serene",
+      "Showroom Line",
+      "Taupe"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634020368435",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Botanical",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302880",
+      "Grey",
+      "Japonisme",
+      "Light Grey",
+      "Living Room",
+      "material-group-grasscloth",
+      "Mocha",
+      "Non-woven",
+      "Office",
+      "Olive Green",
+      "Organic",
+      "Pale Beige",
+      "quotes",
+      "Review",
+      "Scenic",
+      "Serene",
+      "Showroom Line",
+      "Silver",
+      "Tan",
+      "Taupe",
+      "Zen"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634020335667",
+    "title": "Hank Yellow - Dark Olive Green Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Green",
+      "color:Charcoal",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Green",
+      "display_variant",
+      "DWK-302850",
+      "Farmhouse",
+      "Geometric",
+      "Green",
+      "Light Blue",
+      "Living Room",
+      "Medium Green",
+      "Office",
+      "Olive Green",
+      "Organic",
+      "Paper",
+      "Plaid",
+      "quotes",
+      "Rustic",
+      "Showroom Line",
+      "SRD-HNK-03",
+      "Stripe",
+      "Tartan",
+      "Traditional",
+      "Type 2",
+      "yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634020270131",
+    "title": "Hank Red - Dark Brown Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Brick Red",
+      "Brown",
+      "Class A Fire Rated",
+      "Color: Brown",
+      "color:Espresso",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Brown",
+      "display_variant",
+      "DWK-302632",
+      "Farmhouse",
+      "Hallway",
+      "light blue",
+      "Living Room",
+      "Lodge",
+      "Paper",
+      "Plaid",
+      "quotes",
+      "red",
+      "Rustic",
+      "Showroom Line",
+      "SRD-HNK-02",
+      "Tartan",
+      "Taupe",
+      "Texture",
+      "Traditional",
+      "Type 2",
+      "Warm",
+      "Weave"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634020237363",
+    "title": "Hank Blue - Dark Green Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "beige",
+      "Burnt Orange",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Dark Academia",
+      "Dark Green",
+      "display_variant",
+      "DWK-302631",
+      "Geometric",
+      "Green",
+      "Jet",
+      "Living Room",
+      "Moody",
+      "Office",
+      "Olive Green",
+      "Orange",
+      "Plaid",
+      "quotes",
+      "Sage Green",
+      "Showroom Line",
+      "SRD-HNK-01",
+      "Tartan",
+      "Teal",
+      "Traditional",
+      "Type 2",
+      "Vinyl"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634020204595",
+    "title": "Herman Charcoal - Beige Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Beige",
+      "Brushstroke",
+      "Burnt Orange",
+      "charcoal",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302630",
+      "Geometric",
+      "Gold",
+      "Hotel Lobby",
+      "Living Room",
+      "Modern",
+      "Mustard Yellow",
+      "Non-woven",
+      "Office",
+      "orange",
+      "quotes",
+      "Sage Green",
+      "Salmon",
+      "Showroom Line",
+      "SRD-HER-02",
+      "Texture",
+      "Type 2",
+      "Warm",
+      "Yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634020171827",
+    "title": "Hatch Gray - Pale Beige Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Beige",
+      "Charcoal Grey",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302870",
+      "Geometric",
+      "Gray",
+      "Linen",
+      "Living Room",
+      "Minimalist",
+      "Mustard Yellow",
+      "Non-woven",
+      "Organic Modern",
+      "Primary Suite",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "Silver",
+      "SRD-HAT-02",
+      "Texture",
+      "Type 2",
+      "Yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634020106291",
+    "title": "Hatch Denim - Beige Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "blue",
+      "bohemian",
+      "Boho Chic",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "DWK-302861",
+      "Geometric",
+      "Living Room",
+      "Navy",
+      "Non-woven",
+      "Off White",
+      "orange",
+      "Organic Modern",
+      "Primary Suite",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "Silver",
+      "SRD-HAT-01",
+      "stripe",
+      "Texture",
+      "Type 2",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634019942451",
+    "title": "Garth Charcoal - Sea Green Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Beige",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Green",
+      "color:Gray",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302832",
+      "Gray",
+      "Green",
+      "Hotel Lobby",
+      "Minimalist",
+      "Organic",
+      "Organic Modern",
+      "Primary Suite",
+      "quotes",
+      "Sage",
+      "Serene",
+      "Showroom Line",
+      "SRD-GRT-03",
+      "Stripe",
+      "Texture",
+      "Textured",
+      "Type 2",
+      "Vinyl"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634019876915",
+    "title": "Garth Pink - Dusty Rose Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "beige",
+      "Class A Fire Rated",
+      "Color: Pink",
+      "color:Dusty Rose",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Dusty Rose",
+      "DWK-302831",
+      "Floral",
+      "Living Room",
+      "Minimalist",
+      "Non-woven",
+      "Organic",
+      "Organic Modern",
+      "Pink",
+      "Primary Suite",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "SRD-GRT-02",
+      "stripe",
+      "Texture",
+      "Textured",
+      "Type 2"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634019844147",
+    "title": "Garth Desert - Pale Beige Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302830",
+      "Linen",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Organic",
+      "Paper",
+      "quotes",
+      "Showroom Line",
+      "SRD-GRT-01",
+      "Stripe",
+      "Texture",
+      "Textured",
+      "Type 2",
+      "Weave",
+      "Yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634019778611",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Blue",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302840",
+      "Geometric",
+      "Gray",
+      "Hotel Lobby",
+      "Light Beige",
+      "Light Blue-gray",
+      "material-group-textured",
+      "Minimalist",
+      "Modern",
+      "Non-woven",
+      "Organic",
+      "Powder Blue",
+      "Primary Suite",
+      "quotes",
+      "Review",
+      "Serene",
+      "Showroom Line",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634019745843",
+    "title": "Frankie Red - Off-White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Coral",
+      "Cream",
+      "display_variant",
+      "DWK-302813",
+      "Geometric",
+      "Hallway",
+      "Living Room",
+      "Modern",
+      "Off White",
+      "Organic Modern",
+      "Paper",
+      "Plaid",
+      "quotes",
+      "red",
+      "Showroom Line",
+      "SRD-FRK-04",
+      "Type 2",
+      "Warm",
+      "Weave",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634019713075",
+    "title": "Frankie Gray - Off-White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "DWK-302812",
+      "farmhouse",
+      "Geometric",
+      "gray",
+      "Hallway",
+      "Living Room",
+      "Mushroom",
+      "Non-woven",
+      "Off-white",
+      "Organic Modern",
+      "plaid",
+      "quotes",
+      "Scandinavian",
+      "Serene",
+      "Showroom Line",
+      "SRD-FRK-03",
+      "Taupe",
+      "Type 2",
+      "Weave",
+      "white"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634019680307",
+    "title": "Frankie Blue - Pale Green Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Charcoal Grey",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302811",
+      "Geometric",
+      "Gray",
+      "Green",
+      "Linen",
+      "Living Room",
+      "Minimalist",
+      "Non-woven",
+      "Office",
+      "Organic Modern",
+      "Pale Green",
+      "Plaid",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "Silver",
+      "SRD-FRK-02",
+      "Type 2",
+      "Weave"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634019647539",
+    "title": "Frankie Black - Off-White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Charcoal",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "color:Ivory",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302810",
+      "Geometric",
+      "gray",
+      "Grey",
+      "Hotel Lobby",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Modern",
+      "Non-woven",
+      "Off White",
+      "Office",
+      "Plaid",
+      "quotes",
+      "Showroom Line",
+      "Sophisticated",
+      "SRD-FRK-01",
+      "stripe",
+      "Type 2",
+      "Weave",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634019614771",
+    "title": "Frida Grass - Pale Pink Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Art Deco",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "display_variant",
+      "DWK-302820",
+      "Forest Green",
+      "Geometric",
+      "green",
+      "Living Room",
+      "Modern",
+      "Office",
+      "olive",
+      "Olive Green",
+      "Organic",
+      "Pale Pink",
+      "Playful",
+      "quotes",
+      "Showroom Line",
+      "SRD-FRD-01",
+      "Type 2",
+      "Vinyl"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634019582003",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Beige",
+      "Brown",
+      "Circle",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Dot",
+      "DWK-302560",
+      "Light Blue",
+      "Mushroom",
+      "Nursery",
+      "Organic",
+      "Paper",
+      "Playful",
+      "Powder Room",
+      "quotes",
+      "Review",
+      "Showroom Line",
+      "Silver",
+      "Stripe",
+      "Taupe",
+      "Whimsical"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634019549235",
+    "title": "Edgar Peony - Pale Pink Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Color: Pink",
+      "color:Petal",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302800",
+      "Floral",
+      "Geometric",
+      "Living Room",
+      "Non-woven",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "Pale Pink",
+      "Pink",
+      "Plaid",
+      "quotes",
+      "Rose",
+      "Showroom Line",
+      "SRD-EDG-03",
+      "Type 2",
+      "white"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634019450931",
+    "title": "Dottie Wheat - Golden Yellow Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Circle",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "Dot",
+      "DWK-302790",
+      "Geometric",
+      "Gold",
+      "Golden Yellow",
+      "Lemon Yellow",
+      "light beige",
+      "Nursery",
+      "Off-white",
+      "Organic",
+      "Playful",
+      "Playroom",
+      "quotes",
+      "Showroom Line",
+      "SRD-DOT-03",
+      "Type 2",
+      "Vinyl",
+      "Whimsical",
+      "yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634019352627",
+    "title": "Colette Yellow - Yellow Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Butterfly",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302691",
+      "Hallway",
+      "Nursery",
+      "Organic",
+      "Paper",
+      "Playful",
+      "quotes",
+      "Showroom Line",
+      "SRD-CLT-05",
+      "Type 2",
+      "Whimsical",
+      "white",
+      "Yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634019156019",
+    "title": "Colette Gray - Gray Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Ash",
+      "Bathroom",
+      "Bedroom",
+      "Butterfly",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302690",
+      "Gray",
+      "Grey",
+      "Light Blue",
+      "Nursery",
+      "Off-white",
+      "Organic",
+      "Paper",
+      "Playful",
+      "quotes",
+      "Showroom Line",
+      "Silver",
+      "SRD-CLT-03",
+      "Type 2",
+      "Whimsical",
+      "white"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634018926643",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Biophilic",
+      "Brushstroke",
+      "Class A Fire Rated",
+      "Color: Orange",
+      "color:Peach",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302550",
+      "Hallway",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "Orange",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Peach",
+      "quotes",
+      "Review",
+      "Serene",
+      "Showroom Line",
+      "Watercolor"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634018730035",
+    "title": "Charlie Periwinkle - Off-White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Beige",
+      "Brushstroke",
+      "Charcoal Grey",
+      "Circle",
+      "Class A Fire Rated",
+      "Color: Purple",
+      "color:Lavender",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302770",
+      "Hotel Lobby",
+      "Lavender",
+      "Living Room",
+      "Modern",
+      "Non-woven",
+      "Off-white",
+      "Organic",
+      "Pale Blue",
+      "purple",
+      "quotes",
+      "Serene",
+      "Showroom Line",
+      "SRD-CHA-01",
+      "Type 2",
+      "white"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634018598963",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bright",
+      "Circle",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302780",
+      "Gold",
+      "Hotel Lobby",
+      "Living Room",
+      "Modern",
+      "Office",
+      "Organic",
+      "Paper",
+      "Pink",
+      "quotes",
+      "Review",
+      "Showroom Line",
+      "Silver",
+      "White",
+      "Yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634018566195",
+    "title": "Wallcovering | Sarah Rowland | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract Grade",
+      "display_variant",
+      "DWK-302765",
+      "Geometric",
+      "Gold",
+      "Hotel Lobby",
+      "Living Room",
+      "Modern",
+      "Mustard",
+      "Office",
+      "Organic",
+      "Paper",
+      "Pink",
+      "quotes",
+      "Review",
+      "Showroom Line",
+      "Silver",
+      "Sophisticated",
+      "Wallcovering",
+      "White",
+      "Yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634018467891",
+    "title": "Wallcovering | Sarah Rowland | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Brown",
+      "Burnt Sienna",
+      "Celadon",
+      "Class A Fire Rated",
+      "Coastal",
+      "Color: Brown",
+      "color:Cream",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract Grade",
+      "Cream",
+      "display_variant",
+      "DWK-302764",
+      "Geometric",
+      "Hotel Lobby",
+      "material-group-natural-fiber",
+      "Modern",
+      "Non-woven",
+      "Orange",
+      "Organic",
+      "Organic Modern",
+      "Primary Suite",
+      "quotes",
+      "Review",
+      "Serene",
+      "Showroom Line",
+      "Wallcovering",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634018369587",
+    "title": "Wallcovering | Sarah Rowland | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Beige",
+      "Class A Fire Rated",
+      "Coastal",
+      "Color: Beige",
+      "color:Cream",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract Grade",
+      "display_variant",
+      "DWK-302763",
+      "Hotel Lobby",
+      "Light Beige",
+      "material-group-natural-fiber",
+      "Minimalist",
+      "Non-woven",
+      "Off-white",
+      "Organic",
+      "Organic Modern",
+      "Primary Suite",
+      "quotes",
+      "Review",
+      "Serene",
+      "Showroom Line",
+      "Taupe",
+      "Texture",
+      "Wallcovering",
+      "Watercolor"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634018304051",
+    "title": "Wallcovering | Sarah Rowland | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Charcoal Grey",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract Grade",
+      "display_variant",
+      "DWK-302762",
+      "Gray",
+      "Hallway",
+      "Light Blue Grey",
+      "Light Grey",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Pink",
+      "quotes",
+      "Red",
+      "Review",
+      "Salmon",
+      "Serene",
+      "Showroom Line",
+      "Wallcovering",
+      "Watercolor"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634018271283",
+    "title": "Wallcovering | Sarah Rowland | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Aqua",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Blue",
+      "Brushstroke",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "color:Sky Blue",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract Grade",
+      "Coral",
+      "display_variant",
+      "DWK-302761",
+      "Hallway",
+      "Living Room",
+      "Modern",
+      "Organic",
+      "Paper",
+      "Pink",
+      "quotes",
+      "Red",
+      "Review",
+      "Salmon",
+      "Serene",
+      "Showroom Line",
+      "Wallcovering",
+      "Watercolor",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634018238515",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Brushstroke",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "DWK-302760",
+      "Living Room",
+      "Minimalist",
+      "Off-white",
+      "Office",
+      "Orange",
+      "Organic",
+      "Organic Modern",
+      "Pale Beige",
+      "Paper",
+      "Peach",
+      "quotes",
+      "Review",
+      "Serene",
+      "Showroom Line",
+      "Tan",
+      "Watercolor"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634018205747",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bathroom",
+      "Bedroom",
+      "Bohemian",
+      "Class A Fire Rated",
+      "Color: Grey",
+      "color:Pearl",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cottagecore",
+      "display_variant",
+      "DWK-302730",
+      "Floral",
+      "Geometric",
+      "Nursery",
+      "Organic",
+      "Pale Beige",
+      "Pale Yellow",
+      "Paper",
+      "quotes",
+      "Review",
+      "Rustic Charm",
+      "Sage Green",
+      "Serene",
+      "Showroom Line",
+      "Taupe",
+      "Watercolor"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634018172979",
+    "title": "Biggie Pink - Pale Yellow Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Brushstroke",
+      "Burnt Sienna",
+      "Circle",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302740",
+      "Hotel Lobby",
+      "Living Room",
+      "Modern",
+      "Olive Drab",
+      "orange",
+      "Organic",
+      "Pale Yellow",
+      "Paper",
+      "pink",
+      "quotes",
+      "Rose Quartz",
+      "Serene",
+      "Showroom Line",
+      "Silver",
+      "SRD-BIG-01",
+      "Type 2",
+      "Vanilla",
+      "yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634018140211",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302750",
+      "Geometric",
+      "Green",
+      "Living Room",
+      "Nursery",
+      "Paper",
+      "Pink",
+      "Playful",
+      "quotes",
+      "Red",
+      "Review",
+      "Showroom Line",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634018107443",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Botanical",
+      "Charcoal Grey",
+      "Class A Fire Rated",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "DWK-302720",
+      "Floral",
+      "Gray",
+      "Grey",
+      "Living Room",
+      "Modern",
+      "Off-white",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "quotes",
+      "Review",
+      "Showroom Line",
+      "Silver",
+      "Watercolor"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634018074675",
+    "title": "Wallcovering | Sarah Rowland | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Abstract",
+      "Architectural Wallcoverings",
+      "Beige",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Conference Room",
+      "Contemporary",
+      "Contract Grade",
+      "display_variant",
+      "Green",
+      "Hotel Lobby",
+      "Light Gray",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "Pale Beige",
+      "quotes",
+      "Review",
+      "Sage Green",
+      "Serene",
+      "Showroom Line",
+      "Silver",
+      "Vinyl",
+      "Wallcovering",
+      "Zen"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634018009139",
+    "title": "Aurora Sky - Pale Green Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "blue",
+      "Class A Fire Rated",
+      "Color: Blue",
+      "color:Light Gray",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Cream",
+      "display_variant",
+      "green",
+      "Light Blue",
+      "light gray",
+      "Light Grey",
+      "Living Room",
+      "minimalist",
+      "Non-woven",
+      "Off-white",
+      "Office",
+      "Organic",
+      "Organic Modern",
+      "quotes",
+      "Sage Green",
+      "Serene",
+      "Showroom Line",
+      "SRD-AUR-01",
+      "Type 2",
+      "Type 2 Vinyl",
+      "white"
+    ],
+    "metafield": {
+      "value": "Arte"
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7634017976371",
+    "title": "Wallcovering | Sarah Rowland | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "Architectural Wallcoverings",
+      "Bedroom",
+      "Biophilic",
+      "Botanical",
+      "Burnt Orange",
+      "Class A Fire Rated",
+      "Color: Multi",
+      "color:Gray",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "Contract Grade",
+      "display_variant",
+      "Gray",
+      "Hotel Lobby",
+      "Living Room",
+      "material-group-non-woven",
+      "Multi",
+      "Non-woven",
+      "Orange",
+      "Organic",
+      "Organic Modern",
+      "quotes",
+      "Review",
+      "Serene",
+      "Showroom Line",
+      "Slate Grey",
+      "Teal",
+      "Wallcovering",
+      "Watercolor",
+      "White"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634017943603",
+    "title": "Aloe Lime - White Commercial Wallcovering | Koroseal",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "2026 Inventory",
+      "abstract",
+      "AI-Analyzed-v1",
+      "Architectural",
+      "Architectural Wallcoverings",
+      "Bathroom",
+      "Bedroom",
+      "Biophilic",
+      "blue",
+      "botanical",
+      "Celadon",
+      "Charcoal Grey",
+      "Class A Fire Rated",
+      "Commercial",
+      "Commercial Wallcovering",
+      "Contemporary",
+      "display_variant",
+      "gray",
+      "Green",
+      "Leaf",
+      "Living Room",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "quotes",
+      "Showroom Line",
+      "Silver",
+      "Slate Blue",
+      "SRD-ALE-01",
+      "tropical",
+      "Type 2",
+      "Type 2 Vinyl",
+      "Watercolor",
+      "White",
+      "yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634017878067",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Architectural Wallcoverings",
+      "Art Nouveau",
+      "Bedroom",
+      "Botanical",
+      "Burnt Sienna",
+      "Class A Fire Rated",
+      "Color: Green",
+      "color:Olive",
+      "Commercial Wallcovering",
+      "Cream",
+      "Dining Room",
+      "display_variant",
+      "Dusty Rose",
+      "Floral",
+      "Green",
+      "Living Room",
+      "Mustard Yellow",
+      "Olive Green",
+      "Organic",
+      "Organic Modern",
+      "Paper",
+      "Pink",
+      "quotes",
+      "Review",
+      "Showroom Line",
+      "Traditional",
+      "Vine",
+      "Yellow"
+    ],
+    "metafield": null
+  },
+  {
+    "id": "gid://shopify/Product/7634017845299",
+    "title": "Wallcovering | Architectural Wallcoverings",
+    "vendor": "Koroseal",
+    "productType": "Wallcovering",
+    "tags": [
+      "Architectural Wallcoverings",
+      "Art Nouveau",
+      "Bedroom",
+      "Botanical",
+      "Class A Fire Rated",
+      "Color: Green",
+      "color:Olive",
+      "Commercial Wallcovering",
+      "Dining Room",
+      "display_variant",
+      "Dusty Rose",
+      "Eclectic",
+      "Estimated Type: Paper",
+      "Floral",
+      "Golden Yellow",
+      "Green",
+      "Living Room",
+      "Olive Green",
+      "Organic",
+      "Organic Modern",
+      "Pale Beige",
+      "Pink",
+      "quotes",
+      "Review",
+      "Showroom Line",
+      "Traditional",
+      "Vine"
+    ],
+    "metafield": null
+  }
+]
\ No newline at end of file

(oldest)  ·  back to Dw Sarah Rowland Searchfix  ·  auto-save: 2026-07-30T08:16:08 (3 files) — check-wiring.mjs fd4e75f →