[object Object]

← back to Novasuede Min Fix

Novasuede per-yard min->5: restore-map + apply/verify scripts (TK-11082)

8e34d01e7d34a49d6d4785598ebcf3eee5bb21b1 · 2026-09-01 13:38:11 -0700 · vp-dw-commerce

Files touched

Diff

commit 8e34d01e7d34a49d6d4785598ebcf3eee5bb21b1
Author: vp-dw-commerce <steve@designerwallcoverings.com>
Date:   Tue Sep 1 13:38:11 2026 -0700

    Novasuede per-yard min->5: restore-map + apply/verify scripts (TK-11082)
---
 .gitignore          |     3 +
 analyze.mjs         |    34 +
 apply.mjs           |    26 +
 enumerate.mjs       |    25 +
 inspect-salt.mjs    |    17 +
 live-novasuede.json | 32333 ++++++++++++++++++++++++++++++++++++++++++++++++++
 plan.mjs            |    28 +
 recheck.mjs         |    17 +
 restore-map.json    |  1744 +++
 verify.mjs          |    44 +
 10 files changed, 34271 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..3c45938
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+node_modules/
+*.log
+.DS_Store
diff --git a/analyze.mjs b/analyze.mjs
new file mode 100644
index 0000000..a75ee47
--- /dev/null
+++ b/analyze.mjs
@@ -0,0 +1,34 @@
+import fs from 'fs';
+const all = JSON.parse(fs.readFileSync('live-novasuede.json','utf8'));
+// tally product-level min metafield values
+const prodMin={}, prodUnits={};
+const variantTitleMinMap={}; // variantTitle -> {minValue: count}
+let perYardVariants=0, perYardMinSummary={};
+const sampleTitles=new Set();
+
+for(const p of all){
+  const pm = p.metafields.nodes.find(m=>m.namespace==='global'&&m.key==='v_prods_quantity_order_min');
+  prodMin[pm?pm.value:'(none)']=(prodMin[pm?pm.value:'(none)']||0)+1;
+  const pu = p.metafields.nodes.find(m=>m.namespace==='global'&&m.key==='v_prods_quantity_order_units');
+  prodUnits[pu?pu.value:'(none)']=(prodUnits[pu?pu.value:'(none)']||0)+1;
+
+  for(const v of p.variants.nodes){
+    const t=v.title;
+    // variant-level min metafield
+    const vm = v.metafields.nodes.find(m=> (m.key==='v_prod_quantity_order_min'||m.key==='v_prods_quantity_order_min'));
+    const key = t+' :: '+(vm?vm.namespace+'.'+vm.key+'='+vm.value : 'NO-MIN-MF');
+    variantTitleMinMap[key]=(variantTitleMinMap[key]||0)+1;
+  }
+}
+console.log('=== PRODUCT-LEVEL global.v_prods_quantity_order_min value distribution ===');
+console.log(prodMin);
+console.log('=== PRODUCT-LEVEL global.v_prods_quantity_order_units ===');
+console.log(prodUnits);
+console.log('\n=== VARIANT TITLE :: min-metafield distribution ===');
+for(const [k,c] of Object.entries(variantTitleMinMap).sort()) console.log(`  [${c}]  ${k}`);
+
+// list distinct variant titles
+const titles={};
+for(const p of all) for(const v of p.variants.nodes) titles[v.title]=(titles[v.title]||0)+1;
+console.log('\n=== DISTINCT VARIANT TITLES ===');
+console.log(titles);
diff --git a/apply.mjs b/apply.mjs
new file mode 100644
index 0000000..19a3cf8
--- /dev/null
+++ b/apply.mjs
@@ -0,0 +1,26 @@
+import fs from 'fs';
+const env = fs.readFileSync(process.env.HOME+'/Projects/secrets-manager/.env','utf8');
+const get = k => (env.match(new RegExp('^'+k+'=(.*)$','m'))||[])[1];
+const TOKEN = get('SHOPIFY_ADMIN_TOKEN');
+const API = 'https://designer-laboratory-sandbox.myshopify.com/admin/api/2024-10/graphql.json';
+const changes = JSON.parse(fs.readFileSync('restore-map.json','utf8'));
+async function gql(query,variables={}){
+  const r=await fetch(API,{method:'POST',headers:{'X-Shopify-Access-Token':TOKEN,'Content-Type':'application/json'},body:JSON.stringify({query,variables})});
+  return r.json();
+}
+const M=`mutation($mf:[MetafieldsSetInput!]!){metafieldsSet(metafields:$mf){metafields{id namespace key value ownerType} userErrors{field message}}}`;
+let ok=0, errs=[];
+for(const c of changes){
+  const mfs=[];
+  if(c.prodMin_change) mfs.push({ownerId:c.productId, namespace:'global', key:'v_prods_quantity_order_min', type:'single_line_text_field', value:'5'});
+  if(c.perYardMin_change) mfs.push({ownerId:c.perYardVariantId, namespace:'custom', key:'v_prod_quantity_order_min', type:'single_line_text_field', value:'5'});
+  if(!mfs.length) continue;
+  const res=await gql(M,{mf:mfs});
+  const ue=res?.data?.metafieldsSet?.userErrors||[];
+  if(ue.length || res.errors){ errs.push({title:c.title, ue, top:res.errors}); }
+  else ok++;
+  if(ok%25===0) console.log('  ...applied',ok);
+}
+console.log('DONE. products updated:',ok,' errors:',errs.length);
+if(errs.length) fs.writeFileSync('apply-errors.json',JSON.stringify(errs,null,2));
+console.log(errs.slice(0,3));
diff --git a/enumerate.mjs b/enumerate.mjs
new file mode 100644
index 0000000..ae77e46
--- /dev/null
+++ b/enumerate.mjs
@@ -0,0 +1,25 @@
+import fs from 'fs';
+const env = fs.readFileSync(process.env.HOME+'/Projects/secrets-manager/.env','utf8');
+const get = k => (env.match(new RegExp('^'+k+'=(.*)$','m'))||[])[1];
+const TOKEN = get('SHOPIFY_ADMIN_TOKEN');
+const DOMAIN = 'designer-laboratory-sandbox.myshopify.com';
+const API = `https://${DOMAIN}/admin/api/2024-10/graphql.json`;
+async function gql(query, variables={}){
+  const r = await fetch(API,{method:'POST',headers:{'X-Shopify-Access-Token':TOKEN,'Content-Type':'application/json'},body:JSON.stringify({query,variables})});
+  const j = await r.json();
+  if(j.errors){console.error(JSON.stringify(j.errors));}
+  return j.data;
+}
+// Query products by vendor Novasuede, active status
+let cursor=null, all=[];
+do {
+  const d = await gql(`query($c:String){products(first:50,after:$c,query:"vendor:Novasuede status:active"){pageInfo{hasNextPage endCursor} nodes{id title status handle vendor
+    metafields(first:20){nodes{namespace key value type}}
+    variants(first:20){nodes{id title sku inventoryPolicy inventoryItem{tracked}
+      metafields(first:10){nodes{namespace key value type}}}}
+  }}}`,{c:cursor});
+  const p=d.products; all.push(...p.nodes);
+  cursor = p.pageInfo.hasNextPage ? p.pageInfo.endCursor : null;
+} while(cursor);
+fs.writeFileSync('live-novasuede.json', JSON.stringify(all,null,2));
+console.log('TOTAL active Novasuede products:', all.length);
diff --git a/inspect-salt.mjs b/inspect-salt.mjs
new file mode 100644
index 0000000..9e8fbb8
--- /dev/null
+++ b/inspect-salt.mjs
@@ -0,0 +1,17 @@
+import fs from 'fs';
+const all = JSON.parse(fs.readFileSync('live-novasuede.json','utf8'));
+const salt = all.find(p=>/salt/i.test(p.title));
+function dump(p){
+  console.log('\n### '+p.title+' ('+p.id+')  handle='+p.handle);
+  console.log('  PRODUCT metafields:');
+  for(const m of p.metafields.nodes) if(/quantity|min|units/i.test(m.key)) console.log('    '+m.namespace+'.'+m.key+' = '+JSON.stringify(m.value)+' ['+m.type+']');
+  for(const v of p.variants.nodes){
+    console.log('  VARIANT "'+v.title+'"  sku='+v.sku);
+    for(const m of v.metafields.nodes) console.log('     '+m.namespace+'.'+m.key+' = '+JSON.stringify(m.value)+' ['+m.type+']');
+  }
+}
+dump(salt);
+// a "good" product (has variant min=5)
+const good = all.find(p=>p.variants.nodes.some(v=>/Per Yard/.test(v.title)&&v.metafields.nodes.some(m=>m.key==='v_prod_quantity_order_min'&&m.value==='5')) && p.metafields.nodes.some(m=>m.key==='v_prods_quantity_order_min'&&m.value==='5'));
+console.log('\n\n===== A FULLY-CORRECT REFERENCE PRODUCT =====');
+if(good) dump(good); else console.log('none fully correct found');
diff --git a/live-novasuede.json b/live-novasuede.json
new file mode 100644
index 0000000..7e2ad3c
--- /dev/null
+++ b/live-novasuede.json
@@ -0,0 +1,32333 @@
+[
+  {
+    "id": "gid://shopify/Product/7692849971251",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Acorn",
+    "status": "ACTIVE",
+    "handle": "novasuede™-acorn",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3H5W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178677399603",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-90000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178677432371",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-90000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993037363",
+          "title": "Sample",
+          "sku": "DWCC-90000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850004019",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Adobe",
+    "status": "ACTIVE",
+    "handle": "novasuede™-adobe",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3K6W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178677497907",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-90200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178677530675",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-90200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993102899",
+          "title": "Sample",
+          "sku": "DWCC-90200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850036787",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - African Violet",
+    "status": "ACTIVE",
+    "handle": "novasuede™-african-violet",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3SAW",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178677760051",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-90400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178677792819",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-90400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993135667",
+          "title": "Sample",
+          "sku": "DWCC-90400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850069555",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Apricot",
+    "status": "ACTIVE",
+    "handle": "novasuede™-apricot",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3Q4W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178678054963",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-90600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178678087731",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-90600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993168435",
+          "title": "Sample",
+          "sku": "DWCC-90600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850135091",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Arrow Wood",
+    "status": "ACTIVE",
+    "handle": "novasuede™-arrow-wood",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3F8W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178678120499",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-90800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178678153267",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-90800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993201203",
+          "title": "Sample",
+          "sku": "DWCC-90800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850167859",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Aubergine",
+    "status": "ACTIVE",
+    "handle": "novasuede™-aubergine",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3SCW",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178678186035",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-91000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178678218803",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-91000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993233971",
+          "title": "Sample",
+          "sku": "DWCC-91000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850200627",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Baltic",
+    "status": "ACTIVE",
+    "handle": "novasuede™-baltic",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3L6W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178678349875",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-91200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178678382643",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-91200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993397811",
+          "title": "Sample",
+          "sku": "DWCC-91200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850233395",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Beige",
+    "status": "ACTIVE",
+    "handle": "novasuede™-beige",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3E8W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178678415411",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-91400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178678448179",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-91400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993430579",
+          "title": "Sample",
+          "sku": "DWCC-91400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850266163",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Biscuit",
+    "status": "ACTIVE",
+    "handle": "novasuede™-biscuit",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3DHW",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178678480947",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-91600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178678513715",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-91600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993463347",
+          "title": "Sample",
+          "sku": "DWCC-91600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850331699",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Bluestone",
+    "status": "ACTIVE",
+    "handle": "novasuede™-bluestone",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3N7W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178678677555",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-92000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178678710323",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-92000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993528883",
+          "title": "Sample",
+          "sku": "DWCC-92000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850364467",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Blush Pink",
+    "status": "ACTIVE",
+    "handle": "novasuede™-blush-pink",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3C7W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178678743091",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-92200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178678775859",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-92200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993561651",
+          "title": "Sample",
+          "sku": "DWCC-92200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850397235",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Bone",
+    "status": "ACTIVE",
+    "handle": "novasuede™-bone",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3DSW",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178678808627",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-92400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178678841395",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-92400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993627187",
+          "title": "Sample",
+          "sku": "DWCC-92400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850430003",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Brown",
+    "status": "ACTIVE",
+    "handle": "novasuede™-brown",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3F6W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178678939699",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-92600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178678972467",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-92600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993659955",
+          "title": "Sample",
+          "sku": "DWCC-92600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850462771",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Buff",
+    "status": "ACTIVE",
+    "handle": "novasuede™-buff",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3D1W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178679038003",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-92800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178679070771",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-92800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993692723",
+          "title": "Sample",
+          "sku": "DWCC-92800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850495539",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Buttercup",
+    "status": "ACTIVE",
+    "handle": "novasuede™-buttercup",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3DEW",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178679234611",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-93000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178679267379",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-93000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993725491",
+          "title": "Sample",
+          "sku": "DWCC-93000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850528307",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Cane",
+    "status": "ACTIVE",
+    "handle": "novasuede™-cane",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3D3W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178679332915",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-93200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178679365683",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-93200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993758259",
+          "title": "Sample",
+          "sku": "DWCC-93200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850561075",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Carbon",
+    "status": "ACTIVE",
+    "handle": "novasuede™-carbon",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3C6W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178679431219",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-93400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178679463987",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-93400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993791027",
+          "title": "Sample",
+          "sku": "DWCC-93400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850593843",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Cashew",
+    "status": "ACTIVE",
+    "handle": "novasuede™-cashew",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3D2W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178679496755",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-93600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178679529523",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-93600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993823795",
+          "title": "Sample",
+          "sku": "DWCC-93600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850626611",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Cashmere",
+    "status": "ACTIVE",
+    "handle": "novasuede™-cashmere",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3E6W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178633687091",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-93800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178633719859",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-93800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993856563",
+          "title": "Sample",
+          "sku": "DWCC-93800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850659379",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Celadon",
+    "status": "ACTIVE",
+    "handle": "novasuede™-celadon",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3P1W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178679562291",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-94000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178679595059",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-94000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993889331",
+          "title": "Sample",
+          "sku": "DWCC-94000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850692147",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Celery",
+    "status": "ACTIVE",
+    "handle": "novasuede™-celery",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3PFW",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178679627827",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-94200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178679660595",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-94200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993922099",
+          "title": "Sample",
+          "sku": "DWCC-94200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850724915",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Champagne",
+    "status": "ACTIVE",
+    "handle": "novasuede™-champagne",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3D4W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178679791667",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-94400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178679824435",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-94400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993954867",
+          "title": "Sample",
+          "sku": "DWCC-94400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850757683",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - China Blue",
+    "status": "ACTIVE",
+    "handle": "novasuede™-china-blue",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3NBW",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_rating",
+          "value": "100000",
+          "type": "number_integer"
+        },
+        {
+          "namespace": "specifications",
+          "key": "abrasion_test",
+          "value": "Wyzenbeek Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117",
+          "value": "Compliant",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "cal_117_full",
+          "value": "California TB 117-2013",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "ufac_class_1",
+          "value": "Certified",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "nfpa_260",
+          "value": "Passes",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "fire_safety",
+          "key": "fire_rated",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "stain_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "cleanability",
+          "value": "Excellent - Easy to clean and maintain",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "features",
+          "key": "uv_resistant",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "features",
+          "key": "colorfastness",
+          "value": "Exceptional",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178679857203",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-94600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178679889971",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-94600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698993987635",
+          "title": "Sample",
+          "sku": "DWCC-94600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850790451",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Chrome Grey",
+    "status": "ACTIVE",
+    "handle": "novasuede™-chrome-grey",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Graphite\",\"hex\":\"#444A4E\",\"percentage\":17.3},{\"name\":\"Gunmetal\",\"hex\":\"#535E64\",\"percentage\":14.9},{\"name\":\"Slate\",\"hex\":\"#606F78\",\"percentage\":12.7},{\"name\":\"Charcoal\",\"hex\":\"#333C40\",\"percentage\":7.3}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#444A4E",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-CHROME-GREY",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178679922739",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-94800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178679955507",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-94800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994020403",
+          "title": "Sample",
+          "sku": "DWCC-94800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850823219",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Cinder",
+    "status": "ACTIVE",
+    "handle": "novasuede™-cinder",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Jet\",\"hex\":\"#24181C\",\"percentage\":14.6},{\"name\":\"Charcoal\",\"hex\":\"#3D2F34\",\"percentage\":14.5},{\"name\":\"Ebony\",\"hex\":\"#34272B\",\"percentage\":14.1},{\"name\":\"Black\",\"hex\":\"#211619\",\"percentage\":12.5}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#24181C",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "brown",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-CINDER",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178680053811",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-95000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178680086579",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-95000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994053171",
+          "title": "Sample",
+          "sku": "DWCC-95000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850855987",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Cloud",
+    "status": "ACTIVE",
+    "handle": "novasuede™-cloud",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Silver\",\"hex\":\"#C7C5BE\",\"percentage\":16.4},{\"name\":\"Light Gray\",\"hex\":\"#D3D3CC\",\"percentage\":14.9},{\"name\":\"Dove Gray\",\"hex\":\"#C4C1BA\",\"percentage\":14.9},{\"name\":\"Stone\",\"hex\":\"#BEBCB3\",\"percentage\":12.6},{\"name\":\"Mushroom\",\"hex\":\"#AEAAA1\",\"percentage\":9}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#C7C5BE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "gray",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-CLOUD",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178680119347",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-95200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178680152115",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-95200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994085939",
+          "title": "Sample",
+          "sku": "DWCC-95200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850888755",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Cocoa",
+    "status": "ACTIVE",
+    "handle": "novasuede™-cocoa",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Bronze\",\"hex\":\"#9A704D\",\"percentage\":15.2},{\"name\":\"Chestnut\",\"hex\":\"#835D3D\",\"percentage\":13.4},{\"name\":\"Tobacco\",\"hex\":\"#795536\",\"percentage\":12.7},{\"name\":\"Brown\",\"hex\":\"#6C4A2D\",\"percentage\":8.7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#9A704D",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-COCOA",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178680184883",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-95400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178680217651",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-95400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994118707",
+          "title": "Sample",
+          "sku": "DWCC-95400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850921523",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Coral",
+    "status": "ACTIVE",
+    "handle": "novasuede™-coral",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Salmon\",\"hex\":\"#DA9C85\",\"percentage\":18.3},{\"name\":\"Apricot\",\"hex\":\"#E7AF9A\",\"percentage\":15.4},{\"name\":\"Camel\",\"hex\":\"#D28E74\",\"percentage\":13.1}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#DA9C85",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-CORAL",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178680283187",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-95600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178680315955",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-95600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994151475",
+          "title": "Sample",
+          "sku": "DWCC-95600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850954291",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Cottage Grey",
+    "status": "ACTIVE",
+    "handle": "novasuede™-cottage-grey",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Taupe\",\"hex\":\"#979286\",\"percentage\":14.1},{\"name\":\"Mushroom\",\"hex\":\"#B0AB9F\",\"percentage\":13.7},{\"name\":\"Stone\",\"hex\":\"#C0BAAE\",\"percentage\":13.7},{\"name\":\"Greige\",\"hex\":\"#B8B1A6\",\"percentage\":12.7},{\"name\":\"Sage\",\"hex\":\"#A29D91\",\"percentage\":12.2},{\"name\":\"Light Gray\",\"hex\":\"#CEC8BD\",\"percentage\":12},{\"name\":\"Gray\",\"hex\":\"#7C796D\",\"percentage\":8.2}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#979286",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-COTTAGE-GREY",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178680381491",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-95800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178680414259",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-95800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994184243",
+          "title": "Sample",
+          "sku": "DWCC-95800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692850987059",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Cream",
+    "status": "ACTIVE",
+    "handle": "novasuede™-cream",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Bone\",\"hex\":\"#EBDCCD\",\"percentage\":17},{\"name\":\"Beige\",\"hex\":\"#DFCAB7\",\"percentage\":14.7},{\"name\":\"Oatmeal\",\"hex\":\"#E0CEBC\",\"percentage\":13.8},{\"name\":\"Ecru\",\"hex\":\"#D1BBA7\",\"percentage\":11.3}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#EBDCCD",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-CREAM",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178680447027",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-96000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178680479795",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-96000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994217011",
+          "title": "Sample",
+          "sku": "DWCC-96000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851019827",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Cypress",
+    "status": "ACTIVE",
+    "handle": "novasuede™-cypress",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Mocha\",\"hex\":\"#735743\",\"percentage\":15.9},{\"name\":\"Bronze\",\"hex\":\"#846853\",\"percentage\":14.5},{\"name\":\"Coffee\",\"hex\":\"#5D4532\",\"percentage\":13.4},{\"name\":\"Umber\",\"hex\":\"#6C523E\",\"percentage\":13.1},{\"name\":\"Chocolate\",\"hex\":\"#473323\",\"percentage\":8.2}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#735743",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "Novasuede™ - CYPRESS T3PHW",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178680643635",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-96200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178680676403",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-96200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994249779",
+          "title": "Sample",
+          "sku": "DWCC-96200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851052595",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede  - Dark Sand",
+    "status": "ACTIVE",
+    "handle": "novasuede™-dark-sand",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Tobacco\",\"hex\":\"#83601E\",\"percentage\":13.7},{\"name\":\"Caramel\",\"hex\":\"#AF853C\",\"percentage\":13.1},{\"name\":\"Bronze\",\"hex\":\"#9E7630\",\"percentage\":13.1},{\"name\":\"Ochre\",\"hex\":\"#BD9146\",\"percentage\":12.6},{\"name\":\"Cognac\",\"hex\":\"#926C28\",\"percentage\":12.3},{\"name\":\"Honey\",\"hex\":\"#D0A255\",\"percentage\":12.3},{\"name\":\"Walnut\",\"hex\":\"#67490F\",\"percentage\":10}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#83601E",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-DARK-SAND",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178680709171",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-96400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178680741939",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-96400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994282547",
+          "title": "Sample",
+          "sku": "DWCC-96400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851118131",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Dew",
+    "status": "ACTIVE",
+    "handle": "novasuede™-dew",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Camel\",\"hex\":\"#C4976B\",\"percentage\":14.2},{\"name\":\"Tan\",\"hex\":\"#D6AB81\",\"percentage\":14},{\"name\":\"Brass\",\"hex\":\"#BA895B\",\"percentage\":11.8},{\"name\":\"Caramel\",\"hex\":\"#AA7B50\",\"percentage\":10.2}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#C4976B",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-DEW",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178680774707",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-96600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178680807475",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-96600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994315315",
+          "title": "Sample",
+          "sku": "DWCC-96600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851150899",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Dove",
+    "status": "ACTIVE",
+    "handle": "novasuede™-dove",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Dove Gray\",\"hex\":\"#BBBCB8\",\"percentage\":17.5},{\"name\":\"Light Gray\",\"hex\":\"#CCCECB\",\"percentage\":14.6},{\"name\":\"Ash\",\"hex\":\"#AAACA8\",\"percentage\":13.4},{\"name\":\"Pewter\",\"hex\":\"#92928E\",\"percentage\":9.1},{\"name\":\"Silver\",\"hex\":\"#C1C2BF\",\"percentage\":9.1}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#BBBCB8",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-DOVE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178680840243",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-96800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178680873011",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-96800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994348083",
+          "title": "Sample",
+          "sku": "DWCC-96800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851183667",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Dune",
+    "status": "ACTIVE",
+    "handle": "novasuede™-dune",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Oatmeal\",\"hex\":\"#E3D2BD\",\"percentage\":18.8},{\"name\":\"Beige\",\"hex\":\"#E5D0B8\",\"percentage\":16.3},{\"name\":\"Linen\",\"hex\":\"#EFE0CE\",\"percentage\":15.4},{\"name\":\"Fawn\",\"hex\":\"#C8B39F\",\"percentage\":8.4},{\"name\":\"Champagne\",\"hex\":\"#E8D6C0\",\"percentage\":7.9}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#E3D2BD",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-DUNE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178680905779",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-97000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178680938547",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-97000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994380851",
+          "title": "Sample",
+          "sku": "DWCC-97000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851216435",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Dusty Rose",
+    "status": "ACTIVE",
+    "handle": "novasuede™-dusty-rose",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Dusty Rose\",\"hex\":\"#D6A6A5\",\"percentage\":17.1},{\"name\":\"Blush\",\"hex\":\"#E4BFBE\",\"percentage\":15.5},{\"name\":\"Rose\",\"hex\":\"#BA8080\",\"percentage\":8.4},{\"name\":\"Ecru\",\"hex\":\"#DBB0AF\",\"percentage\":7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#D6A6A5",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "pink",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-DUSTY-ROSE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178681036851",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-97200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178681069619",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-97200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994446387",
+          "title": "Sample",
+          "sku": "DWCC-97200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851249203",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Ecru",
+    "status": "ACTIVE",
+    "handle": "novasuede™-ecru",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Eggshell\",\"hex\":\"#F2EADA\",\"percentage\":16.6},{\"name\":\"Oatmeal\",\"hex\":\"#E2D2BB\",\"percentage\":13.9},{\"name\":\"Beige\",\"hex\":\"#E5D3B8\",\"percentage\":13.7},{\"name\":\"Champagne\",\"hex\":\"#E9D7BC\",\"percentage\":11.6},{\"name\":\"Linen\",\"hex\":\"#EDE1CD\",\"percentage\":9.4}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#F2EADA",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-ECRU",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178681135155",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-97400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178681167923",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-97400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994479155",
+          "title": "Sample",
+          "sku": "DWCC-97400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851281971",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Fawn",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fawn",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Ecru\",\"hex\":\"#D3BEAE\",\"percentage\":16.3},{\"name\":\"Oatmeal\",\"hex\":\"#E1D0C0\",\"percentage\":16.2},{\"name\":\"Fawn\",\"hex\":\"#C5AB96\",\"percentage\":7.8}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#D3BEAE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-FAWN",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-FAWN",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178681233459",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-97600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178681266227",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-97600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994544691",
+          "title": "Sample",
+          "sku": "DWCC-97600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851314739",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - French Blue",
+    "status": "ACTIVE",
+    "handle": "novasuede™-french-blue",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Slate Blue\",\"hex\":\"#68839F\",\"percentage\":14.3},{\"name\":\"Steel\",\"hex\":\"#7B96B3\",\"percentage\":13.8},{\"name\":\"Denim\",\"hex\":\"#4B6781\",\"percentage\":8.9}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#68839F",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-FRENCH-BLUE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178681659443",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-97800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178681692211",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-97800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994577459",
+          "title": "Sample",
+          "sku": "DWCC-97800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851347507",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Gainsborough",
+    "status": "ACTIVE",
+    "handle": "novasuede™-gainsborough",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Silver\",\"hex\":\"#CEC5BF\",\"percentage\":20.1},{\"name\":\"Bone\",\"hex\":\"#DBD4CE\",\"percentage\":15.3},{\"name\":\"Dove Gray\",\"hex\":\"#C9BFB8\",\"percentage\":12.1},{\"name\":\"Light Gray\",\"hex\":\"#D1C9C2\",\"percentage\":11.5},{\"name\":\"Mushroom\",\"hex\":\"#ADA199\",\"percentage\":10.5},{\"name\":\"Stone\",\"hex\":\"#BFB5AE\",\"percentage\":7.1}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#CEC5BF",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-GAINSBOROUGH",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178681724979",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-98000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178681757747",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-98000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994610227",
+          "title": "Sample",
+          "sku": "DWCC-98000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851380275",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Garnet",
+    "status": "ACTIVE",
+    "handle": "novasuede™-garnet",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Scarlet\",\"hex\":\"#C23230\",\"percentage\":19.4},{\"name\":\"Red\",\"hex\":\"#BD2E2D\",\"percentage\":17.8},{\"name\":\"Ruby\",\"hex\":\"#9E2525\",\"percentage\":9.9}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#C23230",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-GARNET",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178681921587",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-98200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178681954355",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-98200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994642995",
+          "title": "Sample",
+          "sku": "DWCC-98200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851413043",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Gelato",
+    "status": "ACTIVE",
+    "handle": "novasuede™-gelato",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Oatmeal\",\"hex\":\"#D8CCC3\",\"percentage\":19},{\"name\":\"Bone\",\"hex\":\"#E9DACE\",\"percentage\":13.4},{\"name\":\"Alabaster\",\"hex\":\"#EEE5DD\",\"percentage\":12.2},{\"name\":\"Greige\",\"hex\":\"#C8B5AA\",\"percentage\":6.4}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#D8CCC3",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "beige",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-GELATO",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178682052659",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-98400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178682085427",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-98400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994708531",
+          "title": "Sample",
+          "sku": "DWCC-98400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851478579",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Goldstone",
+    "status": "ACTIVE",
+    "handle": "novasuede™-goldstone",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Burnt Orange\",\"hex\":\"#C66A02\",\"percentage\":17.1},{\"name\":\"Pumpkin\",\"hex\":\"#D97C02\",\"percentage\":14.3}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#C66A02",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-GOLDSTONE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178682150963",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-98800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178682183731",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-98800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994774067",
+          "title": "Sample",
+          "sku": "DWCC-98800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851511347",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Granite",
+    "status": "ACTIVE",
+    "handle": "novasuede™-granite",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Fawn\",\"hex\":\"#C5B699\",\"percentage\":14.1},{\"name\":\"Taupe\",\"hex\":\"#AB9C7D\",\"percentage\":14},{\"name\":\"Ecru\",\"hex\":\"#CDBEA2\",\"percentage\":13.3},{\"name\":\"Putty\",\"hex\":\"#BBAC8E\",\"percentage\":12.8},{\"name\":\"Beige\",\"hex\":\"#DACCB4\",\"percentage\":12.7},{\"name\":\"Mushroom\",\"hex\":\"#B5A587\",\"percentage\":12.6},{\"name\":\"Gray\",\"hex\":\"#958767\",\"percentage\":7.9}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#C5B699",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-GRANITE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178682216499",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-99000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178682249267",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-99000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994806835",
+          "title": "Sample",
+          "sku": "DWCC-99000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851544115",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Grape",
+    "status": "ACTIVE",
+    "handle": "novasuede™-grape",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Aubergine\",\"hex\":\"#473141\",\"percentage\":15.6},{\"name\":\"Graphite\",\"hex\":\"#5A4154\",\"percentage\":15.3},{\"name\":\"Eggplant\",\"hex\":\"#523B4D\",\"percentage\":12.4},{\"name\":\"Espresso\",\"hex\":\"#3B2736\",\"percentage\":11.8},{\"name\":\"Ebony\",\"hex\":\"#2F1E2B\",\"percentage\":8.5}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#473141",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-GRAPE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178682380339",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-99200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178682413107",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-99200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994839603",
+          "title": "Sample",
+          "sku": "DWCC-99200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851642419",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Green Marble",
+    "status": "ACTIVE",
+    "handle": "novasuede™-green-marble",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Smoke\",\"hex\":\"#78948F\",\"percentage\":17.2},{\"name\":\"Ash\",\"hex\":\"#97B3AF\",\"percentage\":16.2},{\"name\":\"Slate\",\"hex\":\"#658680\",\"percentage\":13.3},{\"name\":\"Gray\",\"hex\":\"#718F89\",\"percentage\":11.7},{\"name\":\"Steel\",\"hex\":\"#88A49F\",\"percentage\":9.6}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#78948F",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "teal",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-GREEN-MARBLE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178682445875",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-99800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178682478643",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-99800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994937907",
+          "title": "Sample",
+          "sku": "DWCC-99800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851675187",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Greystone",
+    "status": "ACTIVE",
+    "handle": "novasuede™-greystone",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Smoke\",\"hex\":\"#89868C\",\"percentage\":14.9},{\"name\":\"Gunmetal\",\"hex\":\"#545155\",\"percentage\":14.1},{\"name\":\"Slate\",\"hex\":\"#77747A\",\"percentage\":13.3},{\"name\":\"Gray\",\"hex\":\"#7F7C82\",\"percentage\":12.6},{\"name\":\"Pewter\",\"hex\":\"#9F9CA0\",\"percentage\":11.1},{\"name\":\"Charcoal\",\"hex\":\"#3A3639\",\"percentage\":9.6}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#89868C",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-GREYSTONE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178682544179",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-100000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178682576947",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-100000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698994970675",
+          "title": "Sample",
+          "sku": "DWCC-100000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851707955",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Harvest",
+    "status": "ACTIVE",
+    "handle": "novasuede™-harvest",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Harvest by Novasuede. Quality premium wallcovering for residential and commercial interiors. Free shipping on $100+ orders...",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Harvest by Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Tan\",\"hex\":\"#D2BA92\",\"percentage\":15.2},{\"name\":\"Brass\",\"hex\":\"#A89063\",\"percentage\":14.5},{\"name\":\"Camel\",\"hex\":\"#BCA378\",\"percentage\":13.3},{\"name\":\"Buff\",\"hex\":\"#DEC8A3\",\"percentage\":11.4},{\"name\":\"Bronze\",\"hex\":\"#8A7349\",\"percentage\":8.2}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#D2BA92",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "tan",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-HARVEST",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-HARVEST",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44473676169267",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-100200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44473676202035",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-100200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698995003443",
+          "title": "Sample",
+          "sku": "DWCC-100200",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851740723",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Honey",
+    "status": "ACTIVE",
+    "handle": "novasuede™-honey",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Camel\",\"hex\":\"#D6A574\",\"percentage\":17.4},{\"name\":\"Apricot\",\"hex\":\"#E4B382\",\"percentage\":14.9},{\"name\":\"Tan\",\"hex\":\"#DAAA7A\",\"percentage\":12.8},{\"name\":\"Brass\",\"hex\":\"#C28C59\",\"percentage\":8.1}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#D6A574",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-HONEY",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178682675251",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-100400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178682708019",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-100400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698995068979",
+          "title": "Sample",
+          "sku": "DWCC-100400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851773491",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Hyacinth",
+    "status": "ACTIVE",
+    "handle": "novasuede™-hyacinth",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Gray\",\"hex\":\"#85677A\",\"percentage\":16.2},{\"name\":\"Smoke\",\"hex\":\"#947489\",\"percentage\":14.8},{\"name\":\"Slate\",\"hex\":\"#816375\",\"percentage\":13.4},{\"name\":\"Mocha\",\"hex\":\"#775A6C\",\"percentage\":11.5},{\"name\":\"Plum\",\"hex\":\"#674D5E\",\"percentage\":8.4}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#85677A",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-HYACINTH",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178682740787",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-100600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178682773555",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-100600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698995101747",
+          "title": "Sample",
+          "sku": "DWCC-100600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851806259",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede™ - Iceberg",
+    "status": "ACTIVE",
+    "handle": "novasuede™-iceberg",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Beige\",\"hex\":\"#D7CAB4\",\"percentage\":16.4},{\"name\":\"Fawn\",\"hex\":\"#C5B69D\",\"percentage\":13.6},{\"name\":\"Mushroom\",\"hex\":\"#B4A58A\",\"percentage\":13.4},{\"name\":\"Putty\",\"hex\":\"#BEAF96\",\"percentage\":12.7},{\"name\":\"Ecru\",\"hex\":\"#CBBDA5\",\"percentage\":12.1},{\"name\":\"Oatmeal\",\"hex\":\"#E0D3BF\",\"percentage\":10.8},{\"name\":\"Taupe\",\"hex\":\"#9F9074\",\"percentage\":9.2}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#D7CAB4",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-ICEBERG",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178682806323",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-100800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178682839091",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-100800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698995134515",
+          "title": "Sample",
+          "sku": "DWCC-100800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851871795",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Ivory",
+    "status": "ACTIVE",
+    "handle": "novasuede™-ivory",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Bone\",\"hex\":\"#E5D7CD\",\"percentage\":20.4},{\"name\":\"Eggshell\",\"hex\":\"#EFE5DC\",\"percentage\":18.7},{\"name\":\"Oatmeal\",\"hex\":\"#D6C5B8\",\"percentage\":6.7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#E5D7CD",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "beige",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-IVORY",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178682871859",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-101200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178682904627",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-101200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698995200051",
+          "title": "Sample",
+          "sku": "DWCC-101200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692851937331",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Java",
+    "status": "ACTIVE",
+    "handle": "novasuede™-java",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Discover Novasuede™ Fabric & Wallcovering - Java from Novasuede. premium wallcovering ideal for residential and commercial interiors. Ships free on orders $1...",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Java Wallcovering by Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Bronze\",\"hex\":\"#9A704D\",\"percentage\":15.2},{\"name\":\"Chestnut\",\"hex\":\"#835D3D\",\"percentage\":13.4},{\"name\":\"Tobacco\",\"hex\":\"#795536\",\"percentage\":12.7},{\"name\":\"Brown\",\"hex\":\"#6C4A2D\",\"percentage\":8.7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#9A704D",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-JAVA",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-JAVA",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#9A704D",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44473676726323",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-101600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44473676759091",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-101600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698995298355",
+          "title": "Sample",
+          "sku": "DWCC-101600",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852002867",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Lavender",
+    "status": "ACTIVE",
+    "handle": "novasuede™-lavender",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Gray\",\"hex\":\"#956584\",\"percentage\":14},{\"name\":\"Mauve\",\"hex\":\"#A47493\",\"percentage\":14},{\"name\":\"Smoke\",\"hex\":\"#A17090\",\"percentage\":13.5},{\"name\":\"Plum\",\"hex\":\"#855773\",\"percentage\":10.8}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#956584",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-LAVENDER",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178683002931",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-102000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178683035699",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-102000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698995462195",
+          "title": "Sample",
+          "sku": "DWCC-102000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852035635",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Light Amethyst",
+    "status": "ACTIVE",
+    "handle": "novasuede™-light-amethyst",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Ash\",\"hex\":\"#A8A1B5\",\"percentage\":14.1},{\"name\":\"Smoke\",\"hex\":\"#857D96\",\"percentage\":13},{\"name\":\"Heather\",\"hex\":\"#9A93A8\",\"percentage\":13},{\"name\":\"Steel\",\"hex\":\"#928AA0\",\"percentage\":12.9},{\"name\":\"Silver\",\"hex\":\"#C4BFCD\",\"percentage\":12.5},{\"name\":\"Dove Gray\",\"hex\":\"#B5AFC1\",\"percentage\":12.1},{\"name\":\"Slate Blue\",\"hex\":\"#645C76\",\"percentage\":9.4}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#A8A1B5",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-LIGHT-AMETHYST",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178683101235",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-102200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178683134003",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-102200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698995560499",
+          "title": "Sample",
+          "sku": "DWCC-102200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852101171",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Light Grey",
+    "status": "ACTIVE",
+    "handle": "novasuede™-light-grey",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Taupe\",\"hex\":\"#9D9888\",\"percentage\":15},{\"name\":\"Ecru\",\"hex\":\"#CCC6B8\",\"percentage\":13.5},{\"name\":\"Stone\",\"hex\":\"#C4BFB1\",\"percentage\":13.2},{\"name\":\"Greige\",\"hex\":\"#BCB7A9\",\"percentage\":13.1},{\"name\":\"Oatmeal\",\"hex\":\"#D8D2C2\",\"percentage\":12.9},{\"name\":\"Linen\",\"hex\":\"#E7E1D1\",\"percentage\":12.4},{\"name\":\"Mushroom\",\"hex\":\"#AFAA9C\",\"percentage\":11.4},{\"name\":\"Moss\",\"hex\":\"#776F5A\",\"percentage\":8.5}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#9D9888",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-LIGHT-GREY",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178683199539",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-102600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178683232307",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-102600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698995724339",
+          "title": "Sample",
+          "sku": "DWCC-102600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852232243",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Linen",
+    "status": "ACTIVE",
+    "handle": "novasuede™-linen",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Oatmeal\",\"hex\":\"#D3CAC1\",\"percentage\":14.3},{\"name\":\"Linen\",\"hex\":\"#E5DDD3\",\"percentage\":13.4},{\"name\":\"Bone\",\"hex\":\"#E0D7CD\",\"percentage\":12.9},{\"name\":\"Stone\",\"hex\":\"#C4B9B0\",\"percentage\":10.6}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#D3CAC1",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "beige",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-LINEN",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178683265075",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-103200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178683297843",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-103200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698995822643",
+          "title": "Sample",
+          "sku": "DWCC-103200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852265011",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Madison Grey",
+    "status": "ACTIVE",
+    "handle": "novasuede™-madison-grey",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Gunmetal\",\"hex\":\"#5F5752\",\"percentage\":15.1},{\"name\":\"Mocha\",\"hex\":\"#6E6661\",\"percentage\":14.9},{\"name\":\"Graphite\",\"hex\":\"#59514C\",\"percentage\":12},{\"name\":\"Charcoal\",\"hex\":\"#3E3A36\",\"percentage\":8.2}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#5F5752",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-MADISON-GREY",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178683461683",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-103400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178683494451",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-103400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698995888179",
+          "title": "Sample",
+          "sku": "DWCC-103400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852297779",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Maize",
+    "status": "ACTIVE",
+    "handle": "novasuede™-maize",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Buff\",\"hex\":\"#EBCCA0\",\"percentage\":17.7},{\"name\":\"Champagne\",\"hex\":\"#F7DAAE\",\"percentage\":13.7},{\"name\":\"Peach\",\"hex\":\"#ECC999\",\"percentage\":12.4},{\"name\":\"Tan\",\"hex\":\"#D6B488\",\"percentage\":7.6}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#EBCCA0",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-MAIZE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178683559987",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-103600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178683592755",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-103600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698995920947",
+          "title": "Sample",
+          "sku": "DWCC-103600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852363315",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Maroon",
+    "status": "ACTIVE",
+    "handle": "novasuede™-maroon",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Garnet\",\"hex\":\"#7A2C2E\",\"percentage\":17.8},{\"name\":\"Maroon\",\"hex\":\"#76282B\",\"percentage\":12},{\"name\":\"Oxblood\",\"hex\":\"#6A2224\",\"percentage\":11.9},{\"name\":\"Burgundy\",\"hex\":\"#782A2D\",\"percentage\":11.7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#7A2C2E",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-MAROON",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178683625523",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-104000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178683658291",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-104000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698995986483",
+          "title": "Sample",
+          "sku": "DWCC-104000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852396083",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Royal Purple",
+    "status": "ACTIVE",
+    "handle": "novasuede™-mauve",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Ink\",\"hex\":\"#1F1526\",\"percentage\":18.5},{\"name\":\"Black\",\"hex\":\"#160C1D\",\"percentage\":13.1},{\"name\":\"Onyx\",\"hex\":\"#2A1E35\",\"percentage\":10.7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#1F1526",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-MAUVE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178690408499",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-111000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178690441267",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-111000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996019251",
+          "title": "Sample",
+          "sku": "DWCC-111000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852428851",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Meadow",
+    "status": "ACTIVE",
+    "handle": "novasuede™-meadow",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Khaki\",\"hex\":\"#C1BC7E\",\"percentage\":15.4},{\"name\":\"Wheat\",\"hex\":\"#D6D3A0\",\"percentage\":14.5},{\"name\":\"Tan\",\"hex\":\"#C5BF83\",\"percentage\":12.6},{\"name\":\"Sand\",\"hex\":\"#CECA95\",\"percentage\":11.9},{\"name\":\"Brass\",\"hex\":\"#AAA45C\",\"percentage\":8.2}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#C1BC7E",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "yellow",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-MEADOW",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178683854899",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-104400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178683953203",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-104400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996052019",
+          "title": "Sample",
+          "sku": "DWCC-104400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852461619",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Melon",
+    "status": "ACTIVE",
+    "handle": "novasuede™-melon",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Honey\",\"hex\":\"#EE975A\",\"percentage\":18.1},{\"name\":\"Tangerine\",\"hex\":\"#ED9051\",\"percentage\":16.4},{\"name\":\"Apricot\",\"hex\":\"#FBAF78\",\"percentage\":15},{\"name\":\"Salmon\",\"hex\":\"#F6A46A\",\"percentage\":9.1},{\"name\":\"Pumpkin\",\"hex\":\"#DD763A\",\"percentage\":8.5}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#EE975A",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-MELON",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178684248115",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-104600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178684313651",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-104600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996084787",
+          "title": "Sample",
+          "sku": "DWCC-104600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852494387",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Milk",
+    "status": "ACTIVE",
+    "handle": "novasuede™-milk",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Alabaster\",\"hex\":\"#F0E7DE\",\"percentage\":18.1},{\"name\":\"Bone\",\"hex\":\"#E6DCD2\",\"percentage\":16},{\"name\":\"Ecru\",\"hex\":\"#CABCB3\",\"percentage\":10.6},{\"name\":\"Linen\",\"hex\":\"#ECE0D4\",\"percentage\":10}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#F0E7DE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "beige",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-MILK",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178684575795",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-104800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178684641331",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-104800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996117555",
+          "title": "Sample",
+          "sku": "DWCC-104800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852559923",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Mint Julip",
+    "status": "ACTIVE",
+    "handle": "novasuede™-mint-julip",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Ash\",\"hex\":\"#ADBEB3\",\"percentage\":18.1},{\"name\":\"Light Gray\",\"hex\":\"#C9D8CF\",\"percentage\":15.6},{\"name\":\"Celadon\",\"hex\":\"#A8BDB0\",\"percentage\":10.6},{\"name\":\"Sage\",\"hex\":\"#9CB1A4\",\"percentage\":10.2},{\"name\":\"Smoke\",\"hex\":\"#869789\",\"percentage\":9.5},{\"name\":\"Silver\",\"hex\":\"#B6C8BD\",\"percentage\":8.5}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#ADBEB3",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_units",
+          "value": "1",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178684936243",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-105200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178684969011",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-105200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996183091",
+          "title": "Sample",
+          "sku": "DWCC-105200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852625459",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Misty Dew",
+    "status": "ACTIVE",
+    "handle": "novasuede™-misty-dew",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Bone\",\"hex\":\"#E0D5C6\",\"percentage\":15.6},{\"name\":\"Oatmeal\",\"hex\":\"#D3C8B8\",\"percentage\":12.9},{\"name\":\"Ecru\",\"hex\":\"#C8BCAA\",\"percentage\":12.9},{\"name\":\"Mushroom\",\"hex\":\"#B2A490\",\"percentage\":8.1}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#E0D5C6",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "beige",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-MISTY-DEW",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178685362227",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-105600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178685394995",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-105600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996248627",
+          "title": "Sample",
+          "sku": "DWCC-105600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852658227",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Mocha",
+    "status": "ACTIVE",
+    "handle": "novasuede™-mocha",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - in Mocha by Novasuede. Quality premium wallcovering for residential and commercial interiors. Free shipping on $100+ order...",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Mocha by Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Bronze\",\"hex\":\"#9A704D\",\"percentage\":15.2},{\"name\":\"Chestnut\",\"hex\":\"#835D3D\",\"percentage\":13.4},{\"name\":\"Tobacco\",\"hex\":\"#795536\",\"percentage\":12.7},{\"name\":\"Brown\",\"hex\":\"#6C4A2D\",\"percentage\":8.7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#9A704D",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-MOCHA",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-MOCHA",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#9A704D",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44473676791859",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-105800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44473676824627",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-105800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996281395",
+          "title": "Sample",
+          "sku": "DWCC-105800",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852690995",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Moss",
+    "status": "ACTIVE",
+    "handle": "novasuede™-moss",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Mocha\",\"hex\":\"#6C6254\",\"percentage\":14.4},{\"name\":\"Coffee\",\"hex\":\"#5F5648\",\"percentage\":14},{\"name\":\"Moss\",\"hex\":\"#7D7364\",\"percentage\":13.4}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#6C6254",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_units",
+          "value": "1",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178685427763",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-106000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178685460531",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-106000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996314163",
+          "title": "Sample",
+          "sku": "DWCC-106000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852723763",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Mushroom",
+    "status": "ACTIVE",
+    "handle": "novasuede™-mushroom",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Brass\",\"hex\":\"#BA8861\",\"percentage\":15.5},{\"name\":\"Copper\",\"hex\":\"#A06F4C\",\"percentage\":15.2},{\"name\":\"Bronze\",\"hex\":\"#9D6B48\",\"percentage\":12.7},{\"name\":\"Caramel\",\"hex\":\"#AE7C56\",\"percentage\":9.6},{\"name\":\"Chestnut\",\"hex\":\"#825637\",\"percentage\":8.7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#BA8861",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-MUSHROOM",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178685493299",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-106200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178685526067",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-106200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996346931",
+          "title": "Sample",
+          "sku": "DWCC-106200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852822067",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Nutmeg",
+    "status": "ACTIVE",
+    "handle": "novasuede™-nutmeg",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Nutmeg by Novasuede. Quality premium wallcovering for residential and commercial interiors. Free shipping on $100+ orders ...",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Nutmeg by Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Brass\",\"hex\":\"#AC9266\",\"percentage\":15},{\"name\":\"Tan\",\"hex\":\"#D2BA8E\",\"percentage\":14.6},{\"name\":\"Bronze\",\"hex\":\"#88724B\",\"percentage\":14},{\"name\":\"Camel\",\"hex\":\"#B49A6D\",\"percentage\":12.4},{\"name\":\"Caramel\",\"hex\":\"#9B8359\",\"percentage\":11.5},{\"name\":\"Brown\",\"hex\":\"#63502E\",\"percentage\":9.4}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#AC9266",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-NUTMEG",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-NUTMEG",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#AC9266",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44473676857395",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-106800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44473676890163",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-106800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996445235",
+          "title": "Sample",
+          "sku": "DWCC-106800",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852854835",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Ocean",
+    "status": "ACTIVE",
+    "handle": "novasuede™-ocean",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - by Novasuede in Ocean. High-quality premium wallcovering for residential and commercial interiors. Order online with free ...",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Ocean by Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Juniper\",\"hex\":\"#567669\",\"percentage\":15.3},{\"name\":\"Slate\",\"hex\":\"#6B9083\",\"percentage\":13.4},{\"name\":\"Hunter Green\",\"hex\":\"#3A5C50\",\"percentage\":9.7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#567669",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-OCEAN",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-OCEAN",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#567669",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44473676922931",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-107000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44473676955699",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-107000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996478003",
+          "title": "Sample",
+          "sku": "DWCC-107000",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852887603",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Olive",
+    "status": "ACTIVE",
+    "handle": "novasuede™-olive",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Black\",\"hex\":\"#231E0E\",\"percentage\":17},{\"name\":\"Ebony\",\"hex\":\"#2C2615\",\"percentage\":14.5},{\"name\":\"Espresso\",\"hex\":\"#302817\",\"percentage\":12.4}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#231E0E",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-OLIVE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178685788211",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-107200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178685820979",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-107200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996510771",
+          "title": "Sample",
+          "sku": "DWCC-107200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852953139",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Oyster",
+    "status": "ACTIVE",
+    "handle": "novasuede™-oyster",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Taupe\",\"hex\":\"#A0906E\",\"percentage\":14.7},{\"name\":\"Putty\",\"hex\":\"#BBAC89\",\"percentage\":14.4},{\"name\":\"Ecru\",\"hex\":\"#D1C4A3\",\"percentage\":14.3},{\"name\":\"Mushroom\",\"hex\":\"#B7A784\",\"percentage\":13.3},{\"name\":\"Fawn\",\"hex\":\"#CCBD9B\",\"percentage\":11.3},{\"name\":\"Mocha\",\"hex\":\"#7A6B4B\",\"percentage\":8.5}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#A0906E",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-OYSTER",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178685919283",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-107600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178685952051",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-107600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996576307",
+          "title": "Sample",
+          "sku": "DWCC-107600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692852985907",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Pale Green",
+    "status": "ACTIVE",
+    "handle": "novasuede™-pale-green",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Light Gray\",\"hex\":\"#BBD6CE\",\"percentage\":18.8},{\"name\":\"Mint\",\"hex\":\"#BAD4CD\",\"percentage\":17.2},{\"name\":\"Powder Blue\",\"hex\":\"#CBE3DD\",\"percentage\":16.2},{\"name\":\"Ash\",\"hex\":\"#98B5AC\",\"percentage\":7.1}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#BBD6CE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-PALE-GREEN",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178685984819",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-107800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178686017587",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-107800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996609075",
+          "title": "Sample",
+          "sku": "DWCC-107800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853018675",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Passion Blue",
+    "status": "ACTIVE",
+    "handle": "novasuede™-passion-blue",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Sapphire\",\"hex\":\"#01398E\",\"percentage\":16.5},{\"name\":\"Cobalt\",\"hex\":\"#014AAF\",\"percentage\":14.9},{\"name\":\"Royal Blue\",\"hex\":\"#0161CB\",\"percentage\":14.5},{\"name\":\"Navy\",\"hex\":\"#012670\",\"percentage\":7.7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#01398E",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-PASSION-BLUE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178686443571",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-108000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178686476339",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-108000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996641843",
+          "title": "Sample",
+          "sku": "DWCC-108000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853051443",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Peach",
+    "status": "ACTIVE",
+    "handle": "novasuede™-peach",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Beige\",\"hex\":\"#E8C0B3\",\"percentage\":22},{\"name\":\"Blush\",\"hex\":\"#F2D3C8\",\"percentage\":16.1},{\"name\":\"Peach\",\"hex\":\"#E8BDAF\",\"percentage\":13.2},{\"name\":\"Tan\",\"hex\":\"#DCA99B\",\"percentage\":5.5}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#E8C0B3",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-PEACH",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178687852595",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-108200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178687885363",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-108200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996674611",
+          "title": "Sample",
+          "sku": "DWCC-108200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853084211",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Pebble",
+    "status": "ACTIVE",
+    "handle": "novasuede™-pebble",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Beige\",\"hex\":\"#E1C9B9\",\"percentage\":18.7},{\"name\":\"Vanilla\",\"hex\":\"#F1D8C5\",\"percentage\":12.7},{\"name\":\"Dusty Rose\",\"hex\":\"#C59E86\",\"percentage\":11.2},{\"name\":\"Buff\",\"hex\":\"#DDBEAA\",\"percentage\":5}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#E1C9B9",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "peach",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-PEBBLE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178687918131",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-108400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178687950899",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-108400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996707379",
+          "title": "Sample",
+          "sku": "DWCC-108400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853116979",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Peppermint",
+    "status": "ACTIVE",
+    "handle": "novasuede™-peppermint",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Bone\",\"hex\":\"#E9D4CD\",\"percentage\":16.8},{\"name\":\"Oatmeal\",\"hex\":\"#DEC5BD\",\"percentage\":15.9},{\"name\":\"Ecru\",\"hex\":\"#D9BCB4\",\"percentage\":10.8}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#E9D4CD",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-PEPPERMINT",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178687983667",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-108600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178688016435",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-108600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996740147",
+          "title": "Sample",
+          "sku": "DWCC-108600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853149747",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Peridot",
+    "status": "ACTIVE",
+    "handle": "novasuede™-peridot",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Espresso\",\"hex\":\"#3C3115\",\"percentage\":18.8},{\"name\":\"Chocolate\",\"hex\":\"#463B1C\",\"percentage\":13.5},{\"name\":\"Black\",\"hex\":\"#221C06\",\"percentage\":8.8}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "olive",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "rustic",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#3C3115",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-PERIDOT",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178688081971",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-108800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178688114739",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-108800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996772915",
+          "title": "Sample",
+          "sku": "DWCC-108800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853182515",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Periwinkle",
+    "status": "ACTIVE",
+    "handle": "novasuede™-periwinkle",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Periwinkle by Novasuede. High-quality premium wallcovering for residential and commercial interiors. Order online with fre...",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Periwinkle by Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#B2BED2",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "light blue",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Silver\",\"hex\":\"#B2BED2\",\"percentage\":15.4},{\"name\":\"Steel\",\"hex\":\"#92A0B9\",\"percentage\":15.3},{\"name\":\"Wisteria\",\"hex\":\"#A1AFC6\",\"percentage\":9.5},{\"name\":\"Slate Blue\",\"hex\":\"#687B98\",\"percentage\":9.1}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-PERIWINKLE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-PERIWINKLE",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44473676988467",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-109000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44473677021235",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-109000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996805683",
+          "title": "Sample",
+          "sku": "DWCC-109000",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853248051",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Plum Pleasure",
+    "status": "ACTIVE",
+    "handle": "novasuede™-plum-pleasure",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Oxblood\",\"hex\":\"#571930\",\"percentage\":15.7},{\"name\":\"Maroon\",\"hex\":\"#63213A\",\"percentage\":14.7},{\"name\":\"Espresso\",\"hex\":\"#491127\",\"percentage\":13.9}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#571930",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "maroon",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "contemporary",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-PLUM-PLEASURE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178689425459",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-109400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178689458227",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-109400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996871219",
+          "title": "Sample",
+          "sku": "DWCC-109400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853313587",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Powder Grey",
+    "status": "ACTIVE",
+    "handle": "novasuede™-powder-grey",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Dove Gray\",\"hex\":\"#C1BAB7\",\"percentage\":18.4},{\"name\":\"Light Gray\",\"hex\":\"#D0CBC7\",\"percentage\":14.7},{\"name\":\"Stone\",\"hex\":\"#BCB4B1\",\"percentage\":14.4},{\"name\":\"Ash\",\"hex\":\"#B9B1AE\",\"percentage\":10.4},{\"name\":\"Taupe\",\"hex\":\"#A39A96\",\"percentage\":7.9}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#C1BAB7",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_units",
+          "value": "1",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178689622067",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-109800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178689654835",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-109800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698996969523",
+          "title": "Sample",
+          "sku": "DWCC-109800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853346355",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Prairie",
+    "status": "ACTIVE",
+    "handle": "novasuede™-prairie",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Sand\",\"hex\":\"#D4C69D\",\"percentage\":14.3},{\"name\":\"Khaki\",\"hex\":\"#B9AA7C\",\"percentage\":14},{\"name\":\"Tan\",\"hex\":\"#C0B184\",\"percentage\":13.6},{\"name\":\"Buff\",\"hex\":\"#DBCDA6\",\"percentage\":13.2},{\"name\":\"Brass\",\"hex\":\"#9D8E62\",\"percentage\":12.6},{\"name\":\"Camel\",\"hex\":\"#AFA073\",\"percentage\":12},{\"name\":\"Bronze\",\"hex\":\"#7E7049\",\"percentage\":10.7},{\"name\":\"Fawn\",\"hex\":\"#CABC90\",\"percentage\":9.6}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#D4C69D",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_units",
+          "value": "1",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178689687603",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-110000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178689720371",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-110000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997002291",
+          "title": "Sample",
+          "sku": "DWCC-110000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853444659",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sandalwood",
+    "status": "ACTIVE",
+    "handle": "novasuede™-red",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Camel\",\"hex\":\"#D18D65\",\"percentage\":17.5},{\"name\":\"Apricot\",\"hex\":\"#E7AB89\",\"percentage\":15.2},{\"name\":\"Clay\",\"hex\":\"#BF7A54\",\"percentage\":9.3}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#D18D65",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-RED",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178690998323",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178691031091",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997100595",
+          "title": "Sample",
+          "sku": "DWCC-112600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853575731",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Ruby",
+    "status": "ACTIVE",
+    "handle": "novasuede™-ruby",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Brick\",\"hex\":\"#9C3120\",\"percentage\":16.1},{\"name\":\"Garnet\",\"hex\":\"#86291A\",\"percentage\":15.2},{\"name\":\"Oxblood\",\"hex\":\"#762314\",\"percentage\":15},{\"name\":\"Maroon\",\"hex\":\"#7D2516\",\"percentage\":12.1}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#9C3120",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-RUBY",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178690474035",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-111200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178690506803",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-111200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997198899",
+          "title": "Sample",
+          "sku": "DWCC-111200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853608499",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sable",
+    "status": "ACTIVE",
+    "handle": "novasuede™-sable",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Black\",\"hex\":\"#2C1309\",\"percentage\":15.3},{\"name\":\"Chocolate\",\"hex\":\"#47271A\",\"percentage\":12.9},{\"name\":\"Espresso\",\"hex\":\"#3B1D11\",\"percentage\":12.5}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#2C1309",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-SABLE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178690539571",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-111400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178690572339",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-111400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997231667",
+          "title": "Sample",
+          "sku": "DWCC-111400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853674035",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Saffron",
+    "status": "ACTIVE",
+    "handle": "novasuede™-saffron",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Apricot\",\"hex\":\"#EAB779\",\"percentage\":14.9},{\"name\":\"Honey\",\"hex\":\"#DEA868\",\"percentage\":14.3},{\"name\":\"Ochre\",\"hex\":\"#C38A49\",\"percentage\":9.5}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#EAB779",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-SAFFRON",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178690670643",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-111800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178690703411",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-111800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997329971",
+          "title": "Sample",
+          "sku": "DWCC-111800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853706803",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sage",
+    "status": "ACTIVE",
+    "handle": "novasuede™-sage",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Gray\",\"hex\":\"#8A877D\",\"percentage\":15.1},{\"name\":\"Slate\",\"hex\":\"#76736A\",\"percentage\":15},{\"name\":\"Smoke\",\"hex\":\"#939087\",\"percentage\":13.8},{\"name\":\"Mocha\",\"hex\":\"#67665D\",\"percentage\":7.1}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#8A877D",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-SAGE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178690768947",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178690801715",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997362739",
+          "title": "Sample",
+          "sku": "DWCC-112000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853739571",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Salt",
+    "status": "ACTIVE",
+    "handle": "novasuede™-salt",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Silver\",\"hex\":\"#C7C2BC\",\"percentage\":18.3},{\"name\":\"Bone\",\"hex\":\"#DCD7D0\",\"percentage\":14},{\"name\":\"Light Gray\",\"hex\":\"#D5D0C8\",\"percentage\":11.8},{\"name\":\"Ash\",\"hex\":\"#B8B2AB\",\"percentage\":5.1}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#C7C2BC",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_units",
+          "value": "1",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178690867251",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178690900019",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997395507",
+          "title": "Sample",
+          "sku": "DWCC-112200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853837875",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Scarlet Wine",
+    "status": "ACTIVE",
+    "handle": "novasuede™-scarlet-wine",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Oxblood\",\"hex\":\"#5E182B\",\"percentage\":20.2},{\"name\":\"Wine\",\"hex\":\"#6E2338\",\"percentage\":14},{\"name\":\"Espresso\",\"hex\":\"#44081A\",\"percentage\":9.8}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#5E182B",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-SCARLET-WINE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178691555379",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178691588147",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997493811",
+          "title": "Sample",
+          "sku": "DWCC-112800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853870643",
+    "title": "Novasuede™ Fabric & Wallcovering  Luxury Faux Suede - Sea Blue",
+    "status": "ACTIVE",
+    "handle": "novasuede™-sea-blue",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Slate Blue\",\"hex\":\"#586687\",\"percentage\":17.7},{\"name\":\"Gunmetal\",\"hex\":\"#4D5B7A\",\"percentage\":10.9}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#586687",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-SEA-BLUE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178691751987",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-113000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178691784755",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-113000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997526579",
+          "title": "Sample",
+          "sku": "DWCC-113000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853903411",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sea Grass",
+    "status": "ACTIVE",
+    "handle": "novasuede™-sea-grass",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Fawn\",\"hex\":\"#C2BF95\",\"percentage\":15.2},{\"name\":\"Moss\",\"hex\":\"#89895A\",\"percentage\":13.6},{\"name\":\"Taupe\",\"hex\":\"#A2A073\",\"percentage\":13.3},{\"name\":\"Brass\",\"hex\":\"#989769\",\"percentage\":13.3},{\"name\":\"Sage\",\"hex\":\"#ABA97C\",\"percentage\":12.9},{\"name\":\"Ecru\",\"hex\":\"#CEC9A4\",\"percentage\":12.1},{\"name\":\"Putty\",\"hex\":\"#B7B488\",\"percentage\":10.3},{\"name\":\"Olive\",\"hex\":\"#606234\",\"percentage\":9.3}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#C2BF95",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-SEA-GRASS",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178691915827",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-113400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178691948595",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-113400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997592115",
+          "title": "Sample",
+          "sku": "DWCC-113400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853936179",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sea Breeze",
+    "status": "ACTIVE",
+    "handle": "novasuede™-sea-breeze",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Ash\",\"hex\":\"#A1B5A7\",\"percentage\":15},{\"name\":\"Dove Gray\",\"hex\":\"#B1C4B8\",\"percentage\":14.5},{\"name\":\"Sage\",\"hex\":\"#9CB0A2\",\"percentage\":13.8},{\"name\":\"Smoke\",\"hex\":\"#859989\",\"percentage\":9.6}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#A1B5A7",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-SEA-BREEZE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178691850291",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-113200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178691883059",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-113200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997559347",
+          "title": "Sample",
+          "sku": "DWCC-113200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692853968947",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Seafoam",
+    "status": "ACTIVE",
+    "handle": "novasuede™-seafoam",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Moss\",\"hex\":\"#817659\",\"percentage\":16.4},{\"name\":\"Taupe\",\"hex\":\"#A19677\",\"percentage\":13.4},{\"name\":\"Mocha\",\"hex\":\"#786D50\",\"percentage\":13.3},{\"name\":\"Umber\",\"hex\":\"#665C41\",\"percentage\":9.3}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#817659",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_units",
+          "value": "1",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178692112435",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-113600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178692177971",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-113600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997624883",
+          "title": "Sample",
+          "sku": "DWCC-113600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854034483",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sienna",
+    "status": "ACTIVE",
+    "handle": "novasuede™-sienna",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Sienna\",\"hex\":\"#9F6C3D\",\"percentage\":14.2},{\"name\":\"Chestnut\",\"hex\":\"#825429\",\"percentage\":13.7},{\"name\":\"Cognac\",\"hex\":\"#936235\",\"percentage\":13.2},{\"name\":\"Walnut\",\"hex\":\"#6E441B\",\"percentage\":13.1},{\"name\":\"Brown\",\"hex\":\"#794E24\",\"percentage\":12.4},{\"name\":\"Caramel\",\"hex\":\"#B27C4A\",\"percentage\":11.3},{\"name\":\"Chocolate\",\"hex\":\"#54320F\",\"percentage\":10.2}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#9F6C3D",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_units",
+          "value": "1",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178692472883",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-113800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178692505651",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-113800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997657651",
+          "title": "Sample",
+          "sku": "DWCC-113800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854100019",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sky Blue",
+    "status": "ACTIVE",
+    "handle": "novasuede™-sky-blue",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Aqua\",\"hex\":\"#9EBED0\",\"percentage\":18.7},{\"name\":\"Powder Blue\",\"hex\":\"#B2CFDF\",\"percentage\":15.8},{\"name\":\"Cornflower\",\"hex\":\"#76A4BD\",\"percentage\":8.3}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#9EBED0",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "light blue",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178692735027",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-114200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178692767795",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-114200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997723187",
+          "title": "Sample",
+          "sku": "DWCC-114200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854132787",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Smoke",
+    "status": "ACTIVE",
+    "handle": "novasuede™-smoke",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Coffee\",\"hex\":\"#503D36\",\"percentage\":14.5},{\"name\":\"Mocha\",\"hex\":\"#6F5750\",\"percentage\":13.7},{\"name\":\"Umber\",\"hex\":\"#665049\",\"percentage\":11.4},{\"name\":\"Chocolate\",\"hex\":\"#43322C\",\"percentage\":7.6}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#503D36",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-SMOKE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178692833331",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-114400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178692866099",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-114400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997755955",
+          "title": "Sample",
+          "sku": "DWCC-114400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854165555",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Soft Clay",
+    "status": "ACTIVE",
+    "handle": "novasuede™-soft-clay",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Terracotta\",\"hex\":\"#D47C63\",\"percentage\":16},{\"name\":\"Coral\",\"hex\":\"#E28B73\",\"percentage\":13.8},{\"name\":\"Copper\",\"hex\":\"#BA604D\",\"percentage\":10.3}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#D47C63",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-SOFT-CLAY",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178692931635",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-114600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178692964403",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-114600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997788723",
+          "title": "Sample",
+          "sku": "DWCC-114600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854198323",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Solar Yellow",
+    "status": "ACTIVE",
+    "handle": "novasuede™-solar-yellow",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Honey\",\"hex\":\"#EBB664\",\"percentage\":18.2},{\"name\":\"Lemon\",\"hex\":\"#FBC46A\",\"percentage\":13.3},{\"name\":\"Amber\",\"hex\":\"#D99738\",\"percentage\":9.5}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#EBB664",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-SOLAR-YELLOW",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178692997171",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-114800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178693029939",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-114800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997821491",
+          "title": "Sample",
+          "sku": "DWCC-114800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854263859",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Steel",
+    "status": "ACTIVE",
+    "handle": "novasuede™-steel",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Taupe\",\"hex\":\"#A69A88\",\"percentage\":14.5},{\"name\":\"Moss\",\"hex\":\"#827663\",\"percentage\":14.1},{\"name\":\"Gray\",\"hex\":\"#8D816D\",\"percentage\":13.2},{\"name\":\"Greige\",\"hex\":\"#C3B8A8\",\"percentage\":12.8},{\"name\":\"Mushroom\",\"hex\":\"#B1A593\",\"percentage\":11.9},{\"name\":\"Mocha\",\"hex\":\"#685D4A\",\"percentage\":8.8}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#A69A88",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-STEEL",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178693161011",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-115200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178693193779",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-115200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997887027",
+          "title": "Sample",
+          "sku": "DWCC-115200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854296627",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Stone Grey",
+    "status": "ACTIVE",
+    "handle": "novasuede™-stone-grey",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Mocha\",\"hex\":\"#7F6A64\",\"percentage\":15.1},{\"name\":\"Taupe\",\"hex\":\"#A6938C\",\"percentage\":13.5},{\"name\":\"Smoke\",\"hex\":\"#99847C\",\"percentage\":12.8},{\"name\":\"Gray\",\"hex\":\"#846F68\",\"percentage\":11.7},{\"name\":\"Coffee\",\"hex\":\"#55433D\",\"percentage\":9.7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#7F6A64",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-STONE-GREY",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178693259315",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-115400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178693292083",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-115400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997952563",
+          "title": "Sample",
+          "sku": "DWCC-115400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854329395",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Stone Taupe",
+    "status": "ACTIVE",
+    "handle": "novasuede™-stone-taupe",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Dusty Rose\",\"hex\":\"#C6A085\",\"percentage\":14.9},{\"name\":\"Camel\",\"hex\":\"#B58E73\",\"percentage\":14.6},{\"name\":\"Brass\",\"hex\":\"#B0886C\",\"percentage\":14.2},{\"name\":\"Clay\",\"hex\":\"#A87F64\",\"percentage\":12.5},{\"name\":\"Bronze\",\"hex\":\"#9A745A\",\"percentage\":8.7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#C6A085",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-STONE-TAUPE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178693521459",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-115600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178693554227",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-115600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698997985331",
+          "title": "Sample",
+          "sku": "DWCC-115600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854394931",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Raffia",
+    "status": "ACTIVE",
+    "handle": "novasuede™-straw",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Brass\",\"hex\":\"#B49165\",\"percentage\":17.6},{\"name\":\"Camel\",\"hex\":\"#C7A67B\",\"percentage\":13.4},{\"name\":\"Caramel\",\"hex\":\"#9E7A4D\",\"percentage\":11.2},{\"name\":\"Bronze\",\"hex\":\"#8C6A41\",\"percentage\":10}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#B49165",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-STRAW",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178690146355",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-110400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178690179123",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-110400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698998050867",
+          "title": "Sample",
+          "sku": "DWCC-110400-SAMPLE-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854427699",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Porcelain",
+    "status": "ACTIVE",
+    "handle": "novasuede™-strong-white",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Oatmeal\",\"hex\":\"#E4D0C0\",\"percentage\":22.4},{\"name\":\"Bone\",\"hex\":\"#E7D4C5\",\"percentage\":13.6},{\"name\":\"Linen\",\"hex\":\"#EEE0D5\",\"percentage\":11}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#E4D0C0",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "white",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-STRONG-WHITE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178689490995",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-109600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178689523763",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-109600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698998083635",
+          "title": "Sample",
+          "sku": "DWCC-109600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854460467",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sugar Plum",
+    "status": "ACTIVE",
+    "handle": "novasuede™-sugar-plum",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Pink\",\"hex\":\"#E298B7\",\"percentage\":14.4},{\"name\":\"Peony\",\"hex\":\"#D489A9\",\"percentage\":13.6},{\"name\":\"Rose\",\"hex\":\"#CD7B9E\",\"percentage\":11.3}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#E298B7",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "pink",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "contemporary",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-SUGAR-PLUM",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178694176819",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-116400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178694209587",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-116400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698998116403",
+          "title": "Sample",
+          "sku": "DWCC-116400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854493235",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sweet Lilac",
+    "status": "ACTIVE",
+    "handle": "novasuede™-sweet-lilac",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Heather\",\"hex\":\"#AA91B1\",\"percentage\":14.5},{\"name\":\"Wisteria\",\"hex\":\"#B8A1C0\",\"percentage\":14.5},{\"name\":\"Smoke\",\"hex\":\"#8F7596\",\"percentage\":9.5}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#AA91B1",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-SWEET-LILAC",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178694242355",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-116600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178694275123",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-116600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698998149171",
+          "title": "Sample",
+          "sku": "DWCC-116600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854526003",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Tan",
+    "status": "ACTIVE",
+    "handle": "novasuede™-tan",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Tan\",\"hex\":\"#D7AA86\",\"percentage\":18.5},{\"name\":\"Camel\",\"hex\":\"#CD9A70\",\"percentage\":13.2}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#D7AA86",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "tan",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-TAN",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178694406195",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-116800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178694438963",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-116800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698998181939",
+          "title": "Sample",
+          "sku": "DWCC-116800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854558771",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Tarragon",
+    "status": "ACTIVE",
+    "handle": "novasuede™-tarragon",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Olive\",\"hex\":\"#666A20\",\"percentage\":13.9},{\"name\":\"Brass\",\"hex\":\"#A6A953\",\"percentage\":13.7},{\"name\":\"Moss\",\"hex\":\"#919441\",\"percentage\":12.8},{\"name\":\"Khaki\",\"hex\":\"#B7B862\",\"percentage\":12.2},{\"name\":\"Chocolate\",\"hex\":\"#46480C\",\"percentage\":10.1}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#666A20",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-TARRAGON",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178694471731",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-117000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178694537267",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-117000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698998214707",
+          "title": "Sample",
+          "sku": "DWCC-117000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854591539",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Taupe",
+    "status": "ACTIVE",
+    "handle": "novasuede™-taupe",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Linen\",\"hex\":\"#EFE3D7\",\"percentage\":18},{\"name\":\"Bone\",\"hex\":\"#E6D4C5\",\"percentage\":17.9},{\"name\":\"Fawn\",\"hex\":\"#CAB3A2\",\"percentage\":8.7},{\"name\":\"Oatmeal\",\"hex\":\"#E1CFBE\",\"percentage\":8.6}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#EFE3D7",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "beige",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178694570035",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-117200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178694602803",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-117200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698998247475",
+          "title": "Sample",
+          "sku": "DWCC-117200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854624307",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Thyme",
+    "status": "ACTIVE",
+    "handle": "novasuede™-thyme",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Coffee\",\"hex\":\"#46492C\",\"percentage\":15.2},{\"name\":\"Chocolate\",\"hex\":\"#414427\",\"percentage\":14},{\"name\":\"Espresso\",\"hex\":\"#36391F\",\"percentage\":11.9},{\"name\":\"Ebony\",\"hex\":\"#282B15\",\"percentage\":9.4}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#46492C",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_units",
+          "value": "1",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178694733875",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-117400-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178694766643",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-117400-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698998280243",
+          "title": "Sample",
+          "sku": "DWCC-117400-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854657075",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Trench",
+    "status": "ACTIVE",
+    "handle": "novasuede™-trench",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Gray\",\"hex\":\"#8C7567\",\"percentage\":15.1},{\"name\":\"Bronze\",\"hex\":\"#877062\",\"percentage\":14.2},{\"name\":\"Taupe\",\"hex\":\"#9C8677\",\"percentage\":13.9},{\"name\":\"Mocha\",\"hex\":\"#826C5E\",\"percentage\":12.8},{\"name\":\"Moss\",\"hex\":\"#897365\",\"percentage\":12.4}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#8C7567",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "brown",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "contemporary",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-TRENCH",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178694799411",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-117600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178694832179",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-117600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698998313011",
+          "title": "Sample",
+          "sku": "DWCC-117600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7692854689843",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Vanilla",
+    "status": "ACTIVE",
+    "handle": "novasuede™-vanilla",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Beige\",\"hex\":\"#DAC9B5\",\"percentage\":18.3},{\"name\":\"Champagne\",\"hex\":\"#E8D5BD\",\"percentage\":14.1},{\"name\":\"Mushroom\",\"hex\":\"#BDA790\",\"percentage\":8.3},{\"name\":\"Ecru\",\"hex\":\"#D4C0AB\",\"percentage\":7.4}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#DAC9B5",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "beige",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-VANILLA",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178695127091",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-117800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178695159859",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-117800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/43698998345779",
+          "title": "Sample",
+          "sku": "DWCC-117800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7810413133875",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Putty",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-white-copy",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Putty\",\"hex\":\"#cdab83\",\"pct\":91},{\"name\":\"Camel\",\"hex\":\"#b89063\",\"pct\":9}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#CDAB83",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Cal 117-2013, NFPA 260, UFAC Class I",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_units",
+          "value": "1",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178689753139",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-110200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178689785907",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-110200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44170094444595",
+          "title": "Sample",
+          "sku": "DWCC-110200-SAMPLE-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7810424700979",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Straw",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-iceberg-copy",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Straw\",\"hex\":\"#f1c799\",\"pct\":80},{\"name\":\"Apricot\",\"hex\":\"#e2ae7d\",\"pct\":20}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#E5B789",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Cal 117-2013, NFPA 260, UFAC Class I",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_units",
+          "value": "1",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178693685299",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-116000-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178693718067",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-116000-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44170164109363",
+          "title": "Sample",
+          "sku": "DWCC-116000-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7810424864819",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Strong White",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-strong-white",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "background_color",
+          "value": "white",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Bone\",\"hex\":\"#ddd8d3\",\"pct\":93},{\"name\":\"Dove\",\"hex\":\"#c7bfb8\",\"pct\":7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#DDD8D3",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "pattern",
+          "value": "solid",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "style",
+          "value": "minimalist",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Cal 117-2013, NFPA 260, UFAC Class I",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178693750835",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-116200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178693816371",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-116200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44170164502579",
+          "title": "Sample",
+          "sku": "DWCC-116200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7811043164211",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Pistachio",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-pistachio",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Light Gray\",\"hex\":\"#CACEBF\",\"percentage\":17.5},{\"name\":\"Bone\",\"hex\":\"#DADDD2\",\"percentage\":16.5},{\"name\":\"Silver\",\"hex\":\"#C7CCBC\",\"percentage\":14},{\"name\":\"Dove Gray\",\"hex\":\"#C3C8B8\",\"percentage\":10.4},{\"name\":\"Ash\",\"hex\":\"#B0B6A3\",\"percentage\":7.7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#CACEBF",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_units",
+          "value": "1",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178688442419",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-109200-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178688540723",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-109200-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44172685180979",
+          "title": "Sample",
+          "sku": "DWCC-109200-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7811044311091",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Rosewater",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-rosewater",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Oatmeal\",\"hex\":\"#DECBC7\",\"percentage\":19.1},{\"name\":\"Linen\",\"hex\":\"#E8D9D6\",\"percentage\":17.1},{\"name\":\"Bone\",\"hex\":\"#E3D2CF\",\"percentage\":8.3},{\"name\":\"Greige\",\"hex\":\"#C8AEAA\",\"percentage\":7.7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#DECBC7",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_units",
+          "value": "1",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178690277427",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-110800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178690310195",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-110800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44172688064563",
+          "title": "Sample",
+          "sku": "DWCC-110800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7811046309939",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Safari",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-safari",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Sand\",\"hex\":\"#d5b69b\",\"pct\":91},{\"name\":\"Fawn\",\"hex\":\"#bb987b\",\"pct\":9}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#E3C4A9",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "5",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_units",
+          "value": "1",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "product_info",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Cal 117-2013, NFPA 260, UFAC Class I",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178650071091",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-111600-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178650103859",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-111600-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44172698189875",
+          "title": "Sample",
+          "sku": "DWCC-111600-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7811047948339",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Storm",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-storm",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Beige\",\"hex\":\"#cabda5\",\"pct\":44},{\"name\":\"Mushroom\",\"hex\":\"#b4a48a\",\"pct\":39},{\"name\":\"Taupe\",\"hex\":\"#9e8f73\",\"pct\":9},{\"name\":\"Linen\",\"hex\":\"#e2d6c2\",\"pct\":7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#D7CAB4",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Contents",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "description_tag",
+          "value": "Novasuede™ Fabric & Wallcovering is a premium synthetic faux suede designed for both residential and commercial interiors. Engineered for durability and performance, it offers the luxurious look and soft hand of genuine suede while providing superior stain resistance, cleanability, and color consistency. Ideal for wallcoverings, upholstery, panels, and high-traffic environments, Novasuede™ delivers a refined matte texture with excellent abrasion resistance. Available in a wide range of sophisticated colors, this versatile material is a go-to choice for designers seeking elevated style with practical performance.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Novasuede™ Fabric & Wallcovering - Synthetic Faux Suede ",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "weight",
+          "value": "8.85 oz/linear yard",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "mc-facebook",
+          "key": "google_product_category",
+          "value": "47",
+          "type": "string"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Cal 117-2013, NFPA 260, UFAC Class I",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Finish",
+          "value": "Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Cleaning-Code",
+          "value": "W-S",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "Wyzenbeek-#",
+          "value": "100,000+ Double Rubs",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "lead_time",
+          "value": "3-5 Business Days",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "backing",
+          "value": "Engineered Substrate",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_min",
+          "value": "10",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "v_prods_quantity_order_units",
+          "value": "1",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44178693586995",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-115800-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44178693619763",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-115800-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44172701368371",
+          "title": "Sample",
+          "sku": "DWCC-115800-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430095923",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Wheat",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-wheat",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3fdw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "WHEAT (T3FDW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "WHEAT (T3FDW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#CAAC87",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Wheat\",\"hex\":\"#bba17c\",\"pct\":84},{\"name\":\"Straw\",\"hex\":\"#daba92\",\"pct\":16}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#CAAC87",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "15.4",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Tan",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#DDBC94",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "15.2",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Sand",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#C0A480",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218990854195",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112370-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218996326451",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112370-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218990821427",
+          "title": "Sample",
+          "sku": "DWCC-112370-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430128691",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Woodland",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-woodland",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3H6W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "WOODLAND (T3H6W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "WOODLAND (T3H6W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#665D45",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Olive Drab\",\"hex\":\"#6b5f47\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#665D45",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "15.9",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Mocha",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#605740",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "12.5",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Umber",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":0.0,\"orange\":0.0,\"yellow\":0.1,\"green\":0.0,\"teal\":0.0,\"blue\":0.0,\"purple\":0.0,\"pink\":0.0,\"brown\":94.9,\"gold\":92.4,\"beige\":0.0,\"white\":0.0,\"black\":0.0,\"gray\":0.0}",
+          "type": "json"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218990919731",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112390-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218996391987",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112390-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218990886963",
+          "title": "Sample",
+          "sku": "DWCC-112390-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430161459",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Snow",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-snow",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3B3W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "SNOW (T3B3W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color",
+          "value": "Snow",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "sku",
+          "value": "DWCC-112400",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "type",
+          "value": "Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "SNOW (T3B3W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "value": "Novasuede™",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218990985267",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-805452-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218996424755",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-805452-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218990952499",
+          "title": "Sample",
+          "sku": "DWCC-805452-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430194227",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Amber",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-amber",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3Q8W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "AMBER (T3Q8W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "AMBER (T3Q8W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#D89154",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Amber\",\"hex\":\"#d99155\",\"pct\":60},{\"name\":\"Terracotta\",\"hex\":\"#b67841\",\"pct\":40}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#D89154",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "16.0",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Honey",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#BF7F47",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "15.7",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Caramel",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#C4834A",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218991050803",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112050-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995474483",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112050-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218991018035",
+          "title": "Sample",
+          "sku": "DWCC-112050-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430226995",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Blush Rose",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-blush-rose",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3rfw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "BLUSH ROSE (T3RFW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "BLUSH ROSE (T3RFW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#C6B1A0",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Blush\",\"hex\":\"#b6a495\",\"pct\":74},{\"name\":\"Beige\",\"hex\":\"#d7bfad\",\"pct\":26}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#C6B1A0",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "16.7",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Putty",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#DAC2B0",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "15.1",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Ecru",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#B6A495",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218991116339",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112060-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995507251",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112060-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218991083571",
+          "title": "Sample",
+          "sku": "DWCC-112060-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430292531",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Dusty Teal",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-dusty-teal",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3ngw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "DUSTY TEAL (T3NGW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "DUSTY TEAL (T3NGW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#415765",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Teal\",\"hex\":\"#425766\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#415765",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "20.8",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Gunmetal",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#2F4B5B",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "7.0",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Graphite",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":0.0,\"orange\":0.0,\"yellow\":0.0,\"green\":0.0,\"teal\":83.7,\"blue\":94.9,\"purple\":0.0,\"pink\":0.0,\"brown\":0.0,\"gold\":0.0,\"beige\":0.0,\"white\":0.0,\"black\":0.0,\"gray\":0.0}",
+          "type": "json"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218991575091",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112100-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995605555",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112100-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218991542323",
+          "title": "Sample",
+          "sku": "DWCC-112100-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430325299",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Verdigris",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-verdigris",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3nhw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "VERDIGRIS (T3NHW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "VERDIGRIS (T3NHW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#8DA69F",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Smoke\",\"hex\":\"#8da69f\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#8DA69F",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "19.2",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Steel",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#96ADA3",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "11.6",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Sage",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":0.0,\"orange\":0.0,\"yellow\":0.0,\"green\":45.8,\"teal\":76.1,\"blue\":0.0,\"purple\":0.0,\"pink\":0.0,\"brown\":0.0,\"gold\":0.0,\"beige\":0.0,\"white\":0.0,\"black\":0.0,\"gray\":59.3}",
+          "type": "json"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218991640627",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112350-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218996260915",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112350-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218991607859",
+          "title": "Sample",
+          "sku": "DWCC-112350-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430358067",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Winter White",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-winter-white",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3B2W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "WINTER WHITE (T3B2W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "WINTER WHITE (T3B2W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#DED7C2",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"White\",\"hex\":\"#d6cfbc\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#DED7C2",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "19.3",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Oatmeal",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#EBE0C9",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "16.4",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Bone",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#CDC9B6",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218991706163",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112380-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218996359219",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112380-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218991673395",
+          "title": "Sample",
+          "sku": "DWCC-112380-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430390835",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Bliss",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-bliss",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3Q7W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "BLISS (T3Q7W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "BLISS (T3Q7W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#E9CDB8",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Sand\",\"hex\":\"#cab4a1\",\"pct\":84},{\"name\":\"Petal\",\"hex\":\"#e6cbb6\",\"pct\":16}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#E9CDB8",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "15.0",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Beige",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#CAB4A1",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "14.9",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Fawn",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#D4BEA9",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218991771699",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112030-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995343411",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112030-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218991738931",
+          "title": "Sample",
+          "sku": "DWCC-112030-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430423603",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Blank Slate",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-blank-slate",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3L0W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "BLANK SLATE (T3L0W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "BLANK SLATE (T3L0W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#8B8981",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Slate\",\"hex\":\"#7e7e77\",\"pct\":87},{\"name\":\"Taupe\",\"hex\":\"#9c978d\",\"pct\":13}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#8B8981",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "16.8",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Smoke",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#9B968D",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "14.9",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Pewter",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#7F7F78",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218991837235",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112040-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995441715",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112040-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218991804467",
+          "title": "Sample",
+          "sku": "DWCC-112040-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430456371",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Colonial Blue",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-colonial-blue",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3C9W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "COLONIAL BLUE (T3C9W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "COLONIAL BLUE (T3C9W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#647086",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Blue\",\"hex\":\"#55647b\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#647086",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "16.3",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Slate Blue",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#4C5E75",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "15.4",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Gunmetal",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":0.0,\"orange\":0.0,\"yellow\":0.0,\"green\":0.0,\"teal\":0.1,\"blue\":93.4,\"purple\":0.0,\"pink\":0.0,\"brown\":0.0,\"gold\":0.0,\"beige\":0.0,\"white\":0.0,\"black\":0.0,\"gray\":0.0}",
+          "type": "json"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218991902771",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112080-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995540019",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112080-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218991870003",
+          "title": "Sample",
+          "sku": "DWCC-112080-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430489139",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Dusty Ranch",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-dusty-ranch",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3faw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "DUSTY RANCH (T3FAW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "DUSTY RANCH (T3FAW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#A78157",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Caramel\",\"hex\":\"#a78157\",\"pct\":85},{\"name\":\"Bronze\",\"hex\":\"#896942\",\"pct\":8},{\"name\":\"Camel\",\"hex\":\"#bf9466\",\"pct\":7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#A78157",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "15.3",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Caramel",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#BC9164",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "14.5",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Camel",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#96744C",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218991968307",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112090-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995572787",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112090-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218991935539",
+          "title": "Sample",
+          "sku": "DWCC-112090-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430521907",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Fire",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-fire",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3qaw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "FIRE (T3QAW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "FIRE (T3QAW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#B94F45",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Brick\",\"hex\":\"#a1433a\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#B94F45",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "17.8",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Paprika",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#AB4840",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "15.4",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Brick",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":100.0,\"orange\":0.0,\"yellow\":0.0,\"green\":0.0,\"teal\":0.0,\"blue\":0.0,\"purple\":0.0,\"pink\":0.0,\"brown\":0.2,\"gold\":0.0,\"beige\":0.0,\"white\":0.0,\"black\":0.0,\"gray\":0.0}",
+          "type": "json"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218992033843",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112110-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995638323",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112110-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218992001075",
+          "title": "Sample",
+          "sku": "DWCC-112110-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430554675",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Flagstone",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-flagstone",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3lkw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "FLAGSTONE (T3LKW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "FLAGSTONE (T3LKW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#B2B2AB",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Stone\",\"hex\":\"#b6b4ad\",\"pct\":93},{\"name\":\"Smoke\",\"hex\":\"#9c9d97\",\"pct\":7}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#B2B2AB",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "15.8",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Ash",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#C7C2BA",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "15.4",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Dove Gray",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#A7A8A2",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218992099379",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112120-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995671091",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112120-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218992066611",
+          "title": "Sample",
+          "sku": "DWCC-112120-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430587443",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Henna",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-henna",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3G3W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "HENNA (T3G3W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "HENNA (T3G3W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#9F6B52",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Pecan\",\"hex\":\"#93634b\",\"pct\":82},{\"name\":\"Clay\",\"hex\":\"#ae755a\",\"pct\":18}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#9F6B52",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "21.2",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Copper",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#B1775B",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "16.7",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Clay",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#93634B",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218992164915",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112130-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995703859",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112130-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218992132147",
+          "title": "Sample",
+          "sku": "DWCC-112130-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430620211",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Kiva",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-kiva",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3ecw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "KIVA (T3ECW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "KIVA (T3ECW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#ADA591",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Mushroom\",\"hex\":\"#aca490\",\"pct\":94},{\"name\":\"Sand\",\"hex\":\"#c7baa4\",\"pct\":6}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#ADA591",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "15.2",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Mushroom",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#C4B8A2",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "14.6",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Greige",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#A9A28E",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218992230451",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112140-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995736627",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112140-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218992197683",
+          "title": "Sample",
+          "sku": "DWCC-112140-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430652979",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Lipstick",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-lipstick",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3M4W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "LIPSTICK (T3M4W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "LIPSTICK (T3M4W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#9A393E",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Cranberry\",\"hex\":\"#923339\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#9A393E",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "16.9",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Ruby",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#A93F43",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "16.7",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Brick",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#892E35",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218992295987",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112150-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995769395",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112150-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218992263219",
+          "title": "Sample",
+          "sku": "DWCC-112150-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430718515",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Noir",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-noir",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3A2W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOIR (T3A2W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "NOIR (T3A2W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#242F34",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Onyx\",\"hex\":\"#263035\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#242F34",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "22.9",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Onyx",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#2C3338",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "10.5",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Charcoal",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#19282E",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218992525363",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112160-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995802163",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112160-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218992492595",
+          "title": "Sample",
+          "sku": "DWCC-112160-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430784051",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Opal",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-opal",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3pqw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "OPAL (T3PQW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "OPAL (T3PQW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#929C9D",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Smoke\",\"hex\":\"#939d9e\",\"pct\":65},{\"name\":\"Pewter\",\"hex\":\"#768487\",\"pct\":35}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#929C9D",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "17.9",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Steel",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#818E90",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "15.5",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Smoke",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#758487",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218992689203",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112170-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995834931",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112170-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218992656435",
+          "title": "Sample",
+          "sku": "DWCC-112170-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430816819",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Pastel Blue",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-pastel-blue",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3N0W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "PASTEL BLUE (T3N0W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "PASTEL BLUE (T3N0W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#BED2EB",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Blue\",\"hex\":\"#b1c6e0\",\"pct\":83},{\"name\":\"Powder Blue\",\"hex\":\"#ccdcf5\",\"pct\":17}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#BED2EB",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "16.2",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Powder Blue",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#A5BDD7",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "7.7",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Sky Blue",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":0.0,\"orange\":0.0,\"yellow\":0.0,\"green\":0.0,\"teal\":0.0,\"blue\":0.7,\"purple\":0.0,\"pink\":0.0,\"brown\":0.0,\"gold\":0.0,\"beige\":0.0,\"white\":2.6,\"black\":0.0,\"gray\":0.0}",
+          "type": "json"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218992754739",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112180-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995867699",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112180-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218992721971",
+          "title": "Sample",
+          "sku": "DWCC-112180-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430849587",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Pastel Pink",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-pastel-pink",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3R6W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "PASTEL PINK (T3R6W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "PASTEL PINK (T3R6W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#F7D9D7",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Pink\",\"hex\":\"#ecd0cf\",\"pct\":94},{\"name\":\"Chalk\",\"hex\":\"#fee7e3\",\"pct\":6}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#F7D9D7",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "16.2",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Petal",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#EBCFCE",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "14.1",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Blush",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#FEE5E2",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218992820275",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112190-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995900467",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112190-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218992787507",
+          "title": "Sample",
+          "sku": "DWCC-112190-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430882355",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Persimmon",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-persimmon",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3M8W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "PERSIMMON (T3M8W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color",
+          "value": "Salt Luxury Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "sku",
+          "value": "DWCC-112200",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "type",
+          "value": "Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "PERSIMMON (T3M8W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "value": "Novasuede™",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218992885811",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-99900-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995933235",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-99900-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218992853043",
+          "title": "Sample",
+          "sku": "DWCC-99900-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430915123",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Port Blue",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-port-blue",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3njw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "PORT BLUE (T3NJW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "PORT BLUE (T3NJW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#283440",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Blue\",\"hex\":\"#202f3b\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#283440",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "19.2",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Charcoal",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#25333E",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "15.1",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Midnight",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":0.0,\"orange\":0.0,\"yellow\":0.0,\"green\":0.0,\"teal\":7.2,\"blue\":95.9,\"purple\":0.0,\"pink\":0.0,\"brown\":0.0,\"gold\":0.0,\"beige\":0.0,\"white\":0.0,\"black\":10.1,\"gray\":0.0}",
+          "type": "json"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218992951347",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112210-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995966003",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112210-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218992918579",
+          "title": "Sample",
+          "sku": "DWCC-112210-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430947891",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Raisin",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-raisin",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3prw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "RAISIN (T3PRW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "RAISIN (T3PRW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#3C3B3E",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Onyx\",\"hex\":\"#2d3236\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#3C3B3E",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "16.9",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Charcoal",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#2A3034",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "11.7",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Onyx",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":0.0,\"orange\":0.0,\"yellow\":0.0,\"green\":0.0,\"teal\":4.3,\"blue\":1.1,\"purple\":0.0,\"pink\":0.0,\"brown\":0.0,\"gold\":0.0,\"beige\":0.0,\"white\":0.0,\"black\":37.1,\"gray\":62.9}",
+          "type": "json"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218993016883",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112240-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218995998771",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112240-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218992984115",
+          "title": "Sample",
+          "sku": "DWCC-112240-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821430980659",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Shale",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-shale",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3kdw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "SHALE (T3KDW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "SHALE (T3KDW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#665F55",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Loden\",\"hex\":\"#5f5b52\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#665F55",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "19.8",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Mocha",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#5F5B52",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "16.3",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Gunmetal",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#58554D",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218993082419",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112280-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218996064307",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112280-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218993049651",
+          "title": "Sample",
+          "sku": "DWCC-112280-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821431013427",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Spruce",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-spruce",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3pyw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "SPRUCE (T3PYW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "SPRUCE (T3PYW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#2C3A3A",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Ebony\",\"hex\":\"#2f3c3c\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#2C3A3A",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "18.0",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Charcoal",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#273636",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "12.6",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Onyx",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":0.0,\"orange\":0.0,\"yellow\":0.0,\"green\":5.6,\"teal\":96.6,\"blue\":0.0,\"purple\":0.0,\"pink\":0.0,\"brown\":0.0,\"gold\":0.0,\"beige\":0.0,\"white\":0.0,\"black\":13.9,\"gray\":17.1}",
+          "type": "json"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218993147955",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112290-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218996097075",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112290-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218993115187",
+          "title": "Sample",
+          "sku": "DWCC-112290-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821431046195",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Terracotta",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-terracotta",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3fcw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "TERRACOTTA (T3FCW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "TERRACOTTA (T3FCW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#A78966",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Terracotta\",\"hex\":\"#a78966\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#A78966",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "17.2",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Brass",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#B4926C",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "15.0",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Camel",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#9D8260",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218993213491",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112310-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218996129843",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112310-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218993180723",
+          "title": "Sample",
+          "sku": "DWCC-112310-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821431078963",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sedona",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-sedona",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3Q9W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "SEDONA (T3Q9W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "SEDONA (T3Q9W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#B25C4C",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Rust\",\"hex\":\"#a85648\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#B25C4C",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "17.0",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Copper",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#AA594A",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "16.2",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Sienna",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#BF6552",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218993279027",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112270-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218996031539",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112270-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218993246259",
+          "title": "Sample",
+          "sku": "DWCC-112270-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821431111731",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Thistle",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-thistle",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3pmw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "THISTLE (T3PMW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "THISTLE (T3PMW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#3F3D43",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Ebony\",\"hex\":\"#34353a\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#3F3D43",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "20.0",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Charcoal",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#2C2F35",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "9.8",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Onyx",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":0.0,\"orange\":0.0,\"yellow\":0.0,\"green\":0.0,\"teal\":0.1,\"blue\":0.5,\"purple\":0.1,\"pink\":0.0,\"brown\":0.0,\"gold\":0.0,\"beige\":0.0,\"white\":0.0,\"black\":19.7,\"gray\":76.6}",
+          "type": "json"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218993344563",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112320-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218996162611",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112320-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218993311795",
+          "title": "Sample",
+          "sku": "DWCC-112320-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821431144499",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Tusk",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-tusk",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3djw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "TUSK (T3DJW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "TUSK (T3DJW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#E2D8C7",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Cream\",\"hex\":\"#eee0ce\",\"pct\":94},{\"name\":\"Oatmeal\",\"hex\":\"#d2cabb\",\"pct\":6}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#E2D8C7",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "19.1",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Bone",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#EFE1CF",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "14.0",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Linen",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#DBD1C1",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218993410099",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112330-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218996195379",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112330-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218993377331",
+          "title": "Sample",
+          "sku": "DWCC-112330-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821431177267",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Umber",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-umber",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3G4W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "UMBER (T3G4W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "UMBER (T3G4W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#6C4E44",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Cocoa\",\"hex\":\"#664b40\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#6C4E44",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "23.3",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Umber",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#765549",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "16.0",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Mocha",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#654940",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218993475635",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112340-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218996228147",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112340-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218993442867",
+          "title": "Sample",
+          "sku": "DWCC-112340-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821431210035",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Vermilion",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-vermilion",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3mbw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "VERMILION (T3MBW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "VERMILION (T3MBW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#943940",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Brick\",\"hex\":\"#953940\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#943940",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "16.9",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Ruby",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#87353C",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "16.0",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Garnet",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":99.7,\"orange\":0.0,\"yellow\":0.0,\"green\":0.0,\"teal\":0.0,\"blue\":0.0,\"purple\":0.0,\"pink\":0.2,\"brown\":0.0,\"gold\":0.0,\"beige\":0.0,\"white\":0.0,\"black\":0.0,\"gray\":0.0}",
+          "type": "json"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218993541171",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112360-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218996293683",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112360-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218993508403",
+          "title": "Sample",
+          "sku": "DWCC-112360-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821432520755",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Cement",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-cement",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3law",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "CEMENT (T3LAW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "CEMENT (T3LAW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#9FA1A4",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Smoke\",\"hex\":\"#93979a\",\"pct\":84},{\"name\":\"Fog\",\"hex\":\"#adaeb0\",\"pct\":16}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#9FA1A4",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "15.4",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Heather",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#AFB0B2",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "15.0",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Ash",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#93979A",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218997211187",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112070-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218997243955",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112070-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218997178419",
+          "title": "Sample",
+          "sku": "DWCC-112070-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821432553523",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Pink Lace",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-pink-lace",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3rcw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "PINK LACE (T3RCW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "PINK LACE (T3RCW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#ECE3E9",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Pink\",\"hex\":\"#e0dbe2\",\"pct\":87},{\"name\":\"White\",\"hex\":\"#faeff3\",\"pct\":13}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#ECE3E9",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "16.5",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Chalk",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#FAEEF2",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "14.7",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Off White",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#E0DBE2",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218997309491",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112220-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218997342259",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112220-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218997276723",
+          "title": "Sample",
+          "sku": "DWCC-112220-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7821432586291",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Royal Blue",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-royal-blue",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3ccw",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "ROYAL BLUE (T3CCW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "material_type",
+          "value": "100% Polyester Microfiber Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "width",
+          "value": "53-54 inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "weight",
+          "value": "8.85 oz/yd",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specs",
+          "key": "ai_rooms_note",
+          "value": "Room Settings may not be to scale. Please inquire to verify repeats.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "ROYAL BLUE (T3CCW)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#2D3B5C",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Royal Blue\",\"hex\":\"#2d3b5c\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#2D3B5C",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "17.7",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Navy",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#3C4365",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "15.2",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Indigo",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":0.0,\"orange\":0.0,\"yellow\":0.0,\"green\":0.0,\"teal\":0.0,\"blue\":100.0,\"purple\":0.0,\"pink\":0.0,\"brown\":0.0,\"gold\":0.0,\"beige\":0.0,\"white\":0.0,\"black\":0.0,\"gray\":0.0}",
+          "type": "json"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44218997407795",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112230-Per Yard",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218997440563",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112230-Per Yard Wallcovering with Backing",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44218997375027",
+          "title": "Sample",
+          "sku": "DWCC-112230-Sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7867431649331",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Satin",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-satin",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#242F34",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Onyx",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "22.9",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#2C3338",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Charcoal",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "10.5",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#19282E",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_name",
+          "value": "Ink",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_percentage",
+          "value": "7.0",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Beige\",\"hex\":\"#c9baa9\",\"pct\":51},{\"name\":\"Oatmeal\",\"hex\":\"#d8cec1\",\"pct\":40},{\"name\":\"Fawn\",\"hex\":\"#ae9a84\",\"pct\":9}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#242F34",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":0.0,\"orange\":0.0,\"yellow\":0.0,\"green\":0.0,\"teal\":94.5,\"blue\":18.2,\"purple\":0.0,\"pink\":0.0,\"brown\":0.0,\"gold\":0.0,\"beige\":0.0,\"white\":0.0,\"black\":92.9,\"gray\":2.9}",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOIR (T3A2W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3A2W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "NOIR (T3A2W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "36 Inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44462213627955",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-118200",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44462213660723",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-118200-WC",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44462213595187",
+          "title": "Sample",
+          "sku": "DWCC-118200-SAMPLE",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7867477229619",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Abyss",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-abyss",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#242F34",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Onyx",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "22.9",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#2C3338",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Charcoal",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "10.5",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#19282E",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_name",
+          "value": "Ink",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_percentage",
+          "value": "7.0",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Graphite\",\"hex\":\"#505050\",\"pct\":55},{\"name\":\"Flint\",\"hex\":\"#6d6d6c\",\"pct\":35},{\"name\":\"Black\",\"hex\":\"#27282a\",\"pct\":10}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#242F34",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":0.0,\"orange\":0.0,\"yellow\":0.0,\"green\":0.0,\"teal\":94.5,\"blue\":18.2,\"purple\":0.0,\"pink\":0.0,\"brown\":0.0,\"gold\":0.0,\"beige\":0.0,\"white\":0.0,\"black\":92.9,\"gray\":2.9}",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOIR (T3A2W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3A2W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "NOIR (T3A2W)",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "global",
+          "key": "width",
+          "value": "36 Inches",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "specifications",
+          "key": "durability",
+          "value": "100,000+ Double Rubs Wyzenbeek",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44462359380019",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-118100",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44462359412787",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-118100-WC",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44462359347251",
+          "title": "Sample",
+          "sku": "DWCC-118100-SAMPLE",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7922373754931",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Aegean",
+    "status": "ACTIVE",
+    "handle": "novasuede™-mist-luxury-suede-copy",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "52-54\" wide",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "reorder_status",
+          "value": "Not being reordered",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44750680522803",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-118300",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44750680555571",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-118300",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44750680490035",
+          "title": "Sample",
+          "sku": "DWCC-118300",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7922409406515",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Aqua",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-umber-copy",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#6C4E44",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Umber",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "23.3",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#765549",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Mocha",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "16.0",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#654940",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_name",
+          "value": "Coffee",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_percentage",
+          "value": "13.2",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Cocoa\",\"hex\":\"#664b40\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#6C4E44",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_normalized_at",
+          "value": "2026-07-28T15:44:25Z",
+          "type": "date_time"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_palette",
+          "value": "[{\"hex\":\"#6C4E44\",\"pct\":100.0}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":99.9,\"orange\":0.1,\"yellow\":0.0,\"green\":0.0,\"teal\":0.0,\"blue\":0.0,\"purple\":0.0,\"pink\":0.0,\"brown\":100.0,\"gold\":0.0,\"beige\":0.0,\"white\":0.0,\"black\":0.0,\"gray\":0.0}",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "AQUA t3n2w",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material_category",
+          "value": "Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "product_class",
+          "value": "Fabric",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3G4W",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44750735835187",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-112300",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44750735867955",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-112300",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44750735802419",
+          "title": "Sample",
+          "sku": "DWCC-112300-SAMPLE",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7922411077683",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Flame",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-flame",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#6C4E44",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Umber",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "23.3",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#765549",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Mocha",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "16.0",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#654940",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_name",
+          "value": "Coffee",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_percentage",
+          "value": "13.2",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Cocoa\",\"hex\":\"#664b40\",\"pct\":100}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#6C4E44",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_normalized_at",
+          "value": "2026-07-28T15:44:25Z",
+          "type": "date_time"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_palette",
+          "value": "[{\"hex\":\"#6C4E44\",\"pct\":100.0}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":99.9,\"orange\":0.1,\"yellow\":0.0,\"green\":0.0,\"teal\":0.0,\"blue\":0.0,\"purple\":0.0,\"pink\":0.0,\"brown\":100.0,\"gold\":0.0,\"beige\":0.0,\"white\":0.0,\"black\":0.0,\"gray\":0.0}",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "AQUA t3n2w",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material_category",
+          "value": "Suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "product_class",
+          "value": "Fabric",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_name",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "vendor_sku",
+          "value": "T3G4W",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44750738718771",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-118400",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44750738751539",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-118400",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44750738686003",
+          "title": "Sample",
+          "sku": "DWCC-118400-sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7923064930355",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sand",
+    "status": "ACTIVE",
+    "handle": "novasuede™-sand",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#D18D65",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Camel",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "17.5",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#E7AB89",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Apricot",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "15.2",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#BF7A54",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_name",
+          "value": "Clay",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_percentage",
+          "value": "9.3",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Camel\",\"hex\":\"#D18D65\",\"percentage\":17.5},{\"name\":\"Apricot\",\"hex\":\"#E7AB89\",\"percentage\":15.2},{\"name\":\"Clay\",\"hex\":\"#BF7A54\",\"percentage\":9.3}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#D18D65",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "cov_orange",
+          "value": "94.4",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":93.0,\"orange\":94.4,\"yellow\":0.0,\"green\":0.0,\"teal\":0.0,\"blue\":0.0,\"purple\":0.0,\"pink\":0.0,\"brown\":0.0,\"gold\":0.0,\"beige\":0.0,\"white\":0.0,\"black\":0.0,\"gray\":0.0}",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "T3D8W",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_id",
+          "value": "novasuede::t2::novasuede sandalwood luxury suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753268703283",
+          "title": "Sample",
+          "sku": "DWCC-118500-SAMPLE",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753268736051",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-118500",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753268768819",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-118500",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7924270497843",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Gentle Pine",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-gentle-pine",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#D18D65",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Camel",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "17.5",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#E7AB89",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Apricot",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "15.2",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#BF7A54",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_name",
+          "value": "Clay",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_percentage",
+          "value": "9.3",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_details",
+          "value": "[{\"name\":\"Camel\",\"hex\":\"#D18D65\",\"percentage\":17.5},{\"name\":\"Apricot\",\"hex\":\"#E7AB89\",\"percentage\":15.2},{\"name\":\"Clay\",\"hex\":\"#BF7A54\",\"percentage\":9.3}]",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#D18D65",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "cov_orange",
+          "value": "94.4",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "Inquire for more Information",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "hue_coverage",
+          "value": "{\"red\":93.0,\"orange\":94.4,\"yellow\":0.0,\"green\":0.0,\"teal\":0.0,\"blue\":0.0,\"purple\":0.0,\"pink\":0.0,\"brown\":0.0,\"gold\":0.0,\"beige\":0.0,\"white\":0.0,\"black\":0.0,\"gray\":0.0}",
+          "type": "json"
+        },
+        {
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "NOVASUEDE™-RED",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "material",
+          "value": "100% Nylon Fiber Matrix",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_id",
+          "value": "novasuede::t2::novasuede sandalwood luxury suede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Novasuede™ Fabric & Wallcovering",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "53-54\" (134-137 cm)",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44757222555699",
+          "title": "Sample",
+          "sku": "DWCC-118600-SAMPLE",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44757222588467",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-118600",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44757222621235",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-118600",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7930350403635",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Imperial Plum",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-imperial-plum",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "reorder_status",
+          "value": "Not being reordered",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "52-54\" wide",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44772359438387",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-118700",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44772359471155",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-118700",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44772359503923",
+          "title": "Sample",
+          "sku": "DWCC-118700-sample",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7930373603379",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sunset",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-sunset",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "reorder_status",
+          "value": "Not being reordered",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "52-54\" wide",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44772531601459",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-118800",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44772531634227",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-118800",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44772531666995",
+          "title": "Sample",
+          "sku": "DWCC-118800-SAMPLE",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7930379632691",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Crimson",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-crimson",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "reorder_status",
+          "value": "Not being reordered",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "52-54\" wide",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44772577214515",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-118900",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44772577247283",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-118900",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44772577280051",
+          "title": "Sample",
+          "sku": "DWCC-118900-SAMPLE",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7930390347827",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Claret",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-claret",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "custom",
+          "key": "reorder_status",
+          "value": "Not being reordered",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "width",
+          "value": "52-54\" wide",
+          "type": "single_line_text_field"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44772604313651",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-119000",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44772604346419",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-119000",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44772604379187",
+          "title": "Sample",
+          "sku": "DWCC-119000-SAMPLE",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": []
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "gid://shopify/Product/7930575454259",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Rosetta",
+    "status": "ACTIVE",
+    "handle": "novasuede™-fabric-wallcovering-luxury-faux-suede-rosetta",
+    "vendor": "Novasuede",
+    "metafields": {
+      "nodes": [
+        {
+          "namespace": "applications",
+          "key": "commercial",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "healthcare",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "hospitality",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "residential",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "upholstery",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "applications",
+          "key": "wallcovering",
+          "value": "true",
+          "type": "boolean"
+        },
+        {
+          "namespace": "care",
+          "key": "cleaning_method",
+          "value": "Vacuum regularly. Spot clean with mild soap and water. Professional cleaning recommended for heavy soiling.",
+          "type": "multi_line_text_field"
+        },
+        {
+          "namespace": "care",
+          "key": "maintenance",
+          "value": "Low maintenance. Durable and long-lasting.",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "color",
+          "key": "collection",
+          "value": "Novasuede™ Microfiber Suede Collection",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "color",
+          "key": "color_name",
+          "value": "Celery",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Novasuede",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_hex",
+          "value": "#9C9B62",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_name",
+          "value": "Brass",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_1_percentage",
+          "value": "16.7",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_hex",
+          "value": "#ABAB71",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_name",
+          "value": "Khaki",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_2_percentage",
+          "value": "15.1",
+          "type": "number_decimal"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_hex",
+          "value": "#8A8A52",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_name",
+          "value": "Moss",
+          "type": "single_line_text_field"
+        },
+        {
+          "namespace": "custom",
+          "key": "color_3_percentage",
+          "value": "14.7",
+          "type": "number_decimal"
+        }
+      ]
+    },
+    "variants": {
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44773500780595",
+          "title": "Sold Per Yard (5 yd min)",
+          "sku": "DWCC-119010",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "5",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44773500813363",
+          "title": "Wallcovering (10 yd min)",
+          "sku": "DWCC-119010",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "10",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44773500846131",
+          "title": "Sample",
+          "sku": "DWCC-119010-SAMPLE",
+          "inventoryPolicy": "CONTINUE",
+          "inventoryItem": {
+            "tracked": true
+          },
+          "metafields": {
+            "nodes": [
+              {
+                "namespace": "custom",
+                "key": "v_prods_quantity_order_units",
+                "value": "1",
+                "type": "single_line_text_field"
+              },
+              {
+                "namespace": "custom",
+                "key": "v_prod_quantity_order_min",
+                "value": "1",
+                "type": "single_line_text_field"
+              }
+            ]
+          }
+        }
+      ]
+    }
+  }
+]
\ No newline at end of file
diff --git a/plan.mjs b/plan.mjs
new file mode 100644
index 0000000..4a1d9a7
--- /dev/null
+++ b/plan.mjs
@@ -0,0 +1,28 @@
+import fs from 'fs';
+const all = JSON.parse(fs.readFileSync('live-novasuede.json','utf8'));
+const changes=[]; // {productId,title, prodMin_old,prodMin_new, perYardVariantId, perYardMin_old, perYardMin_new}
+for(const p of all){
+  const pm = p.metafields.nodes.find(m=>m.namespace==='global'&&m.key==='v_prods_quantity_order_min');
+  const prodMinOld = pm?pm.value:null;
+  const perYard = p.variants.nodes.find(v=>/Per Yard \(5 yd min\)/.test(v.title) || (/^Sold Per Yard/.test(v.title)));
+  const vm = perYard? perYard.metafields.nodes.find(m=> m.namespace==='custom' && (m.key==='v_prod_quantity_order_min')) : null;
+  const vMinOld = vm?vm.value:null;
+  const needProd = prodMinOld !== '5';
+  const needVar  = perYard && vMinOld !== '5';
+  if(needProd || needVar){
+    changes.push({
+      productId:p.id, title:p.title, handle:p.handle,
+      prodMin_old:prodMinOld, prodMin_new: needProd?'5':prodMinOld, prodMin_change:needProd,
+      perYardVariantId: perYard?perYard.id:null, perYardSku: perYard?perYard.sku:null,
+      perYardMin_old:vMinOld, perYardMin_new: needVar?'5':vMinOld, perYardMin_change:needVar
+    });
+  }
+}
+fs.writeFileSync('restore-map.json', JSON.stringify(changes,null,2));
+console.log('Products needing ANY change:', changes.length);
+console.log('  product-level min changes:', changes.filter(c=>c.prodMin_change).length);
+console.log('  per-yard variant min changes:', changes.filter(c=>c.perYardMin_change).length);
+console.log('  already fully correct (no change):', all.length-changes.length);
+// sanity: is Salt in the list?
+const salt=changes.find(c=>/salt/i.test(c.title));
+console.log('\nSalt entry:', JSON.stringify(salt));
diff --git a/recheck.mjs b/recheck.mjs
new file mode 100644
index 0000000..1be38e3
--- /dev/null
+++ b/recheck.mjs
@@ -0,0 +1,17 @@
+import fs from 'fs';
+const env=fs.readFileSync(process.env.HOME+'/Projects/secrets-manager/.env','utf8');
+const get=k=>(env.match(new RegExp('^'+k+'=(.*)$','m'))||[])[1];
+const TOKEN=get('SHOPIFY_ADMIN_TOKEN');
+const API='https://designer-laboratory-sandbox.myshopify.com/admin/api/2024-10/graphql.json';
+async function gql(q,v={}){for(let a=0;a<5;a++){const r=await fetch(API,{method:'POST',headers:{'X-Shopify-Access-Token':TOKEN,'Content-Type':'application/json'},body:JSON.stringify({query:q,variables:v})});const j=await r.json();if(j.data&&j.data.products)return j;await new Promise(x=>setTimeout(x,2000));}throw new Error('fail');}
+// use direct metafield lookup by identifier instead of paging metafields
+let cursor=null, all=[], notFive=[];
+do{
+  const j=await gql(`query($c:String){products(first:40,after:$c,query:"vendor:Novasuede status:active"){pageInfo{hasNextPage endCursor} nodes{id title
+    mf: metafield(namespace:"global", key:"v_prods_quantity_order_min"){value}}}}`,{c:cursor});
+  const d=j.data; all.push(...d.products.nodes); cursor=d.products.pageInfo.hasNextPage?d.products.pageInfo.endCursor:null;
+}while(cursor);
+let five=0;
+for(const p of all){ if(p.mf&&p.mf.value==='5')five++; else notFive.push({title:p.title,val:p.mf?p.mf.value:'(null)'}); }
+console.log('TOTAL:',all.length,' product-level min=5:',five,' NOT 5:',notFive.length);
+console.log(notFive.slice(0,10));
diff --git a/restore-map.json b/restore-map.json
new file mode 100644
index 0000000..f7e7b92
--- /dev/null
+++ b/restore-map.json
@@ -0,0 +1,1744 @@
+[
+  {
+    "productId": "gid://shopify/Product/7692849971251",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Acorn",
+    "handle": "novasuede™-acorn",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178677399603",
+    "perYardSku": "DWCC-90000-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850004019",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Adobe",
+    "handle": "novasuede™-adobe",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178677497907",
+    "perYardSku": "DWCC-90200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850036787",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - African Violet",
+    "handle": "novasuede™-african-violet",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178677760051",
+    "perYardSku": "DWCC-90400-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850069555",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Apricot",
+    "handle": "novasuede™-apricot",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178678054963",
+    "perYardSku": "DWCC-90600-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850135091",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Arrow Wood",
+    "handle": "novasuede™-arrow-wood",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178678120499",
+    "perYardSku": "DWCC-90800-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850167859",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Aubergine",
+    "handle": "novasuede™-aubergine",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178678186035",
+    "perYardSku": "DWCC-91000-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850200627",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Baltic",
+    "handle": "novasuede™-baltic",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178678349875",
+    "perYardSku": "DWCC-91200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850233395",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Beige",
+    "handle": "novasuede™-beige",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178678415411",
+    "perYardSku": "DWCC-91400-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850266163",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Biscuit",
+    "handle": "novasuede™-biscuit",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178678480947",
+    "perYardSku": "DWCC-91600-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850331699",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Bluestone",
+    "handle": "novasuede™-bluestone",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178678677555",
+    "perYardSku": "DWCC-92000-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850364467",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Blush Pink",
+    "handle": "novasuede™-blush-pink",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178678743091",
+    "perYardSku": "DWCC-92200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850397235",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Bone",
+    "handle": "novasuede™-bone",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178678808627",
+    "perYardSku": "DWCC-92400-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850430003",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Brown",
+    "handle": "novasuede™-brown",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178678939699",
+    "perYardSku": "DWCC-92600-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850462771",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Buff",
+    "handle": "novasuede™-buff",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178679038003",
+    "perYardSku": "DWCC-92800-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850495539",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Buttercup",
+    "handle": "novasuede™-buttercup",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178679234611",
+    "perYardSku": "DWCC-93000-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850528307",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Cane",
+    "handle": "novasuede™-cane",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178679332915",
+    "perYardSku": "DWCC-93200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850561075",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Carbon",
+    "handle": "novasuede™-carbon",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178679431219",
+    "perYardSku": "DWCC-93400-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850593843",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Cashew",
+    "handle": "novasuede™-cashew",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178679496755",
+    "perYardSku": "DWCC-93600-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850626611",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Cashmere",
+    "handle": "novasuede™-cashmere",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178633687091",
+    "perYardSku": "DWCC-93800-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850659379",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Celadon",
+    "handle": "novasuede™-celadon",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178679562291",
+    "perYardSku": "DWCC-94000-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850692147",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Celery",
+    "handle": "novasuede™-celery",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178679627827",
+    "perYardSku": "DWCC-94200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850724915",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Champagne",
+    "handle": "novasuede™-champagne",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178679791667",
+    "perYardSku": "DWCC-94400-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850757683",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - China Blue",
+    "handle": "novasuede™-china-blue",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178679857203",
+    "perYardSku": "DWCC-94600-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850823219",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Cinder",
+    "handle": "novasuede™-cinder",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178680053811",
+    "perYardSku": "DWCC-95000-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692850855987",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Cloud",
+    "handle": "novasuede™-cloud",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178680119347",
+    "perYardSku": "DWCC-95200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692851216435",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Dusty Rose",
+    "handle": "novasuede™-dusty-rose",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178681036851",
+    "perYardSku": "DWCC-97200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692851281971",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Fawn",
+    "handle": "novasuede™-fawn",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178681233459",
+    "perYardSku": "DWCC-97600-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7692851413043",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Gelato",
+    "handle": "novasuede™-gelato",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178682052659",
+    "perYardSku": "DWCC-98400-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692851642419",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Green Marble",
+    "handle": "novasuede™-green-marble",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178682445875",
+    "perYardSku": "DWCC-99800-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692851707955",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Harvest",
+    "handle": "novasuede™-harvest",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44473676169267",
+    "perYardSku": "DWCC-100200-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7692851871795",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Ivory",
+    "handle": "novasuede™-ivory",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178682871859",
+    "perYardSku": "DWCC-101200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692851937331",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Java",
+    "handle": "novasuede™-java",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44473676726323",
+    "perYardSku": "DWCC-101600-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7692852232243",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Linen",
+    "handle": "novasuede™-linen",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178683265075",
+    "perYardSku": "DWCC-103200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692852396083",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Royal Purple",
+    "handle": "novasuede™-mauve",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178690408499",
+    "perYardSku": "DWCC-111000-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692852428851",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Meadow",
+    "handle": "novasuede™-meadow",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178683854899",
+    "perYardSku": "DWCC-104400-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692852494387",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Milk",
+    "handle": "novasuede™-milk",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178684575795",
+    "perYardSku": "DWCC-104800-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692852625459",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Misty Dew",
+    "handle": "novasuede™-misty-dew",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178685362227",
+    "perYardSku": "DWCC-105600-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692852658227",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Mocha",
+    "handle": "novasuede™-mocha",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44473676791859",
+    "perYardSku": "DWCC-105800-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7692852822067",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Nutmeg",
+    "handle": "novasuede™-nutmeg",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44473676857395",
+    "perYardSku": "DWCC-106800-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7692852854835",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Ocean",
+    "handle": "novasuede™-ocean",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44473676922931",
+    "perYardSku": "DWCC-107000-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7692852887603",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Olive",
+    "handle": "novasuede™-olive",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178685788211",
+    "perYardSku": "DWCC-107200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692852953139",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Oyster",
+    "handle": "novasuede™-oyster",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178685919283",
+    "perYardSku": "DWCC-107600-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692852985907",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Pale Green",
+    "handle": "novasuede™-pale-green",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178685984819",
+    "perYardSku": "DWCC-107800-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853018675",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Passion Blue",
+    "handle": "novasuede™-passion-blue",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178686443571",
+    "perYardSku": "DWCC-108000-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853051443",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Peach",
+    "handle": "novasuede™-peach",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178687852595",
+    "perYardSku": "DWCC-108200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853084211",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Pebble",
+    "handle": "novasuede™-pebble",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178687918131",
+    "perYardSku": "DWCC-108400-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853116979",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Peppermint",
+    "handle": "novasuede™-peppermint",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178687983667",
+    "perYardSku": "DWCC-108600-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853149747",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Peridot",
+    "handle": "novasuede™-peridot",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178688081971",
+    "perYardSku": "DWCC-108800-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853182515",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Periwinkle",
+    "handle": "novasuede™-periwinkle",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44473676988467",
+    "perYardSku": "DWCC-109000-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7692853248051",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Plum Pleasure",
+    "handle": "novasuede™-plum-pleasure",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178689425459",
+    "perYardSku": "DWCC-109400-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853313587",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Powder Grey",
+    "handle": "novasuede™-powder-grey",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178689622067",
+    "perYardSku": "DWCC-109800-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853346355",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Prairie",
+    "handle": "novasuede™-prairie",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178689687603",
+    "perYardSku": "DWCC-110000-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853444659",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sandalwood",
+    "handle": "novasuede™-red",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178690998323",
+    "perYardSku": "DWCC-112600-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853575731",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Ruby",
+    "handle": "novasuede™-ruby",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178690474035",
+    "perYardSku": "DWCC-111200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853608499",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sable",
+    "handle": "novasuede™-sable",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178690539571",
+    "perYardSku": "DWCC-111400-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853674035",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Saffron",
+    "handle": "novasuede™-saffron",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178690670643",
+    "perYardSku": "DWCC-111800-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853706803",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sage",
+    "handle": "novasuede™-sage",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178690768947",
+    "perYardSku": "DWCC-112000-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853739571",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Salt",
+    "handle": "novasuede™-salt",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178690867251",
+    "perYardSku": "DWCC-112200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853837875",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Scarlet Wine",
+    "handle": "novasuede™-scarlet-wine",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178691555379",
+    "perYardSku": "DWCC-112800-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853870643",
+    "title": "Novasuede™ Fabric & Wallcovering  Luxury Faux Suede - Sea Blue",
+    "handle": "novasuede™-sea-blue",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178691751987",
+    "perYardSku": "DWCC-113000-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853903411",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sea Grass",
+    "handle": "novasuede™-sea-grass",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178691915827",
+    "perYardSku": "DWCC-113400-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853936179",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sea Breeze",
+    "handle": "novasuede™-sea-breeze",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178691850291",
+    "perYardSku": "DWCC-113200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692853968947",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Seafoam",
+    "handle": "novasuede™-seafoam",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178692112435",
+    "perYardSku": "DWCC-113600-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854034483",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sienna",
+    "handle": "novasuede™-sienna",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178692472883",
+    "perYardSku": "DWCC-113800-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854100019",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sky Blue",
+    "handle": "novasuede™-sky-blue",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178692735027",
+    "perYardSku": "DWCC-114200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854132787",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Smoke",
+    "handle": "novasuede™-smoke",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178692833331",
+    "perYardSku": "DWCC-114400-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854165555",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Soft Clay",
+    "handle": "novasuede™-soft-clay",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178692931635",
+    "perYardSku": "DWCC-114600-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854198323",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Solar Yellow",
+    "handle": "novasuede™-solar-yellow",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178692997171",
+    "perYardSku": "DWCC-114800-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854263859",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Steel",
+    "handle": "novasuede™-steel",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178693161011",
+    "perYardSku": "DWCC-115200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854296627",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Stone Grey",
+    "handle": "novasuede™-stone-grey",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178693259315",
+    "perYardSku": "DWCC-115400-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854329395",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Stone Taupe",
+    "handle": "novasuede™-stone-taupe",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178693521459",
+    "perYardSku": "DWCC-115600-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854394931",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Raffia",
+    "handle": "novasuede™-straw",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178690146355",
+    "perYardSku": "DWCC-110400-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854427699",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Porcelain",
+    "handle": "novasuede™-strong-white",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178689490995",
+    "perYardSku": "DWCC-109600-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854460467",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sugar Plum",
+    "handle": "novasuede™-sugar-plum",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178694176819",
+    "perYardSku": "DWCC-116400-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854493235",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sweet Lilac",
+    "handle": "novasuede™-sweet-lilac",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178694242355",
+    "perYardSku": "DWCC-116600-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854526003",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Tan",
+    "handle": "novasuede™-tan",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178694406195",
+    "perYardSku": "DWCC-116800-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854558771",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Tarragon",
+    "handle": "novasuede™-tarragon",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178694471731",
+    "perYardSku": "DWCC-117000-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854591539",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Taupe",
+    "handle": "novasuede™-taupe",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178694570035",
+    "perYardSku": "DWCC-117200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854624307",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Thyme",
+    "handle": "novasuede™-thyme",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178694733875",
+    "perYardSku": "DWCC-117400-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854657075",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Trench",
+    "handle": "novasuede™-trench",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178694799411",
+    "perYardSku": "DWCC-117600-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7692854689843",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Vanilla",
+    "handle": "novasuede™-vanilla",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178695127091",
+    "perYardSku": "DWCC-117800-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7810413133875",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Putty",
+    "handle": "novasuede™-fabric-wallcovering-white-copy",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178689753139",
+    "perYardSku": "DWCC-110200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7810424700979",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Straw",
+    "handle": "novasuede™-fabric-wallcovering-iceberg-copy",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178693685299",
+    "perYardSku": "DWCC-116000-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7810424864819",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Strong White",
+    "handle": "novasuede™-fabric-wallcovering-strong-white",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178693750835",
+    "perYardSku": "DWCC-116200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7811043164211",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Pistachio",
+    "handle": "novasuede™-fabric-wallcovering-pistachio",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178688442419",
+    "perYardSku": "DWCC-109200-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7811044311091",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Rosewater",
+    "handle": "novasuede™-fabric-wallcovering-rosewater",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178690277427",
+    "perYardSku": "DWCC-110800-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7811047948339",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Storm",
+    "handle": "novasuede™-fabric-wallcovering-storm",
+    "prodMin_old": "10",
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44178693586995",
+    "perYardSku": "DWCC-115800-Per Yard",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7821430095923",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Wheat",
+    "handle": "novasuede™-fabric-wallcovering-wheat",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218990854195",
+    "perYardSku": "DWCC-112370-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430128691",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Woodland",
+    "handle": "novasuede™-fabric-wallcovering-woodland",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218990919731",
+    "perYardSku": "DWCC-112390-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430161459",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Snow",
+    "handle": "novasuede™-fabric-wallcovering-snow",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218990985267",
+    "perYardSku": "DWCC-805452-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430194227",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Amber",
+    "handle": "novasuede™-fabric-wallcovering-amber",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218991050803",
+    "perYardSku": "DWCC-112050-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430226995",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Blush Rose",
+    "handle": "novasuede™-fabric-wallcovering-blush-rose",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218991116339",
+    "perYardSku": "DWCC-112060-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430292531",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Dusty Teal",
+    "handle": "novasuede™-fabric-wallcovering-dusty-teal",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218991575091",
+    "perYardSku": "DWCC-112100-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430325299",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Verdigris",
+    "handle": "novasuede™-fabric-wallcovering-verdigris",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218991640627",
+    "perYardSku": "DWCC-112350-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430358067",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Winter White",
+    "handle": "novasuede™-fabric-wallcovering-winter-white",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218991706163",
+    "perYardSku": "DWCC-112380-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430390835",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Bliss",
+    "handle": "novasuede™-fabric-wallcovering-bliss",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218991771699",
+    "perYardSku": "DWCC-112030-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430423603",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Blank Slate",
+    "handle": "novasuede™-fabric-wallcovering-blank-slate",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218991837235",
+    "perYardSku": "DWCC-112040-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430456371",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Colonial Blue",
+    "handle": "novasuede™-fabric-wallcovering-colonial-blue",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218991902771",
+    "perYardSku": "DWCC-112080-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430489139",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Dusty Ranch",
+    "handle": "novasuede™-fabric-wallcovering-dusty-ranch",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218991968307",
+    "perYardSku": "DWCC-112090-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430521907",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Fire",
+    "handle": "novasuede™-fabric-wallcovering-fire",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218992033843",
+    "perYardSku": "DWCC-112110-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430554675",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Flagstone",
+    "handle": "novasuede™-fabric-wallcovering-flagstone",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218992099379",
+    "perYardSku": "DWCC-112120-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430587443",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Henna",
+    "handle": "novasuede™-fabric-wallcovering-henna",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218992164915",
+    "perYardSku": "DWCC-112130-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430620211",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Kiva",
+    "handle": "novasuede™-fabric-wallcovering-kiva",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218992230451",
+    "perYardSku": "DWCC-112140-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430652979",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Lipstick",
+    "handle": "novasuede™-fabric-wallcovering-lipstick",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218992295987",
+    "perYardSku": "DWCC-112150-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430718515",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Noir",
+    "handle": "novasuede™-fabric-wallcovering-noir",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218992525363",
+    "perYardSku": "DWCC-112160-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430784051",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Opal",
+    "handle": "novasuede™-fabric-wallcovering-opal",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218992689203",
+    "perYardSku": "DWCC-112170-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430816819",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Pastel Blue",
+    "handle": "novasuede™-fabric-wallcovering-pastel-blue",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218992754739",
+    "perYardSku": "DWCC-112180-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430849587",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Pastel Pink",
+    "handle": "novasuede™-fabric-wallcovering-pastel-pink",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218992820275",
+    "perYardSku": "DWCC-112190-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430882355",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Persimmon",
+    "handle": "novasuede™-fabric-wallcovering-persimmon",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218992885811",
+    "perYardSku": "DWCC-99900-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430915123",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Port Blue",
+    "handle": "novasuede™-fabric-wallcovering-port-blue",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218992951347",
+    "perYardSku": "DWCC-112210-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430947891",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Raisin",
+    "handle": "novasuede™-fabric-wallcovering-raisin",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218993016883",
+    "perYardSku": "DWCC-112240-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821430980659",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Shale",
+    "handle": "novasuede™-fabric-wallcovering-shale",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218993082419",
+    "perYardSku": "DWCC-112280-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821431013427",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Spruce",
+    "handle": "novasuede™-fabric-wallcovering-spruce",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218993147955",
+    "perYardSku": "DWCC-112290-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821431046195",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Terracotta",
+    "handle": "novasuede™-fabric-wallcovering-terracotta",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218993213491",
+    "perYardSku": "DWCC-112310-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821431078963",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sedona",
+    "handle": "novasuede™-fabric-wallcovering-sedona",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218993279027",
+    "perYardSku": "DWCC-112270-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821431111731",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Thistle",
+    "handle": "novasuede™-fabric-wallcovering-thistle",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218993344563",
+    "perYardSku": "DWCC-112320-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821431144499",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Tusk",
+    "handle": "novasuede™-fabric-wallcovering-tusk",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218993410099",
+    "perYardSku": "DWCC-112330-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821431177267",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Umber",
+    "handle": "novasuede™-fabric-wallcovering-umber",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218993475635",
+    "perYardSku": "DWCC-112340-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821431210035",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Vermilion",
+    "handle": "novasuede™-fabric-wallcovering-vermilion",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218993541171",
+    "perYardSku": "DWCC-112360-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821432520755",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Cement",
+    "handle": "novasuede™-fabric-wallcovering-cement",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218997211187",
+    "perYardSku": "DWCC-112070-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821432553523",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Pink Lace",
+    "handle": "novasuede™-fabric-wallcovering-pink-lace",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218997309491",
+    "perYardSku": "DWCC-112220-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7821432586291",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Royal Blue",
+    "handle": "novasuede™-fabric-wallcovering-royal-blue",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44218997407795",
+    "perYardSku": "DWCC-112230-Per Yard",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7867431649331",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Satin",
+    "handle": "novasuede™-fabric-wallcovering-satin",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44462213627955",
+    "perYardSku": "DWCC-118200",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7867477229619",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Abyss",
+    "handle": "novasuede™-fabric-wallcovering-abyss",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44462359380019",
+    "perYardSku": "DWCC-118100",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7922373754931",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Aegean",
+    "handle": "novasuede™-mist-luxury-suede-copy",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44750680522803",
+    "perYardSku": "DWCC-118300",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7922409406515",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Aqua",
+    "handle": "novasuede™-fabric-wallcovering-umber-copy",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44750735835187",
+    "perYardSku": "DWCC-112300",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7922411077683",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Flame",
+    "handle": "novasuede™-fabric-wallcovering-flame",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44750738718771",
+    "perYardSku": "DWCC-118400",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7923064930355",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sand",
+    "handle": "novasuede™-sand",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44753268736051",
+    "perYardSku": "DWCC-118500",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7924270497843",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Gentle Pine",
+    "handle": "novasuede™-fabric-wallcovering-gentle-pine",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44757222588467",
+    "perYardSku": "DWCC-118600",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  },
+  {
+    "productId": "gid://shopify/Product/7930350403635",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Imperial Plum",
+    "handle": "novasuede™-fabric-wallcovering-imperial-plum",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44772359438387",
+    "perYardSku": "DWCC-118700",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7930373603379",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Sunset",
+    "handle": "novasuede™-fabric-wallcovering-sunset",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44772531601459",
+    "perYardSku": "DWCC-118800",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7930379632691",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Crimson",
+    "handle": "novasuede™-fabric-wallcovering-crimson",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44772577214515",
+    "perYardSku": "DWCC-118900",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7930390347827",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Claret",
+    "handle": "novasuede™-fabric-wallcovering-claret",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44772604313651",
+    "perYardSku": "DWCC-119000",
+    "perYardMin_old": null,
+    "perYardMin_new": "5",
+    "perYardMin_change": true
+  },
+  {
+    "productId": "gid://shopify/Product/7930575454259",
+    "title": "Novasuede™ Fabric & Wallcovering Luxury Faux Suede - Rosetta",
+    "handle": "novasuede™-fabric-wallcovering-luxury-faux-suede-rosetta",
+    "prodMin_old": null,
+    "prodMin_new": "5",
+    "prodMin_change": true,
+    "perYardVariantId": "gid://shopify/ProductVariant/44773500780595",
+    "perYardSku": "DWCC-119010",
+    "perYardMin_old": "5",
+    "perYardMin_new": "5",
+    "perYardMin_change": false
+  }
+]
\ No newline at end of file
diff --git a/verify.mjs b/verify.mjs
new file mode 100644
index 0000000..5b2e47a
--- /dev/null
+++ b/verify.mjs
@@ -0,0 +1,44 @@
+import fs from 'fs';
+const env=fs.readFileSync(process.env.HOME+'/Projects/secrets-manager/.env','utf8');
+const get=k=>(env.match(new RegExp('^'+k+'=(.*)$','m'))||[])[1];
+const TOKEN=get('SHOPIFY_ADMIN_TOKEN');
+const API='https://designer-laboratory-sandbox.myshopify.com/admin/api/2024-10/graphql.json';
+async function gql(q,v={}){
+  for(let a=0;a<4;a++){
+    const r=await fetch(API,{method:'POST',headers:{'X-Shopify-Access-Token':TOKEN,'Content-Type':'application/json'},body:JSON.stringify({query:q,variables:v})});
+    const j=await r.json();
+    if(j.data&&j.data.products) return j;
+    await new Promise(x=>setTimeout(x,1500));
+  }
+  throw new Error('query failed after retries');
+}
+let cursor=null, all=[];
+do{
+  const j=await gql(`query($c:String){products(first:40,after:$c,query:"vendor:Novasuede status:active"){pageInfo{hasNextPage endCursor} nodes{id title
+    metafields(first:20){nodes{namespace key value}}
+    variants(first:10){nodes{title sku metafields(first:10){nodes{namespace key value}}}}}}}`,{c:cursor});
+  const d=j.data; all.push(...d.products.nodes); cursor=d.products.pageInfo.hasNextPage?d.products.pageInfo.endCursor:null;
+}while(cursor);
+let prodMin5=0,prodMinOther=0,perYard5=0,perYardOther=0,wall10=0,wallOther=0,sample1=0;
+for(const p of all){
+  const pm=p.metafields.nodes.find(m=>m.namespace==='global'&&m.key==='v_prods_quantity_order_min');
+  if(pm&&pm.value==='5')prodMin5++; else prodMinOther++;
+  for(const v of p.variants.nodes){
+    const vm=v.metafields.nodes.find(m=>m.key==='v_prod_quantity_order_min');
+    if(/^Sold Per Yard/.test(v.title)){ if(vm&&vm.value==='5')perYard5++; else perYardOther++; }
+    if(/Wallcovering/.test(v.title)){ if(vm&&vm.value==='10')wall10++; else wallOther++; }
+    if(v.title==='Sample'){ if(vm&&vm.value==='1')sample1++; }
+  }
+}
+console.log('TOTAL active:',all.length);
+console.log('product-level min=5:',prodMin5,'| NOT 5:',prodMinOther);
+console.log('per-yard variant min=5:',perYard5,'| NOT 5:',perYardOther);
+console.log('Wallcovering variant min=10 (should be untouched):',wall10,'| other:',wallOther);
+console.log('Sample variant min=1 (untouched):',sample1);
+const salt=all.find(p=>/salt/i.test(p.title));
+const spm=salt.metafields.nodes.find(m=>m.key==='v_prods_quantity_order_min');
+const sv=salt.variants.nodes.find(v=>/Per Yard \(5/.test(v.title));
+const svm=sv.metafields.nodes.find(m=>m.key==='v_prod_quantity_order_min');
+const swall=salt.variants.nodes.find(v=>/Wallcovering/.test(v.title));
+const swm=swall.metafields.nodes.find(m=>m.key==='v_prod_quantity_order_min');
+console.log('\nSALT: product-min='+spm.value+' | per-yard variant-min='+svm.value+' | wallcovering variant-min='+swm.value);

(oldest)  ·  back to Novasuede Min Fix  ·  Add revert.mjs (one-click undo of TK-11082 Novasuede min cha 048dc11 →